OMAP: split plat-omap/common.c
[linux-2.6-block.git] / arch / arm / mach-omap2 / id.c
CommitLineData
1dbae815
TL
1/*
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 *
44169075
SS
9 * Copyright (C) 2009 Texas Instruments
10 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
11 *
1dbae815
TL
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.
15 */
16
1dbae815
TL
17#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/init.h>
fced80c7 20#include <linux/io.h>
1dbae815 21
0ba8b9b2 22#include <asm/cputype.h>
1dbae815 23
ce491cf8
TL
24#include <plat/common.h>
25#include <plat/control.h>
26#include <plat/cpu.h>
72d0f1c3 27
2e130fc3
KRC
28#include <mach/id.h>
29
097c584c 30static struct omap_chip_id omap_chip;
84a34344
LL
31static unsigned int omap_revision;
32
8384ce07 33u32 omap3_features;
84a34344
LL
34
35unsigned int omap_rev(void)
36{
37 return omap_revision;
38}
39EXPORT_SYMBOL(omap_rev);
097c584c
PW
40
41/**
42 * omap_chip_is - test whether currently running OMAP matches a chip type
43 * @oc: omap_chip_t to test against
44 *
45 * Test whether the currently-running OMAP chip matches the supplied
46 * chip type 'oc'. Returns 1 upon a match; 0 upon failure.
47 */
48int omap_chip_is(struct omap_chip_id oci)
49{
50 return (oci.oc & omap_chip.oc) ? 1 : 0;
51}
52EXPORT_SYMBOL(omap_chip_is);
53
8e25ad96
KH
54int omap_type(void)
55{
56 u32 val = 0;
57
edeae658 58 if (cpu_is_omap24xx()) {
8e25ad96 59 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
edeae658 60 } else if (cpu_is_omap34xx()) {
8e25ad96 61 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
737daa03 62 } else if (cpu_is_omap44xx()) {
dcf5ef3f 63 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
edeae658 64 } else {
8e25ad96
KH
65 pr_err("Cannot detect omap type!\n");
66 goto out;
67 }
68
69 val &= OMAP2_DEVICETYPE_MASK;
70 val >>= 8;
71
72out:
73 return val;
74}
75EXPORT_SYMBOL(omap_type);
76
77
a8823143 78/*----------------------------------------------------------------------------*/
097c584c 79
a8823143
TL
80#define OMAP_TAP_IDCODE 0x0204
81#define OMAP_TAP_DIE_ID_0 0x0218
82#define OMAP_TAP_DIE_ID_1 0x021C
83#define OMAP_TAP_DIE_ID_2 0x0220
84#define OMAP_TAP_DIE_ID_3 0x0224
097c584c 85
a8823143 86#define read_tap_reg(reg) __raw_readl(tap_base + (reg))
097c584c 87
a8823143
TL
88struct omap_id {
89 u16 hawkeye; /* Silicon type (Hawkeye id) */
90 u8 dev; /* Device type from production_id reg */
84a34344 91 u32 type; /* Combined type id copied to omap_revision */
a8823143 92};
097c584c 93
a8823143
TL
94/* Register values to detect the OMAP version */
95static struct omap_id omap_ids[] __initdata = {
96 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
97 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
98 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
99 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
100 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
101 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
102};
097c584c 103
a8823143
TL
104static void __iomem *tap_base;
105static u16 tap_prod_id;
1dbae815 106
2e130fc3
KRC
107void omap_get_die_id(struct omap_die_id *odi)
108{
109 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
110 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
111 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
112 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
113}
114
5ebc0d52 115static void __init omap24xx_check_revision(void)
1dbae815
TL
116{
117 int i, j;
a8823143 118 u32 idcode, prod_id;
1dbae815 119 u16 hawkeye;
a8823143 120 u8 dev_type, rev;
c46732bb 121 struct omap_die_id odi;
1dbae815
TL
122
123 idcode = read_tap_reg(OMAP_TAP_IDCODE);
0e564848 124 prod_id = read_tap_reg(tap_prod_id);
1dbae815
TL
125 hawkeye = (idcode >> 12) & 0xffff;
126 rev = (idcode >> 28) & 0x0f;
127 dev_type = (prod_id >> 16) & 0x0f;
c46732bb 128 omap_get_die_id(&odi);
1dbae815 129
097c584c
PW
130 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
131 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
c46732bb 132 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
097c584c 133 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
c46732bb
KRC
134 odi.id_1, (odi.id_1 >> 28) & 0xf);
135 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
136 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
097c584c
PW
137 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
138 prod_id, dev_type);
139
1dbae815
TL
140 /* Check hawkeye ids */
141 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
142 if (hawkeye == omap_ids[i].hawkeye)
143 break;
144 }
145
146 if (i == ARRAY_SIZE(omap_ids)) {
147 printk(KERN_ERR "Unknown OMAP CPU id\n");
148 return;
149 }
150
151 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
152 if (dev_type == omap_ids[j].dev)
153 break;
154 }
155
156 if (j == ARRAY_SIZE(omap_ids)) {
157 printk(KERN_ERR "Unknown OMAP device type. "
158 "Handling it as OMAP%04x\n",
159 omap_ids[i].type >> 16);
160 j = i;
161 }
1dbae815 162
84a34344
LL
163 pr_info("OMAP%04x", omap_rev() >> 16);
164 if ((omap_rev() >> 8) & 0x0f)
165 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
097c584c 166 pr_info("\n");
a8823143
TL
167}
168
8384ce07
SP
169#define OMAP3_CHECK_FEATURE(status,feat) \
170 if (((status & OMAP3_ ##feat## _MASK) \
171 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
172 omap3_features |= OMAP3_HAS_ ##feat; \
173 }
174
5ebc0d52 175static void __init omap3_check_features(void)
8384ce07
SP
176{
177 u32 status;
178
179 omap3_features = 0;
180
181 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
182
183 OMAP3_CHECK_FEATURE(status, L2CACHE);
184 OMAP3_CHECK_FEATURE(status, IVA);
185 OMAP3_CHECK_FEATURE(status, SGX);
186 OMAP3_CHECK_FEATURE(status, NEON);
187 OMAP3_CHECK_FEATURE(status, ISP);
7356f0b2
VB
188 if (cpu_is_omap3630())
189 omap3_features |= OMAP3_HAS_192MHZ_CLK;
ad0c63f1 190 if (!cpu_is_omap3505() && !cpu_is_omap3517())
191 omap3_features |= OMAP3_HAS_IO_WAKEUP;
8384ce07
SP
192
193 /*
194 * TODO: Get additional info (where applicable)
195 * e.g. Size of L2 cache.
196 */
197}
198
5ebc0d52 199static void __init omap3_check_revision(void)
a8823143
TL
200{
201 u32 cpuid, idcode;
202 u16 hawkeye;
203 u8 rev;
a8823143 204
e9acb9b6
TL
205 omap_chip.oc = CHIP_IS_OMAP3430;
206
a8823143
TL
207 /*
208 * We cannot access revision registers on ES1.0.
209 * If the processor type is Cortex-A8 and the revision is 0x0
210 * it means its Cortex r0p0 which is 3430 ES1.0.
211 */
212 cpuid = read_cpuid(CPUID_ID);
213 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
84a34344 214 omap_revision = OMAP3430_REV_ES1_0;
e9acb9b6 215 omap_chip.oc |= CHIP_IS_OMAP3430ES1;
048f4bd7 216 return;
a8823143
TL
217 }
218
219 /*
220 * Detection for 34xx ES2.0 and above can be done with just
221 * hawkeye and rev. See TRM 1.5.2 Device Identification.
222 * Note that rev does not map directly to our defined processor
223 * revision numbers as ES1.0 uses value 0.
224 */
225 idcode = read_tap_reg(OMAP_TAP_IDCODE);
226 hawkeye = (idcode >> 12) & 0xffff;
227 rev = (idcode >> 28) & 0xff;
097c584c 228
2456a10f
NM
229 switch (hawkeye) {
230 case 0xb7ae:
231 /* Handle 34xx/35xx devices */
a8823143 232 switch (rev) {
048f4bd7
SP
233 case 0: /* Take care of early samples */
234 case 1:
84a34344 235 omap_revision = OMAP3430_REV_ES2_0;
e9acb9b6 236 omap_chip.oc |= CHIP_IS_OMAP3430ES2;
a8823143
TL
237 break;
238 case 2:
84a34344 239 omap_revision = OMAP3430_REV_ES2_1;
e9acb9b6 240 omap_chip.oc |= CHIP_IS_OMAP3430ES2;
a8823143
TL
241 break;
242 case 3:
84a34344 243 omap_revision = OMAP3430_REV_ES3_0;
e9acb9b6 244 omap_chip.oc |= CHIP_IS_OMAP3430ES3_0;
a8823143 245 break;
187e688d 246 case 4:
e9acb9b6
TL
247 omap_revision = OMAP3430_REV_ES3_1;
248 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
249 break;
250 case 7:
edeae658 251 /* FALLTHROUGH */
a8823143
TL
252 default:
253 /* Use the latest known revision as default */
e9acb9b6
TL
254 omap_revision = OMAP3430_REV_ES3_1_2;
255
256 /* REVISIT: Add CHIP_IS_OMAP3430ES3_1_2? */
257 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
a8823143 258 }
2456a10f 259 break;
4cac6018
SP
260 case 0xb868:
261 /* Handle OMAP35xx/AM35xx devices
262 *
263 * Set the device to be OMAP3505 here. Actual device
264 * is identified later based on the features.
e9acb9b6
TL
265 *
266 * REVISIT: AM3505/AM3517 should have their own CHIP_IS
4cac6018
SP
267 */
268 omap_revision = OMAP3505_REV(rev);
e9acb9b6 269 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
4cac6018 270 break;
edeae658 271 case 0xb891:
b0a1a6ce
AG
272 /* Handle 36xx devices */
273 omap_chip.oc |= CHIP_IS_OMAP3630ES1;
274
275 switch(rev) {
276 case 0: /* Take care of early samples */
277 omap_revision = OMAP3630_REV_ES1_0;
278 break;
279 case 1:
280 omap_revision = OMAP3630_REV_ES1_1;
281 omap_chip.oc |= CHIP_IS_OMAP3630ES1_1;
282 break;
283 case 2:
284 default:
285 omap_revision = OMAP3630_REV_ES1_2;
286 omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
b0a1a6ce 287 }
77c0870c 288 break;
2456a10f
NM
289 default:
290 /* Unknown default to latest silicon rev as default*/
b0a1a6ce
AG
291 omap_revision = OMAP3630_REV_ES1_2;
292 omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
a8823143 293 }
1dbae815
TL
294}
295
5ebc0d52 296static void __init omap4_check_revision(void)
b570e0ec
SS
297{
298 u32 idcode;
299 u16 hawkeye;
300 u8 rev;
b570e0ec
SS
301
302 /*
303 * The IC rev detection is done with hawkeye and rev.
304 * Note that rev does not map directly to defined processor
305 * revision numbers as ES1.0 uses value 0.
306 */
307 idcode = read_tap_reg(OMAP_TAP_IDCODE);
308 hawkeye = (idcode >> 12) & 0xffff;
309 rev = (idcode >> 28) & 0xff;
310
ed6be0ba
SS
311 /*
312 * Few initial ES2.0 samples IDCODE is same as ES1.0
313 * Use ARM register to detect the correct ES version
314 */
315 if (!rev) {
316 idcode = read_cpuid(CPUID_ID);
317 rev = (idcode & 0xf) - 1;
318 }
319
320 switch (hawkeye) {
321 case 0xb852:
322 switch (rev) {
323 case 0:
324 omap_revision = OMAP4430_REV_ES1_0;
325 omap_chip.oc |= CHIP_IS_OMAP4430ES1;
326 break;
327 case 1:
328 omap_revision = OMAP4430_REV_ES2_0;
329 omap_chip.oc |= CHIP_IS_OMAP4430ES2;
330 break;
331 default:
332 omap_revision = OMAP4430_REV_ES2_0;
333 omap_chip.oc |= CHIP_IS_OMAP4430ES2;
334 }
335 break;
336 default:
337 /* Unknown default to latest silicon rev as default*/
338 omap_revision = OMAP4430_REV_ES2_0;
339 omap_chip.oc |= CHIP_IS_OMAP4430ES2;
b570e0ec
SS
340 }
341
ed6be0ba
SS
342 pr_info("OMAP%04x ES%d.0\n",
343 omap_rev() >> 16, ((omap_rev() >> 12) & 0xf) + 1);
b570e0ec
SS
344}
345
8384ce07 346#define OMAP3_SHOW_FEATURE(feat) \
cedf900d
KH
347 if (omap3_has_ ##feat()) \
348 printk(#feat" ");
8384ce07 349
5ebc0d52 350static void __init omap3_cpuinfo(void)
8384ce07 351{
048f4bd7
SP
352 u8 rev = GET_OMAP_REVISION();
353 char cpu_name[16], cpu_rev[16];
354
355 /* OMAP3430 and OMAP3530 are assumed to be same.
356 *
357 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
358 * on available features. Upon detection, update the CPU id
359 * and CPU class bits.
360 */
edeae658 361 if (cpu_is_omap3630()) {
4cac6018 362 strcpy(cpu_name, "OMAP3630");
edeae658 363 } else if (cpu_is_omap3505()) {
4cac6018
SP
364 /*
365 * AM35xx devices
366 */
367 if (omap3_has_sgx()) {
368 omap_revision = OMAP3517_REV(rev);
369 strcpy(cpu_name, "AM3517");
edeae658 370 } else {
4cac6018
SP
371 /* Already set in omap3_check_revision() */
372 strcpy(cpu_name, "AM3505");
373 }
edeae658
FB
374 } else if (omap3_has_iva() && omap3_has_sgx()) {
375 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
4cac6018 376 strcpy(cpu_name, "OMAP3430/3530");
0712fb39 377 } else if (omap3_has_iva()) {
048f4bd7 378 omap_revision = OMAP3525_REV(rev);
4cac6018 379 strcpy(cpu_name, "OMAP3525");
0712fb39 380 } else if (omap3_has_sgx()) {
048f4bd7 381 omap_revision = OMAP3515_REV(rev);
4cac6018 382 strcpy(cpu_name, "OMAP3515");
edeae658 383 } else {
048f4bd7 384 omap_revision = OMAP3503_REV(rev);
4cac6018 385 strcpy(cpu_name, "OMAP3503");
048f4bd7
SP
386 }
387
76abab21
SP
388 if (cpu_is_omap3630()) {
389 switch (rev) {
390 case OMAP_REVBITS_00:
391 strcpy(cpu_rev, "1.0");
392 break;
393 case OMAP_REVBITS_01:
394 strcpy(cpu_rev, "1.1");
395 break;
396 case OMAP_REVBITS_02:
397 /* FALLTHROUGH */
398 default:
399 /* Use the latest known revision as default */
400 strcpy(cpu_rev, "1.2");
401 }
402 } else if (cpu_is_omap3505() || cpu_is_omap3517()) {
403 switch (rev) {
404 case OMAP_REVBITS_00:
405 strcpy(cpu_rev, "1.0");
406 break;
407 case OMAP_REVBITS_01:
408 /* FALLTHROUGH */
409 default:
410 /* Use the latest known revision as default */
411 strcpy(cpu_rev, "1.1");
412 }
413 } else {
414 switch (rev) {
415 case OMAP_REVBITS_00:
416 strcpy(cpu_rev, "1.0");
417 break;
418 case OMAP_REVBITS_01:
419 strcpy(cpu_rev, "2.0");
420 break;
421 case OMAP_REVBITS_02:
422 strcpy(cpu_rev, "2.1");
423 break;
424 case OMAP_REVBITS_03:
425 strcpy(cpu_rev, "3.0");
426 break;
427 case OMAP_REVBITS_04:
428 strcpy(cpu_rev, "3.1");
429 break;
430 case OMAP_REVBITS_05:
431 /* FALLTHROUGH */
432 default:
433 /* Use the latest known revision as default */
434 strcpy(cpu_rev, "3.1.2");
435 }
048f4bd7
SP
436 }
437
edeae658 438 /* Print verbose information */
cedf900d 439 pr_info("%s ES%s (", cpu_name, cpu_rev);
048f4bd7 440
8384ce07
SP
441 OMAP3_SHOW_FEATURE(l2cache);
442 OMAP3_SHOW_FEATURE(iva);
443 OMAP3_SHOW_FEATURE(sgx);
444 OMAP3_SHOW_FEATURE(neon);
445 OMAP3_SHOW_FEATURE(isp);
7356f0b2 446 OMAP3_SHOW_FEATURE(192mhz_clk);
cedf900d
KH
447
448 printk(")\n");
8384ce07
SP
449}
450
a8823143
TL
451/*
452 * Try to detect the exact revision of the omap we're running on
453 */
5ba02dca
TL
454void __init omap2_check_revision(void)
455{
a8823143
TL
456 /*
457 * At this point we have an idea about the processor revision set
458 * earlier with omap2_set_globals_tap().
459 */
edeae658 460 if (cpu_is_omap24xx()) {
a8823143 461 omap24xx_check_revision();
edeae658 462 } else if (cpu_is_omap34xx()) {
8384ce07 463 omap3_check_revision();
05574bb2 464 omap3_check_features();
8384ce07 465 omap3_cpuinfo();
e9acb9b6 466 return;
edeae658 467 } else if (cpu_is_omap44xx()) {
b570e0ec 468 omap4_check_revision();
44169075 469 return;
edeae658 470 } else {
a8823143 471 pr_err("OMAP revision unknown, please fix!\n");
edeae658 472 }
a8823143
TL
473
474 /*
475 * OK, now we know the exact revision. Initialize omap_chip bits
476 * for powerdowmain and clockdomain code.
477 */
478 if (cpu_is_omap243x()) {
479 /* Currently only supports 2430ES2.1 and 2430-all */
480 omap_chip.oc |= CHIP_IS_OMAP2430;
e9acb9b6 481 return;
a8823143
TL
482 } else if (cpu_is_omap242x()) {
483 /* Currently only supports 2420ES2.1.1 and 2420-all */
484 omap_chip.oc |= CHIP_IS_OMAP2420;
e9acb9b6 485 return;
a8823143 486 }
e9acb9b6
TL
487
488 pr_err("Uninitialized omap_chip, please fix!\n");
5ba02dca
TL
489}
490
a8823143
TL
491/*
492 * Set up things for map_io and processor detection later on. Gets called
493 * pretty much first thing from board init. For multi-omap, this gets
494 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
495 * detect the exact revision later on in omap2_detect_revision() once map_io
496 * is done.
497 */
0e564848
TL
498void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
499{
84a34344 500 omap_revision = omap2_globals->class;
0e564848
TL
501 tap_base = omap2_globals->tap;
502
a8823143 503 if (cpu_is_omap34xx())
0e564848
TL
504 tap_prod_id = 0x0210;
505 else
506 tap_prod_id = 0x0208;
507}