blob: 40373db649aa3e8fc16fcb57b0002777e9e277c3 [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);
Vaibhav Hiremath971b8a92012-07-05 08:05:15 -070047 } else if (soc_is_am33xx()) {
Afzal Mohammedfb3cfb12012-03-05 16:11:01 -080048 val = omap_ctrl_readl(AM33XX_CONTROL_STATUS);
Felipe Balbiedeae652009-11-22 10:11:24 -080049 } else if (cpu_is_omap34xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030050 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
Santosh Shilimkar737daa02010-02-18 08:59:10 +000051 } else if (cpu_is_omap44xx()) {
Santosh Shilimkardcf5ef32010-09-27 14:02:58 -060052 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
R Sricharanb13e80a2012-04-19 17:42:19 +053053 } else if (soc_is_omap54xx()) {
54 val = omap_ctrl_readl(OMAP5XXX_CONTROL_STATUS);
55 val &= OMAP5_DEVICETYPE_MASK;
56 val >>= 6;
57 goto out;
Felipe Balbiedeae652009-11-22 10:11:24 -080058 } else {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030059 pr_err("Cannot detect omap type!\n");
60 goto out;
61 }
62
63 val &= OMAP2_DEVICETYPE_MASK;
64 val >>= 8;
65
66out:
67 return val;
68}
69EXPORT_SYMBOL(omap_type);
70
71
Tony Lindgrena8823142008-12-10 17:36:30 -080072/*----------------------------------------------------------------------------*/
Paul Walmsley097c5842008-07-03 12:24:45 +030073
Tony Lindgrena8823142008-12-10 17:36:30 -080074#define OMAP_TAP_IDCODE 0x0204
75#define OMAP_TAP_DIE_ID_0 0x0218
76#define OMAP_TAP_DIE_ID_1 0x021C
77#define OMAP_TAP_DIE_ID_2 0x0220
78#define OMAP_TAP_DIE_ID_3 0x0224
Paul Walmsley097c5842008-07-03 12:24:45 +030079
Andy Greenb235e002011-03-12 22:50:54 +000080#define OMAP_TAP_DIE_ID_44XX_0 0x0200
81#define OMAP_TAP_DIE_ID_44XX_1 0x0208
82#define OMAP_TAP_DIE_ID_44XX_2 0x020c
83#define OMAP_TAP_DIE_ID_44XX_3 0x0210
84
Tony Lindgrena8823142008-12-10 17:36:30 -080085#define read_tap_reg(reg) __raw_readl(tap_base + (reg))
Tony Lindgren0e564842008-10-06 15:49:16 +030086
Tony Lindgrena8823142008-12-10 17:36:30 -080087struct omap_id {
88 u16 hawkeye; /* Silicon type (Hawkeye id) */
89 u8 dev; /* Device type from production_id reg */
Lauri Leukkunen84a34342008-12-10 17:36:31 -080090 u32 type; /* Combined type id copied to omap_revision */
Tony Lindgrena8823142008-12-10 17:36:30 -080091};
Tony Lindgren0e564842008-10-06 15:49:16 +030092
Tony Lindgrena8823142008-12-10 17:36:30 -080093/* Register values to detect the OMAP version */
94static struct omap_id omap_ids[] __initdata = {
95 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
96 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
97 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
98 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
99 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
100 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
101};
Paul Walmsley097c5842008-07-03 12:24:45 +0300102
Tony Lindgrena8823142008-12-10 17:36:30 -0800103static void __iomem *tap_base;
104static u16 tap_prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000105
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300106void omap_get_die_id(struct omap_die_id *odi)
107{
R Sricharanb13e80a2012-04-19 17:42:19 +0530108 if (cpu_is_omap44xx() || soc_is_omap54xx()) {
Andy Greenb235e002011-03-12 22:50:54 +0000109 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
110 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
111 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
112 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
113
114 return;
115 }
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300116 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
117 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
118 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
119 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
120}
121
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530122void __init omap2xxx_check_revision(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000123{
124 int i, j;
Tony Lindgrena8823142008-12-10 17:36:30 -0800125 u32 idcode, prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000126 u16 hawkeye;
Tony Lindgrena8823142008-12-10 17:36:30 -0800127 u8 dev_type, rev;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300128 struct omap_die_id odi;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000129
130 idcode = read_tap_reg(OMAP_TAP_IDCODE);
Tony Lindgren0e564842008-10-06 15:49:16 +0300131 prod_id = read_tap_reg(tap_prod_id);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000132 hawkeye = (idcode >> 12) & 0xffff;
133 rev = (idcode >> 28) & 0x0f;
134 dev_type = (prod_id >> 16) & 0x0f;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300135 omap_get_die_id(&odi);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000136
Paul Walmsley097c5842008-07-03 12:24:45 +0300137 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
138 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300139 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
Paul Walmsley097c5842008-07-03 12:24:45 +0300140 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300141 odi.id_1, (odi.id_1 >> 28) & 0xf);
142 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
143 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
Paul Walmsley097c5842008-07-03 12:24:45 +0300144 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
145 prod_id, dev_type);
146
Tony Lindgren1dbae812005-11-10 14:26:51 +0000147 /* Check hawkeye ids */
148 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
149 if (hawkeye == omap_ids[i].hawkeye)
150 break;
151 }
152
153 if (i == ARRAY_SIZE(omap_ids)) {
154 printk(KERN_ERR "Unknown OMAP CPU id\n");
155 return;
156 }
157
158 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
159 if (dev_type == omap_ids[j].dev)
160 break;
161 }
162
163 if (j == ARRAY_SIZE(omap_ids)) {
164 printk(KERN_ERR "Unknown OMAP device type. "
165 "Handling it as OMAP%04x\n",
166 omap_ids[i].type >> 16);
167 j = i;
168 }
Tony Lindgren1dbae812005-11-10 14:26:51 +0000169
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800170 pr_info("OMAP%04x", omap_rev() >> 16);
171 if ((omap_rev() >> 8) & 0x0f)
172 pr_info("ES%x", (omap_rev() >> 12) & 0xf);
Paul Walmsley097c5842008-07-03 12:24:45 +0300173 pr_info("\n");
Tony Lindgren1dbae812005-11-10 14:26:51 +0000174}
175
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530176#define OMAP3_SHOW_FEATURE(feat) \
177 if (omap3_has_ ##feat()) \
178 printk(#feat" ");
179
180static void __init omap3_cpuinfo(void)
181{
182 const char *cpu_name;
183
184 /*
185 * OMAP3430 and OMAP3530 are assumed to be same.
186 *
187 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
188 * on available features. Upon detection, update the CPU id
189 * and CPU class bits.
190 */
191 if (cpu_is_omap3630()) {
192 cpu_name = "OMAP3630";
Kevin Hilman68a88b92012-04-30 16:37:10 -0700193 } else if (soc_is_am35xx()) {
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530194 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
195 } else if (cpu_is_ti816x()) {
196 cpu_name = "TI816X";
Vaibhav Hiremath971b8a92012-07-05 08:05:15 -0700197 } else if (soc_is_am335x()) {
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530198 cpu_name = "AM335X";
199 } else if (cpu_is_ti814x()) {
200 cpu_name = "TI814X";
201 } else if (omap3_has_iva() && omap3_has_sgx()) {
202 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
203 cpu_name = "OMAP3430/3530";
204 } else if (omap3_has_iva()) {
205 cpu_name = "OMAP3525";
206 } else if (omap3_has_sgx()) {
207 cpu_name = "OMAP3515";
208 } else {
209 cpu_name = "OMAP3503";
210 }
211
212 /* Print verbose information */
213 pr_info("%s ES%s (", cpu_name, cpu_rev);
214
215 OMAP3_SHOW_FEATURE(l2cache);
216 OMAP3_SHOW_FEATURE(iva);
217 OMAP3_SHOW_FEATURE(sgx);
218 OMAP3_SHOW_FEATURE(neon);
219 OMAP3_SHOW_FEATURE(isp);
220 OMAP3_SHOW_FEATURE(192mhz_clk);
221
222 printk(")\n");
223}
224
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800225#define OMAP3_CHECK_FEATURE(status,feat) \
226 if (((status & OMAP3_ ##feat## _MASK) \
227 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
Aneesh Vcc0170b2011-07-02 08:00:22 +0530228 omap_features |= OMAP3_HAS_ ##feat; \
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800229 }
230
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530231void __init omap3xxx_check_features(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800232{
233 u32 status;
234
Aneesh Vcc0170b2011-07-02 08:00:22 +0530235 omap_features = 0;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800236
237 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
238
239 OMAP3_CHECK_FEATURE(status, L2CACHE);
240 OMAP3_CHECK_FEATURE(status, IVA);
241 OMAP3_CHECK_FEATURE(status, SGX);
242 OMAP3_CHECK_FEATURE(status, NEON);
243 OMAP3_CHECK_FEATURE(status, ISP);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700244 if (cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530245 omap_features |= OMAP3_HAS_192MHZ_CLK;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600246 if (cpu_is_omap3430() || cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530247 omap_features |= OMAP3_HAS_IO_WAKEUP;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600248 if (cpu_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
249 omap_rev() == OMAP3430_REV_ES3_1_2)
250 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800251
Aneesh Vcc0170b2011-07-02 08:00:22 +0530252 omap_features |= OMAP3_HAS_SDRC;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800253
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800254 /*
Mark A. Greer1ce02992012-04-30 16:57:09 -0700255 * am35x fixups:
256 * - The am35x Chip ID register has bits 12, 7:5, and 3:2 marked as
257 * reserved and therefore return 0 when read. Unfortunately,
258 * OMAP3_CHECK_FEATURE() will interpret some of those zeroes to
259 * mean that a feature is present even though it isn't so clear
260 * the incorrectly set feature bits.
261 */
262 if (soc_is_am35xx())
263 omap_features &= ~(OMAP3_HAS_IVA | OMAP3_HAS_ISP);
264
265 /*
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800266 * TODO: Get additional info (where applicable)
267 * e.g. Size of L2 cache.
268 */
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530269
270 omap3_cpuinfo();
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800271}
272
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530273void __init omap4xxx_check_features(void)
Aneesh Vcc0170b2011-07-02 08:00:22 +0530274{
275 u32 si_type;
276
277 if (cpu_is_omap443x())
278 omap_features |= OMAP4_HAS_MPU_1GHZ;
279
280
281 if (cpu_is_omap446x()) {
282 si_type =
283 read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1);
284 switch ((si_type & (3 << 16)) >> 16) {
285 case 2:
286 /* High performance device */
287 omap_features |= OMAP4_HAS_MPU_1_5GHZ;
288 break;
289 case 1:
290 default:
291 /* Standard device */
292 omap_features |= OMAP4_HAS_MPU_1_2GHZ;
293 break;
294 }
295 }
296}
297
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530298void __init ti81xx_check_features(void)
Hemant Pedanekar01001712011-02-16 08:31:39 -0800299{
Aneesh Vcc0170b2011-07-02 08:00:22 +0530300 omap_features = OMAP3_HAS_NEON;
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530301 omap3_cpuinfo();
Hemant Pedanekar01001712011-02-16 08:31:39 -0800302}
303
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530304void __init omap3xxx_check_revision(void)
Tony Lindgrena8823142008-12-10 17:36:30 -0800305{
306 u32 cpuid, idcode;
307 u16 hawkeye;
308 u8 rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800309
310 /*
311 * We cannot access revision registers on ES1.0.
312 * If the processor type is Cortex-A8 and the revision is 0x0
313 * it means its Cortex r0p0 which is 3430 ES1.0.
314 */
315 cpuid = read_cpuid(CPUID_ID);
316 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800317 omap_revision = OMAP3430_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530318 cpu_rev = "1.0";
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800319 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800320 }
321
322 /*
323 * Detection for 34xx ES2.0 and above can be done with just
324 * hawkeye and rev. See TRM 1.5.2 Device Identification.
325 * Note that rev does not map directly to our defined processor
326 * revision numbers as ES1.0 uses value 0.
327 */
328 idcode = read_tap_reg(OMAP_TAP_IDCODE);
329 hawkeye = (idcode >> 12) & 0xffff;
330 rev = (idcode >> 28) & 0xff;
331
Nishanth Menon2456a102009-11-22 10:10:56 -0800332 switch (hawkeye) {
333 case 0xb7ae:
334 /* Handle 34xx/35xx devices */
Tony Lindgrena8823142008-12-10 17:36:30 -0800335 switch (rev) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800336 case 0: /* Take care of early samples */
337 case 1:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800338 omap_revision = OMAP3430_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530339 cpu_rev = "2.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800340 break;
341 case 2:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800342 omap_revision = OMAP3430_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530343 cpu_rev = "2.1";
Tony Lindgrena8823142008-12-10 17:36:30 -0800344 break;
345 case 3:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800346 omap_revision = OMAP3430_REV_ES3_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530347 cpu_rev = "3.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800348 break;
Tony Lindgren187e6882009-01-29 08:57:16 -0800349 case 4:
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800350 omap_revision = OMAP3430_REV_ES3_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530351 cpu_rev = "3.1";
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800352 break;
353 case 7:
Felipe Balbiedeae652009-11-22 10:11:24 -0800354 /* FALLTHROUGH */
Tony Lindgrena8823142008-12-10 17:36:30 -0800355 default:
356 /* Use the latest known revision as default */
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800357 omap_revision = OMAP3430_REV_ES3_1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530358 cpu_rev = "3.1.2";
Tony Lindgrena8823142008-12-10 17:36:30 -0800359 }
Nishanth Menon2456a102009-11-22 10:10:56 -0800360 break;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800361 case 0xb868:
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600362 /*
363 * Handle OMAP/AM 3505/3517 devices
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800364 *
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600365 * Set the device to be OMAP3517 here. Actual device
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800366 * is identified later based on the features.
367 */
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600368 switch (rev) {
369 case 0:
Kevin Hilman68a88b92012-04-30 16:37:10 -0700370 omap_revision = AM35XX_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530371 cpu_rev = "1.0";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600372 break;
373 case 1:
374 /* FALLTHROUGH */
375 default:
Kevin Hilman68a88b92012-04-30 16:37:10 -0700376 omap_revision = AM35XX_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530377 cpu_rev = "1.1";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600378 }
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800379 break;
Felipe Balbiedeae652009-11-22 10:11:24 -0800380 case 0xb891:
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000381 /* Handle 36xx devices */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000382
383 switch(rev) {
384 case 0: /* Take care of early samples */
385 omap_revision = OMAP3630_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530386 cpu_rev = "1.0";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000387 break;
388 case 1:
389 omap_revision = OMAP3630_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530390 cpu_rev = "1.1";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000391 break;
392 case 2:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600393 /* FALLTHROUGH */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000394 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600395 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530396 cpu_rev = "1.2";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000397 }
Nishanth Menon77c08702010-08-16 09:21:19 +0300398 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800399 case 0xb81e:
Hemant Pedanekar01001712011-02-16 08:31:39 -0800400 switch (rev) {
401 case 0:
402 omap_revision = TI8168_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530403 cpu_rev = "1.0";
Hemant Pedanekar01001712011-02-16 08:31:39 -0800404 break;
405 case 1:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600406 /* FALLTHROUGH */
Hemant Pedanekar01001712011-02-16 08:31:39 -0800407 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600408 omap_revision = TI8168_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530409 cpu_rev = "1.1";
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600410 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800411 }
412 break;
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800413 case 0xb944:
414 omap_revision = AM335X_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530415 cpu_rev = "1.0";
Vaibhav Hiremathc2d13552012-01-23 13:26:47 +0530416 break;
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800417 case 0xb8f2:
418 switch (rev) {
419 case 0:
420 /* FALLTHROUGH */
421 case 1:
422 omap_revision = TI8148_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530423 cpu_rev = "1.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800424 break;
425 case 2:
426 omap_revision = TI8148_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530427 cpu_rev = "2.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800428 break;
429 case 3:
430 /* FALLTHROUGH */
431 default:
432 omap_revision = TI8148_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530433 cpu_rev = "2.1";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800434 break;
435 }
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800436 break;
Nishanth Menon2456a102009-11-22 10:10:56 -0800437 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600438 /* Unknown default to latest silicon rev as default */
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600439 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530440 cpu_rev = "1.2";
Paul Walmsley51ec8112011-09-13 19:52:15 -0600441 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
Tony Lindgrena8823142008-12-10 17:36:30 -0800442 }
Tony Lindgrena8823142008-12-10 17:36:30 -0800443}
444
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530445void __init omap4xxx_check_revision(void)
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800446{
447 u32 idcode;
448 u16 hawkeye;
449 u8 rev;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800450
451 /*
452 * The IC rev detection is done with hawkeye and rev.
453 * Note that rev does not map directly to defined processor
454 * revision numbers as ES1.0 uses value 0.
455 */
456 idcode = read_tap_reg(OMAP_TAP_IDCODE);
457 hawkeye = (idcode >> 12) & 0xffff;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800458 rev = (idcode >> 28) & 0xf;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800459
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530460 /*
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530461 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530462 * Use ARM register to detect the correct ES version
463 */
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800464 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530465 idcode = read_cpuid(CPUID_ID);
466 rev = (idcode & 0xf) - 1;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800467 }
468
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530469 switch (hawkeye) {
470 case 0xb852:
471 switch (rev) {
472 case 0:
473 omap_revision = OMAP4430_REV_ES1_0;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530474 break;
475 case 1:
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530476 default:
477 omap_revision = OMAP4430_REV_ES2_0;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800478 }
479 break;
480 case 0xb95c:
481 switch (rev) {
482 case 3:
483 omap_revision = OMAP4430_REV_ES2_1;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800484 break;
485 case 4:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800486 omap_revision = OMAP4430_REV_ES2_2;
David Anders55035c12011-12-13 10:46:44 -0800487 break;
488 case 6:
489 default:
490 omap_revision = OMAP4430_REV_ES2_3;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800491 }
492 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530493 case 0xb94e:
494 switch (rev) {
495 case 0:
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530496 omap_revision = OMAP4460_REV_ES1_0;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530497 break;
Chris Lalancette33ee0db2012-05-09 09:45:02 -0700498 case 2:
499 default:
500 omap_revision = OMAP4460_REV_ES1_1;
501 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530502 }
503 break;
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800504 case 0xb975:
505 switch (rev) {
506 case 0:
507 default:
508 omap_revision = OMAP4470_REV_ES1_0;
509 break;
510 }
511 break;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530512 default:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800513 /* Unknown default to latest silicon rev as default */
David Anders55035c12011-12-13 10:46:44 -0800514 omap_revision = OMAP4430_REV_ES2_3;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530515 }
516
Nishant Kamate49c4d22011-02-17 09:55:03 -0800517 pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
518 ((omap_rev() >> 12) & 0xf), ((omap_rev() >> 8) & 0xf));
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800519}
520
R Sricharanb13e80a2012-04-19 17:42:19 +0530521void __init omap5xxx_check_revision(void)
522{
523 u32 idcode;
524 u16 hawkeye;
525 u8 rev;
526
527 idcode = read_tap_reg(OMAP_TAP_IDCODE);
528 hawkeye = (idcode >> 12) & 0xffff;
529 rev = (idcode >> 28) & 0xff;
530 switch (hawkeye) {
531 case 0xb942:
532 switch (rev) {
533 case 0:
534 default:
535 omap_revision = OMAP5430_REV_ES1_0;
536 }
537 break;
538
539 case 0xb998:
540 switch (rev) {
541 case 0:
542 default:
543 omap_revision = OMAP5432_REV_ES1_0;
544 }
545 break;
546
547 default:
548 /* Unknown default to latest silicon rev as default*/
549 omap_revision = OMAP5430_REV_ES1_0;
550 }
551
552 pr_info("OMAP%04x ES%d.0\n",
553 omap_rev() >> 16, ((omap_rev() >> 12) & 0xf));
554}
555
Tony Lindgrena8823142008-12-10 17:36:30 -0800556/*
557 * Set up things for map_io and processor detection later on. Gets called
558 * pretty much first thing from board init. For multi-omap, this gets
559 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
560 * detect the exact revision later on in omap2_detect_revision() once map_io
561 * is done.
562 */
Tony Lindgren0e564842008-10-06 15:49:16 +0300563void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)
564{
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800565 omap_revision = omap2_globals->class;
Tony Lindgren0e564842008-10-06 15:49:16 +0300566 tap_base = omap2_globals->tap;
567
Tony Lindgrena8823142008-12-10 17:36:30 -0800568 if (cpu_is_omap34xx())
Tony Lindgren0e564842008-10-06 15:49:16 +0300569 tap_prod_id = 0x0210;
570 else
571 tap_prod_id = 0x0208;
572}