2 * linux/arch/arm/mach-omap2/id.c
4 * OMAP2 CPU identification code
6 * Copyright (C) 2005 Nokia Corporation
7 * Written by Tony Lindgren <tony@atomide.com>
9 * Copyright (C) 2009-11 Texas Instruments
10 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
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.
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
22 #include <asm/cputype.h>
24 #include <plat/common.h>
31 static struct omap_chip_id omap_chip
;
32 static unsigned int omap_revision
;
36 unsigned int omap_rev(void)
40 EXPORT_SYMBOL(omap_rev
);
43 * omap_chip_is - test whether currently running OMAP matches a chip type
44 * @oc: omap_chip_t to test against
46 * Test whether the currently-running OMAP chip matches the supplied
47 * chip type 'oc'. Returns 1 upon a match; 0 upon failure.
49 int omap_chip_is(struct omap_chip_id oci
)
51 return (oci
.oc
& omap_chip
.oc
) ? 1 : 0;
53 EXPORT_SYMBOL(omap_chip_is
);
59 if (cpu_is_omap24xx()) {
60 val
= omap_ctrl_readl(OMAP24XX_CONTROL_STATUS
);
61 } else if (cpu_is_omap34xx()) {
62 val
= omap_ctrl_readl(OMAP343X_CONTROL_STATUS
);
63 } else if (cpu_is_omap44xx()) {
64 val
= omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS
);
66 pr_err("Cannot detect omap type!\n");
70 val
&= OMAP2_DEVICETYPE_MASK
;
76 EXPORT_SYMBOL(omap_type
);
79 /*----------------------------------------------------------------------------*/
81 #define OMAP_TAP_IDCODE 0x0204
82 #define OMAP_TAP_DIE_ID_0 0x0218
83 #define OMAP_TAP_DIE_ID_1 0x021C
84 #define OMAP_TAP_DIE_ID_2 0x0220
85 #define OMAP_TAP_DIE_ID_3 0x0224
87 #define OMAP_TAP_DIE_ID_44XX_0 0x0200
88 #define OMAP_TAP_DIE_ID_44XX_1 0x0208
89 #define OMAP_TAP_DIE_ID_44XX_2 0x020c
90 #define OMAP_TAP_DIE_ID_44XX_3 0x0210
92 #define read_tap_reg(reg) __raw_readl(tap_base + (reg))
95 u16 hawkeye
; /* Silicon type (Hawkeye id) */
96 u8 dev
; /* Device type from production_id reg */
97 u32 type
; /* Combined type id copied to omap_revision */
100 /* Register values to detect the OMAP version */
101 static struct omap_id omap_ids
[] __initdata
= {
102 { .hawkeye
= 0xb5d9, .dev
= 0x0, .type
= 0x24200024 },
103 { .hawkeye
= 0xb5d9, .dev
= 0x1, .type
= 0x24201024 },
104 { .hawkeye
= 0xb5d9, .dev
= 0x2, .type
= 0x24202024 },
105 { .hawkeye
= 0xb5d9, .dev
= 0x4, .type
= 0x24220024 },
106 { .hawkeye
= 0xb5d9, .dev
= 0x8, .type
= 0x24230024 },
107 { .hawkeye
= 0xb68a, .dev
= 0x0, .type
= 0x24300024 },
110 static void __iomem
*tap_base
;
111 static u16 tap_prod_id
;
113 void omap_get_die_id(struct omap_die_id
*odi
)
115 if (cpu_is_omap44xx()) {
116 odi
->id_0
= read_tap_reg(OMAP_TAP_DIE_ID_44XX_0
);
117 odi
->id_1
= read_tap_reg(OMAP_TAP_DIE_ID_44XX_1
);
118 odi
->id_2
= read_tap_reg(OMAP_TAP_DIE_ID_44XX_2
);
119 odi
->id_3
= read_tap_reg(OMAP_TAP_DIE_ID_44XX_3
);
123 odi
->id_0
= read_tap_reg(OMAP_TAP_DIE_ID_0
);
124 odi
->id_1
= read_tap_reg(OMAP_TAP_DIE_ID_1
);
125 odi
->id_2
= read_tap_reg(OMAP_TAP_DIE_ID_2
);
126 odi
->id_3
= read_tap_reg(OMAP_TAP_DIE_ID_3
);
129 static void __init
omap24xx_check_revision(void)
135 struct omap_die_id odi
;
137 idcode
= read_tap_reg(OMAP_TAP_IDCODE
);
138 prod_id
= read_tap_reg(tap_prod_id
);
139 hawkeye
= (idcode
>> 12) & 0xffff;
140 rev
= (idcode
>> 28) & 0x0f;
141 dev_type
= (prod_id
>> 16) & 0x0f;
142 omap_get_die_id(&odi
);
144 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
145 idcode
, rev
, hawkeye
, (idcode
>> 1) & 0x7ff);
146 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi
.id_0
);
147 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
148 odi
.id_1
, (odi
.id_1
>> 28) & 0xf);
149 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi
.id_2
);
150 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi
.id_3
);
151 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
154 /* Check hawkeye ids */
155 for (i
= 0; i
< ARRAY_SIZE(omap_ids
); i
++) {
156 if (hawkeye
== omap_ids
[i
].hawkeye
)
160 if (i
== ARRAY_SIZE(omap_ids
)) {
161 printk(KERN_ERR
"Unknown OMAP CPU id\n");
165 for (j
= i
; j
< ARRAY_SIZE(omap_ids
); j
++) {
166 if (dev_type
== omap_ids
[j
].dev
)
170 if (j
== ARRAY_SIZE(omap_ids
)) {
171 printk(KERN_ERR
"Unknown OMAP device type. "
172 "Handling it as OMAP%04x\n",
173 omap_ids
[i
].type
>> 16);
177 pr_info("OMAP%04x", omap_rev() >> 16);
178 if ((omap_rev() >> 8) & 0x0f)
179 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
183 #define OMAP3_CHECK_FEATURE(status,feat) \
184 if (((status & OMAP3_ ##feat## _MASK) \
185 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
186 omap_features |= OMAP3_HAS_ ##feat; \
189 static void __init
omap3_check_features(void)
195 status
= omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS
);
197 OMAP3_CHECK_FEATURE(status
, L2CACHE
);
198 OMAP3_CHECK_FEATURE(status
, IVA
);
199 OMAP3_CHECK_FEATURE(status
, SGX
);
200 OMAP3_CHECK_FEATURE(status
, NEON
);
201 OMAP3_CHECK_FEATURE(status
, ISP
);
202 if (cpu_is_omap3630())
203 omap_features
|= OMAP3_HAS_192MHZ_CLK
;
204 if (!cpu_is_omap3505() && !cpu_is_omap3517())
205 omap_features
|= OMAP3_HAS_IO_WAKEUP
;
207 omap_features
|= OMAP3_HAS_SDRC
;
210 * TODO: Get additional info (where applicable)
211 * e.g. Size of L2 cache.
215 static void __init
omap4_check_features(void)
219 if (cpu_is_omap443x())
220 omap_features
|= OMAP4_HAS_MPU_1GHZ
;
223 if (cpu_is_omap446x()) {
225 read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1
);
226 switch ((si_type
& (3 << 16)) >> 16) {
228 /* High performance device */
229 omap_features
|= OMAP4_HAS_MPU_1_5GHZ
;
233 /* Standard device */
234 omap_features
|= OMAP4_HAS_MPU_1_2GHZ
;
240 static void __init
ti816x_check_features(void)
242 omap_features
= OMAP3_HAS_NEON
;
245 static void __init
omap3_check_revision(void)
251 omap_chip
.oc
= CHIP_IS_OMAP3430
;
254 * We cannot access revision registers on ES1.0.
255 * If the processor type is Cortex-A8 and the revision is 0x0
256 * it means its Cortex r0p0 which is 3430 ES1.0.
258 cpuid
= read_cpuid(CPUID_ID
);
259 if ((((cpuid
>> 4) & 0xfff) == 0xc08) && ((cpuid
& 0xf) == 0x0)) {
260 omap_revision
= OMAP3430_REV_ES1_0
;
261 omap_chip
.oc
|= CHIP_IS_OMAP3430ES1
;
266 * Detection for 34xx ES2.0 and above can be done with just
267 * hawkeye and rev. See TRM 1.5.2 Device Identification.
268 * Note that rev does not map directly to our defined processor
269 * revision numbers as ES1.0 uses value 0.
271 idcode
= read_tap_reg(OMAP_TAP_IDCODE
);
272 hawkeye
= (idcode
>> 12) & 0xffff;
273 rev
= (idcode
>> 28) & 0xff;
277 /* Handle 34xx/35xx devices */
279 case 0: /* Take care of early samples */
281 omap_revision
= OMAP3430_REV_ES2_0
;
282 omap_chip
.oc
|= CHIP_IS_OMAP3430ES2
;
285 omap_revision
= OMAP3430_REV_ES2_1
;
286 omap_chip
.oc
|= CHIP_IS_OMAP3430ES2
;
289 omap_revision
= OMAP3430_REV_ES3_0
;
290 omap_chip
.oc
|= CHIP_IS_OMAP3430ES3_0
;
293 omap_revision
= OMAP3430_REV_ES3_1
;
294 omap_chip
.oc
|= CHIP_IS_OMAP3430ES3_1
;
299 /* Use the latest known revision as default */
300 omap_revision
= OMAP3430_REV_ES3_1_2
;
302 /* REVISIT: Add CHIP_IS_OMAP3430ES3_1_2? */
303 omap_chip
.oc
|= CHIP_IS_OMAP3430ES3_1
;
307 /* Handle OMAP35xx/AM35xx devices
309 * Set the device to be OMAP3505 here. Actual device
310 * is identified later based on the features.
312 * REVISIT: AM3505/AM3517 should have their own CHIP_IS
314 omap_revision
= OMAP3505_REV(rev
);
315 omap_chip
.oc
|= CHIP_IS_OMAP3430ES3_1
;
318 /* Handle 36xx devices */
319 omap_chip
.oc
|= CHIP_IS_OMAP3630ES1
;
322 case 0: /* Take care of early samples */
323 omap_revision
= OMAP3630_REV_ES1_0
;
326 omap_revision
= OMAP3630_REV_ES1_1
;
327 omap_chip
.oc
|= CHIP_IS_OMAP3630ES1_1
;
331 omap_revision
= OMAP3630_REV_ES1_2
;
332 omap_chip
.oc
|= CHIP_IS_OMAP3630ES1_2
;
336 omap_chip
.oc
= CHIP_IS_TI816X
;
340 omap_revision
= TI8168_REV_ES1_0
;
343 omap_revision
= TI8168_REV_ES1_1
;
346 omap_revision
= TI8168_REV_ES1_1
;
350 /* Unknown default to latest silicon rev as default*/
351 omap_revision
= OMAP3630_REV_ES1_2
;
352 omap_chip
.oc
|= CHIP_IS_OMAP3630ES1_2
;
356 static void __init
omap4_check_revision(void)
363 * The IC rev detection is done with hawkeye and rev.
364 * Note that rev does not map directly to defined processor
365 * revision numbers as ES1.0 uses value 0.
367 idcode
= read_tap_reg(OMAP_TAP_IDCODE
);
368 hawkeye
= (idcode
>> 12) & 0xffff;
369 rev
= (idcode
>> 28) & 0xf;
372 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
373 * Use ARM register to detect the correct ES version
375 if (!rev
&& (hawkeye
!= 0xb94e)) {
376 idcode
= read_cpuid(CPUID_ID
);
377 rev
= (idcode
& 0xf) - 1;
384 omap_revision
= OMAP4430_REV_ES1_0
;
385 omap_chip
.oc
|= CHIP_IS_OMAP4430ES1
;
389 omap_revision
= OMAP4430_REV_ES2_0
;
390 omap_chip
.oc
|= CHIP_IS_OMAP4430ES2
;
396 omap_revision
= OMAP4430_REV_ES2_1
;
397 omap_chip
.oc
|= CHIP_IS_OMAP4430ES2_1
;
401 omap_revision
= OMAP4430_REV_ES2_2
;
402 omap_chip
.oc
|= CHIP_IS_OMAP4430ES2_2
;
409 omap_revision
= OMAP4460_REV_ES1_0
;
410 omap_chip
.oc
|= CHIP_IS_OMAP4460ES1_0
;
415 /* Unknown default to latest silicon rev as default */
416 omap_revision
= OMAP4430_REV_ES2_2
;
417 omap_chip
.oc
|= CHIP_IS_OMAP4430ES2_2
;
420 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
421 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
424 #define OMAP3_SHOW_FEATURE(feat) \
425 if (omap3_has_ ##feat()) \
428 static void __init
omap3_cpuinfo(void)
430 u8 rev
= GET_OMAP_REVISION();
431 char cpu_name
[16], cpu_rev
[16];
433 /* OMAP3430 and OMAP3530 are assumed to be same.
435 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
436 * on available features. Upon detection, update the CPU id
437 * and CPU class bits.
439 if (cpu_is_omap3630()) {
440 strcpy(cpu_name
, "OMAP3630");
441 } else if (cpu_is_omap3505()) {
445 if (omap3_has_sgx()) {
446 omap_revision
= OMAP3517_REV(rev
);
447 strcpy(cpu_name
, "AM3517");
449 /* Already set in omap3_check_revision() */
450 strcpy(cpu_name
, "AM3505");
452 } else if (cpu_is_ti816x()) {
453 strcpy(cpu_name
, "TI816X");
454 } else if (omap3_has_iva() && omap3_has_sgx()) {
455 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
456 strcpy(cpu_name
, "OMAP3430/3530");
457 } else if (omap3_has_iva()) {
458 omap_revision
= OMAP3525_REV(rev
);
459 strcpy(cpu_name
, "OMAP3525");
460 } else if (omap3_has_sgx()) {
461 omap_revision
= OMAP3515_REV(rev
);
462 strcpy(cpu_name
, "OMAP3515");
464 omap_revision
= OMAP3503_REV(rev
);
465 strcpy(cpu_name
, "OMAP3503");
468 if (cpu_is_omap3630() || cpu_is_ti816x()) {
470 case OMAP_REVBITS_00
:
471 strcpy(cpu_rev
, "1.0");
473 case OMAP_REVBITS_01
:
474 strcpy(cpu_rev
, "1.1");
476 case OMAP_REVBITS_02
:
479 /* Use the latest known revision as default */
480 strcpy(cpu_rev
, "1.2");
482 } else if (cpu_is_omap3505() || cpu_is_omap3517()) {
484 case OMAP_REVBITS_00
:
485 strcpy(cpu_rev
, "1.0");
487 case OMAP_REVBITS_01
:
490 /* Use the latest known revision as default */
491 strcpy(cpu_rev
, "1.1");
495 case OMAP_REVBITS_00
:
496 strcpy(cpu_rev
, "1.0");
498 case OMAP_REVBITS_01
:
499 strcpy(cpu_rev
, "2.0");
501 case OMAP_REVBITS_02
:
502 strcpy(cpu_rev
, "2.1");
504 case OMAP_REVBITS_03
:
505 strcpy(cpu_rev
, "3.0");
507 case OMAP_REVBITS_04
:
508 strcpy(cpu_rev
, "3.1");
510 case OMAP_REVBITS_05
:
513 /* Use the latest known revision as default */
514 strcpy(cpu_rev
, "3.1.2");
518 /* Print verbose information */
519 pr_info("%s ES%s (", cpu_name
, cpu_rev
);
521 OMAP3_SHOW_FEATURE(l2cache
);
522 OMAP3_SHOW_FEATURE(iva
);
523 OMAP3_SHOW_FEATURE(sgx
);
524 OMAP3_SHOW_FEATURE(neon
);
525 OMAP3_SHOW_FEATURE(isp
);
526 OMAP3_SHOW_FEATURE(192mhz_clk
);
532 * Try to detect the exact revision of the omap we're running on
534 void __init
omap2_check_revision(void)
537 * At this point we have an idea about the processor revision set
538 * earlier with omap2_set_globals_tap().
540 if (cpu_is_omap24xx()) {
541 omap24xx_check_revision();
542 } else if (cpu_is_omap34xx()) {
543 omap3_check_revision();
545 /* TI816X doesn't have feature register */
546 if (!cpu_is_ti816x())
547 omap3_check_features();
549 ti816x_check_features();
553 } else if (cpu_is_omap44xx()) {
554 omap4_check_revision();
555 omap4_check_features();
558 pr_err("OMAP revision unknown, please fix!\n");
562 * OK, now we know the exact revision. Initialize omap_chip bits
563 * for powerdowmain and clockdomain code.
565 if (cpu_is_omap243x()) {
566 /* Currently only supports 2430ES2.1 and 2430-all */
567 omap_chip
.oc
|= CHIP_IS_OMAP2430
;
569 } else if (cpu_is_omap242x()) {
570 /* Currently only supports 2420ES2.1.1 and 2420-all */
571 omap_chip
.oc
|= CHIP_IS_OMAP2420
;
575 pr_err("Uninitialized omap_chip, please fix!\n");
579 * Set up things for map_io and processor detection later on. Gets called
580 * pretty much first thing from board init. For multi-omap, this gets
581 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
582 * detect the exact revision later on in omap2_detect_revision() once map_io
585 void __init
omap2_set_globals_tap(struct omap_globals
*omap2_globals
)
587 omap_revision
= omap2_globals
->class;
588 tap_base
= omap2_globals
->tap
;
590 if (cpu_is_omap34xx())
591 tap_prod_id
= 0x0210;
593 tap_prod_id
= 0x0208;