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/mach-omap2/id.c | |
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/mach-omap2/id.c')
-rw-r--r-- | arch/arm/mach-omap2/id.c | 290 |
1 files changed, 119 insertions, 171 deletions
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; |