blob: 3168b17bc264c604315a4d0a4f68e66dcbe1eecd [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
Sanjeev Premi8384ce02009-11-22 10:10:53 -080034u32 omap3_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
Tony Lindgrena8823142008-12-10 17:36:30 -080087#define read_tap_reg(reg) __raw_readl(tap_base + (reg))
Tony Lindgren0e564842008-10-06 15:49:16 +030088
Tony Lindgrena8823142008-12-10 17:36:30 -080089struct omap_id {
90 u16 hawkeye; /* Silicon type (Hawkeye id) */
91 u8 dev; /* Device type from production_id reg */
Lauri Leukkunen84a34342008-12-10 17:36:31 -080092 u32 type; /* Combined type id copied to omap_revision */
Tony Lindgrena8823142008-12-10 17:36:30 -080093};
Tony Lindgren0e564842008-10-06 15:49:16 +030094
Tony Lindgrena8823142008-12-10 17:36:30 -080095/* Register values to detect the OMAP version */
96static struct omap_id omap_ids[] __initdata = {
97 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
98 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
99 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
100 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
101 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
102 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
103};
Paul Walmsley097c5842008-07-03 12:24:45 +0300104
Tony Lindgrena8823142008-12-10 17:36:30 -0800105static void __iomem *tap_base;
106static u16 tap_prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000107
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300108void omap_get_die_id(struct omap_die_id *odi)
109{
110 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
111 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
112 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
113 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
114}
115
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300116static void __init omap24xx_check_revision(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000117{
118 int i, j;
Tony Lindgrena8823142008-12-10 17:36:30 -0800119 u32 idcode, prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000120 u16 hawkeye;
Tony Lindgrena8823142008-12-10 17:36:30 -0800121 u8 dev_type, rev;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300122 struct omap_die_id odi;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000123
124 idcode = read_tap_reg(OMAP_TAP_IDCODE);
Tony Lindgren0e564842008-10-06 15:49:16 +0300125 prod_id = read_tap_reg(tap_prod_id);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000126 hawkeye = (idcode >> 12) & 0xffff;
127 rev = (idcode >> 28) & 0x0f;
128 dev_type = (prod_id >> 16) & 0x0f;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300129 omap_get_die_id(&odi);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000130
Paul Walmsley097c5842008-07-03 12:24:45 +0300131 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
132 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300133 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
Paul Walmsley097c5842008-07-03 12:24:45 +0300134 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300135 odi.id_1, (odi.id_1 >> 28) & 0xf);
136 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
137 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
Paul Walmsley097c5842008-07-03 12:24:45 +0300138 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
139 prod_id, dev_type);
140
Tony Lindgren1dbae812005-11-10 14:26:51 +0000141 /* Check hawkeye ids */
142 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
143 if (hawkeye == omap_ids[i].hawkeye)
144 break;
145 }
146
147 if (i == ARRAY_SIZE(omap_ids)) {
148 printk(KERN_ERR "Unknown OMAP CPU id\n");
149 return;
150 }
151
152 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
153 if (dev_type == omap_ids[j].dev)
154 break;
155 }
156
157 if (j == ARRAY_SIZE(omap_ids)) {
158 printk(KERN_ERR "Unknown OMAP device type. "
159 "Handling it as OMAP%04x\n",
160 omap_ids[i].type >> 16);
161 j = i;
162 }
Tony Lindgren1dbae812005-11-10 14:26:51 +0000163
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800164 pr_info("OMAP%04x", omap_rev() >> 16);
165 if ((omap_rev() >> 8) & 0x0f)
166 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
Paul Walmsley097c5842008-07-03 12:24:45 +0300167 pr_info("\n");
Tony Lindgren1dbae812005-11-10 14:26:51 +0000168}
169
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800170#define OMAP3_CHECK_FEATURE(status,feat) \
171 if (((status & OMAP3_ ##feat## _MASK) \
172 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
173 omap3_features |= OMAP3_HAS_ ##feat; \
174 }
175
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300176static void __init omap3_check_features(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800177{
178 u32 status;
179
180 omap3_features = 0;
181
182 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
183
184 OMAP3_CHECK_FEATURE(status, L2CACHE);
185 OMAP3_CHECK_FEATURE(status, IVA);
186 OMAP3_CHECK_FEATURE(status, SGX);
187 OMAP3_CHECK_FEATURE(status, NEON);
188 OMAP3_CHECK_FEATURE(status, ISP);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700189 if (cpu_is_omap3630())
190 omap3_features |= OMAP3_HAS_192MHZ_CLK;
stanley.miaoad0c63f2010-08-02 14:21:40 +0300191 if (!cpu_is_omap3505() && !cpu_is_omap3517())
192 omap3_features |= OMAP3_HAS_IO_WAKEUP;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800193
Hemant Pedanekar01001712011-02-16 08:31:39 -0800194 omap3_features |= OMAP3_HAS_SDRC;
195
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800196 /*
197 * TODO: Get additional info (where applicable)
198 * e.g. Size of L2 cache.
199 */
200}
201
Hemant Pedanekar01001712011-02-16 08:31:39 -0800202static void __init ti816x_check_features(void)
203{
204 omap3_features = OMAP3_HAS_NEON;
205}
206
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300207static void __init omap3_check_revision(void)
Tony Lindgrena8823142008-12-10 17:36:30 -0800208{
209 u32 cpuid, idcode;
210 u16 hawkeye;
211 u8 rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800212
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800213 omap_chip.oc = CHIP_IS_OMAP3430;
214
Tony Lindgrena8823142008-12-10 17:36:30 -0800215 /*
216 * We cannot access revision registers on ES1.0.
217 * If the processor type is Cortex-A8 and the revision is 0x0
218 * it means its Cortex r0p0 which is 3430 ES1.0.
219 */
220 cpuid = read_cpuid(CPUID_ID);
221 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800222 omap_revision = OMAP3430_REV_ES1_0;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800223 omap_chip.oc |= CHIP_IS_OMAP3430ES1;
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800224 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800225 }
226
227 /*
228 * Detection for 34xx ES2.0 and above can be done with just
229 * hawkeye and rev. See TRM 1.5.2 Device Identification.
230 * Note that rev does not map directly to our defined processor
231 * revision numbers as ES1.0 uses value 0.
232 */
233 idcode = read_tap_reg(OMAP_TAP_IDCODE);
234 hawkeye = (idcode >> 12) & 0xffff;
235 rev = (idcode >> 28) & 0xff;
236
Nishanth Menon2456a102009-11-22 10:10:56 -0800237 switch (hawkeye) {
238 case 0xb7ae:
239 /* Handle 34xx/35xx devices */
Tony Lindgrena8823142008-12-10 17:36:30 -0800240 switch (rev) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800241 case 0: /* Take care of early samples */
242 case 1:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800243 omap_revision = OMAP3430_REV_ES2_0;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800244 omap_chip.oc |= CHIP_IS_OMAP3430ES2;
Tony Lindgrena8823142008-12-10 17:36:30 -0800245 break;
246 case 2:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800247 omap_revision = OMAP3430_REV_ES2_1;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800248 omap_chip.oc |= CHIP_IS_OMAP3430ES2;
Tony Lindgrena8823142008-12-10 17:36:30 -0800249 break;
250 case 3:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800251 omap_revision = OMAP3430_REV_ES3_0;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800252 omap_chip.oc |= CHIP_IS_OMAP3430ES3_0;
Tony Lindgrena8823142008-12-10 17:36:30 -0800253 break;
Tony Lindgren187e6882009-01-29 08:57:16 -0800254 case 4:
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800255 omap_revision = OMAP3430_REV_ES3_1;
256 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
257 break;
258 case 7:
Felipe Balbiedeae652009-11-22 10:11:24 -0800259 /* FALLTHROUGH */
Tony Lindgrena8823142008-12-10 17:36:30 -0800260 default:
261 /* Use the latest known revision as default */
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800262 omap_revision = OMAP3430_REV_ES3_1_2;
263
264 /* REVISIT: Add CHIP_IS_OMAP3430ES3_1_2? */
265 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
Tony Lindgrena8823142008-12-10 17:36:30 -0800266 }
Nishanth Menon2456a102009-11-22 10:10:56 -0800267 break;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800268 case 0xb868:
269 /* Handle OMAP35xx/AM35xx devices
270 *
271 * Set the device to be OMAP3505 here. Actual device
272 * is identified later based on the features.
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800273 *
274 * REVISIT: AM3505/AM3517 should have their own CHIP_IS
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800275 */
276 omap_revision = OMAP3505_REV(rev);
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800277 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800278 break;
Felipe Balbiedeae652009-11-22 10:11:24 -0800279 case 0xb891:
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000280 /* Handle 36xx devices */
281 omap_chip.oc |= CHIP_IS_OMAP3630ES1;
282
283 switch(rev) {
284 case 0: /* Take care of early samples */
285 omap_revision = OMAP3630_REV_ES1_0;
286 break;
287 case 1:
288 omap_revision = OMAP3630_REV_ES1_1;
289 omap_chip.oc |= CHIP_IS_OMAP3630ES1_1;
290 break;
291 case 2:
292 default:
293 omap_revision = OMAP3630_REV_ES1_2;
294 omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000295 }
Nishanth Menon77c08702010-08-16 09:21:19 +0300296 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800297 case 0xb81e:
298 omap_chip.oc = CHIP_IS_TI816X;
299
300 switch (rev) {
301 case 0:
302 omap_revision = TI8168_REV_ES1_0;
303 break;
304 case 1:
305 omap_revision = TI8168_REV_ES1_1;
306 break;
307 default:
308 omap_revision = TI8168_REV_ES1_1;
309 }
310 break;
Nishanth Menon2456a102009-11-22 10:10:56 -0800311 default:
312 /* Unknown default to latest silicon rev as default*/
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000313 omap_revision = OMAP3630_REV_ES1_2;
314 omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
Tony Lindgrena8823142008-12-10 17:36:30 -0800315 }
Tony Lindgrena8823142008-12-10 17:36:30 -0800316}
317
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300318static void __init omap4_check_revision(void)
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800319{
320 u32 idcode;
321 u16 hawkeye;
322 u8 rev;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800323
324 /*
325 * The IC rev detection is done with hawkeye and rev.
326 * Note that rev does not map directly to defined processor
327 * revision numbers as ES1.0 uses value 0.
328 */
329 idcode = read_tap_reg(OMAP_TAP_IDCODE);
330 hawkeye = (idcode >> 12) & 0xffff;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800331 rev = (idcode >> 28) & 0xf;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800332
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530333 /*
334 * Few initial ES2.0 samples IDCODE is same as ES1.0
335 * Use ARM register to detect the correct ES version
336 */
337 if (!rev) {
338 idcode = read_cpuid(CPUID_ID);
339 rev = (idcode & 0xf) - 1;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800340 }
341
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530342 switch (hawkeye) {
343 case 0xb852:
344 switch (rev) {
345 case 0:
346 omap_revision = OMAP4430_REV_ES1_0;
347 omap_chip.oc |= CHIP_IS_OMAP4430ES1;
348 break;
349 case 1:
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530350 default:
351 omap_revision = OMAP4430_REV_ES2_0;
352 omap_chip.oc |= CHIP_IS_OMAP4430ES2;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800353 }
354 break;
355 case 0xb95c:
356 switch (rev) {
357 case 3:
358 omap_revision = OMAP4430_REV_ES2_1;
359 omap_chip.oc |= CHIP_IS_OMAP4430ES2_1;
360 break;
361 case 4:
362 default:
363 omap_revision = OMAP4430_REV_ES2_2;
364 omap_chip.oc |= CHIP_IS_OMAP4430ES2_2;
365 }
366 break;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530367 default:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800368 /* Unknown default to latest silicon rev as default */
369 omap_revision = OMAP4430_REV_ES2_2;
370 omap_chip.oc |= CHIP_IS_OMAP4430ES2_2;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530371 }
372
Nishant Kamate49c4d22011-02-17 09:55:03 -0800373 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
374 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800375}
376
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800377#define OMAP3_SHOW_FEATURE(feat) \
Kevin Hilmancedf9002009-11-22 10:11:13 -0800378 if (omap3_has_ ##feat()) \
379 printk(#feat" ");
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800380
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300381static void __init omap3_cpuinfo(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800382{
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800383 u8 rev = GET_OMAP_REVISION();
384 char cpu_name[16], cpu_rev[16];
385
386 /* OMAP3430 and OMAP3530 are assumed to be same.
387 *
388 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
389 * on available features. Upon detection, update the CPU id
390 * and CPU class bits.
391 */
Felipe Balbiedeae652009-11-22 10:11:24 -0800392 if (cpu_is_omap3630()) {
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800393 strcpy(cpu_name, "OMAP3630");
Felipe Balbiedeae652009-11-22 10:11:24 -0800394 } else if (cpu_is_omap3505()) {
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800395 /*
396 * AM35xx devices
397 */
398 if (omap3_has_sgx()) {
399 omap_revision = OMAP3517_REV(rev);
400 strcpy(cpu_name, "AM3517");
Felipe Balbiedeae652009-11-22 10:11:24 -0800401 } else {
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800402 /* Already set in omap3_check_revision() */
403 strcpy(cpu_name, "AM3505");
404 }
Hemant Pedanekar01001712011-02-16 08:31:39 -0800405 } else if (cpu_is_ti816x()) {
406 strcpy(cpu_name, "TI816X");
Felipe Balbiedeae652009-11-22 10:11:24 -0800407 } else if (omap3_has_iva() && omap3_has_sgx()) {
408 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800409 strcpy(cpu_name, "OMAP3430/3530");
Sergey Lapin0712fb32009-12-11 16:16:37 -0800410 } else if (omap3_has_iva()) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800411 omap_revision = OMAP3525_REV(rev);
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800412 strcpy(cpu_name, "OMAP3525");
Sergey Lapin0712fb32009-12-11 16:16:37 -0800413 } else if (omap3_has_sgx()) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800414 omap_revision = OMAP3515_REV(rev);
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800415 strcpy(cpu_name, "OMAP3515");
Felipe Balbiedeae652009-11-22 10:11:24 -0800416 } else {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800417 omap_revision = OMAP3503_REV(rev);
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800418 strcpy(cpu_name, "OMAP3503");
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800419 }
420
Hemant Pedanekar01001712011-02-16 08:31:39 -0800421 if (cpu_is_omap3630() || cpu_is_ti816x()) {
Sanjeev Premi76abab22010-10-01 16:35:24 -0700422 switch (rev) {
423 case OMAP_REVBITS_00:
424 strcpy(cpu_rev, "1.0");
425 break;
426 case OMAP_REVBITS_01:
427 strcpy(cpu_rev, "1.1");
428 break;
429 case OMAP_REVBITS_02:
430 /* FALLTHROUGH */
431 default:
432 /* Use the latest known revision as default */
433 strcpy(cpu_rev, "1.2");
434 }
435 } else if (cpu_is_omap3505() || cpu_is_omap3517()) {
436 switch (rev) {
437 case OMAP_REVBITS_00:
438 strcpy(cpu_rev, "1.0");
439 break;
440 case OMAP_REVBITS_01:
441 /* FALLTHROUGH */
442 default:
443 /* Use the latest known revision as default */
444 strcpy(cpu_rev, "1.1");
445 }
446 } else {
447 switch (rev) {
448 case OMAP_REVBITS_00:
449 strcpy(cpu_rev, "1.0");
450 break;
451 case OMAP_REVBITS_01:
452 strcpy(cpu_rev, "2.0");
453 break;
454 case OMAP_REVBITS_02:
455 strcpy(cpu_rev, "2.1");
456 break;
457 case OMAP_REVBITS_03:
458 strcpy(cpu_rev, "3.0");
459 break;
460 case OMAP_REVBITS_04:
461 strcpy(cpu_rev, "3.1");
462 break;
463 case OMAP_REVBITS_05:
464 /* FALLTHROUGH */
465 default:
466 /* Use the latest known revision as default */
467 strcpy(cpu_rev, "3.1.2");
468 }
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800469 }
470
Felipe Balbiedeae652009-11-22 10:11:24 -0800471 /* Print verbose information */
Kevin Hilmancedf9002009-11-22 10:11:13 -0800472 pr_info("%s ES%s (", cpu_name, cpu_rev);
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800473
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800474 OMAP3_SHOW_FEATURE(l2cache);
475 OMAP3_SHOW_FEATURE(iva);
476 OMAP3_SHOW_FEATURE(sgx);
477 OMAP3_SHOW_FEATURE(neon);
478 OMAP3_SHOW_FEATURE(isp);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700479 OMAP3_SHOW_FEATURE(192mhz_clk);
Kevin Hilmancedf9002009-11-22 10:11:13 -0800480
481 printk(")\n");
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800482}
483
Tony Lindgrena8823142008-12-10 17:36:30 -0800484/*
485 * Try to detect the exact revision of the omap we're running on
486 */
Tony Lindgren5ba02dc2008-12-10 17:36:30 -0800487void __init omap2_check_revision(void)
488{
Tony Lindgrena8823142008-12-10 17:36:30 -0800489 /*
490 * At this point we have an idea about the processor revision set
491 * earlier with omap2_set_globals_tap().
492 */
Felipe Balbiedeae652009-11-22 10:11:24 -0800493 if (cpu_is_omap24xx()) {
Tony Lindgrena8823142008-12-10 17:36:30 -0800494 omap24xx_check_revision();
Felipe Balbiedeae652009-11-22 10:11:24 -0800495 } else if (cpu_is_omap34xx()) {
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800496 omap3_check_revision();
Hemant Pedanekar01001712011-02-16 08:31:39 -0800497
498 /* TI816X doesn't have feature register */
499 if (!cpu_is_ti816x())
500 omap3_check_features();
501 else
502 ti816x_check_features();
503
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800504 omap3_cpuinfo();
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800505 return;
Felipe Balbiedeae652009-11-22 10:11:24 -0800506 } else if (cpu_is_omap44xx()) {
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800507 omap4_check_revision();
Santosh Shilimkar44169072009-05-28 14:16:04 -0700508 return;
Felipe Balbiedeae652009-11-22 10:11:24 -0800509 } else {
Tony Lindgrena8823142008-12-10 17:36:30 -0800510 pr_err("OMAP revision unknown, please fix!\n");
Felipe Balbiedeae652009-11-22 10:11:24 -0800511 }
Tony Lindgrena8823142008-12-10 17:36:30 -0800512
513 /*
514 * OK, now we know the exact revision. Initialize omap_chip bits
515 * for powerdowmain and clockdomain code.
516 */
517 if (cpu_is_omap243x()) {
518 /* Currently only supports 2430ES2.1 and 2430-all */
519 omap_chip.oc |= CHIP_IS_OMAP2430;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800520 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800521 } else if (cpu_is_omap242x()) {
522 /* Currently only supports 2420ES2.1.1 and 2420-all */
523 omap_chip.oc |= CHIP_IS_OMAP2420;
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800524 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800525 }
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800526
527 pr_err("Uninitialized omap_chip, please fix!\n");
Tony Lindgren5ba02dc2008-12-10 17:36:30 -0800528}
529
Tony Lindgrena8823142008-12-10 17:36:30 -0800530/*
531 * Set up things for map_io and processor detection later on. Gets called
532 * pretty much first thing from board init. For multi-omap, this gets
533 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
534 * detect the exact revision later on in omap2_detect_revision() once map_io
535 * is done.
536 */
Tony Lindgren0e564842008-10-06 15:49:16 +0300537void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
538{
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800539 omap_revision = omap2_globals->class;
Tony Lindgren0e564842008-10-06 15:49:16 +0300540 tap_base = omap2_globals->tap;
541
Tony Lindgrena8823142008-12-10 17:36:30 -0800542 if (cpu_is_omap34xx())
Tony Lindgren0e564842008-10-06 15:49:16 +0300543 tap_prod_id = 0x0210;
544 else
545 tap_prod_id = 0x0208;
546}