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>
21 #include <linux/random.h>
22 #include <linux/slab.h>
25 #include <linux/sys_soc.h>
28 #include <asm/cputype.h>
37 #define OMAP4_SILICON_TYPE_STANDARD 0x01
38 #define OMAP4_SILICON_TYPE_PERFORMANCE 0x02
40 #define OMAP_SOC_MAX_NAME_LENGTH 16
42 static unsigned int omap_revision;
43 static char soc_name[OMAP_SOC_MAX_NAME_LENGTH];
44 static char soc_rev[OMAP_SOC_MAX_NAME_LENGTH];
47 unsigned int omap_rev(void)
51 EXPORT_SYMBOL(omap_rev);
55 static u32 val = OMAP2_DEVICETYPE_MASK;
57 if (val < OMAP2_DEVICETYPE_MASK)
60 if (soc_is_omap24xx()) {
61 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
62 } else if (soc_is_ti81xx()) {
63 val = omap_ctrl_readl(TI81XX_CONTROL_STATUS);
64 } else if (soc_is_am33xx() || soc_is_am43xx()) {
65 val = omap_ctrl_readl(AM33XX_CONTROL_STATUS);
66 } else if (soc_is_omap34xx()) {
67 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
68 } else if (soc_is_omap44xx()) {
69 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
70 } else if (soc_is_omap54xx() || soc_is_dra7xx()) {
71 val = omap_ctrl_readl(OMAP5XXX_CONTROL_STATUS);
72 val &= OMAP5_DEVICETYPE_MASK;
76 pr_err("Cannot detect omap type!\n");
80 val &= OMAP2_DEVICETYPE_MASK;
86 EXPORT_SYMBOL(omap_type);
89 /*----------------------------------------------------------------------------*/
91 #define OMAP_TAP_IDCODE 0x0204
92 #define OMAP_TAP_DIE_ID_0 0x0218
93 #define OMAP_TAP_DIE_ID_1 0x021C
94 #define OMAP_TAP_DIE_ID_2 0x0220
95 #define OMAP_TAP_DIE_ID_3 0x0224
97 #define OMAP_TAP_DIE_ID_44XX_0 0x0200
98 #define OMAP_TAP_DIE_ID_44XX_1 0x0208
99 #define OMAP_TAP_DIE_ID_44XX_2 0x020c
100 #define OMAP_TAP_DIE_ID_44XX_3 0x0210
102 #define read_tap_reg(reg) readl_relaxed(tap_base + (reg))
105 u16 hawkeye; /* Silicon type (Hawkeye id) */
106 u8 dev; /* Device type from production_id reg */
107 u32 type; /* Combined type id copied to omap_revision */
110 /* Register values to detect the OMAP version */
111 static struct omap_id omap_ids[] __initdata = {
112 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
113 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
114 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
115 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
116 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
117 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
120 static void __iomem *tap_base;
121 static u16 tap_prod_id;
123 void omap_get_die_id(struct omap_die_id *odi)
125 if (soc_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
126 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
127 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
128 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
129 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
133 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
134 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
135 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
136 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
139 static int __init omap_feed_randpool(void)
141 struct omap_die_id odi;
143 /* Throw the die ID into the entropy pool at boot */
144 omap_get_die_id(&odi);
145 add_device_randomness(&odi, sizeof(odi));
148 omap_device_initcall(omap_feed_randpool);
150 void __init omap2xxx_check_revision(void)
156 struct omap_die_id odi;
158 idcode = read_tap_reg(OMAP_TAP_IDCODE);
159 prod_id = read_tap_reg(tap_prod_id);
160 hawkeye = (idcode >> 12) & 0xffff;
161 rev = (idcode >> 28) & 0x0f;
162 dev_type = (prod_id >> 16) & 0x0f;
163 omap_get_die_id(&odi);
165 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
166 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
167 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
168 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
169 odi.id_1, (odi.id_1 >> 28) & 0xf);
170 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
171 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
172 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
175 /* Check hawkeye ids */
176 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
177 if (hawkeye == omap_ids[i].hawkeye)
181 if (i == ARRAY_SIZE(omap_ids)) {
182 printk(KERN_ERR "Unknown OMAP CPU id\n");
186 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
187 if (dev_type == omap_ids[j].dev)
191 if (j == ARRAY_SIZE(omap_ids)) {
192 pr_err("Unknown OMAP device type. Handling it as OMAP%04x\n",
193 omap_ids[i].type >> 16);
197 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
198 sprintf(soc_rev, "ES%x", (omap_rev() >> 12) & 0xf);
200 pr_info("%s", soc_name);
201 if ((omap_rev() >> 8) & 0x0f)
202 pr_cont("%s", soc_rev);
206 #define OMAP3_SHOW_FEATURE(feat) \
207 if (omap3_has_ ##feat()) \
208 n += scnprintf(buf + n, sizeof(buf) - n, #feat " ");
210 static void __init omap3_cpuinfo(void)
212 const char *cpu_name;
216 memset(buf, 0, sizeof(buf));
219 * OMAP3430 and OMAP3530 are assumed to be same.
221 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
222 * on available features. Upon detection, update the CPU id
223 * and CPU class bits.
225 if (soc_is_omap3630()) {
226 if (omap3_has_iva() && omap3_has_sgx()) {
227 cpu_name = (omap3_has_isp()) ? "OMAP3630/DM3730" : "OMAP3621";
228 } else if (omap3_has_iva()) {
230 } else if (omap3_has_sgx()) {
231 cpu_name = "OMAP3615/AM3715";
233 cpu_name = (omap3_has_isp()) ? "AM3703" : "OMAP3611";
235 } else if (soc_is_am35xx()) {
236 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
237 } else if (soc_is_ti816x()) {
239 } else if (soc_is_am335x()) {
241 } else if (soc_is_am437x()) {
243 } else if (soc_is_ti814x()) {
245 } else if (omap3_has_iva() && omap3_has_sgx()) {
246 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
247 cpu_name = "OMAP3430/3530";
248 } else if (omap3_has_iva()) {
249 cpu_name = "OMAP3525";
250 } else if (omap3_has_sgx()) {
251 cpu_name = "OMAP3515";
253 cpu_name = "OMAP3503";
256 scnprintf(soc_name, sizeof(soc_name), "%s", cpu_name);
258 /* Print verbose information */
259 n += scnprintf(buf, sizeof(buf) - n, "%s %s (", soc_name, soc_rev);
261 OMAP3_SHOW_FEATURE(l2cache);
262 OMAP3_SHOW_FEATURE(iva);
263 OMAP3_SHOW_FEATURE(sgx);
264 OMAP3_SHOW_FEATURE(neon);
265 OMAP3_SHOW_FEATURE(isp);
266 OMAP3_SHOW_FEATURE(192mhz_clk);
267 if (*(buf + n - 1) == ' ')
269 n += scnprintf(buf + n, sizeof(buf) - n, ")\n");
273 #define OMAP3_CHECK_FEATURE(status,feat) \
274 if (((status & OMAP3_ ##feat## _MASK) \
275 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
276 omap_features |= OMAP3_HAS_ ##feat; \
279 void __init omap3xxx_check_features(void)
285 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
287 OMAP3_CHECK_FEATURE(status, L2CACHE);
288 OMAP3_CHECK_FEATURE(status, IVA);
289 OMAP3_CHECK_FEATURE(status, SGX);
290 OMAP3_CHECK_FEATURE(status, NEON);
291 OMAP3_CHECK_FEATURE(status, ISP);
292 if (soc_is_omap3630())
293 omap_features |= OMAP3_HAS_192MHZ_CLK;
294 if (soc_is_omap3430() || soc_is_omap3630())
295 omap_features |= OMAP3_HAS_IO_WAKEUP;
296 if (soc_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
297 omap_rev() == OMAP3430_REV_ES3_1_2)
298 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
300 omap_features |= OMAP3_HAS_SDRC;
304 * - The am35x Chip ID register has bits 12, 7:5, and 3:2 marked as
305 * reserved and therefore return 0 when read. Unfortunately,
306 * OMAP3_CHECK_FEATURE() will interpret some of those zeroes to
307 * mean that a feature is present even though it isn't so clear
308 * the incorrectly set feature bits.
311 omap_features &= ~(OMAP3_HAS_IVA | OMAP3_HAS_ISP);
314 * TODO: Get additional info (where applicable)
315 * e.g. Size of L2 cache.
321 void __init omap4xxx_check_features(void)
326 (read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1) >> 16) & 0x03;
328 if (si_type == OMAP4_SILICON_TYPE_PERFORMANCE)
329 omap_features = OMAP4_HAS_PERF_SILICON;
332 void __init ti81xx_check_features(void)
334 omap_features = OMAP3_HAS_NEON;
338 void __init am33xx_check_features(void)
342 omap_features = OMAP3_HAS_NEON;
344 status = omap_ctrl_readl(AM33XX_DEV_FEATURE);
345 if (status & AM33XX_SGX_MASK)
346 omap_features |= OMAP3_HAS_SGX;
351 void __init omap3xxx_check_revision(void)
359 * We cannot access revision registers on ES1.0.
360 * If the processor type is Cortex-A8 and the revision is 0x0
361 * it means its Cortex r0p0 which is 3430 ES1.0.
363 cpuid = read_cpuid_id();
364 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
365 omap_revision = OMAP3430_REV_ES1_0;
371 * Detection for 34xx ES2.0 and above can be done with just
372 * hawkeye and rev. See TRM 1.5.2 Device Identification.
373 * Note that rev does not map directly to our defined processor
374 * revision numbers as ES1.0 uses value 0.
376 idcode = read_tap_reg(OMAP_TAP_IDCODE);
377 hawkeye = (idcode >> 12) & 0xffff;
378 rev = (idcode >> 28) & 0xff;
382 /* Handle 34xx/35xx devices */
384 case 0: /* Take care of early samples */
386 omap_revision = OMAP3430_REV_ES2_0;
390 omap_revision = OMAP3430_REV_ES2_1;
394 omap_revision = OMAP3430_REV_ES3_0;
398 omap_revision = OMAP3430_REV_ES3_1;
404 /* Use the latest known revision as default */
405 omap_revision = OMAP3430_REV_ES3_1_2;
411 * Handle OMAP/AM 3505/3517 devices
413 * Set the device to be OMAP3517 here. Actual device
414 * is identified later based on the features.
418 omap_revision = AM35XX_REV_ES1_0;
424 omap_revision = AM35XX_REV_ES1_1;
429 /* Handle 36xx devices */
432 case 0: /* Take care of early samples */
433 omap_revision = OMAP3630_REV_ES1_0;
437 omap_revision = OMAP3630_REV_ES1_1;
443 omap_revision = OMAP3630_REV_ES1_2;
450 omap_revision = TI8168_REV_ES1_0;
454 omap_revision = TI8168_REV_ES1_1;
458 omap_revision = TI8168_REV_ES2_0;
464 omap_revision = TI8168_REV_ES2_1;
471 omap_revision = AM335X_REV_ES1_0;
475 omap_revision = AM335X_REV_ES2_0;
481 omap_revision = AM335X_REV_ES2_1;
489 omap_revision = AM437X_REV_ES1_0;
493 omap_revision = AM437X_REV_ES1_1;
499 omap_revision = AM437X_REV_ES1_2;
510 omap_revision = TI8148_REV_ES1_0;
514 omap_revision = TI8148_REV_ES2_0;
520 omap_revision = TI8148_REV_ES2_1;
526 /* Unknown default to latest silicon rev as default */
527 omap_revision = OMAP3630_REV_ES1_2;
529 pr_warn("Warning: unknown chip type: hawkeye %04x, assuming OMAP3630ES1.2\n",
532 sprintf(soc_rev, "ES%s", cpu_rev);
535 void __init omap4xxx_check_revision(void)
542 * The IC rev detection is done with hawkeye and rev.
543 * Note that rev does not map directly to defined processor
544 * revision numbers as ES1.0 uses value 0.
546 idcode = read_tap_reg(OMAP_TAP_IDCODE);
547 hawkeye = (idcode >> 12) & 0xffff;
548 rev = (idcode >> 28) & 0xf;
551 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
552 * Use ARM register to detect the correct ES version
554 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
555 idcode = read_cpuid_id();
556 rev = (idcode & 0xf) - 1;
563 omap_revision = OMAP4430_REV_ES1_0;
567 omap_revision = OMAP4430_REV_ES2_0;
573 omap_revision = OMAP4430_REV_ES2_1;
576 omap_revision = OMAP4430_REV_ES2_2;
580 omap_revision = OMAP4430_REV_ES2_3;
586 omap_revision = OMAP4460_REV_ES1_0;
590 omap_revision = OMAP4460_REV_ES1_1;
598 omap_revision = OMAP4470_REV_ES1_0;
603 /* Unknown default to latest silicon rev as default */
604 omap_revision = OMAP4430_REV_ES2_3;
607 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
608 sprintf(soc_rev, "ES%d.%d", (omap_rev() >> 12) & 0xf,
609 (omap_rev() >> 8) & 0xf);
610 pr_info("%s %s\n", soc_name, soc_rev);
613 void __init omap5xxx_check_revision(void)
619 idcode = read_tap_reg(OMAP_TAP_IDCODE);
620 hawkeye = (idcode >> 12) & 0xffff;
621 rev = (idcode >> 28) & 0xff;
626 /* No support for ES1.0 Test chip */
630 omap_revision = OMAP5430_REV_ES2_0;
637 /* No support for ES1.0 Test chip */
641 omap_revision = OMAP5432_REV_ES2_0;
646 /* Unknown default to latest silicon rev as default*/
647 omap_revision = OMAP5430_REV_ES2_0;
650 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
651 sprintf(soc_rev, "ES%d.0", (omap_rev() >> 12) & 0xf);
653 pr_info("%s %s\n", soc_name, soc_rev);
656 void __init dra7xxx_check_revision(void)
661 struct omap_die_id odi;
663 omap_get_die_id(&odi);
664 package = (odi.id_2 >> 16) & 0x3;
665 idcode = read_tap_reg(OMAP_TAP_IDCODE);
666 hawkeye = (idcode >> 12) & 0xffff;
667 rev = (idcode >> 28) & 0xff;
675 omap_revision = DRA762_ABZ_REV_ES1_0;
678 omap_revision = DRA762_ACD_REV_ES1_0;
681 omap_revision = DRA762_REV_ES1_0;
691 omap_revision = DRA752_REV_ES1_0;
694 omap_revision = DRA752_REV_ES1_1;
698 omap_revision = DRA752_REV_ES2_0;
706 omap_revision = DRA722_REV_ES1_0;
709 omap_revision = DRA722_REV_ES2_0;
713 omap_revision = DRA722_REV_ES2_1;
719 /* Unknown default to latest silicon rev as default*/
720 pr_warn("%s: unknown idcode=0x%08x (hawkeye=0x%08x,rev=0x%x)\n",
721 __func__, idcode, hawkeye, rev);
722 omap_revision = DRA752_REV_ES2_0;
725 sprintf(soc_name, "DRA%03x", omap_rev() >> 16);
726 sprintf(soc_rev, "ES%d.%d", (omap_rev() >> 12) & 0xf,
727 (omap_rev() >> 8) & 0xf);
729 pr_info("%s %s\n", soc_name, soc_rev);
733 * Set up things for map_io and processor detection later on. Gets called
734 * pretty much first thing from board init. For multi-omap, this gets
735 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
736 * detect the exact revision later on in omap2_detect_revision() once map_io
739 void __init omap2_set_globals_tap(u32 class, void __iomem *tap)
741 omap_revision = class;
744 /* XXX What is this intended to do? */
745 if (soc_is_omap34xx())
746 tap_prod_id = 0x0210;
748 tap_prod_id = 0x0208;
751 #ifdef CONFIG_SOC_BUS
753 static const char * const omap_types[] = {
754 [OMAP2_DEVICE_TYPE_TEST] = "TST",
755 [OMAP2_DEVICE_TYPE_EMU] = "EMU",
756 [OMAP2_DEVICE_TYPE_SEC] = "HS",
757 [OMAP2_DEVICE_TYPE_GP] = "GP",
758 [OMAP2_DEVICE_TYPE_BAD] = "BAD",
761 static const char * __init omap_get_family(void)
763 if (soc_is_omap24xx())
764 return kasprintf(GFP_KERNEL, "OMAP2");
765 else if (soc_is_omap34xx())
766 return kasprintf(GFP_KERNEL, "OMAP3");
767 else if (soc_is_omap44xx())
768 return kasprintf(GFP_KERNEL, "OMAP4");
769 else if (soc_is_omap54xx())
770 return kasprintf(GFP_KERNEL, "OMAP5");
771 else if (soc_is_am33xx() || soc_is_am335x())
772 return kasprintf(GFP_KERNEL, "AM33xx");
773 else if (soc_is_am43xx())
774 return kasprintf(GFP_KERNEL, "AM43xx");
775 else if (soc_is_dra7xx())
776 return kasprintf(GFP_KERNEL, "DRA7");
778 return kasprintf(GFP_KERNEL, "Unknown");
781 static ssize_t omap_get_type(struct device *dev,
782 struct device_attribute *attr,
785 return sprintf(buf, "%s\n", omap_types[omap_type()]);
788 static struct device_attribute omap_soc_attr =
789 __ATTR(type, S_IRUGO, omap_get_type, NULL);
791 void __init omap_soc_device_init(void)
793 struct device *parent;
794 struct soc_device *soc_dev;
795 struct soc_device_attribute *soc_dev_attr;
797 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
801 soc_dev_attr->machine = soc_name;
802 soc_dev_attr->family = omap_get_family();
803 if (!soc_dev_attr->family) {
807 soc_dev_attr->revision = soc_rev;
809 soc_dev = soc_device_register(soc_dev_attr);
810 if (IS_ERR(soc_dev)) {
811 kfree(soc_dev_attr->family);
816 parent = soc_device_to_device(soc_dev);
817 device_create_file(parent, &omap_soc_attr);
819 #endif /* CONFIG_SOC_BUS */