diff options
author | Tony Lindgren <tony@atomide.com> | 2008-12-10 20:36:30 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2008-12-10 20:36:30 -0500 |
commit | a88231430384f49bebf8a6ec607a9eb4f2254e34 (patch) | |
tree | a95be27edce50fece9cbc434e770806e49453ae7 /arch/arm | |
parent | 5ba02dcab945dc0bcde7df0c5958329f34bd04ae (diff) |
ARM: OMAP2: Fix cpu detection
At some point omap2 changed the bits for GET_OMAP_CLASS, which
broke 15xx detection on 730 as noticed by Russell King.
This patch fixes omap2 cpu detection to respect the original
GET_OMAP_CLASS, and simplifies the detection for 34xx.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap1/id.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-omap2/clock34xx.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap2/id.c | 290 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/mach/cpu.h | 76 |
4 files changed, 145 insertions, 226 deletions
diff --git a/arch/arm/mach-omap1/id.c b/arch/arm/mach-omap1/id.c index 13083d7e692d..d6110fe04f2f 100644 --- a/arch/arm/mach-omap1/id.c +++ b/arch/arm/mach-omap1/id.c | |||
@@ -178,9 +178,6 @@ void __init omap_check_revision(void) | |||
178 | case 0x17: | 178 | case 0x17: |
179 | system_rev |= 0x16; | 179 | system_rev |= 0x16; |
180 | break; | 180 | break; |
181 | case 0x24: | ||
182 | system_rev |= 0x24; | ||
183 | break; | ||
184 | default: | 181 | default: |
185 | printk("Unknown OMAP cpu type: 0x%02x\n", cpu_type); | 182 | printk("Unknown OMAP cpu type: 0x%02x\n", cpu_type); |
186 | } | 183 | } |
diff --git a/arch/arm/mach-omap2/clock34xx.c b/arch/arm/mach-omap2/clock34xx.c index 084e11082f80..3c2f665742f7 100644 --- a/arch/arm/mach-omap2/clock34xx.c +++ b/arch/arm/mach-omap2/clock34xx.c | |||
@@ -475,7 +475,7 @@ int __init omap2_clk_init(void) | |||
475 | * Update this if there are further clock changes between ES2 | 475 | * Update this if there are further clock changes between ES2 |
476 | * and production parts | 476 | * and production parts |
477 | */ | 477 | */ |
478 | if (is_sil_rev_equal_to(OMAP3430_REV_ES1_0)) { | 478 | if (system_rev == OMAP3430_REV_ES1_0) { |
479 | /* No 3430ES1-only rates exist, so no RATE_IN_3430ES1 */ | 479 | /* No 3430ES1-only rates exist, so no RATE_IN_3430ES1 */ |
480 | cpu_clkflg |= CLOCK_IN_OMAP3430ES1; | 480 | cpu_clkflg |= CLOCK_IN_OMAP3430ES1; |
481 | } else { | 481 | } else { |
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index b6ee18cd67d3..d4e3a38e347c 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c | |||
@@ -22,39 +22,6 @@ | |||
22 | #include <mach/control.h> | 22 | #include <mach/control.h> |
23 | #include <mach/cpu.h> | 23 | #include <mach/cpu.h> |
24 | 24 | ||
25 | static u32 class; | ||
26 | static void __iomem *tap_base; | ||
27 | static u16 tap_prod_id; | ||
28 | |||
29 | #define OMAP_TAP_IDCODE 0x0204 | ||
30 | #define OMAP_TAP_DIE_ID_0 0x0218 | ||
31 | #define OMAP_TAP_DIE_ID_1 0x021C | ||
32 | #define OMAP_TAP_DIE_ID_2 0x0220 | ||
33 | #define OMAP_TAP_DIE_ID_3 0x0224 | ||
34 | |||
35 | /* system_rev fields for OMAP2 processors: | ||
36 | * CPU id bits [31:16], | ||
37 | * CPU device type [15:12], (unprg,normal,POP) | ||
38 | * CPU revision [11:08] | ||
39 | * CPU class bits [07:00] | ||
40 | */ | ||
41 | |||
42 | struct omap_id { | ||
43 | u16 hawkeye; /* Silicon type (Hawkeye id) */ | ||
44 | u8 dev; /* Device type from production_id reg */ | ||
45 | u32 type; /* combined type id copied to system_rev */ | ||
46 | }; | ||
47 | |||
48 | /* Register values to detect the OMAP version */ | ||
49 | static struct omap_id omap_ids[] __initdata = { | ||
50 | { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200000 }, | ||
51 | { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201000 }, | ||
52 | { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202000 }, | ||
53 | { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220000 }, | ||
54 | { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230000 }, | ||
55 | { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300000 }, | ||
56 | }; | ||
57 | |||
58 | static struct omap_chip_id omap_chip; | 25 | static struct omap_chip_id omap_chip; |
59 | 26 | ||
60 | /** | 27 | /** |
@@ -70,135 +37,41 @@ int omap_chip_is(struct omap_chip_id oci) | |||
70 | } | 37 | } |
71 | EXPORT_SYMBOL(omap_chip_is); | 38 | EXPORT_SYMBOL(omap_chip_is); |
72 | 39 | ||
73 | static u32 __init read_tap_reg(int reg) | 40 | /*----------------------------------------------------------------------------*/ |
74 | { | ||
75 | unsigned int regval = 0; | ||
76 | u32 cpuid; | ||
77 | 41 | ||
78 | /* Reading the IDCODE register on 3430 ES1 results in a | 42 | #define OMAP_TAP_IDCODE 0x0204 |
79 | * data abort as the register is not exposed on the OCP | 43 | #define OMAP_TAP_DIE_ID_0 0x0218 |
80 | * Hence reading the Cortex Rev | 44 | #define OMAP_TAP_DIE_ID_1 0x021C |
81 | */ | 45 | #define OMAP_TAP_DIE_ID_2 0x0220 |
82 | cpuid = read_cpuid(CPUID_ID); | 46 | #define OMAP_TAP_DIE_ID_3 0x0224 |
83 | |||
84 | /* If the processor type is Cortex-A8 and the revision is 0x0 | ||
85 | * it means its Cortex r0p0 which is 3430 ES1 | ||
86 | */ | ||
87 | if ((((cpuid >> 4) & 0xFFF) == 0xC08) && ((cpuid & 0xF) == 0x0)) { | ||
88 | |||
89 | if (reg == tap_prod_id) { | ||
90 | regval = 0x000F00F0; | ||
91 | goto out; | ||
92 | } | ||
93 | |||
94 | switch (reg) { | ||
95 | case OMAP_TAP_IDCODE : regval = 0x0B7AE02F; break; | ||
96 | /* Making DevType as 0xF in ES1 to differ from ES2 */ | ||
97 | case OMAP_TAP_DIE_ID_0: regval = 0x01000000; break; | ||
98 | case OMAP_TAP_DIE_ID_1: regval = 0x1012d687; break; | ||
99 | case OMAP_TAP_DIE_ID_2: regval = 0x00000000; break; | ||
100 | case OMAP_TAP_DIE_ID_3: regval = 0x2d2c0000; break; | ||
101 | } | ||
102 | } else | ||
103 | regval = __raw_readl(tap_base + reg); | ||
104 | |||
105 | out: | ||
106 | return regval; | ||
107 | |||
108 | } | ||
109 | |||
110 | /* | ||
111 | * _set_system_rev - set the system_rev global based on current OMAP chip type | ||
112 | * | ||
113 | * Set the system_rev global. This is primarily used by the cpu_is_omapxxxx() | ||
114 | * macros. | ||
115 | */ | ||
116 | static void __init _set_system_rev(u32 type, u8 rev) | ||
117 | { | ||
118 | u32 i, ctrl_status; | ||
119 | |||
120 | /* | ||
121 | * system_rev encoding is as follows | ||
122 | * system_rev & 0xff000000 -> Omap Class (24xx/34xx) | ||
123 | * system_rev & 0xfff00000 -> Omap Sub Class (242x/343x) | ||
124 | * system_rev & 0xffff0000 -> Omap type (2420/2422/2423/2430/3430) | ||
125 | * system_rev & 0x0000f000 -> Silicon revision (ES1, ES2 ) | ||
126 | * system_rev & 0x00000700 -> Device Type ( EMU/HS/GP/BAD ) | ||
127 | * system_rev & 0x000000c0 -> IDCODE revision[6:7] | ||
128 | * system_rev & 0x0000003f -> sys_boot[0:5] | ||
129 | */ | ||
130 | /* Embedding the ES revision info in type field */ | ||
131 | system_rev = type; | ||
132 | /* Also add IDCODE revision info only two lower bits */ | ||
133 | system_rev |= ((rev & 0x3) << 6); | ||
134 | |||
135 | /* Add in the device type and sys_boot fields (see above) */ | ||
136 | if (cpu_is_omap24xx()) { | ||
137 | i = OMAP24XX_CONTROL_STATUS; | ||
138 | } else if (cpu_is_omap343x()) { | ||
139 | i = OMAP343X_CONTROL_STATUS; | ||
140 | } else { | ||
141 | printk(KERN_ERR "id: unknown CPU type\n"); | ||
142 | BUG(); | ||
143 | } | ||
144 | ctrl_status = omap_ctrl_readl(i); | ||
145 | system_rev |= (ctrl_status & (OMAP2_SYSBOOT_5_MASK | | ||
146 | OMAP2_SYSBOOT_4_MASK | | ||
147 | OMAP2_SYSBOOT_3_MASK | | ||
148 | OMAP2_SYSBOOT_2_MASK | | ||
149 | OMAP2_SYSBOOT_1_MASK | | ||
150 | OMAP2_SYSBOOT_0_MASK)); | ||
151 | system_rev |= (ctrl_status & OMAP2_DEVICETYPE_MASK); | ||
152 | } | ||
153 | |||
154 | |||
155 | /* | ||
156 | * _set_omap_chip - set the omap_chip global based on OMAP chip type | ||
157 | * | ||
158 | * Build the omap_chip bits. This variable is used by powerdomain and | ||
159 | * clockdomain code to indicate whether structures are applicable for | ||
160 | * the current OMAP chip type by ANDing it against a 'platform' bitfield | ||
161 | * in the structure. | ||
162 | */ | ||
163 | static void __init _set_omap_chip(void) | ||
164 | { | ||
165 | if (cpu_is_omap343x()) { | ||
166 | |||
167 | omap_chip.oc = CHIP_IS_OMAP3430; | ||
168 | if (is_sil_rev_equal_to(OMAP3430_REV_ES1_0)) | ||
169 | omap_chip.oc |= CHIP_IS_OMAP3430ES1; | ||
170 | else if (is_sil_rev_greater_than(OMAP3430_REV_ES1_0)) | ||
171 | omap_chip.oc |= CHIP_IS_OMAP3430ES2; | ||
172 | |||
173 | } else if (cpu_is_omap243x()) { | ||
174 | |||
175 | /* Currently only supports 2430ES2.1 and 2430-all */ | ||
176 | omap_chip.oc |= CHIP_IS_OMAP2430; | ||
177 | |||
178 | } else if (cpu_is_omap242x()) { | ||
179 | |||
180 | /* Currently only supports 2420ES2.1.1 and 2420-all */ | ||
181 | omap_chip.oc |= CHIP_IS_OMAP2420; | ||
182 | 47 | ||
183 | } else { | 48 | #define read_tap_reg(reg) __raw_readl(tap_base + (reg)) |
184 | 49 | ||
185 | /* Current CPU not supported by this code. */ | 50 | struct omap_id { |
186 | printk(KERN_WARNING "OMAP chip type code does not yet support " | 51 | u16 hawkeye; /* Silicon type (Hawkeye id) */ |
187 | "this CPU type.\n"); | 52 | u8 dev; /* Device type from production_id reg */ |
188 | WARN_ON(1); | 53 | u32 type; /* Combined type id copied to system_rev */ |
54 | }; | ||
189 | 55 | ||
190 | } | 56 | /* Register values to detect the OMAP version */ |
57 | static struct omap_id omap_ids[] __initdata = { | ||
58 | { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 }, | ||
59 | { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 }, | ||
60 | { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 }, | ||
61 | { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 }, | ||
62 | { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 }, | ||
63 | { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 }, | ||
64 | }; | ||
191 | 65 | ||
192 | } | 66 | static void __iomem *tap_base; |
67 | static u16 tap_prod_id; | ||
193 | 68 | ||
194 | void __init omap24xx_check_revision(void) | 69 | void __init omap24xx_check_revision(void) |
195 | { | 70 | { |
196 | int i, j; | 71 | int i, j; |
197 | u32 idcode; | 72 | u32 idcode, prod_id; |
198 | u32 prod_id; | ||
199 | u16 hawkeye; | 73 | u16 hawkeye; |
200 | u8 dev_type; | 74 | u8 dev_type, rev; |
201 | u8 rev; | ||
202 | 75 | ||
203 | idcode = read_tap_reg(OMAP_TAP_IDCODE); | 76 | idcode = read_tap_reg(OMAP_TAP_IDCODE); |
204 | prod_id = read_tap_reg(tap_prod_id); | 77 | prod_id = read_tap_reg(tap_prod_id); |
@@ -220,18 +93,6 @@ void __init omap24xx_check_revision(void) | |||
220 | pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n", | 93 | pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n", |
221 | prod_id, dev_type); | 94 | prod_id, dev_type); |
222 | 95 | ||
223 | /* | ||
224 | * Detection for 34xx ES2.0 and above can be done with just | ||
225 | * hawkeye and rev. See TRM 1.5.2 Device Identification. | ||
226 | * Note that rev cannot be used directly as ES1.0 uses value 0. | ||
227 | */ | ||
228 | if (hawkeye == 0xb7ae) { | ||
229 | system_rev = 0x34300000 | ((1 + rev) << 12); | ||
230 | pr_info("OMAP%04x ES2.%i\n", system_rev >> 16, rev); | ||
231 | _set_omap_chip(); | ||
232 | return; | ||
233 | } | ||
234 | |||
235 | /* Check hawkeye ids */ | 96 | /* Check hawkeye ids */ |
236 | for (i = 0; i < ARRAY_SIZE(omap_ids); i++) { | 97 | for (i = 0; i < ARRAY_SIZE(omap_ids); i++) { |
237 | if (hawkeye == omap_ids[i].hawkeye) | 98 | if (hawkeye == omap_ids[i].hawkeye) |
@@ -255,28 +116,115 @@ void __init omap24xx_check_revision(void) | |||
255 | j = i; | 116 | j = i; |
256 | } | 117 | } |
257 | 118 | ||
258 | _set_system_rev(omap_ids[j].type, rev); | ||
259 | |||
260 | _set_omap_chip(); | ||
261 | |||
262 | pr_info("OMAP%04x", system_rev >> 16); | 119 | pr_info("OMAP%04x", system_rev >> 16); |
263 | if ((system_rev >> 8) & 0x0f) | 120 | if ((system_rev >> 8) & 0x0f) |
264 | pr_info("ES%x", (system_rev >> 12) & 0xf); | 121 | pr_info("ES%x", (system_rev >> 12) & 0xf); |
265 | pr_info("\n"); | 122 | pr_info("\n"); |
123 | } | ||
124 | |||
125 | void __init omap34xx_check_revision(void) | ||
126 | { | ||
127 | u32 cpuid, idcode; | ||
128 | u16 hawkeye; | ||
129 | u8 rev; | ||
130 | char *rev_name = "ES1.0"; | ||
131 | |||
132 | /* | ||
133 | * We cannot access revision registers on ES1.0. | ||
134 | * If the processor type is Cortex-A8 and the revision is 0x0 | ||
135 | * it means its Cortex r0p0 which is 3430 ES1.0. | ||
136 | */ | ||
137 | cpuid = read_cpuid(CPUID_ID); | ||
138 | if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) { | ||
139 | system_rev = OMAP3430_REV_ES1_0; | ||
140 | goto out; | ||
141 | } | ||
142 | |||
143 | /* | ||
144 | * Detection for 34xx ES2.0 and above can be done with just | ||
145 | * hawkeye and rev. See TRM 1.5.2 Device Identification. | ||
146 | * Note that rev does not map directly to our defined processor | ||
147 | * revision numbers as ES1.0 uses value 0. | ||
148 | */ | ||
149 | idcode = read_tap_reg(OMAP_TAP_IDCODE); | ||
150 | hawkeye = (idcode >> 12) & 0xffff; | ||
151 | rev = (idcode >> 28) & 0xff; | ||
266 | 152 | ||
153 | if (hawkeye == 0xb7ae) { | ||
154 | switch (rev) { | ||
155 | case 0: | ||
156 | system_rev = OMAP3430_REV_ES2_0; | ||
157 | rev_name = "ES2.0"; | ||
158 | break; | ||
159 | case 2: | ||
160 | system_rev = OMAP3430_REV_ES2_1; | ||
161 | rev_name = "ES2.1"; | ||
162 | break; | ||
163 | case 3: | ||
164 | system_rev = OMAP3430_REV_ES3_0; | ||
165 | rev_name = "ES3.0"; | ||
166 | break; | ||
167 | default: | ||
168 | /* Use the latest known revision as default */ | ||
169 | system_rev = OMAP3430_REV_ES3_0; | ||
170 | rev_name = "Unknown revision\n"; | ||
171 | } | ||
172 | } | ||
173 | |||
174 | out: | ||
175 | pr_info("OMAP%04x %s\n", system_rev >> 16, rev_name); | ||
267 | } | 176 | } |
268 | 177 | ||
178 | /* | ||
179 | * Try to detect the exact revision of the omap we're running on | ||
180 | */ | ||
269 | void __init omap2_check_revision(void) | 181 | void __init omap2_check_revision(void) |
270 | { | 182 | { |
271 | omap24xx_check_revision(); | 183 | /* |
184 | * At this point we have an idea about the processor revision set | ||
185 | * earlier with omap2_set_globals_tap(). | ||
186 | */ | ||
187 | if (cpu_is_omap24xx()) | ||
188 | omap24xx_check_revision(); | ||
189 | else if (cpu_is_omap34xx()) | ||
190 | omap34xx_check_revision(); | ||
191 | else | ||
192 | pr_err("OMAP revision unknown, please fix!\n"); | ||
193 | |||
194 | /* | ||
195 | * OK, now we know the exact revision. Initialize omap_chip bits | ||
196 | * for powerdowmain and clockdomain code. | ||
197 | */ | ||
198 | if (cpu_is_omap243x()) { | ||
199 | /* Currently only supports 2430ES2.1 and 2430-all */ | ||
200 | omap_chip.oc |= CHIP_IS_OMAP2430; | ||
201 | } else if (cpu_is_omap242x()) { | ||
202 | /* Currently only supports 2420ES2.1.1 and 2420-all */ | ||
203 | omap_chip.oc |= CHIP_IS_OMAP2420; | ||
204 | } else if (cpu_is_omap343x()) { | ||
205 | omap_chip.oc = CHIP_IS_OMAP3430; | ||
206 | if (system_rev == OMAP3430_REV_ES1_0) | ||
207 | omap_chip.oc |= CHIP_IS_OMAP3430ES1; | ||
208 | else if (system_rev > OMAP3430_REV_ES1_0) | ||
209 | omap_chip.oc |= CHIP_IS_OMAP3430ES2; | ||
210 | } else { | ||
211 | pr_err("Uninitialized omap_chip, please fix!\n"); | ||
212 | } | ||
272 | } | 213 | } |
273 | 214 | ||
215 | /* | ||
216 | * Set up things for map_io and processor detection later on. Gets called | ||
217 | * pretty much first thing from board init. For multi-omap, this gets | ||
218 | * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to | ||
219 | * detect the exact revision later on in omap2_detect_revision() once map_io | ||
220 | * is done. | ||
221 | */ | ||
274 | void __init omap2_set_globals_tap(struct omap_globals *omap2_globals) | 222 | void __init omap2_set_globals_tap(struct omap_globals *omap2_globals) |
275 | { | 223 | { |
276 | class = omap2_globals->class; | 224 | system_rev = omap2_globals->class; |
277 | tap_base = omap2_globals->tap; | 225 | tap_base = omap2_globals->tap; |
278 | 226 | ||
279 | if (class == 0x3430) | 227 | if (cpu_is_omap34xx()) |
280 | tap_prod_id = 0x0210; | 228 | tap_prod_id = 0x0210; |
281 | else | 229 | else |
282 | tap_prod_id = 0x0208; | 230 | tap_prod_id = 0x0208; |
diff --git a/arch/arm/plat-omap/include/mach/cpu.h b/arch/arm/plat-omap/include/mach/cpu.h index e0464187209d..4325bbc97477 100644 --- a/arch/arm/plat-omap/include/mach/cpu.h +++ b/arch/arm/plat-omap/include/mach/cpu.h | |||
@@ -28,14 +28,19 @@ | |||
28 | 28 | ||
29 | struct omap_chip_id { | 29 | struct omap_chip_id { |
30 | u8 oc; | 30 | u8 oc; |
31 | u8 type; | ||
31 | }; | 32 | }; |
32 | 33 | ||
33 | #define OMAP_CHIP_INIT(x) { .oc = x } | 34 | #define OMAP_CHIP_INIT(x) { .oc = x } |
34 | 35 | ||
36 | /* | ||
37 | * system_rev bits: | ||
38 | * CPU id bits (0730, 1510, 1710, 2422...) [31:16] | ||
39 | * CPU revision (See _REV_ defined in cpu.h) [15:08] | ||
40 | * CPU class bits (15xx, 16xx, 24xx, 34xx...) [07:00] | ||
41 | */ | ||
35 | extern unsigned int system_rev; | 42 | extern unsigned int system_rev; |
36 | 43 | ||
37 | #define omap2_cpu_rev() ((system_rev >> 12) & 0x0f) | ||
38 | |||
39 | /* | 44 | /* |
40 | * Test if multicore OMAP support is needed | 45 | * Test if multicore OMAP support is needed |
41 | */ | 46 | */ |
@@ -108,7 +113,7 @@ extern unsigned int system_rev; | |||
108 | * cpu_is_omap243x(): True for OMAP2430 | 113 | * cpu_is_omap243x(): True for OMAP2430 |
109 | * cpu_is_omap343x(): True for OMAP3430 | 114 | * cpu_is_omap343x(): True for OMAP3430 |
110 | */ | 115 | */ |
111 | #define GET_OMAP_CLASS ((system_rev >> 24) & 0xff) | 116 | #define GET_OMAP_CLASS (system_rev & 0xff) |
112 | 117 | ||
113 | #define IS_OMAP_CLASS(class, id) \ | 118 | #define IS_OMAP_CLASS(class, id) \ |
114 | static inline int is_omap ##class (void) \ | 119 | static inline int is_omap ##class (void) \ |
@@ -320,44 +325,20 @@ IS_OMAP_TYPE(3430, 0x3430) | |||
320 | #define cpu_class_is_omap2() (cpu_is_omap24xx() || cpu_is_omap34xx()) | 325 | #define cpu_class_is_omap2() (cpu_is_omap24xx() || cpu_is_omap34xx()) |
321 | 326 | ||
322 | #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) | 327 | #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) |
323 | /* | ||
324 | * Macros to detect silicon revision of OMAP2/3 processors. | ||
325 | * is_sil_rev_greater_than: true if passed cpu type & its rev is greater. | ||
326 | * is_sil_rev_lesser_than: true if passed cpu type & its rev is lesser. | ||
327 | * is_sil_rev_equal_to: true if passed cpu type & its rev is equal. | ||
328 | * get_sil_rev: return the silicon rev value. | ||
329 | */ | ||
330 | #define get_sil_omap_type(rev) ((rev & 0xffff0000) >> 16) | ||
331 | #define get_sil_revision(rev) ((rev & 0x0000f000) >> 12) | ||
332 | 328 | ||
333 | #define is_sil_rev_greater_than(rev) \ | 329 | /* Various silicon revisions for omap2 */ |
334 | ((get_sil_omap_type(system_rev) == get_sil_omap_type(rev)) && \ | 330 | #define OMAP242X_CLASS 0x24200024 |
335 | (get_sil_revision(system_rev) > get_sil_revision(rev))) | 331 | #define OMAP2420_REV_ES1_0 0x24200024 |
332 | #define OMAP2420_REV_ES2_0 0x24201024 | ||
336 | 333 | ||
337 | #define is_sil_rev_less_than(rev) \ | 334 | #define OMAP243X_CLASS 0x24300024 |
338 | ((get_sil_omap_type(system_rev) == get_sil_omap_type(rev)) && \ | 335 | #define OMAP2430_REV_ES1_0 0x24300024 |
339 | (get_sil_revision(system_rev) < get_sil_revision(rev))) | ||
340 | 336 | ||
341 | #define is_sil_rev_equal_to(rev) \ | 337 | #define OMAP343X_CLASS 0x34300034 |
342 | ((get_sil_omap_type(system_rev) == get_sil_omap_type(rev)) && \ | 338 | #define OMAP3430_REV_ES1_0 0x34300034 |
343 | (get_sil_revision(system_rev) == get_sil_revision(rev))) | 339 | #define OMAP3430_REV_ES2_0 0x34301034 |
344 | 340 | #define OMAP3430_REV_ES2_1 0x34302034 | |
345 | #define get_sil_rev() \ | 341 | #define OMAP3430_REV_ES3_0 0x34303034 |
346 | get_sil_revision(system_rev) | ||
347 | |||
348 | /* Various silicon macros defined here */ | ||
349 | #define OMAP242X_CLASS 0x24200000 | ||
350 | #define OMAP2420_REV_ES1_0 0x24200000 | ||
351 | #define OMAP2420_REV_ES2_0 0x24201000 | ||
352 | |||
353 | #define OMAP243X_CLASS 0x24300000 | ||
354 | #define OMAP2430_REV_ES1_0 0x24300000 | ||
355 | |||
356 | #define OMAP343X_CLASS 0x34300000 | ||
357 | #define OMAP3430_REV_ES1_0 0x34300000 | ||
358 | #define OMAP3430_REV_ES2_0 0x34301000 | ||
359 | #define OMAP3430_REV_ES2_1 0x34302000 | ||
360 | #define OMAP3430_REV_ES2_2 0x34303000 | ||
361 | 342 | ||
362 | /* | 343 | /* |
363 | * omap_chip bits | 344 | * omap_chip bits |
@@ -382,23 +363,16 @@ IS_OMAP_TYPE(3430, 0x3430) | |||
382 | #define CHIP_IS_OMAP24XX (CHIP_IS_OMAP2420 | CHIP_IS_OMAP2430) | 363 | #define CHIP_IS_OMAP24XX (CHIP_IS_OMAP2420 | CHIP_IS_OMAP2430) |
383 | 364 | ||
384 | int omap_chip_is(struct omap_chip_id oci); | 365 | int omap_chip_is(struct omap_chip_id oci); |
385 | 366 | int omap_type(void); | |
386 | 367 | ||
387 | /* | 368 | /* |
388 | * Macro to detect device type i.e. EMU/HS/TST/GP/BAD | 369 | * Macro to detect device type i.e. EMU/HS/TST/GP/BAD |
389 | */ | 370 | */ |
390 | #define DEVICE_TYPE_TEST 0 | 371 | #define OMAP2_DEVICE_TYPE_TEST 0 |
391 | #define DEVICE_TYPE_EMU 1 | 372 | #define OMAP2_DEVICE_TYPE_EMU 1 |
392 | #define DEVICE_TYPE_SEC 2 | 373 | #define OMAP2_DEVICE_TYPE_SEC 2 |
393 | #define DEVICE_TYPE_GP 3 | 374 | #define OMAP2_DEVICE_TYPE_GP 3 |
394 | #define DEVICE_TYPE_BAD 4 | 375 | #define OMAP2_DEVICE_TYPE_BAD 4 |
395 | |||
396 | #define get_device_type() ((system_rev & 0x700) >> 8) | ||
397 | #define is_device_type_test() (get_device_type() == DEVICE_TYPE_TEST) | ||
398 | #define is_device_type_emu() (get_device_type() == DEVICE_TYPE_EMU) | ||
399 | #define is_device_type_sec() (get_device_type() == DEVICE_TYPE_SEC) | ||
400 | #define is_device_type_gp() (get_device_type() == DEVICE_TYPE_GP) | ||
401 | #define is_device_type_bad() (get_device_type() == DEVICE_TYPE_BAD) | ||
402 | 376 | ||
403 | void omap2_check_revision(void); | 377 | void omap2_check_revision(void); |
404 | 378 | ||