OMAP3: id: remove identification codes that only correspond to marketing names
[pandora-kernel.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 <plat/common.h>
25 #include <plat/cpu.h>
26
27 #include <mach/id.h>
28
29 #include "control.h"
30
31 static struct omap_chip_id omap_chip;
32 static unsigned int omap_revision;
33
34 u32 omap_features;
35
36 unsigned int omap_rev(void)
37 {
38         return omap_revision;
39 }
40 EXPORT_SYMBOL(omap_rev);
41
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  */
49 int omap_chip_is(struct omap_chip_id oci)
50 {
51         return (oci.oc & omap_chip.oc) ? 1 : 0;
52 }
53 EXPORT_SYMBOL(omap_chip_is);
54
55 int omap_type(void)
56 {
57         u32 val = 0;
58
59         if (cpu_is_omap24xx()) {
60                 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
61         } else if (cpu_is_omap34xx()) {
62                 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
63         } else if (cpu_is_omap44xx()) {
64                 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
65         } else {
66                 pr_err("Cannot detect omap type!\n");
67                 goto out;
68         }
69
70         val &= OMAP2_DEVICETYPE_MASK;
71         val >>= 8;
72
73 out:
74         return val;
75 }
76 EXPORT_SYMBOL(omap_type);
77
78
79 /*----------------------------------------------------------------------------*/
80
81 #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
86
87 #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
92 #define read_tap_reg(reg)       __raw_readl(tap_base  + (reg))
93
94 struct omap_id {
95         u16     hawkeye;        /* Silicon type (Hawkeye id) */
96         u8      dev;            /* Device type from production_id reg */
97         u32     type;           /* Combined type id copied to omap_revision */
98 };
99
100 /* Register values to detect the OMAP version */
101 static 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 };
109
110 static void __iomem *tap_base;
111 static u16 tap_prod_id;
112
113 void omap_get_die_id(struct omap_die_id *odi)
114 {
115         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         }
123         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
129 static void __init omap24xx_check_revision(void)
130 {
131         int i, j;
132         u32 idcode, prod_id;
133         u16 hawkeye;
134         u8  dev_type, rev;
135         struct omap_die_id odi;
136
137         idcode = read_tap_reg(OMAP_TAP_IDCODE);
138         prod_id = read_tap_reg(tap_prod_id);
139         hawkeye = (idcode >> 12) & 0xffff;
140         rev = (idcode >> 28) & 0x0f;
141         dev_type = (prod_id >> 16) & 0x0f;
142         omap_get_die_id(&odi);
143
144         pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
145                  idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
146         pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
147         pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
148                  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);
151         pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
152                  prod_id, dev_type);
153
154         /* 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         }
176
177         pr_info("OMAP%04x", omap_rev() >> 16);
178         if ((omap_rev() >> 8) & 0x0f)
179                 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
180         pr_info("\n");
181 }
182
183 #define OMAP3_CHECK_FEATURE(status,feat)                                \
184         if (((status & OMAP3_ ##feat## _MASK)                           \
185                 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) {   \
186                 omap_features |= OMAP3_HAS_ ##feat;                     \
187         }
188
189 static void __init omap3_check_features(void)
190 {
191         u32 status;
192
193         omap_features = 0;
194
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);
202         if (cpu_is_omap3630())
203                 omap_features |= OMAP3_HAS_192MHZ_CLK;
204         if (!cpu_is_omap3505() && !cpu_is_omap3517())
205                 omap_features |= OMAP3_HAS_IO_WAKEUP;
206
207         omap_features |= OMAP3_HAS_SDRC;
208
209         /*
210          * TODO: Get additional info (where applicable)
211          *       e.g. Size of L2 cache.
212          */
213 }
214
215 static 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
240 static void __init ti816x_check_features(void)
241 {
242         omap_features = OMAP3_HAS_NEON;
243 }
244
245 static void __init omap3_check_revision(void)
246 {
247         u32 cpuid, idcode;
248         u16 hawkeye;
249         u8 rev;
250
251         omap_chip.oc = CHIP_IS_OMAP3430;
252
253         /*
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)) {
260                 omap_revision = OMAP3430_REV_ES1_0;
261                 omap_chip.oc |= CHIP_IS_OMAP3430ES1;
262                 return;
263         }
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
275         switch (hawkeye) {
276         case 0xb7ae:
277                 /* Handle 34xx/35xx devices */
278                 switch (rev) {
279                 case 0: /* Take care of early samples */
280                 case 1:
281                         omap_revision = OMAP3430_REV_ES2_0;
282                         omap_chip.oc |= CHIP_IS_OMAP3430ES2;
283                         break;
284                 case 2:
285                         omap_revision = OMAP3430_REV_ES2_1;
286                         omap_chip.oc |= CHIP_IS_OMAP3430ES2;
287                         break;
288                 case 3:
289                         omap_revision = OMAP3430_REV_ES3_0;
290                         omap_chip.oc |= CHIP_IS_OMAP3430ES3_0;
291                         break;
292                 case 4:
293                         omap_revision = OMAP3430_REV_ES3_1;
294                         omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
295                         break;
296                 case 7:
297                 /* FALLTHROUGH */
298                 default:
299                         /* Use the latest known revision as default */
300                         omap_revision = OMAP3430_REV_ES3_1_2;
301
302                         /* REVISIT: Add CHIP_IS_OMAP3430ES3_1_2? */
303                         omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
304                 }
305                 break;
306         case 0xb868:
307                 /*
308                  * Handle OMAP/AM 3505/3517 devices
309                  *
310                  * Set the device to be OMAP3517 here. Actual device
311                  * is identified later based on the features.
312                  *
313                  * REVISIT: AM3505/AM3517 should have their own CHIP_IS
314                  */
315                 omap_revision = OMAP3517_REV(rev);
316                 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
317                 break;
318         case 0xb891:
319                 /* Handle 36xx devices */
320                 omap_chip.oc |= CHIP_IS_OMAP3630ES1;
321
322                 switch(rev) {
323                 case 0: /* Take care of early samples */
324                         omap_revision = OMAP3630_REV_ES1_0;
325                         break;
326                 case 1:
327                         omap_revision = OMAP3630_REV_ES1_1;
328                         omap_chip.oc |= CHIP_IS_OMAP3630ES1_1;
329                         break;
330                 case 2:
331                 default:
332                         omap_revision =  OMAP3630_REV_ES1_2;
333                         omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
334                 }
335                 break;
336         case 0xb81e:
337                 omap_chip.oc = CHIP_IS_TI816X;
338
339                 switch (rev) {
340                 case 0:
341                         omap_revision = TI8168_REV_ES1_0;
342                         break;
343                 case 1:
344                         omap_revision = TI8168_REV_ES1_1;
345                         break;
346                 default:
347                         omap_revision =  TI8168_REV_ES1_1;
348                 }
349                 break;
350         default:
351                 /* Unknown default to latest silicon rev as default*/
352                 omap_revision =  OMAP3630_REV_ES1_2;
353                 omap_chip.oc |= CHIP_IS_OMAP3630ES1_2;
354         }
355 }
356
357 static void __init omap4_check_revision(void)
358 {
359         u32 idcode;
360         u16 hawkeye;
361         u8 rev;
362
363         /*
364          * The IC rev detection is done with hawkeye and rev.
365          * Note that rev does not map directly to defined processor
366          * revision numbers as ES1.0 uses value 0.
367          */
368         idcode = read_tap_reg(OMAP_TAP_IDCODE);
369         hawkeye = (idcode >> 12) & 0xffff;
370         rev = (idcode >> 28) & 0xf;
371
372         /*
373          * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
374          * Use ARM register to detect the correct ES version
375          */
376         if (!rev && (hawkeye != 0xb94e)) {
377                 idcode = read_cpuid(CPUID_ID);
378                 rev = (idcode & 0xf) - 1;
379         }
380
381         switch (hawkeye) {
382         case 0xb852:
383                 switch (rev) {
384                 case 0:
385                         omap_revision = OMAP4430_REV_ES1_0;
386                         omap_chip.oc |= CHIP_IS_OMAP4430ES1;
387                         break;
388                 case 1:
389                 default:
390                         omap_revision = OMAP4430_REV_ES2_0;
391                         omap_chip.oc |= CHIP_IS_OMAP4430ES2;
392                 }
393                 break;
394         case 0xb95c:
395                 switch (rev) {
396                 case 3:
397                         omap_revision = OMAP4430_REV_ES2_1;
398                         omap_chip.oc |= CHIP_IS_OMAP4430ES2_1;
399                         break;
400                 case 4:
401                 default:
402                         omap_revision = OMAP4430_REV_ES2_2;
403                         omap_chip.oc |= CHIP_IS_OMAP4430ES2_2;
404                 }
405                 break;
406         case 0xb94e:
407                 switch (rev) {
408                 case 0:
409                 default:
410                         omap_revision = OMAP4460_REV_ES1_0;
411                         omap_chip.oc |= CHIP_IS_OMAP4460ES1_0;
412                         break;
413                 }
414                 break;
415         default:
416                 /* Unknown default to latest silicon rev as default */
417                 omap_revision = OMAP4430_REV_ES2_2;
418                 omap_chip.oc |= CHIP_IS_OMAP4430ES2_2;
419         }
420
421         pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
422                 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
423 }
424
425 #define OMAP3_SHOW_FEATURE(feat)                \
426         if (omap3_has_ ##feat())                \
427                 printk(#feat" ");
428
429 static void __init omap3_cpuinfo(void)
430 {
431         u8 rev = GET_OMAP_REVISION();
432         char cpu_name[16], cpu_rev[16];
433
434         /* OMAP3430 and OMAP3530 are assumed to be same.
435          *
436          * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
437          * on available features. Upon detection, update the CPU id
438          * and CPU class bits.
439          */
440         if (cpu_is_omap3630()) {
441                 strcpy(cpu_name, "OMAP3630");
442         } else if (cpu_is_omap3517()) {
443                 /*
444                  * AM35xx devices
445                  */
446                 if (omap3_has_sgx())
447                         strcpy(cpu_name, "AM3517");
448                 else
449                         strcpy(cpu_name, "AM3505");
450         } else if (cpu_is_ti816x()) {
451                 strcpy(cpu_name, "TI816X");
452         } else if (omap3_has_iva() && omap3_has_sgx()) {
453                 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
454                 strcpy(cpu_name, "OMAP3430/3530");
455         } else if (omap3_has_iva()) {
456                 strcpy(cpu_name, "OMAP3525");
457         } else if (omap3_has_sgx()) {
458                 strcpy(cpu_name, "OMAP3515");
459         } else {
460                 strcpy(cpu_name, "OMAP3503");
461         }
462
463         if (cpu_is_omap3630() || cpu_is_ti816x()) {
464                 switch (rev) {
465                 case OMAP_REVBITS_00:
466                         strcpy(cpu_rev, "1.0");
467                         break;
468                 case OMAP_REVBITS_01:
469                         strcpy(cpu_rev, "1.1");
470                         break;
471                 case OMAP_REVBITS_02:
472                         /* FALLTHROUGH */
473                 default:
474                         /* Use the latest known revision as default */
475                         strcpy(cpu_rev, "1.2");
476                 }
477         } else if (cpu_is_omap3505() || cpu_is_omap3517()) {
478                 switch (rev) {
479                 case OMAP_REVBITS_00:
480                         strcpy(cpu_rev, "1.0");
481                         break;
482                 case OMAP_REVBITS_01:
483                         /* FALLTHROUGH */
484                 default:
485                         /* Use the latest known revision as default */
486                         strcpy(cpu_rev, "1.1");
487                 }
488         } else {
489                 switch (rev) {
490                 case OMAP_REVBITS_00:
491                         strcpy(cpu_rev, "1.0");
492                         break;
493                 case OMAP_REVBITS_01:
494                         strcpy(cpu_rev, "2.0");
495                         break;
496                 case OMAP_REVBITS_02:
497                         strcpy(cpu_rev, "2.1");
498                         break;
499                 case OMAP_REVBITS_03:
500                         strcpy(cpu_rev, "3.0");
501                         break;
502                 case OMAP_REVBITS_04:
503                         strcpy(cpu_rev, "3.1");
504                         break;
505                 case OMAP_REVBITS_05:
506                         /* FALLTHROUGH */
507                 default:
508                         /* Use the latest known revision as default */
509                         strcpy(cpu_rev, "3.1.2");
510                 }
511         }
512
513         /* Print verbose information */
514         pr_info("%s ES%s (", cpu_name, cpu_rev);
515
516         OMAP3_SHOW_FEATURE(l2cache);
517         OMAP3_SHOW_FEATURE(iva);
518         OMAP3_SHOW_FEATURE(sgx);
519         OMAP3_SHOW_FEATURE(neon);
520         OMAP3_SHOW_FEATURE(isp);
521         OMAP3_SHOW_FEATURE(192mhz_clk);
522
523         printk(")\n");
524 }
525
526 /*
527  * Try to detect the exact revision of the omap we're running on
528  */
529 void __init omap2_check_revision(void)
530 {
531         /*
532          * At this point we have an idea about the processor revision set
533          * earlier with omap2_set_globals_tap().
534          */
535         if (cpu_is_omap24xx()) {
536                 omap24xx_check_revision();
537         } else if (cpu_is_omap34xx()) {
538                 omap3_check_revision();
539
540                 /* TI816X doesn't have feature register */
541                 if (!cpu_is_ti816x())
542                         omap3_check_features();
543                 else
544                         ti816x_check_features();
545
546                 omap3_cpuinfo();
547                 return;
548         } else if (cpu_is_omap44xx()) {
549                 omap4_check_revision();
550                 omap4_check_features();
551                 return;
552         } else {
553                 pr_err("OMAP revision unknown, please fix!\n");
554         }
555
556         /*
557          * OK, now we know the exact revision. Initialize omap_chip bits
558          * for powerdowmain and clockdomain code.
559          */
560         if (cpu_is_omap243x()) {
561                 /* Currently only supports 2430ES2.1 and 2430-all */
562                 omap_chip.oc |= CHIP_IS_OMAP2430;
563                 return;
564         } else if (cpu_is_omap242x()) {
565                 /* Currently only supports 2420ES2.1.1 and 2420-all */
566                 omap_chip.oc |= CHIP_IS_OMAP2420;
567                 return;
568         }
569
570         pr_err("Uninitialized omap_chip, please fix!\n");
571 }
572
573 /*
574  * Set up things for map_io and processor detection later on. Gets called
575  * pretty much first thing from board init. For multi-omap, this gets
576  * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
577  * detect the exact revision later on in omap2_detect_revision() once map_io
578  * is done.
579  */
580 void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
581 {
582         omap_revision = omap2_globals->class;
583         tap_base = omap2_globals->tap;
584
585         if (cpu_is_omap34xx())
586                 tap_prod_id = 0x0210;
587         else
588                 tap_prod_id = 0x0208;
589 }