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