ARM: OMAP: Fix Beagleboard DVI reset gpio
[deliverable/linux.git] / arch / arm / mach-omap2 / id.c
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 *
9 * Copyright (C) 2009-11 Texas Instruments
10 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
11 *
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
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/io.h>
21
22 #include <asm/cputype.h>
23
24 #include "common.h"
25 #include <plat/cpu.h>
26
27 #include <mach/id.h>
28
29 #include "control.h"
30
31 static unsigned int omap_revision;
32 static const char *cpu_rev;
33 u32 omap_features;
34
35 unsigned int omap_rev(void)
36 {
37 return omap_revision;
38 }
39 EXPORT_SYMBOL(omap_rev);
40
41 int omap_type(void)
42 {
43 u32 val = 0;
44
45 if (cpu_is_omap24xx()) {
46 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
47 } else if (cpu_is_am33xx()) {
48 val = omap_ctrl_readl(AM33XX_CONTROL_STATUS);
49 } else if (cpu_is_omap34xx()) {
50 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
51 } else if (cpu_is_omap44xx()) {
52 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
53 } else {
54 pr_err("Cannot detect omap type!\n");
55 goto out;
56 }
57
58 val &= OMAP2_DEVICETYPE_MASK;
59 val >>= 8;
60
61 out:
62 return val;
63 }
64 EXPORT_SYMBOL(omap_type);
65
66
67 /*----------------------------------------------------------------------------*/
68
69 #define OMAP_TAP_IDCODE 0x0204
70 #define OMAP_TAP_DIE_ID_0 0x0218
71 #define OMAP_TAP_DIE_ID_1 0x021C
72 #define OMAP_TAP_DIE_ID_2 0x0220
73 #define OMAP_TAP_DIE_ID_3 0x0224
74
75 #define OMAP_TAP_DIE_ID_44XX_0 0x0200
76 #define OMAP_TAP_DIE_ID_44XX_1 0x0208
77 #define OMAP_TAP_DIE_ID_44XX_2 0x020c
78 #define OMAP_TAP_DIE_ID_44XX_3 0x0210
79
80 #define read_tap_reg(reg) __raw_readl(tap_base + (reg))
81
82 struct omap_id {
83 u16 hawkeye; /* Silicon type (Hawkeye id) */
84 u8 dev; /* Device type from production_id reg */
85 u32 type; /* Combined type id copied to omap_revision */
86 };
87
88 /* Register values to detect the OMAP version */
89 static struct omap_id omap_ids[] __initdata = {
90 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
91 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
92 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
93 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
94 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
95 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
96 };
97
98 static void __iomem *tap_base;
99 static u16 tap_prod_id;
100
101 void omap_get_die_id(struct omap_die_id *odi)
102 {
103 if (cpu_is_omap44xx()) {
104 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
105 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
106 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
107 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
108
109 return;
110 }
111 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
112 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
113 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
114 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
115 }
116
117 void __init omap2xxx_check_revision(void)
118 {
119 int i, j;
120 u32 idcode, prod_id;
121 u16 hawkeye;
122 u8 dev_type, rev;
123 struct omap_die_id odi;
124
125 idcode = read_tap_reg(OMAP_TAP_IDCODE);
126 prod_id = read_tap_reg(tap_prod_id);
127 hawkeye = (idcode >> 12) & 0xffff;
128 rev = (idcode >> 28) & 0x0f;
129 dev_type = (prod_id >> 16) & 0x0f;
130 omap_get_die_id(&odi);
131
132 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
133 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
134 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
135 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
136 odi.id_1, (odi.id_1 >> 28) & 0xf);
137 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
138 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
139 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
140 prod_id, dev_type);
141
142 /* Check hawkeye ids */
143 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
144 if (hawkeye == omap_ids[i].hawkeye)
145 break;
146 }
147
148 if (i == ARRAY_SIZE(omap_ids)) {
149 printk(KERN_ERR "Unknown OMAP CPU id\n");
150 return;
151 }
152
153 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
154 if (dev_type == omap_ids[j].dev)
155 break;
156 }
157
158 if (j == ARRAY_SIZE(omap_ids)) {
159 printk(KERN_ERR "Unknown OMAP device type. "
160 "Handling it as OMAP%04x\n",
161 omap_ids[i].type >> 16);
162 j = i;
163 }
164
165 pr_info("OMAP%04x", omap_rev() >> 16);
166 if ((omap_rev() >> 8) & 0x0f)
167 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
168 pr_info("\n");
169 }
170
171 #define OMAP3_SHOW_FEATURE(feat) \
172 if (omap3_has_ ##feat()) \
173 printk(#feat" ");
174
175 static void __init omap3_cpuinfo(void)
176 {
177 const char *cpu_name;
178
179 /*
180 * OMAP3430 and OMAP3530 are assumed to be same.
181 *
182 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
183 * on available features. Upon detection, update the CPU id
184 * and CPU class bits.
185 */
186 if (cpu_is_omap3630()) {
187 cpu_name = "OMAP3630";
188 } else if (soc_is_am35xx()) {
189 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
190 } else if (cpu_is_ti816x()) {
191 cpu_name = "TI816X";
192 } else if (cpu_is_am335x()) {
193 cpu_name = "AM335X";
194 } else if (cpu_is_ti814x()) {
195 cpu_name = "TI814X";
196 } else if (omap3_has_iva() && omap3_has_sgx()) {
197 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
198 cpu_name = "OMAP3430/3530";
199 } else if (omap3_has_iva()) {
200 cpu_name = "OMAP3525";
201 } else if (omap3_has_sgx()) {
202 cpu_name = "OMAP3515";
203 } else {
204 cpu_name = "OMAP3503";
205 }
206
207 /* Print verbose information */
208 pr_info("%s ES%s (", cpu_name, cpu_rev);
209
210 OMAP3_SHOW_FEATURE(l2cache);
211 OMAP3_SHOW_FEATURE(iva);
212 OMAP3_SHOW_FEATURE(sgx);
213 OMAP3_SHOW_FEATURE(neon);
214 OMAP3_SHOW_FEATURE(isp);
215 OMAP3_SHOW_FEATURE(192mhz_clk);
216
217 printk(")\n");
218 }
219
220 #define OMAP3_CHECK_FEATURE(status,feat) \
221 if (((status & OMAP3_ ##feat## _MASK) \
222 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
223 omap_features |= OMAP3_HAS_ ##feat; \
224 }
225
226 void __init omap3xxx_check_features(void)
227 {
228 u32 status;
229
230 omap_features = 0;
231
232 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
233
234 OMAP3_CHECK_FEATURE(status, L2CACHE);
235 OMAP3_CHECK_FEATURE(status, IVA);
236 OMAP3_CHECK_FEATURE(status, SGX);
237 OMAP3_CHECK_FEATURE(status, NEON);
238 OMAP3_CHECK_FEATURE(status, ISP);
239 if (cpu_is_omap3630())
240 omap_features |= OMAP3_HAS_192MHZ_CLK;
241 if (cpu_is_omap3430() || cpu_is_omap3630())
242 omap_features |= OMAP3_HAS_IO_WAKEUP;
243 if (cpu_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
244 omap_rev() == OMAP3430_REV_ES3_1_2)
245 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
246
247 omap_features |= OMAP3_HAS_SDRC;
248
249 /*
250 * TODO: Get additional info (where applicable)
251 * e.g. Size of L2 cache.
252 */
253
254 omap3_cpuinfo();
255 }
256
257 void __init omap4xxx_check_features(void)
258 {
259 u32 si_type;
260
261 if (cpu_is_omap443x())
262 omap_features |= OMAP4_HAS_MPU_1GHZ;
263
264
265 if (cpu_is_omap446x()) {
266 si_type =
267 read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1);
268 switch ((si_type & (3 << 16)) >> 16) {
269 case 2:
270 /* High performance device */
271 omap_features |= OMAP4_HAS_MPU_1_5GHZ;
272 break;
273 case 1:
274 default:
275 /* Standard device */
276 omap_features |= OMAP4_HAS_MPU_1_2GHZ;
277 break;
278 }
279 }
280 }
281
282 void __init ti81xx_check_features(void)
283 {
284 omap_features = OMAP3_HAS_NEON;
285 omap3_cpuinfo();
286 }
287
288 void __init omap3xxx_check_revision(void)
289 {
290 u32 cpuid, idcode;
291 u16 hawkeye;
292 u8 rev;
293
294 /*
295 * We cannot access revision registers on ES1.0.
296 * If the processor type is Cortex-A8 and the revision is 0x0
297 * it means its Cortex r0p0 which is 3430 ES1.0.
298 */
299 cpuid = read_cpuid(CPUID_ID);
300 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
301 omap_revision = OMAP3430_REV_ES1_0;
302 cpu_rev = "1.0";
303 return;
304 }
305
306 /*
307 * Detection for 34xx ES2.0 and above can be done with just
308 * hawkeye and rev. See TRM 1.5.2 Device Identification.
309 * Note that rev does not map directly to our defined processor
310 * revision numbers as ES1.0 uses value 0.
311 */
312 idcode = read_tap_reg(OMAP_TAP_IDCODE);
313 hawkeye = (idcode >> 12) & 0xffff;
314 rev = (idcode >> 28) & 0xff;
315
316 switch (hawkeye) {
317 case 0xb7ae:
318 /* Handle 34xx/35xx devices */
319 switch (rev) {
320 case 0: /* Take care of early samples */
321 case 1:
322 omap_revision = OMAP3430_REV_ES2_0;
323 cpu_rev = "2.0";
324 break;
325 case 2:
326 omap_revision = OMAP3430_REV_ES2_1;
327 cpu_rev = "2.1";
328 break;
329 case 3:
330 omap_revision = OMAP3430_REV_ES3_0;
331 cpu_rev = "3.0";
332 break;
333 case 4:
334 omap_revision = OMAP3430_REV_ES3_1;
335 cpu_rev = "3.1";
336 break;
337 case 7:
338 /* FALLTHROUGH */
339 default:
340 /* Use the latest known revision as default */
341 omap_revision = OMAP3430_REV_ES3_1_2;
342 cpu_rev = "3.1.2";
343 }
344 break;
345 case 0xb868:
346 /*
347 * Handle OMAP/AM 3505/3517 devices
348 *
349 * Set the device to be OMAP3517 here. Actual device
350 * is identified later based on the features.
351 */
352 switch (rev) {
353 case 0:
354 omap_revision = AM35XX_REV_ES1_0;
355 cpu_rev = "1.0";
356 break;
357 case 1:
358 /* FALLTHROUGH */
359 default:
360 omap_revision = AM35XX_REV_ES1_1;
361 cpu_rev = "1.1";
362 }
363 break;
364 case 0xb891:
365 /* Handle 36xx devices */
366
367 switch(rev) {
368 case 0: /* Take care of early samples */
369 omap_revision = OMAP3630_REV_ES1_0;
370 cpu_rev = "1.0";
371 break;
372 case 1:
373 omap_revision = OMAP3630_REV_ES1_1;
374 cpu_rev = "1.1";
375 break;
376 case 2:
377 /* FALLTHROUGH */
378 default:
379 omap_revision = OMAP3630_REV_ES1_2;
380 cpu_rev = "1.2";
381 }
382 break;
383 case 0xb81e:
384 switch (rev) {
385 case 0:
386 omap_revision = TI8168_REV_ES1_0;
387 cpu_rev = "1.0";
388 break;
389 case 1:
390 /* FALLTHROUGH */
391 default:
392 omap_revision = TI8168_REV_ES1_1;
393 cpu_rev = "1.1";
394 break;
395 }
396 break;
397 case 0xb944:
398 omap_revision = AM335X_REV_ES1_0;
399 cpu_rev = "1.0";
400 break;
401 case 0xb8f2:
402 switch (rev) {
403 case 0:
404 /* FALLTHROUGH */
405 case 1:
406 omap_revision = TI8148_REV_ES1_0;
407 cpu_rev = "1.0";
408 break;
409 case 2:
410 omap_revision = TI8148_REV_ES2_0;
411 cpu_rev = "2.0";
412 break;
413 case 3:
414 /* FALLTHROUGH */
415 default:
416 omap_revision = TI8148_REV_ES2_1;
417 cpu_rev = "2.1";
418 break;
419 }
420 break;
421 default:
422 /* Unknown default to latest silicon rev as default */
423 omap_revision = OMAP3630_REV_ES1_2;
424 cpu_rev = "1.2";
425 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
426 }
427 }
428
429 void __init omap4xxx_check_revision(void)
430 {
431 u32 idcode;
432 u16 hawkeye;
433 u8 rev;
434
435 /*
436 * The IC rev detection is done with hawkeye and rev.
437 * Note that rev does not map directly to defined processor
438 * revision numbers as ES1.0 uses value 0.
439 */
440 idcode = read_tap_reg(OMAP_TAP_IDCODE);
441 hawkeye = (idcode >> 12) & 0xffff;
442 rev = (idcode >> 28) & 0xf;
443
444 /*
445 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
446 * Use ARM register to detect the correct ES version
447 */
448 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
449 idcode = read_cpuid(CPUID_ID);
450 rev = (idcode & 0xf) - 1;
451 }
452
453 switch (hawkeye) {
454 case 0xb852:
455 switch (rev) {
456 case 0:
457 omap_revision = OMAP4430_REV_ES1_0;
458 break;
459 case 1:
460 default:
461 omap_revision = OMAP4430_REV_ES2_0;
462 }
463 break;
464 case 0xb95c:
465 switch (rev) {
466 case 3:
467 omap_revision = OMAP4430_REV_ES2_1;
468 break;
469 case 4:
470 omap_revision = OMAP4430_REV_ES2_2;
471 break;
472 case 6:
473 default:
474 omap_revision = OMAP4430_REV_ES2_3;
475 }
476 break;
477 case 0xb94e:
478 switch (rev) {
479 case 0:
480 omap_revision = OMAP4460_REV_ES1_0;
481 break;
482 case 2:
483 default:
484 omap_revision = OMAP4460_REV_ES1_1;
485 break;
486 }
487 break;
488 case 0xb975:
489 switch (rev) {
490 case 0:
491 default:
492 omap_revision = OMAP4470_REV_ES1_0;
493 break;
494 }
495 break;
496 default:
497 /* Unknown default to latest silicon rev as default */
498 omap_revision = OMAP4430_REV_ES2_3;
499 }
500
501 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
502 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
503 }
504
505 /*
506 * Set up things for map_io and processor detection later on. Gets called
507 * pretty much first thing from board init. For multi-omap, this gets
508 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
509 * detect the exact revision later on in omap2_detect_revision() once map_io
510 * is done.
511 */
512 void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
513 {
514 omap_revision = omap2_globals->class;
515 tap_base = omap2_globals->tap;
516
517 if (cpu_is_omap34xx())
518 tap_prod_id = 0x0210;
519 else
520 tap_prod_id = 0x0208;
521 }
This page took 0.041892 seconds and 5 git commands to generate.