blob: 3737700529fed384717eab8c7d8abe2deb02d363 [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"
Syed Mohammed Khasim72d0f1c2006-12-06 17:14:05 -080025
Tony Lindgren4952af42012-09-19 10:33:40 -070026#include "id.h"
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +030027
Tony Lindgrendbc04162012-08-31 10:59:07 -070028#include "soc.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060029#include "control.h"
30
Ivan Khoronzhuk42a1cc92012-11-14 12:10:37 -080031#define OMAP4_SILICON_TYPE_STANDARD 0x01
32#define OMAP4_SILICON_TYPE_PERFORMANCE 0x02
33
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +020034#define OMAP_SOC_MAX_NAME_LENGTH 16
35
Lauri Leukkunen84a34342008-12-10 17:36:31 -080036static unsigned int omap_revision;
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +020037static char soc_name[OMAP_SOC_MAX_NAME_LENGTH];
38static char soc_rev[OMAP_SOC_MAX_NAME_LENGTH];
Aneesh Vcc0170b2011-07-02 08:00:22 +053039u32 omap_features;
Lauri Leukkunen84a34342008-12-10 17:36:31 -080040
41unsigned int omap_rev(void)
42{
43 return omap_revision;
44}
45EXPORT_SYMBOL(omap_rev);
Paul Walmsley097c5842008-07-03 12:24:45 +030046
Kevin Hilman8e25ad92009-06-23 13:30:23 +030047int omap_type(void)
48{
49 u32 val = 0;
50
Felipe Balbiedeae652009-11-22 10:11:24 -080051 if (cpu_is_omap24xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030052 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
Vaibhav Hiremath971b8a92012-07-05 08:05:15 -070053 } else if (soc_is_am33xx()) {
Afzal Mohammedfb3cfb12012-03-05 16:11:01 -080054 val = omap_ctrl_readl(AM33XX_CONTROL_STATUS);
Felipe Balbiedeae652009-11-22 10:11:24 -080055 } else if (cpu_is_omap34xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030056 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
Santosh Shilimkar737daa02010-02-18 08:59:10 +000057 } else if (cpu_is_omap44xx()) {
Santosh Shilimkardcf5ef32010-09-27 14:02:58 -060058 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
R Sricharanb13e80a2012-04-19 17:42:19 +053059 } else if (soc_is_omap54xx()) {
60 val = omap_ctrl_readl(OMAP5XXX_CONTROL_STATUS);
61 val &= OMAP5_DEVICETYPE_MASK;
62 val >>= 6;
63 goto out;
Felipe Balbiedeae652009-11-22 10:11:24 -080064 } else {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030065 pr_err("Cannot detect omap type!\n");
66 goto out;
67 }
68
69 val &= OMAP2_DEVICETYPE_MASK;
70 val >>= 8;
71
72out:
73 return val;
74}
75EXPORT_SYMBOL(omap_type);
76
77
Tony Lindgrena8823142008-12-10 17:36:30 -080078/*----------------------------------------------------------------------------*/
Paul Walmsley097c5842008-07-03 12:24:45 +030079
Tony Lindgrena8823142008-12-10 17:36:30 -080080#define OMAP_TAP_IDCODE 0x0204
81#define OMAP_TAP_DIE_ID_0 0x0218
82#define OMAP_TAP_DIE_ID_1 0x021C
83#define OMAP_TAP_DIE_ID_2 0x0220
84#define OMAP_TAP_DIE_ID_3 0x0224
Paul Walmsley097c5842008-07-03 12:24:45 +030085
Andy Greenb235e002011-03-12 22:50:54 +000086#define OMAP_TAP_DIE_ID_44XX_0 0x0200
87#define OMAP_TAP_DIE_ID_44XX_1 0x0208
88#define OMAP_TAP_DIE_ID_44XX_2 0x020c
89#define OMAP_TAP_DIE_ID_44XX_3 0x0210
90
Tony Lindgrena8823142008-12-10 17:36:30 -080091#define read_tap_reg(reg) __raw_readl(tap_base + (reg))
Tony Lindgren0e564842008-10-06 15:49:16 +030092
Tony Lindgrena8823142008-12-10 17:36:30 -080093struct omap_id {
94 u16 hawkeye; /* Silicon type (Hawkeye id) */
95 u8 dev; /* Device type from production_id reg */
Lauri Leukkunen84a34342008-12-10 17:36:31 -080096 u32 type; /* Combined type id copied to omap_revision */
Tony Lindgrena8823142008-12-10 17:36:30 -080097};
Tony Lindgren0e564842008-10-06 15:49:16 +030098
Tony Lindgrena8823142008-12-10 17:36:30 -080099/* Register values to detect the OMAP version */
100static struct omap_id omap_ids[] __initdata = {
101 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
102 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
103 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
104 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
105 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
106 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
107};
Paul Walmsley097c5842008-07-03 12:24:45 +0300108
Tony Lindgrena8823142008-12-10 17:36:30 -0800109static void __iomem *tap_base;
110static u16 tap_prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000111
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300112void omap_get_die_id(struct omap_die_id *odi)
113{
R Sricharanb13e80a2012-04-19 17:42:19 +0530114 if (cpu_is_omap44xx() || soc_is_omap54xx()) {
Andy Greenb235e002011-03-12 22:50:54 +0000115 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
116 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
117 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
118 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
119
120 return;
121 }
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300122 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
123 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
124 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
125 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
126}
127
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530128void __init omap2xxx_check_revision(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000129{
130 int i, j;
Tony Lindgrena8823142008-12-10 17:36:30 -0800131 u32 idcode, prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000132 u16 hawkeye;
Tony Lindgrena8823142008-12-10 17:36:30 -0800133 u8 dev_type, rev;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300134 struct omap_die_id odi;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000135
136 idcode = read_tap_reg(OMAP_TAP_IDCODE);
Tony Lindgren0e564842008-10-06 15:49:16 +0300137 prod_id = read_tap_reg(tap_prod_id);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000138 hawkeye = (idcode >> 12) & 0xffff;
139 rev = (idcode >> 28) & 0x0f;
140 dev_type = (prod_id >> 16) & 0x0f;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300141 omap_get_die_id(&odi);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000142
Paul Walmsley097c5842008-07-03 12:24:45 +0300143 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
144 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300145 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
Paul Walmsley097c5842008-07-03 12:24:45 +0300146 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300147 odi.id_1, (odi.id_1 >> 28) & 0xf);
148 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
149 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
Paul Walmsley097c5842008-07-03 12:24:45 +0300150 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
151 prod_id, dev_type);
152
Tony Lindgren1dbae812005-11-10 14:26:51 +0000153 /* Check hawkeye ids */
154 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
155 if (hawkeye == omap_ids[i].hawkeye)
156 break;
157 }
158
159 if (i == ARRAY_SIZE(omap_ids)) {
160 printk(KERN_ERR "Unknown OMAP CPU id\n");
161 return;
162 }
163
164 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
165 if (dev_type == omap_ids[j].dev)
166 break;
167 }
168
169 if (j == ARRAY_SIZE(omap_ids)) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600170 pr_err("Unknown OMAP device type. Handling it as OMAP%04x\n",
171 omap_ids[i].type >> 16);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000172 j = i;
173 }
Tony Lindgren1dbae812005-11-10 14:26:51 +0000174
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200175 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
176 sprintf(soc_rev, "ES%x", (omap_rev() >> 12) & 0xf);
177
178 pr_info("%s", soc_name);
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800179 if ((omap_rev() >> 8) & 0x0f)
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200180 pr_info("%s", soc_rev);
Paul Walmsley097c5842008-07-03 12:24:45 +0300181 pr_info("\n");
Tony Lindgren1dbae812005-11-10 14:26:51 +0000182}
183
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530184#define OMAP3_SHOW_FEATURE(feat) \
185 if (omap3_has_ ##feat()) \
186 printk(#feat" ");
187
188static void __init omap3_cpuinfo(void)
189{
190 const char *cpu_name;
191
192 /*
193 * OMAP3430 and OMAP3530 are assumed to be same.
194 *
195 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
196 * on available features. Upon detection, update the CPU id
197 * and CPU class bits.
198 */
199 if (cpu_is_omap3630()) {
200 cpu_name = "OMAP3630";
Kevin Hilman68a88b92012-04-30 16:37:10 -0700201 } else if (soc_is_am35xx()) {
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530202 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
203 } else if (cpu_is_ti816x()) {
204 cpu_name = "TI816X";
Vaibhav Hiremath971b8a92012-07-05 08:05:15 -0700205 } else if (soc_is_am335x()) {
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530206 cpu_name = "AM335X";
207 } else if (cpu_is_ti814x()) {
208 cpu_name = "TI814X";
209 } else if (omap3_has_iva() && omap3_has_sgx()) {
210 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
211 cpu_name = "OMAP3430/3530";
212 } else if (omap3_has_iva()) {
213 cpu_name = "OMAP3525";
214 } else if (omap3_has_sgx()) {
215 cpu_name = "OMAP3515";
216 } else {
217 cpu_name = "OMAP3503";
218 }
219
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200220 sprintf(soc_name, "%s", cpu_name);
221
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530222 /* Print verbose information */
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200223 pr_info("%s %s (", soc_name, soc_rev);
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530224
225 OMAP3_SHOW_FEATURE(l2cache);
226 OMAP3_SHOW_FEATURE(iva);
227 OMAP3_SHOW_FEATURE(sgx);
228 OMAP3_SHOW_FEATURE(neon);
229 OMAP3_SHOW_FEATURE(isp);
230 OMAP3_SHOW_FEATURE(192mhz_clk);
231
232 printk(")\n");
233}
234
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800235#define OMAP3_CHECK_FEATURE(status,feat) \
236 if (((status & OMAP3_ ##feat## _MASK) \
237 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
Aneesh Vcc0170b2011-07-02 08:00:22 +0530238 omap_features |= OMAP3_HAS_ ##feat; \
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800239 }
240
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530241void __init omap3xxx_check_features(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800242{
243 u32 status;
244
Aneesh Vcc0170b2011-07-02 08:00:22 +0530245 omap_features = 0;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800246
247 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
248
249 OMAP3_CHECK_FEATURE(status, L2CACHE);
250 OMAP3_CHECK_FEATURE(status, IVA);
251 OMAP3_CHECK_FEATURE(status, SGX);
252 OMAP3_CHECK_FEATURE(status, NEON);
253 OMAP3_CHECK_FEATURE(status, ISP);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700254 if (cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530255 omap_features |= OMAP3_HAS_192MHZ_CLK;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600256 if (cpu_is_omap3430() || cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530257 omap_features |= OMAP3_HAS_IO_WAKEUP;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600258 if (cpu_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
259 omap_rev() == OMAP3430_REV_ES3_1_2)
260 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800261
Aneesh Vcc0170b2011-07-02 08:00:22 +0530262 omap_features |= OMAP3_HAS_SDRC;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800263
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800264 /*
Mark A. Greer1ce02992012-04-30 16:57:09 -0700265 * am35x fixups:
266 * - The am35x Chip ID register has bits 12, 7:5, and 3:2 marked as
267 * reserved and therefore return 0 when read. Unfortunately,
268 * OMAP3_CHECK_FEATURE() will interpret some of those zeroes to
269 * mean that a feature is present even though it isn't so clear
270 * the incorrectly set feature bits.
271 */
272 if (soc_is_am35xx())
273 omap_features &= ~(OMAP3_HAS_IVA | OMAP3_HAS_ISP);
274
275 /*
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800276 * TODO: Get additional info (where applicable)
277 * e.g. Size of L2 cache.
278 */
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530279
280 omap3_cpuinfo();
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800281}
282
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530283void __init omap4xxx_check_features(void)
Aneesh Vcc0170b2011-07-02 08:00:22 +0530284{
285 u32 si_type;
286
Ivan Khoronzhuk42a1cc92012-11-14 12:10:37 -0800287 si_type =
288 (read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1) >> 16) & 0x03;
Aneesh Vcc0170b2011-07-02 08:00:22 +0530289
Ivan Khoronzhuk42a1cc92012-11-14 12:10:37 -0800290 if (si_type == OMAP4_SILICON_TYPE_PERFORMANCE)
291 omap_features = OMAP4_HAS_PERF_SILICON;
Aneesh Vcc0170b2011-07-02 08:00:22 +0530292}
293
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530294void __init ti81xx_check_features(void)
Hemant Pedanekar01001712011-02-16 08:31:39 -0800295{
Aneesh Vcc0170b2011-07-02 08:00:22 +0530296 omap_features = OMAP3_HAS_NEON;
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530297 omap3_cpuinfo();
Hemant Pedanekar01001712011-02-16 08:31:39 -0800298}
299
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530300void __init omap3xxx_check_revision(void)
Tony Lindgrena8823142008-12-10 17:36:30 -0800301{
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200302 const char *cpu_rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800303 u32 cpuid, idcode;
304 u16 hawkeye;
305 u8 rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800306
307 /*
308 * We cannot access revision registers on ES1.0.
309 * If the processor type is Cortex-A8 and the revision is 0x0
310 * it means its Cortex r0p0 which is 3430 ES1.0.
311 */
312 cpuid = read_cpuid(CPUID_ID);
313 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800314 omap_revision = OMAP3430_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530315 cpu_rev = "1.0";
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800316 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800317 }
318
319 /*
320 * Detection for 34xx ES2.0 and above can be done with just
321 * hawkeye and rev. See TRM 1.5.2 Device Identification.
322 * Note that rev does not map directly to our defined processor
323 * revision numbers as ES1.0 uses value 0.
324 */
325 idcode = read_tap_reg(OMAP_TAP_IDCODE);
326 hawkeye = (idcode >> 12) & 0xffff;
327 rev = (idcode >> 28) & 0xff;
328
Nishanth Menon2456a102009-11-22 10:10:56 -0800329 switch (hawkeye) {
330 case 0xb7ae:
331 /* Handle 34xx/35xx devices */
Tony Lindgrena8823142008-12-10 17:36:30 -0800332 switch (rev) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800333 case 0: /* Take care of early samples */
334 case 1:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800335 omap_revision = OMAP3430_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530336 cpu_rev = "2.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800337 break;
338 case 2:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800339 omap_revision = OMAP3430_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530340 cpu_rev = "2.1";
Tony Lindgrena8823142008-12-10 17:36:30 -0800341 break;
342 case 3:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800343 omap_revision = OMAP3430_REV_ES3_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530344 cpu_rev = "3.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800345 break;
Tony Lindgren187e6882009-01-29 08:57:16 -0800346 case 4:
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800347 omap_revision = OMAP3430_REV_ES3_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530348 cpu_rev = "3.1";
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800349 break;
350 case 7:
Felipe Balbiedeae652009-11-22 10:11:24 -0800351 /* FALLTHROUGH */
Tony Lindgrena8823142008-12-10 17:36:30 -0800352 default:
353 /* Use the latest known revision as default */
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800354 omap_revision = OMAP3430_REV_ES3_1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530355 cpu_rev = "3.1.2";
Tony Lindgrena8823142008-12-10 17:36:30 -0800356 }
Nishanth Menon2456a102009-11-22 10:10:56 -0800357 break;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800358 case 0xb868:
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600359 /*
360 * Handle OMAP/AM 3505/3517 devices
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800361 *
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600362 * Set the device to be OMAP3517 here. Actual device
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800363 * is identified later based on the features.
364 */
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600365 switch (rev) {
366 case 0:
Kevin Hilman68a88b92012-04-30 16:37:10 -0700367 omap_revision = AM35XX_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530368 cpu_rev = "1.0";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600369 break;
370 case 1:
371 /* FALLTHROUGH */
372 default:
Kevin Hilman68a88b92012-04-30 16:37:10 -0700373 omap_revision = AM35XX_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530374 cpu_rev = "1.1";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600375 }
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800376 break;
Felipe Balbiedeae652009-11-22 10:11:24 -0800377 case 0xb891:
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000378 /* Handle 36xx devices */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000379
380 switch(rev) {
381 case 0: /* Take care of early samples */
382 omap_revision = OMAP3630_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530383 cpu_rev = "1.0";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000384 break;
385 case 1:
386 omap_revision = OMAP3630_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530387 cpu_rev = "1.1";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000388 break;
389 case 2:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600390 /* FALLTHROUGH */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000391 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600392 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530393 cpu_rev = "1.2";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000394 }
Nishanth Menon77c08702010-08-16 09:21:19 +0300395 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800396 case 0xb81e:
Hemant Pedanekar01001712011-02-16 08:31:39 -0800397 switch (rev) {
398 case 0:
399 omap_revision = TI8168_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530400 cpu_rev = "1.0";
Hemant Pedanekar01001712011-02-16 08:31:39 -0800401 break;
402 case 1:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600403 /* FALLTHROUGH */
Hemant Pedanekar01001712011-02-16 08:31:39 -0800404 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600405 omap_revision = TI8168_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530406 cpu_rev = "1.1";
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600407 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800408 }
409 break;
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800410 case 0xb944:
AnilKumar Ch5af044f2013-02-01 15:58:22 +0530411 switch (rev) {
412 case 0:
413 omap_revision = AM335X_REV_ES1_0;
414 cpu_rev = "1.0";
415 break;
416 case 1:
417 /* FALLTHROUGH */
418 default:
419 omap_revision = AM335X_REV_ES2_0;
420 cpu_rev = "2.0";
421 break;
422 }
Vaibhav Hiremathc2d13552012-01-23 13:26:47 +0530423 break;
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800424 case 0xb8f2:
425 switch (rev) {
426 case 0:
427 /* FALLTHROUGH */
428 case 1:
429 omap_revision = TI8148_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530430 cpu_rev = "1.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800431 break;
432 case 2:
433 omap_revision = TI8148_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530434 cpu_rev = "2.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800435 break;
436 case 3:
437 /* FALLTHROUGH */
438 default:
439 omap_revision = TI8148_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530440 cpu_rev = "2.1";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800441 break;
442 }
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800443 break;
Nishanth Menon2456a102009-11-22 10:10:56 -0800444 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600445 /* Unknown default to latest silicon rev as default */
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600446 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530447 cpu_rev = "1.2";
Paul Walmsley51ec8112011-09-13 19:52:15 -0600448 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
Tony Lindgrena8823142008-12-10 17:36:30 -0800449 }
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200450 sprintf(soc_rev, "ES%s", cpu_rev);
Tony Lindgrena8823142008-12-10 17:36:30 -0800451}
452
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530453void __init omap4xxx_check_revision(void)
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800454{
455 u32 idcode;
456 u16 hawkeye;
457 u8 rev;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800458
459 /*
460 * The IC rev detection is done with hawkeye and rev.
461 * Note that rev does not map directly to defined processor
462 * revision numbers as ES1.0 uses value 0.
463 */
464 idcode = read_tap_reg(OMAP_TAP_IDCODE);
465 hawkeye = (idcode >> 12) & 0xffff;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800466 rev = (idcode >> 28) & 0xf;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800467
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530468 /*
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530469 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530470 * Use ARM register to detect the correct ES version
471 */
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800472 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530473 idcode = read_cpuid(CPUID_ID);
474 rev = (idcode & 0xf) - 1;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800475 }
476
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530477 switch (hawkeye) {
478 case 0xb852:
479 switch (rev) {
480 case 0:
481 omap_revision = OMAP4430_REV_ES1_0;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530482 break;
483 case 1:
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530484 default:
485 omap_revision = OMAP4430_REV_ES2_0;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800486 }
487 break;
488 case 0xb95c:
489 switch (rev) {
490 case 3:
491 omap_revision = OMAP4430_REV_ES2_1;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800492 break;
493 case 4:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800494 omap_revision = OMAP4430_REV_ES2_2;
David Anders55035c12011-12-13 10:46:44 -0800495 break;
496 case 6:
497 default:
498 omap_revision = OMAP4430_REV_ES2_3;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800499 }
500 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530501 case 0xb94e:
502 switch (rev) {
503 case 0:
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530504 omap_revision = OMAP4460_REV_ES1_0;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530505 break;
Chris Lalancette33ee0db2012-05-09 09:45:02 -0700506 case 2:
507 default:
508 omap_revision = OMAP4460_REV_ES1_1;
509 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530510 }
511 break;
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800512 case 0xb975:
513 switch (rev) {
514 case 0:
515 default:
516 omap_revision = OMAP4470_REV_ES1_0;
517 break;
518 }
519 break;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530520 default:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800521 /* Unknown default to latest silicon rev as default */
David Anders55035c12011-12-13 10:46:44 -0800522 omap_revision = OMAP4430_REV_ES2_3;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530523 }
524
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200525 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
526 sprintf(soc_rev, "ES%d.%d", (omap_rev() >> 12) & 0xf,
527 (omap_rev() >> 8) & 0xf);
528 pr_info("%s %s\n", soc_name, soc_rev);
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800529}
530
R Sricharanb13e80a2012-04-19 17:42:19 +0530531void __init omap5xxx_check_revision(void)
532{
533 u32 idcode;
534 u16 hawkeye;
535 u8 rev;
536
537 idcode = read_tap_reg(OMAP_TAP_IDCODE);
538 hawkeye = (idcode >> 12) & 0xffff;
539 rev = (idcode >> 28) & 0xff;
540 switch (hawkeye) {
541 case 0xb942:
542 switch (rev) {
543 case 0:
544 default:
545 omap_revision = OMAP5430_REV_ES1_0;
546 }
547 break;
548
549 case 0xb998:
550 switch (rev) {
551 case 0:
552 default:
553 omap_revision = OMAP5432_REV_ES1_0;
554 }
555 break;
556
557 default:
558 /* Unknown default to latest silicon rev as default*/
559 omap_revision = OMAP5430_REV_ES1_0;
560 }
561
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200562 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
563 sprintf(soc_rev, "ES%d.0", (omap_rev() >> 12) & 0xf);
564
565 pr_info("%s %s\n", soc_name, soc_rev);
R Sricharanb13e80a2012-04-19 17:42:19 +0530566}
567
Tony Lindgrena8823142008-12-10 17:36:30 -0800568/*
569 * Set up things for map_io and processor detection later on. Gets called
570 * pretty much first thing from board init. For multi-omap, this gets
571 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
572 * detect the exact revision later on in omap2_detect_revision() once map_io
573 * is done.
574 */
Paul Walmsleyb6a42262012-10-29 20:50:21 -0600575void __init omap2_set_globals_tap(u32 class, void __iomem *tap)
Tony Lindgren0e564842008-10-06 15:49:16 +0300576{
Paul Walmsleyb6a42262012-10-29 20:50:21 -0600577 omap_revision = class;
578 tap_base = tap;
Tony Lindgren0e564842008-10-06 15:49:16 +0300579
Paul Walmsleyb6a42262012-10-29 20:50:21 -0600580 /* XXX What is this intended to do? */
Tony Lindgrena8823142008-12-10 17:36:30 -0800581 if (cpu_is_omap34xx())
Tony Lindgren0e564842008-10-06 15:49:16 +0300582 tap_prod_id = 0x0210;
583 else
584 tap_prod_id = 0x0208;
585}