treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / gpu / drm / amd / display / include / dal_asic_id.h
bloba2903985b9e87495340d82ca6b83791a3c416364
1 /*
2 * Copyright 2012-15 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 * Authors: AMD
26 #ifndef __DAL_ASIC_ID_H__
27 #define __DAL_ASIC_ID_H__
30 * ASIC internal revision ID
33 /* DCE80 (based on ci_id.h in Perforce) */
34 #define CI_BONAIRE_M_A0 0x14
35 #define CI_BONAIRE_M_A1 0x15
36 #define CI_HAWAII_P_A0 0x28
38 #define CI_UNKNOWN 0xFF
40 #define ASIC_REV_IS_BONAIRE_M(rev) \
41 ((rev >= CI_BONAIRE_M_A0) && (rev < CI_HAWAII_P_A0))
43 #define ASIC_REV_IS_HAWAII_P(rev) \
44 (rev >= CI_HAWAII_P_A0)
46 /* KV1 with Spectre GFX core, 8-8-1-2 (CU-Pix-Primitive-RB) */
47 #define KV_SPECTRE_A0 0x01
49 /* KV2 with Spooky GFX core, including downgraded from Spectre core,
50 * 3-4-1-1 (CU-Pix-Primitive-RB) */
51 #define KV_SPOOKY_A0 0x41
53 /* KB with Kalindi GFX core, 2-4-1-1 (CU-Pix-Primitive-RB) */
54 #define KB_KALINDI_A0 0x81
56 /* KB with Kalindi GFX core, 2-4-1-1 (CU-Pix-Primitive-RB) */
57 #define KB_KALINDI_A1 0x82
59 /* BV with Kalindi GFX core, 2-4-1-1 (CU-Pix-Primitive-RB) */
60 #define BV_KALINDI_A2 0x85
62 /* ML with Godavari GFX core, 2-4-1-1 (CU-Pix-Primitive-RB) */
63 #define ML_GODAVARI_A0 0xA1
65 /* ML with Godavari GFX core, 2-4-1-1 (CU-Pix-Primitive-RB) */
66 #define ML_GODAVARI_A1 0xA2
68 #define KV_UNKNOWN 0xFF
70 #define ASIC_REV_IS_KALINDI(rev) \
71 ((rev >= KB_KALINDI_A0) && (rev < KV_UNKNOWN))
73 #define ASIC_REV_IS_BHAVANI(rev) \
74 ((rev >= BV_KALINDI_A2) && (rev < ML_GODAVARI_A0))
76 #define ASIC_REV_IS_GODAVARI(rev) \
77 ((rev >= ML_GODAVARI_A0) && (rev < KV_UNKNOWN))
79 /* VI Family */
80 /* DCE10 */
81 #define VI_TONGA_P_A0 20
82 #define VI_TONGA_P_A1 21
83 #define VI_FIJI_P_A0 60
85 /* DCE112 */
86 #define VI_POLARIS10_P_A0 80
87 #define VI_POLARIS11_M_A0 90
88 #define VI_POLARIS12_V_A0 100
89 #define VI_VEGAM_A0 110
91 #define VI_UNKNOWN 0xFF
93 #define ASIC_REV_IS_TONGA_P(eChipRev) ((eChipRev >= VI_TONGA_P_A0) && \
94 (eChipRev < 40))
95 #define ASIC_REV_IS_FIJI_P(eChipRev) ((eChipRev >= VI_FIJI_P_A0) && \
96 (eChipRev < 80))
98 #define ASIC_REV_IS_POLARIS10_P(eChipRev) ((eChipRev >= VI_POLARIS10_P_A0) && \
99 (eChipRev < VI_POLARIS11_M_A0))
100 #define ASIC_REV_IS_POLARIS11_M(eChipRev) ((eChipRev >= VI_POLARIS11_M_A0) && \
101 (eChipRev < VI_POLARIS12_V_A0))
102 #define ASIC_REV_IS_POLARIS12_V(eChipRev) ((eChipRev >= VI_POLARIS12_V_A0) && \
103 (eChipRev < VI_VEGAM_A0))
104 #define ASIC_REV_IS_VEGAM(eChipRev) (eChipRev >= VI_VEGAM_A0)
106 /* DCE11 */
107 #define CZ_CARRIZO_A0 0x01
109 #define STONEY_A0 0x61
110 #define CZ_UNKNOWN 0xFF
112 #define ASIC_REV_IS_STONEY(rev) \
113 ((rev >= STONEY_A0) && (rev < CZ_UNKNOWN))
115 /* DCE12 */
116 #define AI_UNKNOWN 0xFF
118 #define AI_GREENLAND_P_A0 1
119 #define AI_GREENLAND_P_A1 2
120 #define AI_UNKNOWN 0xFF
122 #define AI_VEGA12_P_A0 20
123 #define AI_VEGA20_P_A0 40
124 #define ASICREV_IS_GREENLAND_M(eChipRev) (eChipRev < AI_VEGA12_P_A0)
125 #define ASICREV_IS_GREENLAND_P(eChipRev) (eChipRev < AI_VEGA12_P_A0)
127 #define ASICREV_IS_VEGA12_P(eChipRev) ((eChipRev >= AI_VEGA12_P_A0) && (eChipRev < AI_VEGA20_P_A0))
128 #define ASICREV_IS_VEGA20_P(eChipRev) ((eChipRev >= AI_VEGA20_P_A0) && (eChipRev < AI_UNKNOWN))
130 /* DCN1_0 */
131 #define INTERNAL_REV_RAVEN_A0 0x00 /* First spin of Raven */
132 #define RAVEN_A0 0x01
133 #define RAVEN_B0 0x21
134 #define PICASSO_A0 0x41
135 /* DCN1_01 */
136 #define RAVEN2_A0 0x81
137 #define RAVEN2_15D8_REV_94 0x94
138 #define RAVEN2_15D8_REV_95 0x95
139 #define RAVEN2_15D8_REV_E3 0xE3
140 #define RAVEN2_15D8_REV_E4 0xE4
141 #define RAVEN2_15D8_REV_E9 0xE9
142 #define RAVEN2_15D8_REV_EA 0xEA
143 #define RAVEN2_15D8_REV_EB 0xEB
144 #define RAVEN1_F0 0xF0
145 #define RAVEN_UNKNOWN 0xFF
146 #ifndef ASICREV_IS_RAVEN
147 #define ASICREV_IS_RAVEN(eChipRev) ((eChipRev >= RAVEN_A0) && eChipRev < RAVEN_UNKNOWN)
148 #endif
150 #define ASICREV_IS_PICASSO(eChipRev) ((eChipRev >= PICASSO_A0) && (eChipRev < RAVEN2_A0))
151 #ifndef ASICREV_IS_RAVEN2
152 #define ASICREV_IS_RAVEN2(eChipRev) ((eChipRev >= RAVEN2_A0) && (eChipRev < RAVEN1_F0))
153 #endif
154 #define ASICREV_IS_RV1_F0(eChipRev) ((eChipRev >= RAVEN1_F0) && (eChipRev < RAVEN_UNKNOWN))
155 #define ASICREV_IS_DALI(eChipRev) ((eChipRev == RAVEN2_15D8_REV_E3) \
156 || (eChipRev == RAVEN2_15D8_REV_E4))
157 #define ASICREV_IS_POLLOCK(eChipRev) (eChipRev == RAVEN2_15D8_REV_94 \
158 || eChipRev == RAVEN2_15D8_REV_95 \
159 || eChipRev == RAVEN2_15D8_REV_E9 \
160 || eChipRev == RAVEN2_15D8_REV_EA \
161 || eChipRev == RAVEN2_15D8_REV_EB)
163 #define FAMILY_RV 142 /* DCN 1*/
166 #define FAMILY_NV 143 /* DCN 2*/
168 enum {
169 NV_NAVI10_P_A0 = 1,
170 NV_NAVI12_P_A0 = 10,
171 NV_NAVI14_M_A0 = 20,
172 NV_UNKNOWN = 0xFF
175 #define ASICREV_IS_NAVI10_P(eChipRev) (eChipRev < NV_NAVI12_P_A0)
176 #define ASICREV_IS_NAVI12_P(eChipRev) ((eChipRev >= NV_NAVI12_P_A0) && (eChipRev < NV_NAVI14_M_A0))
177 #define ASICREV_IS_NAVI14_M(eChipRev) ((eChipRev >= NV_NAVI14_M_A0) && (eChipRev < NV_UNKNOWN))
178 #define RENOIR_A0 0x91
179 #define DEVICE_ID_RENOIR_1636 0x1636 // Renoir
180 #define ASICREV_IS_RENOIR(eChipRev) ((eChipRev >= RENOIR_A0) && (eChipRev < 0xFF))
183 * ASIC chip ID
185 /* DCE80 */
186 #define DEVICE_ID_KALINDI_9834 0x9834
187 #define DEVICE_ID_TEMASH_9839 0x9839
188 #define DEVICE_ID_TEMASH_983D 0x983D
190 /* Asic Family IDs for different asic family. */
191 #define FAMILY_CI 120 /* Sea Islands: Hawaii (P), Bonaire (M) */
192 #define FAMILY_KV 125 /* Fusion => Kaveri: Spectre, Spooky; Kabini: Kalindi */
193 #define FAMILY_VI 130 /* Volcanic Islands: Iceland (V), Tonga (M) */
194 #define FAMILY_CZ 135 /* Carrizo */
196 #define FAMILY_AI 141
198 #define FAMILY_UNKNOWN 0xFF
202 #endif /* __DAL_ASIC_ID_H__ */