blob: 94a51cfc64836318b3adcacee33703daf8321e0c [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
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 *
Nishant Kamate49c4d22011-02-17 09:55:03 -08009 * Copyright (C) 2009-11 Texas Instruments
Santosh Shilimkar44169072009-05-28 14:16:04 -070010 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
11 *
Tony Lindgren1dbae812005-11-10 14:26:51 +000012 * 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
Tony Lindgren1dbae812005-11-10 14:26:51 +000017#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000021
Russell King0ba8b9b2008-08-10 18:08:10 +010022#include <asm/cputype.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000023
Tony Lindgrence491cf2009-10-20 09:40:47 -070024#include <plat/common.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070025#include <plat/cpu.h>
Syed Mohammed Khasim72d0f1c2006-12-06 17:14:05 -080026
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +030027#include <mach/id.h>
28
Paul Walmsley4814ced2010-10-08 11:40:20 -060029#include "control.h"
30
Paul Walmsley097c5842008-07-03 12:24:45 +030031static struct omap_chip_id omap_chip;
Lauri Leukkunen84a34342008-12-10 17:36:31 -080032static unsigned int omap_revision;
33
Aneesh Vcc0170b2011-07-02 08:00:22 +053034u32 omap_features;
Lauri Leukkunen84a34342008-12-10 17:36:31 -080035
36unsigned int omap_rev(void)
37{
38 return omap_revision;
39}
40EXPORT_SYMBOL(omap_rev);
Paul Walmsley097c5842008-07-03 12:24:45 +030041
42/**
43 * omap_chip_is - test whether currently running OMAP matches a chip type
44 * @oc: omap_chip_t to test against
45 *
46 * Test whether the currently-running OMAP chip matches the supplied
47 * chip type 'oc'. Returns 1 upon a match; 0 upon failure.
48 */
49int omap_chip_is(struct omap_chip_id oci)
50{
51 return (oci.oc & omap_chip.oc) ? 1 : 0;
52}
53EXPORT_SYMBOL(omap_chip_is);
54
Kevin Hilman8e25ad92009-06-23 13:30:23 +030055int omap_type(void)
56{
57 u32 val = 0;
58
Felipe Balbiedeae652009-11-22 10:11:24 -080059 if (cpu_is_omap24xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030060 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
Felipe Balbiedeae652009-11-22 10:11:24 -080061 } else if (cpu_is_omap34xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030062 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
Santosh Shilimkar737daa02010-02-18 08:59:10 +000063 } else if (cpu_is_omap44xx()) {
Santosh Shilimkardcf5ef32010-09-27 14:02:58 -060064 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
Felipe Balbiedeae652009-11-22 10:11:24 -080065 } else {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030066 pr_err("Cannot detect omap type!\n");
67 goto out;
68 }
69
70 val &= OMAP2_DEVICETYPE_MASK;
71 val >>= 8;
72
73out:
74 return val;
75}
76EXPORT_SYMBOL(omap_type);
77
78
Tony Lindgrena8823142008-12-10 17:36:30 -080079/*----------------------------------------------------------------------------*/
Paul Walmsley097c5842008-07-03 12:24:45 +030080
Tony Lindgrena8823142008-12-10 17:36:30 -080081#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
Paul Walmsley097c5842008-07-03 12:24:45 +030086
Andy Greenb235e002011-03-12 22:50:54 +000087#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
91
Tony Lindgrena8823142008-12-10 17:36:30 -080092#define read_tap_reg(reg) __raw_readl(tap_base + (reg))
Tony Lindgren0e564842008-10-06 15:49:16 +030093
Tony Lindgrena8823142008-12-10 17:36:30 -080094struct omap_id {
95 u16 hawkeye; /* Silicon type (Hawkeye id) */
96 u8 dev; /* Device type from production_id reg */
Lauri Leukkunen84a34342008-12-10 17:36:31 -080097 u32 type; /* Combined type id copied to omap_revision */
Tony Lindgrena8823142008-12-10 17:36:30 -080098};
Tony Lindgren0e564842008-10-06 15:49:16 +030099
Tony Lindgrena8823142008-12-10 17:36:30 -0800100/* Register values to detect the OMAP version */
101static 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 },
108};
Paul Walmsley097c5842008-07-03 12:24:45 +0300109
Tony Lindgrena8823142008-12-10 17:36:30 -0800110static void __iomem *tap_base;
111static u16 tap_prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000112
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300113void omap_get_die_id(struct omap_die_id *odi)
114{
Andy Greenb235e002011-03-12 22:50:54 +0000115 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);
120
121 return;
122 }
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300123 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);
127}
128
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300129static void __init omap24xx_check_revision(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000130{
131 int i, j;
Tony Lindgrena8823142008-12-10 17:36:30 -0800132 u32 idcode, prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000133 u16 hawkeye;
Tony Lindgrena8823142008-12-10 17:36:30 -0800134 u8 dev_type, rev;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300135 struct omap_die_id odi;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000136
137 idcode = read_tap_reg(OMAP_TAP_IDCODE);
Tony Lindgren0e564842008-10-06 15:49:16 +0300138 prod_id = read_tap_reg(tap_prod_id);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000139 hawkeye = (idcode >> 12) & 0xffff;
140 rev = (idcode >> 28) & 0x0f;
141 dev_type = (prod_id >> 16) & 0x0f;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300142 omap_get_die_id(&odi);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000143
Paul Walmsley097c5842008-07-03 12:24:45 +0300144 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
145 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300146 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
Paul Walmsley097c5842008-07-03 12:24:45 +0300147 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300148 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);
Paul Walmsley097c5842008-07-03 12:24:45 +0300151 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
152 prod_id, dev_type);
153
Tony Lindgren1dbae812005-11-10 14:26:51 +0000154 /* Check hawkeye ids */
155 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
156 if (hawkeye == omap_ids[i].hawkeye)
157 break;
158 }
159
160 if (i == ARRAY_SIZE(omap_ids)) {
161 printk(KERN_ERR "Unknown OMAP CPU id\n");
162 return;
163 }
164
165 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
166 if (dev_type == omap_ids[j].dev)
167 break;
168 }
169
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);
174 j = i;
175 }
Tony Lindgren1dbae812005-11-10 14:26:51 +0000176
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800177 pr_info("OMAP%04x", omap_rev() >> 16);
178 if ((omap_rev() >> 8) & 0x0f)
179 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
Paul Walmsley097c5842008-07-03 12:24:45 +0300180 pr_info("\n");
Tony Lindgren1dbae812005-11-10 14:26:51 +0000181}
182
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800183#define OMAP3_CHECK_FEATURE(status,feat) \
184 if (((status & OMAP3_ ##feat## _MASK) \
185 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
Aneesh Vcc0170b2011-07-02 08:00:22 +0530186 omap_features |= OMAP3_HAS_ ##feat; \
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800187 }
188
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300189static void __init omap3_check_features(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800190{
191 u32 status;
192
Aneesh Vcc0170b2011-07-02 08:00:22 +0530193 omap_features = 0;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800194
195 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
196
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);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700202 if (cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530203 omap_features |= OMAP3_HAS_192MHZ_CLK;
stanley.miaoad0c63f2010-08-02 14:21:40 +0300204 if (!cpu_is_omap3505() && !cpu_is_omap3517())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530205 omap_features |= OMAP3_HAS_IO_WAKEUP;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800206
Aneesh Vcc0170b2011-07-02 08:00:22 +0530207 omap_features |= OMAP3_HAS_SDRC;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800208
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800209 /*
210 * TODO: Get additional info (where applicable)
211 * e.g. Size of L2 cache.
212 */
213}
214
Aneesh Vcc0170b2011-07-02 08:00:22 +0530215static void __init omap4_check_features(void)
216{
217 u32 si_type;
218
219 if (cpu_is_omap443x())
220 omap_features |= OMAP4_HAS_MPU_1GHZ;
221
222
223 if (cpu_is_omap446x()) {
224 si_type =
225 read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1);
226 switch ((si_type & (3 << 16)) >> 16) {
227 case 2:
228 /* High performance device */
229 omap_features |= OMAP4_HAS_MPU_1_5GHZ;
230 break;
231 case 1:
232 default:
233 /* Standard device */
234 omap_features |= OMAP4_HAS_MPU_1_2GHZ;
235 break;
236 }
237 }
238}
239
Hemant Pedanekar01001712011-02-16 08:31:39 -0800240static void __init ti816x_check_features(void)
241{
Aneesh Vcc0170b2011-07-02 08:00:22 +0530242 omap_features = OMAP3_HAS_NEON;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800243}
244
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300245static void __init omap3_check_revision(void)
Tony Lindgrena8823142008-12-10 17:36:30 -0800246{
247 u32 cpuid, idcode;
248 u16 hawkeye;
249 u8 rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800250
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800251 omap_chip.oc = CHIP_IS_OMAP3430;
252
Tony Lindgrena8823142008-12-10 17:36:30 -0800253 /*
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.
257 */
258 cpuid = read_cpuid(CPUID_ID);
259 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800260 omap_revision = OMAP3430_REV_ES1_0;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800261 omap_chip.oc |= CHIP_IS_OMAP3430ES1;
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800262 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800263 }
264
265 /*
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.
270 */
271 idcode = read_tap_reg(OMAP_TAP_IDCODE);
272 hawkeye = (idcode >> 12) & 0xffff;
273 rev = (idcode >> 28) & 0xff;
274
Nishanth Menon2456a102009-11-22 10:10:56 -0800275 switch (hawkeye) {
276 case 0xb7ae:
277 /* Handle 34xx/35xx devices */
Tony Lindgrena8823142008-12-10 17:36:30 -0800278 switch (rev) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800279 case 0: /* Take care of early samples */
280 case 1:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800281 omap_revision = OMAP3430_REV_ES2_0;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800282 omap_chip.oc |= CHIP_IS_OMAP3430ES2;
Tony Lindgrena8823142008-12-10 17:36:30 -0800283 break;
284 case 2:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800285 omap_revision = OMAP3430_REV_ES2_1;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800286 omap_chip.oc |= CHIP_IS_OMAP3430ES2;
Tony Lindgrena8823142008-12-10 17:36:30 -0800287 break;
288 case 3:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800289 omap_revision = OMAP3430_REV_ES3_0;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800290 omap_chip.oc |= CHIP_IS_OMAP3430ES3_0;
Tony Lindgrena8823142008-12-10 17:36:30 -0800291 break;
Tony Lindgren187e6882009-01-29 08:57:16 -0800292 case 4:
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800293 omap_revision = OMAP3430_REV_ES3_1;
294 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
295 break;
296 case 7:
Felipe Balbiedeae652009-11-22 10:11:24 -0800297 /* FALLTHROUGH */
Tony Lindgrena8823142008-12-10 17:36:30 -0800298 default:
299 /* Use the latest known revision as default */
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800300 omap_revision = OMAP3430_REV_ES3_1_2;
301
302 /* REVISIT: Add CHIP_IS_OMAP3430ES3_1_2? */
303 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
Tony Lindgrena8823142008-12-10 17:36:30 -0800304 }
Nishanth Menon2456a102009-11-22 10:10:56 -0800305 break;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800306 case 0xb868:
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600307 /*
308 * Handle OMAP/AM 3505/3517 devices
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800309 *
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600310 * Set the device to be OMAP3517 here. Actual device
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800311 * is identified later based on the features.
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800312 *
313 * REVISIT: AM3505/AM3517 should have their own CHIP_IS
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800314 */
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600315 switch (rev) {
316 case 0:
317 omap_revision = OMAP3517_REV_ES1_0;
318 break;
319 case 1:
320 /* FALLTHROUGH */
321 default:
322 omap_revision = OMAP3517_REV_ES1_1;
323 }
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800324 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800325 break;
Felipe Balbiedeae652009-11-22 10:11:24 -0800326 case 0xb891:
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000327 /* Handle 36xx devices */
328 omap_chip.oc |= CHIP_IS_OMAP3630ES1;
329
330 switch(rev) {
331 case 0: /* Take care of early samples */
332 omap_revision = OMAP3630_REV_ES1_0;
333 break;
334 case 1:
335 omap_revision = OMAP3630_REV_ES1_1;
336 omap_chip.oc |= CHIP_IS_OMAP3630ES1_1;
337 break;
338 case 2:
339 default:
340 omap_revision = OMAP3630_REV_ES1_2;
341 omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000342 }
Nishanth Menon77c08702010-08-16 09:21:19 +0300343 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800344 case 0xb81e:
345 omap_chip.oc = CHIP_IS_TI816X;
346
347 switch (rev) {
348 case 0:
349 omap_revision = TI8168_REV_ES1_0;
350 break;
351 case 1:
352 omap_revision = TI8168_REV_ES1_1;
353 break;
354 default:
355 omap_revision = TI8168_REV_ES1_1;
356 }
357 break;
Nishanth Menon2456a102009-11-22 10:10:56 -0800358 default:
359 /* Unknown default to latest silicon rev as default*/
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000360 omap_revision = OMAP3630_REV_ES1_2;
361 omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
Tony Lindgrena8823142008-12-10 17:36:30 -0800362 }
Tony Lindgrena8823142008-12-10 17:36:30 -0800363}
364
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300365static void __init omap4_check_revision(void)
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800366{
367 u32 idcode;
368 u16 hawkeye;
369 u8 rev;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800370
371 /*
372 * The IC rev detection is done with hawkeye and rev.
373 * Note that rev does not map directly to defined processor
374 * revision numbers as ES1.0 uses value 0.
375 */
376 idcode = read_tap_reg(OMAP_TAP_IDCODE);
377 hawkeye = (idcode >> 12) & 0xffff;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800378 rev = (idcode >> 28) & 0xf;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800379
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530380 /*
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530381 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530382 * Use ARM register to detect the correct ES version
383 */
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530384 if (!rev && (hawkeye != 0xb94e)) {
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530385 idcode = read_cpuid(CPUID_ID);
386 rev = (idcode & 0xf) - 1;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800387 }
388
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530389 switch (hawkeye) {
390 case 0xb852:
391 switch (rev) {
392 case 0:
393 omap_revision = OMAP4430_REV_ES1_0;
394 omap_chip.oc |= CHIP_IS_OMAP4430ES1;
395 break;
396 case 1:
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530397 default:
398 omap_revision = OMAP4430_REV_ES2_0;
399 omap_chip.oc |= CHIP_IS_OMAP4430ES2;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800400 }
401 break;
402 case 0xb95c:
403 switch (rev) {
404 case 3:
405 omap_revision = OMAP4430_REV_ES2_1;
406 omap_chip.oc |= CHIP_IS_OMAP4430ES2_1;
407 break;
408 case 4:
409 default:
410 omap_revision = OMAP4430_REV_ES2_2;
411 omap_chip.oc |= CHIP_IS_OMAP4430ES2_2;
412 }
413 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530414 case 0xb94e:
415 switch (rev) {
416 case 0:
417 default:
418 omap_revision = OMAP4460_REV_ES1_0;
419 omap_chip.oc |= CHIP_IS_OMAP4460ES1_0;
420 break;
421 }
422 break;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530423 default:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800424 /* Unknown default to latest silicon rev as default */
425 omap_revision = OMAP4430_REV_ES2_2;
426 omap_chip.oc |= CHIP_IS_OMAP4430ES2_2;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530427 }
428
Nishant Kamate49c4d22011-02-17 09:55:03 -0800429 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
430 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800431}
432
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800433#define OMAP3_SHOW_FEATURE(feat) \
Kevin Hilmancedf9002009-11-22 10:11:13 -0800434 if (omap3_has_ ##feat()) \
435 printk(#feat" ");
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800436
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300437static void __init omap3_cpuinfo(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800438{
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800439 u8 rev = GET_OMAP_REVISION();
Paul Walmsley91d92d62011-09-13 19:52:14 -0600440 const char *cpu_name, *cpu_rev;
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800441
Paul Walmsley91d92d62011-09-13 19:52:14 -0600442 /*
443 * OMAP3430 and OMAP3530 are assumed to be same.
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800444 *
445 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
446 * on available features. Upon detection, update the CPU id
447 * and CPU class bits.
448 */
Felipe Balbiedeae652009-11-22 10:11:24 -0800449 if (cpu_is_omap3630()) {
Paul Walmsley91d92d62011-09-13 19:52:14 -0600450 cpu_name = "OMAP3630";
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600451 } else if (cpu_is_omap3517()) {
Paul Walmsley91d92d62011-09-13 19:52:14 -0600452 /* AM35xx devices */
453 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
Hemant Pedanekar01001712011-02-16 08:31:39 -0800454 } else if (cpu_is_ti816x()) {
Paul Walmsley91d92d62011-09-13 19:52:14 -0600455 cpu_name = "TI816X";
Felipe Balbiedeae652009-11-22 10:11:24 -0800456 } else if (omap3_has_iva() && omap3_has_sgx()) {
457 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
Paul Walmsley91d92d62011-09-13 19:52:14 -0600458 cpu_name = "OMAP3430/3530";
Sergey Lapin0712fb32009-12-11 16:16:37 -0800459 } else if (omap3_has_iva()) {
Paul Walmsley91d92d62011-09-13 19:52:14 -0600460 cpu_name = "OMAP3525";
Sergey Lapin0712fb32009-12-11 16:16:37 -0800461 } else if (omap3_has_sgx()) {
Paul Walmsley91d92d62011-09-13 19:52:14 -0600462 cpu_name = "OMAP3515";
Felipe Balbiedeae652009-11-22 10:11:24 -0800463 } else {
Paul Walmsley91d92d62011-09-13 19:52:14 -0600464 cpu_name = "OMAP3503";
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800465 }
466
Hemant Pedanekar01001712011-02-16 08:31:39 -0800467 if (cpu_is_omap3630() || cpu_is_ti816x()) {
Sanjeev Premi76abab22010-10-01 16:35:24 -0700468 switch (rev) {
469 case OMAP_REVBITS_00:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600470 cpu_rev = "1.0";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700471 break;
472 case OMAP_REVBITS_01:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600473 cpu_rev = "1.1";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700474 break;
475 case OMAP_REVBITS_02:
476 /* FALLTHROUGH */
477 default:
478 /* Use the latest known revision as default */
Paul Walmsley91d92d62011-09-13 19:52:14 -0600479 cpu_rev = "1.2";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700480 }
481 } else if (cpu_is_omap3505() || cpu_is_omap3517()) {
482 switch (rev) {
483 case OMAP_REVBITS_00:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600484 cpu_rev = "1.0";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700485 break;
486 case OMAP_REVBITS_01:
487 /* FALLTHROUGH */
488 default:
489 /* Use the latest known revision as default */
Paul Walmsley91d92d62011-09-13 19:52:14 -0600490 cpu_rev = "1.1";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700491 }
492 } else {
493 switch (rev) {
494 case OMAP_REVBITS_00:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600495 cpu_rev = "1.0";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700496 break;
497 case OMAP_REVBITS_01:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600498 cpu_rev = "2.0";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700499 break;
500 case OMAP_REVBITS_02:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600501 cpu_rev = "2.1";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700502 break;
503 case OMAP_REVBITS_03:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600504 cpu_rev = "3.0";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700505 break;
506 case OMAP_REVBITS_04:
Paul Walmsley91d92d62011-09-13 19:52:14 -0600507 cpu_rev = "3.1";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700508 break;
509 case OMAP_REVBITS_05:
510 /* FALLTHROUGH */
511 default:
512 /* Use the latest known revision as default */
Paul Walmsley91d92d62011-09-13 19:52:14 -0600513 cpu_rev = "3.1.2";
Sanjeev Premi76abab22010-10-01 16:35:24 -0700514 }
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800515 }
516
Felipe Balbiedeae652009-11-22 10:11:24 -0800517 /* Print verbose information */
Kevin Hilmancedf9002009-11-22 10:11:13 -0800518 pr_info("%s ES%s (", cpu_name, cpu_rev);
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800519
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800520 OMAP3_SHOW_FEATURE(l2cache);
521 OMAP3_SHOW_FEATURE(iva);
522 OMAP3_SHOW_FEATURE(sgx);
523 OMAP3_SHOW_FEATURE(neon);
524 OMAP3_SHOW_FEATURE(isp);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700525 OMAP3_SHOW_FEATURE(192mhz_clk);
Kevin Hilmancedf9002009-11-22 10:11:13 -0800526
527 printk(")\n");
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800528}
529
Tony Lindgrena8823142008-12-10 17:36:30 -0800530/*
531 * Try to detect the exact revision of the omap we're running on
532 */
Tony Lindgren5ba02dc2008-12-10 17:36:30 -0800533void __init omap2_check_revision(void)
534{
Tony Lindgrena8823142008-12-10 17:36:30 -0800535 /*
536 * At this point we have an idea about the processor revision set
537 * earlier with omap2_set_globals_tap().
538 */
Felipe Balbiedeae652009-11-22 10:11:24 -0800539 if (cpu_is_omap24xx()) {
Tony Lindgrena8823142008-12-10 17:36:30 -0800540 omap24xx_check_revision();
Felipe Balbiedeae652009-11-22 10:11:24 -0800541 } else if (cpu_is_omap34xx()) {
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800542 omap3_check_revision();
Hemant Pedanekar01001712011-02-16 08:31:39 -0800543
544 /* TI816X doesn't have feature register */
545 if (!cpu_is_ti816x())
546 omap3_check_features();
547 else
548 ti816x_check_features();
549
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800550 omap3_cpuinfo();
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800551 return;
Felipe Balbiedeae652009-11-22 10:11:24 -0800552 } else if (cpu_is_omap44xx()) {
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800553 omap4_check_revision();
Aneesh Vcc0170b2011-07-02 08:00:22 +0530554 omap4_check_features();
Santosh Shilimkar44169072009-05-28 14:16:04 -0700555 return;
Felipe Balbiedeae652009-11-22 10:11:24 -0800556 } else {
Tony Lindgrena8823142008-12-10 17:36:30 -0800557 pr_err("OMAP revision unknown, please fix!\n");
Felipe Balbiedeae652009-11-22 10:11:24 -0800558 }
Tony Lindgrena8823142008-12-10 17:36:30 -0800559
560 /*
561 * OK, now we know the exact revision. Initialize omap_chip bits
562 * for powerdowmain and clockdomain code.
563 */
564 if (cpu_is_omap243x()) {
565 /* Currently only supports 2430ES2.1 and 2430-all */
566 omap_chip.oc |= CHIP_IS_OMAP2430;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800567 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800568 } else if (cpu_is_omap242x()) {
569 /* Currently only supports 2420ES2.1.1 and 2420-all */
570 omap_chip.oc |= CHIP_IS_OMAP2420;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800571 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800572 }
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800573
574 pr_err("Uninitialized omap_chip, please fix!\n");
Tony Lindgren5ba02dc2008-12-10 17:36:30 -0800575}
576
Tony Lindgrena8823142008-12-10 17:36:30 -0800577/*
578 * Set up things for map_io and processor detection later on. Gets called
579 * pretty much first thing from board init. For multi-omap, this gets
580 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
581 * detect the exact revision later on in omap2_detect_revision() once map_io
582 * is done.
583 */
Tony Lindgren0e564842008-10-06 15:49:16 +0300584void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
585{
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800586 omap_revision = omap2_globals->class;
Tony Lindgren0e564842008-10-06 15:49:16 +0300587 tap_base = omap2_globals->tap;
588
Tony Lindgrena8823142008-12-10 17:36:30 -0800589 if (cpu_is_omap34xx())
Tony Lindgren0e564842008-10-06 15:49:16 +0300590 tap_prod_id = 0x0210;
591 else
592 tap_prod_id = 0x0208;
593}