blob: 752dcae8f78a3dba12d75b3d6f42da4044655392 [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
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 *
Nishant Kamate49c4d22011-02-17 09:55:03 -08009 * Copyright (C) 2009-11 Texas Instruments
Santosh Shilimkar44169072009-05-28 14:16:04 -070010 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
11 *
Tony Lindgren1dbae812005-11-10 14:26:51 +000012 * 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
Tony Lindgren1dbae812005-11-10 14:26:51 +000017#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000021
Russell King0ba8b9b2008-08-10 18:08:10 +010022#include <asm/cputype.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000023
Tony Lindgren4e653312011-11-10 22:45:17 +010024#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070025#include <plat/cpu.h>
Syed Mohammed Khasim72d0f1c2006-12-06 17:14:05 -080026
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +030027#include <mach/id.h>
28
Paul Walmsley4814ced2010-10-08 11:40:20 -060029#include "control.h"
30
Lauri Leukkunen84a34342008-12-10 17:36:31 -080031static unsigned int omap_revision;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +053032static const char *cpu_rev;
Aneesh Vcc0170b2011-07-02 08:00:22 +053033u32 omap_features;
Lauri Leukkunen84a34342008-12-10 17:36:31 -080034
35unsigned int omap_rev(void)
36{
37 return omap_revision;
38}
39EXPORT_SYMBOL(omap_rev);
Paul Walmsley097c5842008-07-03 12:24:45 +030040
Kevin Hilman8e25ad92009-06-23 13:30:23 +030041int omap_type(void)
42{
43 u32 val = 0;
44
Felipe Balbiedeae652009-11-22 10:11:24 -080045 if (cpu_is_omap24xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030046 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
Felipe Balbiedeae652009-11-22 10:11:24 -080047 } else if (cpu_is_omap34xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030048 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
Santosh Shilimkar737daa02010-02-18 08:59:10 +000049 } else if (cpu_is_omap44xx()) {
Santosh Shilimkardcf5ef32010-09-27 14:02:58 -060050 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
Felipe Balbiedeae652009-11-22 10:11:24 -080051 } else {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030052 pr_err("Cannot detect omap type!\n");
53 goto out;
54 }
55
56 val &= OMAP2_DEVICETYPE_MASK;
57 val >>= 8;
58
59out:
60 return val;
61}
62EXPORT_SYMBOL(omap_type);
63
64
Tony Lindgrena8823142008-12-10 17:36:30 -080065/*----------------------------------------------------------------------------*/
Paul Walmsley097c5842008-07-03 12:24:45 +030066
Tony Lindgrena8823142008-12-10 17:36:30 -080067#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
Paul Walmsley097c5842008-07-03 12:24:45 +030072
Andy Greenb235e002011-03-12 22:50:54 +000073#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
Tony Lindgrena8823142008-12-10 17:36:30 -080078#define read_tap_reg(reg) __raw_readl(tap_base + (reg))
Tony Lindgren0e564842008-10-06 15:49:16 +030079
Tony Lindgrena8823142008-12-10 17:36:30 -080080struct omap_id {
81 u16 hawkeye; /* Silicon type (Hawkeye id) */
82 u8 dev; /* Device type from production_id reg */
Lauri Leukkunen84a34342008-12-10 17:36:31 -080083 u32 type; /* Combined type id copied to omap_revision */
Tony Lindgrena8823142008-12-10 17:36:30 -080084};
Tony Lindgren0e564842008-10-06 15:49:16 +030085
Tony Lindgrena8823142008-12-10 17:36:30 -080086/* Register values to detect the OMAP version */
87static 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};
Paul Walmsley097c5842008-07-03 12:24:45 +030095
Tony Lindgrena8823142008-12-10 17:36:30 -080096static void __iomem *tap_base;
97static u16 tap_prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +000098
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +030099void omap_get_die_id(struct omap_die_id *odi)
100{
Andy Greenb235e002011-03-12 22:50:54 +0000101 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 }
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300109 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
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300115static void __init omap24xx_check_revision(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000116{
117 int i, j;
Tony Lindgrena8823142008-12-10 17:36:30 -0800118 u32 idcode, prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000119 u16 hawkeye;
Tony Lindgrena8823142008-12-10 17:36:30 -0800120 u8 dev_type, rev;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300121 struct omap_die_id odi;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000122
123 idcode = read_tap_reg(OMAP_TAP_IDCODE);
Tony Lindgren0e564842008-10-06 15:49:16 +0300124 prod_id = read_tap_reg(tap_prod_id);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000125 hawkeye = (idcode >> 12) & 0xffff;
126 rev = (idcode >> 28) & 0x0f;
127 dev_type = (prod_id >> 16) & 0x0f;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300128 omap_get_die_id(&odi);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000129
Paul Walmsley097c5842008-07-03 12:24:45 +0300130 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
131 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300132 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
Paul Walmsley097c5842008-07-03 12:24:45 +0300133 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300134 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);
Paul Walmsley097c5842008-07-03 12:24:45 +0300137 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
138 prod_id, dev_type);
139
Tony Lindgren1dbae812005-11-10 14:26:51 +0000140 /* 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 }
Tony Lindgren1dbae812005-11-10 14:26:51 +0000162
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800163 pr_info("OMAP%04x", omap_rev() >> 16);
164 if ((omap_rev() >> 8) & 0x0f)
165 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
Paul Walmsley097c5842008-07-03 12:24:45 +0300166 pr_info("\n");
Tony Lindgren1dbae812005-11-10 14:26:51 +0000167}
168
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530169#define OMAP3_SHOW_FEATURE(feat) \
170 if (omap3_has_ ##feat()) \
171 printk(#feat" ");
172
173static 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 (cpu_is_am335x()) {
192 cpu_name = "AM335X";
193 } else if (cpu_is_ti814x()) {
194 cpu_name = "TI814X";
195 } else if (omap3_has_iva() && omap3_has_sgx()) {
196 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
197 cpu_name = "OMAP3430/3530";
198 } else if (omap3_has_iva()) {
199 cpu_name = "OMAP3525";
200 } else if (omap3_has_sgx()) {
201 cpu_name = "OMAP3515";
202 } else {
203 cpu_name = "OMAP3503";
204 }
205
206 /* Print verbose information */
207 pr_info("%s ES%s (", cpu_name, cpu_rev);
208
209 OMAP3_SHOW_FEATURE(l2cache);
210 OMAP3_SHOW_FEATURE(iva);
211 OMAP3_SHOW_FEATURE(sgx);
212 OMAP3_SHOW_FEATURE(neon);
213 OMAP3_SHOW_FEATURE(isp);
214 OMAP3_SHOW_FEATURE(192mhz_clk);
215
216 printk(")\n");
217}
218
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800219#define OMAP3_CHECK_FEATURE(status,feat) \
220 if (((status & OMAP3_ ##feat## _MASK) \
221 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
Aneesh Vcc0170b2011-07-02 08:00:22 +0530222 omap_features |= OMAP3_HAS_ ##feat; \
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800223 }
224
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300225static void __init omap3_check_features(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800226{
227 u32 status;
228
Aneesh Vcc0170b2011-07-02 08:00:22 +0530229 omap_features = 0;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800230
231 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
232
233 OMAP3_CHECK_FEATURE(status, L2CACHE);
234 OMAP3_CHECK_FEATURE(status, IVA);
235 OMAP3_CHECK_FEATURE(status, SGX);
236 OMAP3_CHECK_FEATURE(status, NEON);
237 OMAP3_CHECK_FEATURE(status, ISP);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700238 if (cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530239 omap_features |= OMAP3_HAS_192MHZ_CLK;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600240 if (cpu_is_omap3430() || cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530241 omap_features |= OMAP3_HAS_IO_WAKEUP;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600242 if (cpu_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
243 omap_rev() == OMAP3430_REV_ES3_1_2)
244 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800245
Aneesh Vcc0170b2011-07-02 08:00:22 +0530246 omap_features |= OMAP3_HAS_SDRC;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800247
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800248 /*
249 * TODO: Get additional info (where applicable)
250 * e.g. Size of L2 cache.
251 */
252}
253
Aneesh Vcc0170b2011-07-02 08:00:22 +0530254static void __init omap4_check_features(void)
255{
256 u32 si_type;
257
258 if (cpu_is_omap443x())
259 omap_features |= OMAP4_HAS_MPU_1GHZ;
260
261
262 if (cpu_is_omap446x()) {
263 si_type =
264 read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1);
265 switch ((si_type & (3 << 16)) >> 16) {
266 case 2:
267 /* High performance device */
268 omap_features |= OMAP4_HAS_MPU_1_5GHZ;
269 break;
270 case 1:
271 default:
272 /* Standard device */
273 omap_features |= OMAP4_HAS_MPU_1_2GHZ;
274 break;
275 }
276 }
277}
278
Hemant Pedanekara9203602011-12-13 10:46:44 -0800279static void __init ti81xx_check_features(void)
Hemant Pedanekar01001712011-02-16 08:31:39 -0800280{
Aneesh Vcc0170b2011-07-02 08:00:22 +0530281 omap_features = OMAP3_HAS_NEON;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800282}
283
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530284static void __init omap3_check_revision(void)
Tony Lindgrena8823142008-12-10 17:36:30 -0800285{
286 u32 cpuid, idcode;
287 u16 hawkeye;
288 u8 rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800289
290 /*
291 * We cannot access revision registers on ES1.0.
292 * If the processor type is Cortex-A8 and the revision is 0x0
293 * it means its Cortex r0p0 which is 3430 ES1.0.
294 */
295 cpuid = read_cpuid(CPUID_ID);
296 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800297 omap_revision = OMAP3430_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530298 cpu_rev = "1.0";
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800299 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800300 }
301
302 /*
303 * Detection for 34xx ES2.0 and above can be done with just
304 * hawkeye and rev. See TRM 1.5.2 Device Identification.
305 * Note that rev does not map directly to our defined processor
306 * revision numbers as ES1.0 uses value 0.
307 */
308 idcode = read_tap_reg(OMAP_TAP_IDCODE);
309 hawkeye = (idcode >> 12) & 0xffff;
310 rev = (idcode >> 28) & 0xff;
311
Nishanth Menon2456a102009-11-22 10:10:56 -0800312 switch (hawkeye) {
313 case 0xb7ae:
314 /* Handle 34xx/35xx devices */
Tony Lindgrena8823142008-12-10 17:36:30 -0800315 switch (rev) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800316 case 0: /* Take care of early samples */
317 case 1:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800318 omap_revision = OMAP3430_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530319 cpu_rev = "2.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800320 break;
321 case 2:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800322 omap_revision = OMAP3430_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530323 cpu_rev = "2.1";
Tony Lindgrena8823142008-12-10 17:36:30 -0800324 break;
325 case 3:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800326 omap_revision = OMAP3430_REV_ES3_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530327 cpu_rev = "3.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800328 break;
Tony Lindgren187e6882009-01-29 08:57:16 -0800329 case 4:
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800330 omap_revision = OMAP3430_REV_ES3_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530331 cpu_rev = "3.1";
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800332 break;
333 case 7:
Felipe Balbiedeae652009-11-22 10:11:24 -0800334 /* FALLTHROUGH */
Tony Lindgrena8823142008-12-10 17:36:30 -0800335 default:
336 /* Use the latest known revision as default */
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800337 omap_revision = OMAP3430_REV_ES3_1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530338 cpu_rev = "3.1.2";
Tony Lindgrena8823142008-12-10 17:36:30 -0800339 }
Nishanth Menon2456a102009-11-22 10:10:56 -0800340 break;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800341 case 0xb868:
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600342 /*
343 * Handle OMAP/AM 3505/3517 devices
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800344 *
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600345 * Set the device to be OMAP3517 here. Actual device
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800346 * is identified later based on the features.
347 */
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600348 switch (rev) {
349 case 0:
350 omap_revision = OMAP3517_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530351 cpu_rev = "1.0";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600352 break;
353 case 1:
354 /* FALLTHROUGH */
355 default:
356 omap_revision = OMAP3517_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530357 cpu_rev = "1.1";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600358 }
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800359 break;
Felipe Balbiedeae652009-11-22 10:11:24 -0800360 case 0xb891:
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000361 /* Handle 36xx devices */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000362
363 switch(rev) {
364 case 0: /* Take care of early samples */
365 omap_revision = OMAP3630_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530366 cpu_rev = "1.0";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000367 break;
368 case 1:
369 omap_revision = OMAP3630_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530370 cpu_rev = "1.1";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000371 break;
372 case 2:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600373 /* FALLTHROUGH */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000374 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600375 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530376 cpu_rev = "1.2";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000377 }
Nishanth Menon77c08702010-08-16 09:21:19 +0300378 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800379 case 0xb81e:
Hemant Pedanekar01001712011-02-16 08:31:39 -0800380 switch (rev) {
381 case 0:
382 omap_revision = TI8168_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530383 cpu_rev = "1.0";
Hemant Pedanekar01001712011-02-16 08:31:39 -0800384 break;
385 case 1:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600386 /* FALLTHROUGH */
Hemant Pedanekar01001712011-02-16 08:31:39 -0800387 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600388 omap_revision = TI8168_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530389 cpu_rev = "1.1";
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600390 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800391 }
392 break;
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800393 case 0xb944:
394 omap_revision = AM335X_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530395 cpu_rev = "1.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800396 case 0xb8f2:
397 switch (rev) {
398 case 0:
399 /* FALLTHROUGH */
400 case 1:
401 omap_revision = TI8148_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530402 cpu_rev = "1.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800403 break;
404 case 2:
405 omap_revision = TI8148_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530406 cpu_rev = "2.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800407 break;
408 case 3:
409 /* FALLTHROUGH */
410 default:
411 omap_revision = TI8148_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530412 cpu_rev = "2.1";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800413 break;
414 }
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800415 break;
Nishanth Menon2456a102009-11-22 10:10:56 -0800416 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600417 /* Unknown default to latest silicon rev as default */
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600418 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530419 cpu_rev = "1.2";
Paul Walmsley51ec8112011-09-13 19:52:15 -0600420 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
Tony Lindgrena8823142008-12-10 17:36:30 -0800421 }
Tony Lindgrena8823142008-12-10 17:36:30 -0800422}
423
Nishanth Menon5ebc0d52010-08-02 14:21:40 +0300424static void __init omap4_check_revision(void)
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800425{
426 u32 idcode;
427 u16 hawkeye;
428 u8 rev;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800429
430 /*
431 * The IC rev detection is done with hawkeye and rev.
432 * Note that rev does not map directly to defined processor
433 * revision numbers as ES1.0 uses value 0.
434 */
435 idcode = read_tap_reg(OMAP_TAP_IDCODE);
436 hawkeye = (idcode >> 12) & 0xffff;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800437 rev = (idcode >> 28) & 0xf;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800438
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530439 /*
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530440 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530441 * Use ARM register to detect the correct ES version
442 */
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800443 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530444 idcode = read_cpuid(CPUID_ID);
445 rev = (idcode & 0xf) - 1;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800446 }
447
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530448 switch (hawkeye) {
449 case 0xb852:
450 switch (rev) {
451 case 0:
452 omap_revision = OMAP4430_REV_ES1_0;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530453 break;
454 case 1:
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530455 default:
456 omap_revision = OMAP4430_REV_ES2_0;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800457 }
458 break;
459 case 0xb95c:
460 switch (rev) {
461 case 3:
462 omap_revision = OMAP4430_REV_ES2_1;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800463 break;
464 case 4:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800465 omap_revision = OMAP4430_REV_ES2_2;
David Anders55035c12011-12-13 10:46:44 -0800466 break;
467 case 6:
468 default:
469 omap_revision = OMAP4430_REV_ES2_3;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800470 }
471 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530472 case 0xb94e:
473 switch (rev) {
474 case 0:
475 default:
476 omap_revision = OMAP4460_REV_ES1_0;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530477 break;
478 }
479 break;
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800480 case 0xb975:
481 switch (rev) {
482 case 0:
483 default:
484 omap_revision = OMAP4470_REV_ES1_0;
485 break;
486 }
487 break;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530488 default:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800489 /* Unknown default to latest silicon rev as default */
David Anders55035c12011-12-13 10:46:44 -0800490 omap_revision = OMAP4430_REV_ES2_3;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530491 }
492
Nishant Kamate49c4d22011-02-17 09:55:03 -0800493 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
494 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800495}
496
Tony Lindgrena8823142008-12-10 17:36:30 -0800497/*
498 * Try to detect the exact revision of the omap we're running on
499 */
Tony Lindgren5ba02dc2008-12-10 17:36:30 -0800500void __init omap2_check_revision(void)
501{
Tony Lindgrena8823142008-12-10 17:36:30 -0800502 /*
503 * At this point we have an idea about the processor revision set
504 * earlier with omap2_set_globals_tap().
505 */
Felipe Balbiedeae652009-11-22 10:11:24 -0800506 if (cpu_is_omap24xx()) {
Tony Lindgrena8823142008-12-10 17:36:30 -0800507 omap24xx_check_revision();
Felipe Balbiedeae652009-11-22 10:11:24 -0800508 } else if (cpu_is_omap34xx()) {
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530509 omap3_check_revision();
Hemant Pedanekar01001712011-02-16 08:31:39 -0800510
Hemant Pedanekara9203602011-12-13 10:46:44 -0800511 /* TI81XX doesn't have feature register */
512 if (!cpu_is_ti81xx())
Hemant Pedanekar01001712011-02-16 08:31:39 -0800513 omap3_check_features();
514 else
Hemant Pedanekara9203602011-12-13 10:46:44 -0800515 ti81xx_check_features();
Hemant Pedanekar01001712011-02-16 08:31:39 -0800516
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530517 omap3_cpuinfo();
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800518 return;
Felipe Balbiedeae652009-11-22 10:11:24 -0800519 } else if (cpu_is_omap44xx()) {
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800520 omap4_check_revision();
Aneesh Vcc0170b2011-07-02 08:00:22 +0530521 omap4_check_features();
Santosh Shilimkar44169072009-05-28 14:16:04 -0700522 return;
Felipe Balbiedeae652009-11-22 10:11:24 -0800523 } else {
Tony Lindgrena8823142008-12-10 17:36:30 -0800524 pr_err("OMAP revision unknown, please fix!\n");
Felipe Balbiedeae652009-11-22 10:11:24 -0800525 }
Tony Lindgren5ba02dc2008-12-10 17:36:30 -0800526}
527
Tony Lindgrena8823142008-12-10 17:36:30 -0800528/*
529 * Set up things for map_io and processor detection later on. Gets called
530 * pretty much first thing from board init. For multi-omap, this gets
531 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
532 * detect the exact revision later on in omap2_detect_revision() once map_io
533 * is done.
534 */
Tony Lindgren0e564842008-10-06 15:49:16 +0300535void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
536{
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800537 omap_revision = omap2_globals->class;
Tony Lindgren0e564842008-10-06 15:49:16 +0300538 tap_base = omap2_globals->tap;
539
Tony Lindgrena8823142008-12-10 17:36:30 -0800540 if (cpu_is_omap34xx())
Tony Lindgren0e564842008-10-06 15:49:16 +0300541 tap_prod_id = 0x0210;
542 else
543 tap_prod_id = 0x0208;
544}