ARM: OMAP: TI816X: add powerdomains for TI816x
[deliverable/linux.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 *
e49c4d27 9 * Copyright (C) 2009-11 Texas Instruments
44169075
SS
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>
6770b211
RB
21#include <linux/slab.h>
22
23#ifdef CONFIG_SOC_BUS
24#include <linux/sys_soc.h>
25#endif
1dbae815 26
0ba8b9b2 27#include <asm/cputype.h>
1dbae815 28
4e65331c 29#include "common.h"
72d0f1c3 30
4952af43 31#include "id.h"
2e130fc3 32
dbc04161 33#include "soc.h"
4814ced5
PW
34#include "control.h"
35
42a1cc9c
IK
36#define OMAP4_SILICON_TYPE_STANDARD 0x01
37#define OMAP4_SILICON_TYPE_PERFORMANCE 0x02
38
f9d41eef
RB
39#define OMAP_SOC_MAX_NAME_LENGTH 16
40
84a34344 41static unsigned int omap_revision;
f9d41eef
RB
42static char soc_name[OMAP_SOC_MAX_NAME_LENGTH];
43static char soc_rev[OMAP_SOC_MAX_NAME_LENGTH];
cc0170b2 44u32 omap_features;
84a34344
LL
45
46unsigned int omap_rev(void)
47{
48 return omap_revision;
49}
50EXPORT_SYMBOL(omap_rev);
097c584c 51
8e25ad96
KH
52int omap_type(void)
53{
54 u32 val = 0;
55
edeae658 56 if (cpu_is_omap24xx()) {
8e25ad96 57 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
49cc485d 58 } else if (soc_is_am33xx() || soc_is_am43xx()) {
fb3cfb1f 59 val = omap_ctrl_readl(AM33XX_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);
b13e80a8
S
64 } else if (soc_is_omap54xx()) {
65 val = omap_ctrl_readl(OMAP5XXX_CONTROL_STATUS);
66 val &= OMAP5_DEVICETYPE_MASK;
67 val >>= 6;
68 goto out;
edeae658 69 } else {
8e25ad96
KH
70 pr_err("Cannot detect omap type!\n");
71 goto out;
72 }
73
74 val &= OMAP2_DEVICETYPE_MASK;
75 val >>= 8;
76
77out:
78 return val;
79}
80EXPORT_SYMBOL(omap_type);
81
82
a8823143 83/*----------------------------------------------------------------------------*/
097c584c 84
a8823143
TL
85#define OMAP_TAP_IDCODE 0x0204
86#define OMAP_TAP_DIE_ID_0 0x0218
87#define OMAP_TAP_DIE_ID_1 0x021C
88#define OMAP_TAP_DIE_ID_2 0x0220
89#define OMAP_TAP_DIE_ID_3 0x0224
097c584c 90
b235e007
AG
91#define OMAP_TAP_DIE_ID_44XX_0 0x0200
92#define OMAP_TAP_DIE_ID_44XX_1 0x0208
93#define OMAP_TAP_DIE_ID_44XX_2 0x020c
94#define OMAP_TAP_DIE_ID_44XX_3 0x0210
95
a8823143 96#define read_tap_reg(reg) __raw_readl(tap_base + (reg))
097c584c 97
a8823143
TL
98struct omap_id {
99 u16 hawkeye; /* Silicon type (Hawkeye id) */
100 u8 dev; /* Device type from production_id reg */
84a34344 101 u32 type; /* Combined type id copied to omap_revision */
a8823143 102};
097c584c 103
a8823143
TL
104/* Register values to detect the OMAP version */
105static struct omap_id omap_ids[] __initdata = {
106 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
107 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
108 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
109 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
110 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
111 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
112};
097c584c 113
a8823143
TL
114static void __iomem *tap_base;
115static u16 tap_prod_id;
1dbae815 116
2e130fc3
KRC
117void omap_get_die_id(struct omap_die_id *odi)
118{
b13e80a8 119 if (cpu_is_omap44xx() || soc_is_omap54xx()) {
b235e007
AG
120 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
121 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
122 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
123 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
124
125 return;
126 }
2e130fc3
KRC
127 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
128 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
129 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
130 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
131}
132
4de34f35 133void __init omap2xxx_check_revision(void)
1dbae815
TL
134{
135 int i, j;
a8823143 136 u32 idcode, prod_id;
1dbae815 137 u16 hawkeye;
a8823143 138 u8 dev_type, rev;
c46732bb 139 struct omap_die_id odi;
1dbae815
TL
140
141 idcode = read_tap_reg(OMAP_TAP_IDCODE);
0e564848 142 prod_id = read_tap_reg(tap_prod_id);
1dbae815
TL
143 hawkeye = (idcode >> 12) & 0xffff;
144 rev = (idcode >> 28) & 0x0f;
145 dev_type = (prod_id >> 16) & 0x0f;
c46732bb 146 omap_get_die_id(&odi);
1dbae815 147
097c584c
PW
148 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
149 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
c46732bb 150 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
097c584c 151 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
c46732bb
KRC
152 odi.id_1, (odi.id_1 >> 28) & 0xf);
153 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
154 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
097c584c
PW
155 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
156 prod_id, dev_type);
157
1dbae815
TL
158 /* Check hawkeye ids */
159 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
160 if (hawkeye == omap_ids[i].hawkeye)
161 break;
162 }
163
164 if (i == ARRAY_SIZE(omap_ids)) {
165 printk(KERN_ERR "Unknown OMAP CPU id\n");
166 return;
167 }
168
169 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
170 if (dev_type == omap_ids[j].dev)
171 break;
172 }
173
174 if (j == ARRAY_SIZE(omap_ids)) {
7852ec05
PW
175 pr_err("Unknown OMAP device type. Handling it as OMAP%04x\n",
176 omap_ids[i].type >> 16);
1dbae815
TL
177 j = i;
178 }
1dbae815 179
f9d41eef
RB
180 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
181 sprintf(soc_rev, "ES%x", (omap_rev() >> 12) & 0xf);
182
183 pr_info("%s", soc_name);
84a34344 184 if ((omap_rev() >> 8) & 0x0f)
f9d41eef 185 pr_info("%s", soc_rev);
097c584c 186 pr_info("\n");
a8823143
TL
187}
188
50a01e64
VH
189#define OMAP3_SHOW_FEATURE(feat) \
190 if (omap3_has_ ##feat()) \
191 printk(#feat" ");
192
193static void __init omap3_cpuinfo(void)
194{
195 const char *cpu_name;
196
197 /*
198 * OMAP3430 and OMAP3530 are assumed to be same.
199 *
200 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
201 * on available features. Upon detection, update the CPU id
202 * and CPU class bits.
203 */
204 if (cpu_is_omap3630()) {
205 cpu_name = "OMAP3630";
68a88b98 206 } else if (soc_is_am35xx()) {
50a01e64
VH
207 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
208 } else if (cpu_is_ti816x()) {
209 cpu_name = "TI816X";
971b8a9c 210 } else if (soc_is_am335x()) {
50a01e64 211 cpu_name = "AM335X";
c04bbaa4
AM
212 } else if (soc_is_am437x()) {
213 cpu_name = "AM437x";
50a01e64
VH
214 } else if (cpu_is_ti814x()) {
215 cpu_name = "TI814X";
216 } else if (omap3_has_iva() && omap3_has_sgx()) {
217 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
218 cpu_name = "OMAP3430/3530";
219 } else if (omap3_has_iva()) {
220 cpu_name = "OMAP3525";
221 } else if (omap3_has_sgx()) {
222 cpu_name = "OMAP3515";
223 } else {
224 cpu_name = "OMAP3503";
225 }
226
f9d41eef
RB
227 sprintf(soc_name, "%s", cpu_name);
228
50a01e64 229 /* Print verbose information */
f9d41eef 230 pr_info("%s %s (", soc_name, soc_rev);
50a01e64
VH
231
232 OMAP3_SHOW_FEATURE(l2cache);
233 OMAP3_SHOW_FEATURE(iva);
234 OMAP3_SHOW_FEATURE(sgx);
235 OMAP3_SHOW_FEATURE(neon);
236 OMAP3_SHOW_FEATURE(isp);
237 OMAP3_SHOW_FEATURE(192mhz_clk);
238
239 printk(")\n");
240}
241
8384ce07
SP
242#define OMAP3_CHECK_FEATURE(status,feat) \
243 if (((status & OMAP3_ ##feat## _MASK) \
244 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
cc0170b2 245 omap_features |= OMAP3_HAS_ ##feat; \
8384ce07
SP
246 }
247
4de34f35 248void __init omap3xxx_check_features(void)
8384ce07
SP
249{
250 u32 status;
251
cc0170b2 252 omap_features = 0;
8384ce07
SP
253
254 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
255
256 OMAP3_CHECK_FEATURE(status, L2CACHE);
257 OMAP3_CHECK_FEATURE(status, IVA);
258 OMAP3_CHECK_FEATURE(status, SGX);
259 OMAP3_CHECK_FEATURE(status, NEON);
260 OMAP3_CHECK_FEATURE(status, ISP);
7356f0b2 261 if (cpu_is_omap3630())
cc0170b2 262 omap_features |= OMAP3_HAS_192MHZ_CLK;
b02b9172 263 if (cpu_is_omap3430() || cpu_is_omap3630())
cc0170b2 264 omap_features |= OMAP3_HAS_IO_WAKEUP;
b02b9172
PW
265 if (cpu_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
266 omap_rev() == OMAP3430_REV_ES3_1_2)
267 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
8384ce07 268
cc0170b2 269 omap_features |= OMAP3_HAS_SDRC;
01001712 270
1ce02996
MG
271 /*
272 * am35x fixups:
273 * - The am35x Chip ID register has bits 12, 7:5, and 3:2 marked as
274 * reserved and therefore return 0 when read. Unfortunately,
275 * OMAP3_CHECK_FEATURE() will interpret some of those zeroes to
276 * mean that a feature is present even though it isn't so clear
277 * the incorrectly set feature bits.
278 */
279 if (soc_is_am35xx())
280 omap_features &= ~(OMAP3_HAS_IVA | OMAP3_HAS_ISP);
281
8384ce07
SP
282 /*
283 * TODO: Get additional info (where applicable)
284 * e.g. Size of L2 cache.
285 */
4de34f35
VH
286
287 omap3_cpuinfo();
8384ce07
SP
288}
289
4de34f35 290void __init omap4xxx_check_features(void)
cc0170b2
A
291{
292 u32 si_type;
293
42a1cc9c
IK
294 si_type =
295 (read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1) >> 16) & 0x03;
cc0170b2 296
42a1cc9c
IK
297 if (si_type == OMAP4_SILICON_TYPE_PERFORMANCE)
298 omap_features = OMAP4_HAS_PERF_SILICON;
cc0170b2
A
299}
300
4de34f35 301void __init ti81xx_check_features(void)
01001712 302{
cc0170b2 303 omap_features = OMAP3_HAS_NEON;
4de34f35 304 omap3_cpuinfo();
01001712
HP
305}
306
4de34f35 307void __init omap3xxx_check_revision(void)
a8823143 308{
f9d41eef 309 const char *cpu_rev;
a8823143
TL
310 u32 cpuid, idcode;
311 u16 hawkeye;
312 u8 rev;
a8823143
TL
313
314 /*
315 * We cannot access revision registers on ES1.0.
316 * If the processor type is Cortex-A8 and the revision is 0x0
317 * it means its Cortex r0p0 which is 3430 ES1.0.
318 */
ac52e83f 319 cpuid = read_cpuid_id();
a8823143 320 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
84a34344 321 omap_revision = OMAP3430_REV_ES1_0;
50a01e64 322 cpu_rev = "1.0";
048f4bd7 323 return;
a8823143
TL
324 }
325
326 /*
327 * Detection for 34xx ES2.0 and above can be done with just
328 * hawkeye and rev. See TRM 1.5.2 Device Identification.
329 * Note that rev does not map directly to our defined processor
330 * revision numbers as ES1.0 uses value 0.
331 */
332 idcode = read_tap_reg(OMAP_TAP_IDCODE);
333 hawkeye = (idcode >> 12) & 0xffff;
334 rev = (idcode >> 28) & 0xff;
097c584c 335
2456a10f
NM
336 switch (hawkeye) {
337 case 0xb7ae:
338 /* Handle 34xx/35xx devices */
a8823143 339 switch (rev) {
048f4bd7
SP
340 case 0: /* Take care of early samples */
341 case 1:
84a34344 342 omap_revision = OMAP3430_REV_ES2_0;
50a01e64 343 cpu_rev = "2.0";
a8823143
TL
344 break;
345 case 2:
84a34344 346 omap_revision = OMAP3430_REV_ES2_1;
50a01e64 347 cpu_rev = "2.1";
a8823143
TL
348 break;
349 case 3:
84a34344 350 omap_revision = OMAP3430_REV_ES3_0;
50a01e64 351 cpu_rev = "3.0";
a8823143 352 break;
187e688d 353 case 4:
e9acb9b6 354 omap_revision = OMAP3430_REV_ES3_1;
50a01e64 355 cpu_rev = "3.1";
e9acb9b6
TL
356 break;
357 case 7:
edeae658 358 /* FALLTHROUGH */
a8823143
TL
359 default:
360 /* Use the latest known revision as default */
e9acb9b6 361 omap_revision = OMAP3430_REV_ES3_1_2;
50a01e64 362 cpu_rev = "3.1.2";
a8823143 363 }
2456a10f 364 break;
4cac6018 365 case 0xb868:
1f1b0353
PW
366 /*
367 * Handle OMAP/AM 3505/3517 devices
4cac6018 368 *
1f1b0353 369 * Set the device to be OMAP3517 here. Actual device
4cac6018
SP
370 * is identified later based on the features.
371 */
9ed2ba7a
PW
372 switch (rev) {
373 case 0:
68a88b98 374 omap_revision = AM35XX_REV_ES1_0;
50a01e64 375 cpu_rev = "1.0";
9ed2ba7a
PW
376 break;
377 case 1:
378 /* FALLTHROUGH */
379 default:
68a88b98 380 omap_revision = AM35XX_REV_ES1_1;
50a01e64 381 cpu_rev = "1.1";
9ed2ba7a 382 }
4cac6018 383 break;
edeae658 384 case 0xb891:
b0a1a6ce 385 /* Handle 36xx devices */
b0a1a6ce
AG
386
387 switch(rev) {
388 case 0: /* Take care of early samples */
389 omap_revision = OMAP3630_REV_ES1_0;
50a01e64 390 cpu_rev = "1.0";
b0a1a6ce
AG
391 break;
392 case 1:
393 omap_revision = OMAP3630_REV_ES1_1;
50a01e64 394 cpu_rev = "1.1";
b0a1a6ce
AG
395 break;
396 case 2:
51ec811a 397 /* FALLTHROUGH */
b0a1a6ce 398 default:
51ec811a 399 omap_revision = OMAP3630_REV_ES1_2;
50a01e64 400 cpu_rev = "1.2";
b0a1a6ce 401 }
77c0870c 402 break;
01001712 403 case 0xb81e:
01001712
HP
404 switch (rev) {
405 case 0:
406 omap_revision = TI8168_REV_ES1_0;
50a01e64 407 cpu_rev = "1.0";
01001712
HP
408 break;
409 case 1:
51ec811a 410 omap_revision = TI8168_REV_ES1_1;
50a01e64 411 cpu_rev = "1.1";
3b32b7d6 412 break;
a5f93d9d
AM
413 case 2:
414 omap_revision = TI8168_REV_ES2_0;
415 cpu_rev = "2.0";
416 break;
417 case 3:
418 /* FALLTHROUGH */
419 default:
420 omap_revision = TI8168_REV_ES2_1;
421 cpu_rev = "2.1";
01001712
HP
422 }
423 break;
1e6cb146 424 case 0xb944:
5af044f4
AC
425 switch (rev) {
426 case 0:
427 omap_revision = AM335X_REV_ES1_0;
428 cpu_rev = "1.0";
429 break;
430 case 1:
5af044f4
AC
431 omap_revision = AM335X_REV_ES2_0;
432 cpu_rev = "2.0";
433 break;
d240ef30
VH
434 case 2:
435 /* FALLTHROUGH */
436 default:
437 omap_revision = AM335X_REV_ES2_1;
438 cpu_rev = "2.1";
439 break;
5af044f4 440 }
c2d13554 441 break;
c04bbaa4
AM
442 case 0xb98c:
443 omap_revision = AM437X_REV_ES1_0;
444 cpu_rev = "1.0";
445 break;
4390f5b2
HP
446 case 0xb8f2:
447 switch (rev) {
448 case 0:
449 /* FALLTHROUGH */
450 case 1:
451 omap_revision = TI8148_REV_ES1_0;
50a01e64 452 cpu_rev = "1.0";
4390f5b2
HP
453 break;
454 case 2:
455 omap_revision = TI8148_REV_ES2_0;
50a01e64 456 cpu_rev = "2.0";
4390f5b2
HP
457 break;
458 case 3:
459 /* FALLTHROUGH */
460 default:
461 omap_revision = TI8148_REV_ES2_1;
50a01e64 462 cpu_rev = "2.1";
4390f5b2
HP
463 break;
464 }
1e6cb146 465 break;
2456a10f 466 default:
51ec811a 467 /* Unknown default to latest silicon rev as default */
3b32b7d6 468 omap_revision = OMAP3630_REV_ES1_2;
50a01e64 469 cpu_rev = "1.2";
51ec811a 470 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
a8823143 471 }
f9d41eef 472 sprintf(soc_rev, "ES%s", cpu_rev);
1dbae815
TL
473}
474
4de34f35 475void __init omap4xxx_check_revision(void)
b570e0ec
SS
476{
477 u32 idcode;
478 u16 hawkeye;
479 u8 rev;
b570e0ec
SS
480
481 /*
482 * The IC rev detection is done with hawkeye and rev.
483 * Note that rev does not map directly to defined processor
484 * revision numbers as ES1.0 uses value 0.
485 */
486 idcode = read_tap_reg(OMAP_TAP_IDCODE);
487 hawkeye = (idcode >> 12) & 0xffff;
e49c4d27 488 rev = (idcode >> 28) & 0xf;
b570e0ec 489
ed6be0ba 490 /*
fa54dccd 491 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
ed6be0ba
SS
492 * Use ARM register to detect the correct ES version
493 */
ec023e46 494 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
ac52e83f 495 idcode = read_cpuid_id();
ed6be0ba
SS
496 rev = (idcode & 0xf) - 1;
497 }
498
499 switch (hawkeye) {
500 case 0xb852:
501 switch (rev) {
502 case 0:
503 omap_revision = OMAP4430_REV_ES1_0;
ed6be0ba
SS
504 break;
505 case 1:
e49c4d27 506 default:
ed6be0ba 507 omap_revision = OMAP4430_REV_ES2_0;
e49c4d27
NK
508 }
509 break;
510 case 0xb95c:
511 switch (rev) {
512 case 3:
513 omap_revision = OMAP4430_REV_ES2_1;
ed6be0ba 514 break;
e49c4d27 515 case 4:
e49c4d27 516 omap_revision = OMAP4430_REV_ES2_2;
55035c15
DA
517 break;
518 case 6:
519 default:
520 omap_revision = OMAP4430_REV_ES2_3;
e49c4d27
NK
521 }
522 break;
fa54dccd
A
523 case 0xb94e:
524 switch (rev) {
525 case 0:
fa54dccd 526 omap_revision = OMAP4460_REV_ES1_0;
fa54dccd 527 break;
33ee0db5
CL
528 case 2:
529 default:
530 omap_revision = OMAP4460_REV_ES1_1;
531 break;
fa54dccd
A
532 }
533 break;
ec023e46
LI
534 case 0xb975:
535 switch (rev) {
536 case 0:
537 default:
538 omap_revision = OMAP4470_REV_ES1_0;
539 break;
540 }
541 break;
ed6be0ba 542 default:
e49c4d27 543 /* Unknown default to latest silicon rev as default */
55035c15 544 omap_revision = OMAP4430_REV_ES2_3;
b570e0ec
SS
545 }
546
f9d41eef
RB
547 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
548 sprintf(soc_rev, "ES%d.%d", (omap_rev() >> 12) & 0xf,
549 (omap_rev() >> 8) & 0xf);
550 pr_info("%s %s\n", soc_name, soc_rev);
b570e0ec
SS
551}
552
b13e80a8
S
553void __init omap5xxx_check_revision(void)
554{
555 u32 idcode;
556 u16 hawkeye;
557 u8 rev;
558
559 idcode = read_tap_reg(OMAP_TAP_IDCODE);
560 hawkeye = (idcode >> 12) & 0xffff;
561 rev = (idcode >> 28) & 0xff;
562 switch (hawkeye) {
563 case 0xb942:
564 switch (rev) {
565 case 0:
b13e80a8 566 omap_revision = OMAP5430_REV_ES1_0;
5a898a78
SS
567 break;
568 case 1:
569 default:
570 omap_revision = OMAP5430_REV_ES2_0;
b13e80a8
S
571 }
572 break;
573
574 case 0xb998:
575 switch (rev) {
576 case 0:
b13e80a8 577 omap_revision = OMAP5432_REV_ES1_0;
5a898a78
SS
578 break;
579 case 1:
580 default:
581 omap_revision = OMAP5432_REV_ES2_0;
b13e80a8
S
582 }
583 break;
584
585 default:
586 /* Unknown default to latest silicon rev as default*/
5a898a78 587 omap_revision = OMAP5430_REV_ES2_0;
b13e80a8
S
588 }
589
f9d41eef
RB
590 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
591 sprintf(soc_rev, "ES%d.0", (omap_rev() >> 12) & 0xf);
592
593 pr_info("%s %s\n", soc_name, soc_rev);
b13e80a8
S
594}
595
a8823143
TL
596/*
597 * Set up things for map_io and processor detection later on. Gets called
598 * pretty much first thing from board init. For multi-omap, this gets
599 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
600 * detect the exact revision later on in omap2_detect_revision() once map_io
601 * is done.
602 */
b6a4226c 603void __init omap2_set_globals_tap(u32 class, void __iomem *tap)
0e564848 604{
b6a4226c
PW
605 omap_revision = class;
606 tap_base = tap;
0e564848 607
b6a4226c 608 /* XXX What is this intended to do? */
a8823143 609 if (cpu_is_omap34xx())
0e564848
TL
610 tap_prod_id = 0x0210;
611 else
612 tap_prod_id = 0x0208;
613}
6770b211
RB
614
615#ifdef CONFIG_SOC_BUS
616
617static const char const *omap_types[] = {
618 [OMAP2_DEVICE_TYPE_TEST] = "TST",
619 [OMAP2_DEVICE_TYPE_EMU] = "EMU",
620 [OMAP2_DEVICE_TYPE_SEC] = "HS",
621 [OMAP2_DEVICE_TYPE_GP] = "GP",
622 [OMAP2_DEVICE_TYPE_BAD] = "BAD",
623};
624
625static const char * __init omap_get_family(void)
626{
627 if (cpu_is_omap24xx())
628 return kasprintf(GFP_KERNEL, "OMAP2");
629 else if (cpu_is_omap34xx())
630 return kasprintf(GFP_KERNEL, "OMAP3");
631 else if (cpu_is_omap44xx())
632 return kasprintf(GFP_KERNEL, "OMAP4");
633 else if (soc_is_omap54xx())
634 return kasprintf(GFP_KERNEL, "OMAP5");
635 else
636 return kasprintf(GFP_KERNEL, "Unknown");
637}
638
639static ssize_t omap_get_type(struct device *dev,
640 struct device_attribute *attr,
641 char *buf)
642{
643 return sprintf(buf, "%s\n", omap_types[omap_type()]);
644}
645
646static struct device_attribute omap_soc_attr =
647 __ATTR(type, S_IRUGO, omap_get_type, NULL);
648
649void __init omap_soc_device_init(void)
650{
651 struct device *parent;
652 struct soc_device *soc_dev;
653 struct soc_device_attribute *soc_dev_attr;
654
655 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
656 if (!soc_dev_attr)
657 return;
658
659 soc_dev_attr->machine = soc_name;
660 soc_dev_attr->family = omap_get_family();
661 soc_dev_attr->revision = soc_rev;
662
663 soc_dev = soc_device_register(soc_dev_attr);
b1dd11d6 664 if (IS_ERR(soc_dev)) {
6770b211
RB
665 kfree(soc_dev_attr);
666 return;
667 }
668
669 parent = soc_device_to_device(soc_dev);
b1dd11d6 670 device_create_file(parent, &omap_soc_attr);
6770b211
RB
671}
672#endif /* CONFIG_SOC_BUS */
This page took 0.748072 seconds and 5 git commands to generate.