]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/id.c
ARM: OMAP2: Fix omap 3430 ES2.0 CPU identification
[linux-2.6-omap-h63xx.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  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17
18 #include <asm/io.h>
19
20 #include "control.h"
21
22 #if defined(CONFIG_ARCH_OMAP2420)
23 #define TAP_BASE        io_p2v(0x48014000)
24 #elif defined(CONFIG_ARCH_OMAP2430)
25 #define TAP_BASE        io_p2v(0x4900A000)
26 #elif defined(CONFIG_ARCH_OMAP34XX)
27 #define TAP_BASE        io_p2v(0x4830A000)
28 #endif
29
30 #define OMAP_TAP_IDCODE         0x0204
31 #if defined(CONFIG_ARCH_OMAP34XX)
32 #define OMAP_TAP_PROD_ID        0x0210
33 #else
34 #define OMAP_TAP_PROD_ID        0x0208
35 #endif
36
37 #define OMAP_TAP_DIE_ID_0       0x0218
38 #define OMAP_TAP_DIE_ID_1       0x021C
39 #define OMAP_TAP_DIE_ID_2       0x0220
40 #define OMAP_TAP_DIE_ID_3       0x0224
41
42 /* system_rev fields for OMAP2 processors:
43  *   CPU id bits     [31:16],
44  *   CPU device type [15:12], (unprg,normal,POP)
45  *   CPU revision    [11:08]
46  *   CPU class bits  [07:00]
47  */
48
49 struct omap_id {
50         u16     hawkeye;        /* Silicon type (Hawkeye id) */
51         u8      dev;            /* Device type from production_id reg */
52         u32     type;           /* combined type id copied to system_rev */
53 };
54
55 /* Register values to detect the OMAP version */
56 static struct omap_id omap_ids[] __initdata = {
57         { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200000 },
58         { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201000 },
59         { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202000 },
60         { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220000 },
61         { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230000 },
62         { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300000 },
63         { .hawkeye = 0xb7ae, .dev = 0xf, .type = 0x34300000 },
64         { .hawkeye = 0xb7ae, .dev = 0x0, .type = 0x34301000 },
65         { .hawkeye = 0xb7ae, .dev = 0xe, .type = 0x34302000 },
66 };
67
68 static u32 __init read_tap_reg(int reg)
69 {
70         unsigned int regval = 0;
71         u32 cpuid;
72
73         /* Reading the IDCODE register on 3430 ES1 results in a
74          * data abort as the register is not exposed on the OCP
75          * Hence reading the Cortex Rev
76          */
77         cpuid = read_cpuid(CPUID_ID);
78
79         /* If the processor type is Cortex-A8 and the revision is 0x0
80          * it means its Cortex r0p0 which is 3430 ES1
81          */
82         if ((((cpuid >> 4) & 0xFFF) == 0xC08) && ((cpuid & 0xF) == 0x0)) {
83                 switch (reg) {
84                 case OMAP_TAP_IDCODE  : regval = 0x0B7AE02F; break;
85                 /* Making DevType as 0xF in ES1 to differ from ES2 */
86                 case OMAP_TAP_PROD_ID : regval = 0x000F00F0; break;
87                 case OMAP_TAP_DIE_ID_0: regval = 0x01000000; break;
88                 case OMAP_TAP_DIE_ID_1: regval = 0x1012d687; break;
89                 case OMAP_TAP_DIE_ID_2: regval = 0x00000000; break;
90                 case OMAP_TAP_DIE_ID_3: regval = 0x2d2c0000; break;
91                 }
92         } else if ((((cpuid >> 4) & 0xFFF) == 0xC08) && ((cpuid & 0xF) == 0x1)) {
93                 switch (reg) {
94                 case OMAP_TAP_IDCODE  : regval = 0x1b7ae02f; break;
95                 /* Making DevType as 0xE in ES2 to differ from other ESx */
96                 case OMAP_TAP_PROD_ID : regval = 0x000E00F0; break;
97                 case OMAP_TAP_DIE_ID_0: regval = 0x0400800f; break;
98                 case OMAP_TAP_DIE_ID_1: regval = 0x04013d1d; break;
99                 case OMAP_TAP_DIE_ID_2: regval = 0x00000000; break;
100                 case OMAP_TAP_DIE_ID_3: regval = 0x1fe80001; break;
101                 }
102         } else
103                 regval = __raw_readl(TAP_BASE + reg);
104
105         return regval;
106
107 }
108
109 void __init omap2_check_revision(void)
110 {
111         int ctrl_status = 0;
112         int i, j;
113         u32 idcode;
114         u32 prod_id;
115         u16 hawkeye;
116         u8  dev_type;
117         u8  rev;
118
119         idcode = read_tap_reg(OMAP_TAP_IDCODE);
120         prod_id = read_tap_reg(OMAP_TAP_PROD_ID);
121         hawkeye = (idcode >> 12) & 0xffff;
122         rev = (idcode >> 28) & 0x0f;
123         dev_type = (prod_id >> 16) & 0x0f;
124
125 #ifdef DEBUG
126         printk(KERN_DEBUG "OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
127                 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
128         printk(KERN_DEBUG "OMAP_TAP_DIE_ID_0: 0x%08x\n",
129                 read_tap_reg(OMAP_TAP_DIE_ID_0));
130         printk(KERN_DEBUG "OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
131                 read_tap_reg(OMAP_TAP_DIE_ID_1),
132                (read_tap_reg(OMAP_TAP_DIE_ID_1) >> 28) & 0xf);
133         printk(KERN_DEBUG "OMAP_TAP_DIE_ID_2: 0x%08x\n",
134                 read_tap_reg(OMAP_TAP_DIE_ID_2));
135         printk(KERN_DEBUG "OMAP_TAP_DIE_ID_3: 0x%08x\n",
136                 read_tap_reg(OMAP_TAP_DIE_ID_3));
137         printk(KERN_DEBUG "OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
138                 prod_id, dev_type);
139 #endif
140
141         /* Check hawkeye ids */
142         for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
143                 if (hawkeye == omap_ids[i].hawkeye)
144                         break;
145         }
146
147         if (i == ARRAY_SIZE(omap_ids)) {
148                 printk(KERN_ERR "Unknown OMAP CPU id\n");
149                 return;
150         }
151
152         for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
153                 if (dev_type == omap_ids[j].dev)
154                         break;
155         }
156
157         if (j == ARRAY_SIZE(omap_ids)) {
158                 printk(KERN_ERR "Unknown OMAP device type. "
159                                 "Handling it as OMAP%04x\n",
160                                 omap_ids[i].type >> 16);
161                 j = i;
162         }
163
164         /*
165          * system_rev encoding is as follows
166          * system_rev & 0xff000000 -> Omap Class (24xx/34xx)
167          * system_rev & 0xfff00000 -> Omap Sub Class (242x/343x)
168          * system_rev & 0xffff0000 -> Omap type (2420/2422/2423/2430/3430)
169          * system_rev & 0x0000f000 -> Silicon revision (ES1, ES2 )
170          * system_rev & 0x00000700 -> Device Type ( EMU/HS/GP/BAD )
171          * system_rev & 0x0000003f -> sys_boot[0:5]
172          */
173         /* Embedding the ES revision info in type field */
174         system_rev = omap_ids[j].type;
175
176         /* Add in the device type and sys_boot fields (see above) */
177         if (cpu_is_omap24xx()) {
178                 i = OMAP24XX_CONTROL_STATUS;
179         } else if (cpu_is_omap343x()) {
180                 i = OMAP343X_CONTROL_STATUS;
181         } else {
182                 printk(KERN_ERR "id: unknown CPU type\n");
183                 BUG();
184         }
185         ctrl_status = ctrl_read_reg(i);
186         system_rev |= (ctrl_status & (OMAP2_SYSBOOT_5_MASK |
187                                       OMAP2_SYSBOOT_4_MASK |
188                                       OMAP2_SYSBOOT_3_MASK |
189                                       OMAP2_SYSBOOT_2_MASK |
190                                       OMAP2_SYSBOOT_1_MASK |
191                                       OMAP2_SYSBOOT_0_MASK));
192         system_rev |= (ctrl_status & OMAP2_DEVICETYPE_MASK);
193
194         pr_info("OMAP%04x", system_rev >> 16);
195         if ((system_rev >> 8) & 0x0f)
196                 printk("ES%x", (system_rev >> 12) & 0xf);
197         printk("\n");
198
199 }
200