Merge branch 'next/cross-platform' of git://git.linaro.org/people/arnd/arm-soc
[deliverable/linux.git] / arch / arm / mach-omap2 / id.c
1 /*
2 * linux/arch/arm/mach-omap2/id.c
3 *
4 * OMAP2 CPU identification code
5 *
6 * Copyright (C) 2005 Nokia Corporation
7 * Written by Tony Lindgren <tony@atomide.com>
8 *
9 * Copyright (C) 2009-11 Texas Instruments
10 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 */
16
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/io.h>
21
22 #include <asm/cputype.h>
23
24 #include <plat/common.h>
25 #include <plat/cpu.h>
26
27 #include <mach/id.h>
28
29 #include "control.h"
30
31 static unsigned int omap_revision;
32
33 u32 omap_features;
34
35 unsigned int omap_rev(void)
36 {
37 return omap_revision;
38 }
39 EXPORT_SYMBOL(omap_rev);
40
41 int omap_type(void)
42 {
43 u32 val = 0;
44
45 if (cpu_is_omap24xx()) {
46 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
47 } else if (cpu_is_omap34xx()) {
48 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
49 } else if (cpu_is_omap44xx()) {
50 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
51 } else {
52 pr_err("Cannot detect omap type!\n");
53 goto out;
54 }
55
56 val &= OMAP2_DEVICETYPE_MASK;
57 val >>= 8;
58
59 out:
60 return val;
61 }
62 EXPORT_SYMBOL(omap_type);
63
64
65 /*----------------------------------------------------------------------------*/
66
67 #define OMAP_TAP_IDCODE 0x0204
68 #define OMAP_TAP_DIE_ID_0 0x0218
69 #define OMAP_TAP_DIE_ID_1 0x021C
70 #define OMAP_TAP_DIE_ID_2 0x0220
71 #define OMAP_TAP_DIE_ID_3 0x0224
72
73 #define OMAP_TAP_DIE_ID_44XX_0 0x0200
74 #define OMAP_TAP_DIE_ID_44XX_1 0x0208
75 #define OMAP_TAP_DIE_ID_44XX_2 0x020c
76 #define OMAP_TAP_DIE_ID_44XX_3 0x0210
77
78 #define read_tap_reg(reg) __raw_readl(tap_base + (reg))
79
80 struct omap_id {
81 u16 hawkeye; /* Silicon type (Hawkeye id) */
82 u8 dev; /* Device type from production_id reg */
83 u32 type; /* Combined type id copied to omap_revision */
84 };
85
86 /* Register values to detect the OMAP version */
87 static struct omap_id omap_ids[] __initdata = {
88 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
89 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
90 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
91 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
92 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
93 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
94 };
95
96 static void __iomem *tap_base;
97 static u16 tap_prod_id;
98
99 void omap_get_die_id(struct omap_die_id *odi)
100 {
101 if (cpu_is_omap44xx()) {
102 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
103 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
104 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
105 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
106
107 return;
108 }
109 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
110 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
111 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
112 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
113 }
114
115 static void __init omap24xx_check_revision(void)
116 {
117 int i, j;
118 u32 idcode, prod_id;
119 u16 hawkeye;
120 u8 dev_type, rev;
121 struct omap_die_id odi;
122
123 idcode = read_tap_reg(OMAP_TAP_IDCODE);
124 prod_id = read_tap_reg(tap_prod_id);
125 hawkeye = (idcode >> 12) & 0xffff;
126 rev = (idcode >> 28) & 0x0f;
127 dev_type = (prod_id >> 16) & 0x0f;
128 omap_get_die_id(&odi);
129
130 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
131 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
132 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
133 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
134 odi.id_1, (odi.id_1 >> 28) & 0xf);
135 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
136 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
137 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
138 prod_id, dev_type);
139
140 /* Check hawkeye ids */
141 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
142 if (hawkeye == omap_ids[i].hawkeye)
143 break;
144 }
145
146 if (i == ARRAY_SIZE(omap_ids)) {
147 printk(KERN_ERR "Unknown OMAP CPU id\n");
148 return;
149 }
150
151 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
152 if (dev_type == omap_ids[j].dev)
153 break;
154 }
155
156 if (j == ARRAY_SIZE(omap_ids)) {
157 printk(KERN_ERR "Unknown OMAP device type. "
158 "Handling it as OMAP%04x\n",
159 omap_ids[i].type >> 16);
160 j = i;
161 }
162
163 pr_info("OMAP%04x", omap_rev() >> 16);
164 if ((omap_rev() >> 8) & 0x0f)
165 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
166 pr_info("\n");
167 }
168
169 #define OMAP3_CHECK_FEATURE(status,feat) \
170 if (((status & OMAP3_ ##feat## _MASK) \
171 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
172 omap_features |= OMAP3_HAS_ ##feat; \
173 }
174
175 static void __init omap3_check_features(void)
176 {
177 u32 status;
178
179 omap_features = 0;
180
181 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
182
183 OMAP3_CHECK_FEATURE(status, L2CACHE);
184 OMAP3_CHECK_FEATURE(status, IVA);
185 OMAP3_CHECK_FEATURE(status, SGX);
186 OMAP3_CHECK_FEATURE(status, NEON);
187 OMAP3_CHECK_FEATURE(status, ISP);
188 if (cpu_is_omap3630())
189 omap_features |= OMAP3_HAS_192MHZ_CLK;
190 if (!cpu_is_omap3505() && !cpu_is_omap3517())
191 omap_features |= OMAP3_HAS_IO_WAKEUP;
192
193 omap_features |= OMAP3_HAS_SDRC;
194
195 /*
196 * TODO: Get additional info (where applicable)
197 * e.g. Size of L2 cache.
198 */
199 }
200
201 static void __init omap4_check_features(void)
202 {
203 u32 si_type;
204
205 if (cpu_is_omap443x())
206 omap_features |= OMAP4_HAS_MPU_1GHZ;
207
208
209 if (cpu_is_omap446x()) {
210 si_type =
211 read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1);
212 switch ((si_type & (3 << 16)) >> 16) {
213 case 2:
214 /* High performance device */
215 omap_features |= OMAP4_HAS_MPU_1_5GHZ;
216 break;
217 case 1:
218 default:
219 /* Standard device */
220 omap_features |= OMAP4_HAS_MPU_1_2GHZ;
221 break;
222 }
223 }
224 }
225
226 static void __init ti816x_check_features(void)
227 {
228 omap_features = OMAP3_HAS_NEON;
229 }
230
231 static void __init omap3_check_revision(const char **cpu_rev)
232 {
233 u32 cpuid, idcode;
234 u16 hawkeye;
235 u8 rev;
236
237 /*
238 * We cannot access revision registers on ES1.0.
239 * If the processor type is Cortex-A8 and the revision is 0x0
240 * it means its Cortex r0p0 which is 3430 ES1.0.
241 */
242 cpuid = read_cpuid(CPUID_ID);
243 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
244 omap_revision = OMAP3430_REV_ES1_0;
245 *cpu_rev = "1.0";
246 return;
247 }
248
249 /*
250 * Detection for 34xx ES2.0 and above can be done with just
251 * hawkeye and rev. See TRM 1.5.2 Device Identification.
252 * Note that rev does not map directly to our defined processor
253 * revision numbers as ES1.0 uses value 0.
254 */
255 idcode = read_tap_reg(OMAP_TAP_IDCODE);
256 hawkeye = (idcode >> 12) & 0xffff;
257 rev = (idcode >> 28) & 0xff;
258
259 switch (hawkeye) {
260 case 0xb7ae:
261 /* Handle 34xx/35xx devices */
262 switch (rev) {
263 case 0: /* Take care of early samples */
264 case 1:
265 omap_revision = OMAP3430_REV_ES2_0;
266 *cpu_rev = "2.0";
267 break;
268 case 2:
269 omap_revision = OMAP3430_REV_ES2_1;
270 *cpu_rev = "2.1";
271 break;
272 case 3:
273 omap_revision = OMAP3430_REV_ES3_0;
274 *cpu_rev = "3.0";
275 break;
276 case 4:
277 omap_revision = OMAP3430_REV_ES3_1;
278 *cpu_rev = "3.1";
279 break;
280 case 7:
281 /* FALLTHROUGH */
282 default:
283 /* Use the latest known revision as default */
284 omap_revision = OMAP3430_REV_ES3_1_2;
285 *cpu_rev = "3.1.2";
286 }
287 break;
288 case 0xb868:
289 /*
290 * Handle OMAP/AM 3505/3517 devices
291 *
292 * Set the device to be OMAP3517 here. Actual device
293 * is identified later based on the features.
294 */
295 switch (rev) {
296 case 0:
297 omap_revision = OMAP3517_REV_ES1_0;
298 *cpu_rev = "1.0";
299 break;
300 case 1:
301 /* FALLTHROUGH */
302 default:
303 omap_revision = OMAP3517_REV_ES1_1;
304 *cpu_rev = "1.1";
305 }
306 break;
307 case 0xb891:
308 /* Handle 36xx devices */
309
310 switch(rev) {
311 case 0: /* Take care of early samples */
312 omap_revision = OMAP3630_REV_ES1_0;
313 *cpu_rev = "1.0";
314 break;
315 case 1:
316 omap_revision = OMAP3630_REV_ES1_1;
317 *cpu_rev = "1.1";
318 break;
319 case 2:
320 /* FALLTHROUGH */
321 default:
322 omap_revision = OMAP3630_REV_ES1_2;
323 *cpu_rev = "1.2";
324 }
325 break;
326 case 0xb81e:
327 switch (rev) {
328 case 0:
329 omap_revision = TI8168_REV_ES1_0;
330 *cpu_rev = "1.0";
331 break;
332 case 1:
333 /* FALLTHROUGH */
334 default:
335 omap_revision = TI8168_REV_ES1_1;
336 *cpu_rev = "1.1";
337 break;
338 }
339 break;
340 default:
341 /* Unknown default to latest silicon rev as default */
342 omap_revision = OMAP3630_REV_ES1_2;
343 *cpu_rev = "1.2";
344 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
345 }
346 }
347
348 static void __init omap4_check_revision(void)
349 {
350 u32 idcode;
351 u16 hawkeye;
352 u8 rev;
353
354 /*
355 * The IC rev detection is done with hawkeye and rev.
356 * Note that rev does not map directly to defined processor
357 * revision numbers as ES1.0 uses value 0.
358 */
359 idcode = read_tap_reg(OMAP_TAP_IDCODE);
360 hawkeye = (idcode >> 12) & 0xffff;
361 rev = (idcode >> 28) & 0xf;
362
363 /*
364 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
365 * Use ARM register to detect the correct ES version
366 */
367 if (!rev && (hawkeye != 0xb94e)) {
368 idcode = read_cpuid(CPUID_ID);
369 rev = (idcode & 0xf) - 1;
370 }
371
372 switch (hawkeye) {
373 case 0xb852:
374 switch (rev) {
375 case 0:
376 omap_revision = OMAP4430_REV_ES1_0;
377 break;
378 case 1:
379 default:
380 omap_revision = OMAP4430_REV_ES2_0;
381 }
382 break;
383 case 0xb95c:
384 switch (rev) {
385 case 3:
386 omap_revision = OMAP4430_REV_ES2_1;
387 break;
388 case 4:
389 default:
390 omap_revision = OMAP4430_REV_ES2_2;
391 }
392 break;
393 case 0xb94e:
394 switch (rev) {
395 case 0:
396 default:
397 omap_revision = OMAP4460_REV_ES1_0;
398 break;
399 }
400 break;
401 default:
402 /* Unknown default to latest silicon rev as default */
403 omap_revision = OMAP4430_REV_ES2_2;
404 }
405
406 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
407 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
408 }
409
410 #define OMAP3_SHOW_FEATURE(feat) \
411 if (omap3_has_ ##feat()) \
412 printk(#feat" ");
413
414 static void __init omap3_cpuinfo(const char *cpu_rev)
415 {
416 const char *cpu_name;
417
418 /*
419 * OMAP3430 and OMAP3530 are assumed to be same.
420 *
421 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
422 * on available features. Upon detection, update the CPU id
423 * and CPU class bits.
424 */
425 if (cpu_is_omap3630()) {
426 cpu_name = "OMAP3630";
427 } else if (cpu_is_omap3517()) {
428 /* AM35xx devices */
429 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
430 } else if (cpu_is_ti816x()) {
431 cpu_name = "TI816X";
432 } else if (omap3_has_iva() && omap3_has_sgx()) {
433 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
434 cpu_name = "OMAP3430/3530";
435 } else if (omap3_has_iva()) {
436 cpu_name = "OMAP3525";
437 } else if (omap3_has_sgx()) {
438 cpu_name = "OMAP3515";
439 } else {
440 cpu_name = "OMAP3503";
441 }
442
443 /* Print verbose information */
444 pr_info("%s ES%s (", cpu_name, cpu_rev);
445
446 OMAP3_SHOW_FEATURE(l2cache);
447 OMAP3_SHOW_FEATURE(iva);
448 OMAP3_SHOW_FEATURE(sgx);
449 OMAP3_SHOW_FEATURE(neon);
450 OMAP3_SHOW_FEATURE(isp);
451 OMAP3_SHOW_FEATURE(192mhz_clk);
452
453 printk(")\n");
454 }
455
456 /*
457 * Try to detect the exact revision of the omap we're running on
458 */
459 void __init omap2_check_revision(void)
460 {
461 const char *cpu_rev;
462
463 /*
464 * At this point we have an idea about the processor revision set
465 * earlier with omap2_set_globals_tap().
466 */
467 if (cpu_is_omap24xx()) {
468 omap24xx_check_revision();
469 } else if (cpu_is_omap34xx()) {
470 omap3_check_revision(&cpu_rev);
471
472 /* TI816X doesn't have feature register */
473 if (!cpu_is_ti816x())
474 omap3_check_features();
475 else
476 ti816x_check_features();
477
478 omap3_cpuinfo(cpu_rev);
479 return;
480 } else if (cpu_is_omap44xx()) {
481 omap4_check_revision();
482 omap4_check_features();
483 return;
484 } else {
485 pr_err("OMAP revision unknown, please fix!\n");
486 }
487 }
488
489 /*
490 * Set up things for map_io and processor detection later on. Gets called
491 * pretty much first thing from board init. For multi-omap, this gets
492 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
493 * detect the exact revision later on in omap2_detect_revision() once map_io
494 * is done.
495 */
496 void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
497 {
498 omap_revision = omap2_globals->class;
499 tap_base = omap2_globals->tap;
500
501 if (cpu_is_omap34xx())
502 tap_prod_id = 0x0210;
503 else
504 tap_prod_id = 0x0208;
505 }
This page took 0.052227 seconds and 5 git commands to generate.