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>
31 #define OMAP4_SILICON_TYPE_STANDARD 0x01
32 #define OMAP4_SILICON_TYPE_PERFORMANCE 0x02
34 static unsigned int omap_revision;
35 static const char *cpu_rev;
38 unsigned int omap_rev(void)
42 EXPORT_SYMBOL(omap_rev);
48 if (cpu_is_omap24xx()) {
49 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
50 } else if (soc_is_am33xx()) {
51 val = omap_ctrl_readl(AM33XX_CONTROL_STATUS);
52 } else if (cpu_is_omap34xx()) {
53 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
54 } else if (cpu_is_omap44xx()) {
55 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
56 } else if (soc_is_omap54xx()) {
57 val = omap_ctrl_readl(OMAP5XXX_CONTROL_STATUS);
58 val &= OMAP5_DEVICETYPE_MASK;
62 pr_err("Cannot detect omap type!\n");
66 val &= OMAP2_DEVICETYPE_MASK;
72 EXPORT_SYMBOL(omap_type);
75 /*----------------------------------------------------------------------------*/
77 #define OMAP_TAP_IDCODE 0x0204
78 #define OMAP_TAP_DIE_ID_0 0x0218
79 #define OMAP_TAP_DIE_ID_1 0x021C
80 #define OMAP_TAP_DIE_ID_2 0x0220
81 #define OMAP_TAP_DIE_ID_3 0x0224
83 #define OMAP_TAP_DIE_ID_44XX_0 0x0200
84 #define OMAP_TAP_DIE_ID_44XX_1 0x0208
85 #define OMAP_TAP_DIE_ID_44XX_2 0x020c
86 #define OMAP_TAP_DIE_ID_44XX_3 0x0210
88 #define read_tap_reg(reg) __raw_readl(tap_base + (reg))
91 u16 hawkeye; /* Silicon type (Hawkeye id) */
92 u8 dev; /* Device type from production_id reg */
93 u32 type; /* Combined type id copied to omap_revision */
96 /* Register values to detect the OMAP version */
97 static struct omap_id omap_ids[] __initdata = {
98 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
99 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
100 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
101 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
102 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
103 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
106 static void __iomem *tap_base;
107 static u16 tap_prod_id;
109 void omap_get_die_id(struct omap_die_id *odi)
111 if (cpu_is_omap44xx() || soc_is_omap54xx()) {
112 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
113 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
114 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
115 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
119 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
120 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
121 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
122 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
125 void __init omap2xxx_check_revision(void)
131 struct omap_die_id odi;
133 idcode = read_tap_reg(OMAP_TAP_IDCODE);
134 prod_id = read_tap_reg(tap_prod_id);
135 hawkeye = (idcode >> 12) & 0xffff;
136 rev = (idcode >> 28) & 0x0f;
137 dev_type = (prod_id >> 16) & 0x0f;
138 omap_get_die_id(&odi);
140 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
141 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
142 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
143 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
144 odi.id_1, (odi.id_1 >> 28) & 0xf);
145 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
146 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
147 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
150 /* Check hawkeye ids */
151 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
152 if (hawkeye == omap_ids[i].hawkeye)
156 if (i == ARRAY_SIZE(omap_ids)) {
157 printk(KERN_ERR "Unknown OMAP CPU id\n");
161 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
162 if (dev_type == omap_ids[j].dev)
166 if (j == ARRAY_SIZE(omap_ids)) {
167 pr_err("Unknown OMAP device type. Handling it as OMAP%04x\n",
168 omap_ids[i].type >> 16);
172 pr_info("OMAP%04x", omap_rev() >> 16);
173 if ((omap_rev() >> 8) & 0x0f)
174 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
178 #define OMAP3_SHOW_FEATURE(feat) \
179 if (omap3_has_ ##feat()) \
182 static void __init omap3_cpuinfo(void)
184 const char *cpu_name;
187 * OMAP3430 and OMAP3530 are assumed to be same.
189 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
190 * on available features. Upon detection, update the CPU id
191 * and CPU class bits.
193 if (cpu_is_omap3630()) {
194 cpu_name = "OMAP3630";
195 } else if (soc_is_am35xx()) {
196 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
197 } else if (cpu_is_ti816x()) {
199 } else if (soc_is_am335x()) {
201 } else if (cpu_is_ti814x()) {
203 } else if (omap3_has_iva() && omap3_has_sgx()) {
204 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
205 cpu_name = "OMAP3430/3530";
206 } else if (omap3_has_iva()) {
207 cpu_name = "OMAP3525";
208 } else if (omap3_has_sgx()) {
209 cpu_name = "OMAP3515";
211 cpu_name = "OMAP3503";
214 /* Print verbose information */
215 pr_info("%s ES%s (", cpu_name, cpu_rev);
217 OMAP3_SHOW_FEATURE(l2cache);
218 OMAP3_SHOW_FEATURE(iva);
219 OMAP3_SHOW_FEATURE(sgx);
220 OMAP3_SHOW_FEATURE(neon);
221 OMAP3_SHOW_FEATURE(isp);
222 OMAP3_SHOW_FEATURE(192mhz_clk);
227 #define OMAP3_CHECK_FEATURE(status,feat) \
228 if (((status & OMAP3_ ##feat## _MASK) \
229 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
230 omap_features |= OMAP3_HAS_ ##feat; \
233 void __init omap3xxx_check_features(void)
239 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
241 OMAP3_CHECK_FEATURE(status, L2CACHE);
242 OMAP3_CHECK_FEATURE(status, IVA);
243 OMAP3_CHECK_FEATURE(status, SGX);
244 OMAP3_CHECK_FEATURE(status, NEON);
245 OMAP3_CHECK_FEATURE(status, ISP);
246 if (cpu_is_omap3630())
247 omap_features |= OMAP3_HAS_192MHZ_CLK;
248 if (cpu_is_omap3430() || cpu_is_omap3630())
249 omap_features |= OMAP3_HAS_IO_WAKEUP;
250 if (cpu_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
251 omap_rev() == OMAP3430_REV_ES3_1_2)
252 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
254 omap_features |= OMAP3_HAS_SDRC;
258 * - The am35x Chip ID register has bits 12, 7:5, and 3:2 marked as
259 * reserved and therefore return 0 when read. Unfortunately,
260 * OMAP3_CHECK_FEATURE() will interpret some of those zeroes to
261 * mean that a feature is present even though it isn't so clear
262 * the incorrectly set feature bits.
265 omap_features &= ~(OMAP3_HAS_IVA | OMAP3_HAS_ISP);
268 * TODO: Get additional info (where applicable)
269 * e.g. Size of L2 cache.
275 void __init omap4xxx_check_features(void)
280 (read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1) >> 16) & 0x03;
282 if (si_type == OMAP4_SILICON_TYPE_PERFORMANCE)
283 omap_features = OMAP4_HAS_PERF_SILICON;
286 void __init ti81xx_check_features(void)
288 omap_features = OMAP3_HAS_NEON;
292 void __init omap3xxx_check_revision(void)
299 * We cannot access revision registers on ES1.0.
300 * If the processor type is Cortex-A8 and the revision is 0x0
301 * it means its Cortex r0p0 which is 3430 ES1.0.
303 cpuid = read_cpuid(CPUID_ID);
304 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
305 omap_revision = OMAP3430_REV_ES1_0;
311 * Detection for 34xx ES2.0 and above can be done with just
312 * hawkeye and rev. See TRM 1.5.2 Device Identification.
313 * Note that rev does not map directly to our defined processor
314 * revision numbers as ES1.0 uses value 0.
316 idcode = read_tap_reg(OMAP_TAP_IDCODE);
317 hawkeye = (idcode >> 12) & 0xffff;
318 rev = (idcode >> 28) & 0xff;
322 /* Handle 34xx/35xx devices */
324 case 0: /* Take care of early samples */
326 omap_revision = OMAP3430_REV_ES2_0;
330 omap_revision = OMAP3430_REV_ES2_1;
334 omap_revision = OMAP3430_REV_ES3_0;
338 omap_revision = OMAP3430_REV_ES3_1;
344 /* Use the latest known revision as default */
345 omap_revision = OMAP3430_REV_ES3_1_2;
351 * Handle OMAP/AM 3505/3517 devices
353 * Set the device to be OMAP3517 here. Actual device
354 * is identified later based on the features.
358 omap_revision = AM35XX_REV_ES1_0;
364 omap_revision = AM35XX_REV_ES1_1;
369 /* Handle 36xx devices */
372 case 0: /* Take care of early samples */
373 omap_revision = OMAP3630_REV_ES1_0;
377 omap_revision = OMAP3630_REV_ES1_1;
383 omap_revision = OMAP3630_REV_ES1_2;
390 omap_revision = TI8168_REV_ES1_0;
396 omap_revision = TI8168_REV_ES1_1;
404 omap_revision = AM335X_REV_ES1_0;
410 omap_revision = AM335X_REV_ES2_0;
420 omap_revision = TI8148_REV_ES1_0;
424 omap_revision = TI8148_REV_ES2_0;
430 omap_revision = TI8148_REV_ES2_1;
436 /* Unknown default to latest silicon rev as default */
437 omap_revision = OMAP3630_REV_ES1_2;
439 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
443 void __init omap4xxx_check_revision(void)
450 * The IC rev detection is done with hawkeye and rev.
451 * Note that rev does not map directly to defined processor
452 * revision numbers as ES1.0 uses value 0.
454 idcode = read_tap_reg(OMAP_TAP_IDCODE);
455 hawkeye = (idcode >> 12) & 0xffff;
456 rev = (idcode >> 28) & 0xf;
459 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
460 * Use ARM register to detect the correct ES version
462 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
463 idcode = read_cpuid(CPUID_ID);
464 rev = (idcode & 0xf) - 1;
471 omap_revision = OMAP4430_REV_ES1_0;
475 omap_revision = OMAP4430_REV_ES2_0;
481 omap_revision = OMAP4430_REV_ES2_1;
484 omap_revision = OMAP4430_REV_ES2_2;
488 omap_revision = OMAP4430_REV_ES2_3;
494 omap_revision = OMAP4460_REV_ES1_0;
498 omap_revision = OMAP4460_REV_ES1_1;
506 omap_revision = OMAP4470_REV_ES1_0;
511 /* Unknown default to latest silicon rev as default */
512 omap_revision = OMAP4430_REV_ES2_3;
515 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
516 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
519 void __init omap5xxx_check_revision(void)
525 idcode = read_tap_reg(OMAP_TAP_IDCODE);
526 hawkeye = (idcode >> 12) & 0xffff;
527 rev = (idcode >> 28) & 0xff;
533 omap_revision = OMAP5430_REV_ES1_0;
541 omap_revision = OMAP5432_REV_ES1_0;
546 /* Unknown default to latest silicon rev as default*/
547 omap_revision = OMAP5430_REV_ES1_0;
550 pr_info("OMAP%04x ES%d.0\n",
551 omap_rev() >> 16, ((omap_rev() >> 12) & 0xf));
555 * Set up things for map_io and processor detection later on. Gets called
556 * pretty much first thing from board init. For multi-omap, this gets
557 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
558 * detect the exact revision later on in omap2_detect_revision() once map_io
561 void __init omap2_set_globals_tap(u32 class, void __iomem *tap)
563 omap_revision = class;
566 /* XXX What is this intended to do? */
567 if (cpu_is_omap34xx())
568 tap_prod_id = 0x0210;
570 tap_prod_id = 0x0208;