OMAP4: clock: Add dummy clock nodes for interface clocks
[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 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/control.h>
26 #include <plat/cpu.h>
27
28 static struct omap_chip_id omap_chip;
29 static unsigned int omap_revision;
30
31 u32 omap3_features;
32
33 unsigned int omap_rev(void)
34 {
35         return omap_revision;
36 }
37 EXPORT_SYMBOL(omap_rev);
38
39 /**
40  * omap_chip_is - test whether currently running OMAP matches a chip type
41  * @oc: omap_chip_t to test against
42  *
43  * Test whether the currently-running OMAP chip matches the supplied
44  * chip type 'oc'.  Returns 1 upon a match; 0 upon failure.
45  */
46 int omap_chip_is(struct omap_chip_id oci)
47 {
48         return (oci.oc & omap_chip.oc) ? 1 : 0;
49 }
50 EXPORT_SYMBOL(omap_chip_is);
51
52 int omap_type(void)
53 {
54         u32 val = 0;
55
56         if (cpu_is_omap24xx()) {
57                 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
58         } else if (cpu_is_omap34xx()) {
59                 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
60         } else {
61                 pr_err("Cannot detect omap type!\n");
62                 goto out;
63         }
64
65         val &= OMAP2_DEVICETYPE_MASK;
66         val >>= 8;
67
68 out:
69         return val;
70 }
71 EXPORT_SYMBOL(omap_type);
72
73
74 /*----------------------------------------------------------------------------*/
75
76 #define OMAP_TAP_IDCODE         0x0204
77 #define OMAP_TAP_DIE_ID_0       0x0218
78 #define OMAP_TAP_DIE_ID_1       0x021C
79 #define OMAP_TAP_DIE_ID_2       0x0220
80 #define OMAP_TAP_DIE_ID_3       0x0224
81
82 #define read_tap_reg(reg)       __raw_readl(tap_base  + (reg))
83
84 struct omap_id {
85         u16     hawkeye;        /* Silicon type (Hawkeye id) */
86         u8      dev;            /* Device type from production_id reg */
87         u32     type;           /* Combined type id copied to omap_revision */
88 };
89
90 /* Register values to detect the OMAP version */
91 static struct omap_id omap_ids[] __initdata = {
92         { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
93         { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
94         { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
95         { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
96         { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
97         { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
98 };
99
100 static void __iomem *tap_base;
101 static u16 tap_prod_id;
102
103 void __init omap24xx_check_revision(void)
104 {
105         int i, j;
106         u32 idcode, prod_id;
107         u16 hawkeye;
108         u8  dev_type, rev;
109
110         idcode = read_tap_reg(OMAP_TAP_IDCODE);
111         prod_id = read_tap_reg(tap_prod_id);
112         hawkeye = (idcode >> 12) & 0xffff;
113         rev = (idcode >> 28) & 0x0f;
114         dev_type = (prod_id >> 16) & 0x0f;
115
116         pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
117                  idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
118         pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n",
119                  read_tap_reg(OMAP_TAP_DIE_ID_0));
120         pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
121                  read_tap_reg(OMAP_TAP_DIE_ID_1),
122                  (read_tap_reg(OMAP_TAP_DIE_ID_1) >> 28) & 0xf);
123         pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n",
124                  read_tap_reg(OMAP_TAP_DIE_ID_2));
125         pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n",
126                  read_tap_reg(OMAP_TAP_DIE_ID_3));
127         pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
128                  prod_id, dev_type);
129
130         /* Check hawkeye ids */
131         for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
132                 if (hawkeye == omap_ids[i].hawkeye)
133                         break;
134         }
135
136         if (i == ARRAY_SIZE(omap_ids)) {
137                 printk(KERN_ERR "Unknown OMAP CPU id\n");
138                 return;
139         }
140
141         for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
142                 if (dev_type == omap_ids[j].dev)
143                         break;
144         }
145
146         if (j == ARRAY_SIZE(omap_ids)) {
147                 printk(KERN_ERR "Unknown OMAP device type. "
148                                 "Handling it as OMAP%04x\n",
149                                 omap_ids[i].type >> 16);
150                 j = i;
151         }
152
153         pr_info("OMAP%04x", omap_rev() >> 16);
154         if ((omap_rev() >> 8) & 0x0f)
155                 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
156         pr_info("\n");
157 }
158
159 #define OMAP3_CHECK_FEATURE(status,feat)                                \
160         if (((status & OMAP3_ ##feat## _MASK)                           \
161                 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) {   \
162                 omap3_features |= OMAP3_HAS_ ##feat;                    \
163         }
164
165 void __init omap3_check_features(void)
166 {
167         u32 status;
168
169         omap3_features = 0;
170
171         status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
172
173         OMAP3_CHECK_FEATURE(status, L2CACHE);
174         OMAP3_CHECK_FEATURE(status, IVA);
175         OMAP3_CHECK_FEATURE(status, SGX);
176         OMAP3_CHECK_FEATURE(status, NEON);
177         OMAP3_CHECK_FEATURE(status, ISP);
178         if (cpu_is_omap3630())
179                 omap3_features |= OMAP3_HAS_192MHZ_CLK;
180
181         /*
182          * TODO: Get additional info (where applicable)
183          *       e.g. Size of L2 cache.
184          */
185 }
186
187 void __init omap3_check_revision(void)
188 {
189         u32 cpuid, idcode;
190         u16 hawkeye;
191         u8 rev;
192
193         omap_chip.oc = CHIP_IS_OMAP3430;
194
195         /*
196          * We cannot access revision registers on ES1.0.
197          * If the processor type is Cortex-A8 and the revision is 0x0
198          * it means its Cortex r0p0 which is 3430 ES1.0.
199          */
200         cpuid = read_cpuid(CPUID_ID);
201         if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
202                 omap_revision = OMAP3430_REV_ES1_0;
203                 omap_chip.oc |= CHIP_IS_OMAP3430ES1;
204                 return;
205         }
206
207         /*
208          * Detection for 34xx ES2.0 and above can be done with just
209          * hawkeye and rev. See TRM 1.5.2 Device Identification.
210          * Note that rev does not map directly to our defined processor
211          * revision numbers as ES1.0 uses value 0.
212          */
213         idcode = read_tap_reg(OMAP_TAP_IDCODE);
214         hawkeye = (idcode >> 12) & 0xffff;
215         rev = (idcode >> 28) & 0xff;
216
217         switch (hawkeye) {
218         case 0xb7ae:
219                 /* Handle 34xx/35xx devices */
220                 switch (rev) {
221                 case 0: /* Take care of early samples */
222                 case 1:
223                         omap_revision = OMAP3430_REV_ES2_0;
224                         omap_chip.oc |= CHIP_IS_OMAP3430ES2;
225                         break;
226                 case 2:
227                         omap_revision = OMAP3430_REV_ES2_1;
228                         omap_chip.oc |= CHIP_IS_OMAP3430ES2;
229                         break;
230                 case 3:
231                         omap_revision = OMAP3430_REV_ES3_0;
232                         omap_chip.oc |= CHIP_IS_OMAP3430ES3_0;
233                         break;
234                 case 4:
235                         omap_revision = OMAP3430_REV_ES3_1;
236                         omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
237                         break;
238                 case 7:
239                 /* FALLTHROUGH */
240                 default:
241                         /* Use the latest known revision as default */
242                         omap_revision = OMAP3430_REV_ES3_1_2;
243
244                         /* REVISIT: Add CHIP_IS_OMAP3430ES3_1_2? */
245                         omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
246                 }
247                 break;
248         case 0xb868:
249                 /* Handle OMAP35xx/AM35xx devices
250                  *
251                  * Set the device to be OMAP3505 here. Actual device
252                  * is identified later based on the features.
253                  *
254                  * REVISIT: AM3505/AM3517 should have their own CHIP_IS
255                  */
256                 omap_revision = OMAP3505_REV(rev);
257                 omap_chip.oc |= CHIP_IS_OMAP3430ES3_1;
258                 break;
259         case 0xb891:
260         /* FALLTHROUGH */
261         default:
262                 /* Unknown default to latest silicon rev as default*/
263                 omap_revision = OMAP3630_REV_ES1_0;
264                 omap_chip.oc |= CHIP_IS_OMAP3630ES1;
265         }
266 }
267
268 void __init omap4_check_revision(void)
269 {
270         u32 idcode;
271         u16 hawkeye;
272         u8 rev;
273         char *rev_name = "ES1.0";
274
275         /*
276          * The IC rev detection is done with hawkeye and rev.
277          * Note that rev does not map directly to defined processor
278          * revision numbers as ES1.0 uses value 0.
279          */
280         idcode = read_tap_reg(OMAP_TAP_IDCODE);
281         hawkeye = (idcode >> 12) & 0xffff;
282         rev = (idcode >> 28) & 0xff;
283
284         if ((hawkeye == 0xb852) && (rev == 0x0)) {
285                 omap_revision = OMAP4430_REV_ES1_0;
286                 omap_chip.oc |= CHIP_IS_OMAP4430ES1;
287                 pr_info("OMAP%04x %s\n", omap_rev() >> 16, rev_name);
288                 return;
289         }
290
291         pr_err("Unknown OMAP4 CPU id\n");
292 }
293
294 #define OMAP3_SHOW_FEATURE(feat)                \
295         if (omap3_has_ ##feat())                \
296                 printk(#feat" ");
297
298 void __init omap3_cpuinfo(void)
299 {
300         u8 rev = GET_OMAP_REVISION();
301         char cpu_name[16], cpu_rev[16];
302
303         /* OMAP3430 and OMAP3530 are assumed to be same.
304          *
305          * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
306          * on available features. Upon detection, update the CPU id
307          * and CPU class bits.
308          */
309         if (cpu_is_omap3630()) {
310                 strcpy(cpu_name, "OMAP3630");
311         } else if (cpu_is_omap3505()) {
312                 /*
313                  * AM35xx devices
314                  */
315                 if (omap3_has_sgx()) {
316                         omap_revision = OMAP3517_REV(rev);
317                         strcpy(cpu_name, "AM3517");
318                 } else {
319                         /* Already set in omap3_check_revision() */
320                         strcpy(cpu_name, "AM3505");
321                 }
322         } else if (omap3_has_iva() && omap3_has_sgx()) {
323                 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
324                 strcpy(cpu_name, "OMAP3430/3530");
325         } else if (omap3_has_iva()) {
326                 omap_revision = OMAP3525_REV(rev);
327                 strcpy(cpu_name, "OMAP3525");
328         } else if (omap3_has_sgx()) {
329                 omap_revision = OMAP3515_REV(rev);
330                 strcpy(cpu_name, "OMAP3515");
331         } else {
332                 omap_revision = OMAP3503_REV(rev);
333                 strcpy(cpu_name, "OMAP3503");
334         }
335
336         switch (rev) {
337         case OMAP_REVBITS_00:
338                 strcpy(cpu_rev, "1.0");
339                 break;
340         case OMAP_REVBITS_10:
341                 strcpy(cpu_rev, "2.0");
342                 break;
343         case OMAP_REVBITS_20:
344                 strcpy(cpu_rev, "2.1");
345                 break;
346         case OMAP_REVBITS_30:
347                 strcpy(cpu_rev, "3.0");
348                 break;
349         case OMAP_REVBITS_40:
350         /* FALLTHROUGH */
351         default:
352                 /* Use the latest known revision as default */
353                 strcpy(cpu_rev, "3.1");
354         }
355
356         /* Print verbose information */
357         pr_info("%s ES%s (", cpu_name, cpu_rev);
358
359         OMAP3_SHOW_FEATURE(l2cache);
360         OMAP3_SHOW_FEATURE(iva);
361         OMAP3_SHOW_FEATURE(sgx);
362         OMAP3_SHOW_FEATURE(neon);
363         OMAP3_SHOW_FEATURE(isp);
364         OMAP3_SHOW_FEATURE(192mhz_clk);
365
366         printk(")\n");
367 }
368
369 /*
370  * Try to detect the exact revision of the omap we're running on
371  */
372 void __init omap2_check_revision(void)
373 {
374         /*
375          * At this point we have an idea about the processor revision set
376          * earlier with omap2_set_globals_tap().
377          */
378         if (cpu_is_omap24xx()) {
379                 omap24xx_check_revision();
380         } else if (cpu_is_omap34xx()) {
381                 omap3_check_revision();
382                 omap3_check_features();
383                 omap3_cpuinfo();
384                 return;
385         } else if (cpu_is_omap44xx()) {
386                 omap4_check_revision();
387                 return;
388         } else {
389                 pr_err("OMAP revision unknown, please fix!\n");
390         }
391
392         /*
393          * OK, now we know the exact revision. Initialize omap_chip bits
394          * for powerdowmain and clockdomain code.
395          */
396         if (cpu_is_omap243x()) {
397                 /* Currently only supports 2430ES2.1 and 2430-all */
398                 omap_chip.oc |= CHIP_IS_OMAP2430;
399                 return;
400         } else if (cpu_is_omap242x()) {
401                 /* Currently only supports 2420ES2.1.1 and 2420-all */
402                 omap_chip.oc |= CHIP_IS_OMAP2420;
403                 return;
404         }
405
406         pr_err("Uninitialized omap_chip, please fix!\n");
407 }
408
409 /*
410  * Set up things for map_io and processor detection later on. Gets called
411  * pretty much first thing from board init. For multi-omap, this gets
412  * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
413  * detect the exact revision later on in omap2_detect_revision() once map_io
414  * is done.
415  */
416 void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
417 {
418         omap_revision = omap2_globals->class;
419         tap_base = omap2_globals->tap;
420
421         if (cpu_is_omap34xx())
422                 tap_prod_id = 0x0210;
423         else
424                 tap_prod_id = 0x0208;
425 }