blob: 2a2f4d56e4c85ea599b295a10d09c2bf922bdc79 [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>
Linus Walleijde268042013-09-05 09:29:18 +020021#include <linux/random.h>
Ruslan Bilovol6770b212013-02-14 13:55:24 +020022#include <linux/slab.h>
23
24#ifdef CONFIG_SOC_BUS
25#include <linux/sys_soc.h>
26#endif
Tony Lindgren1dbae812005-11-10 14:26:51 +000027
Russell King0ba8b9b2008-08-10 18:08:10 +010028#include <asm/cputype.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000029
Tony Lindgren4e653312011-11-10 22:45:17 +010030#include "common.h"
Syed Mohammed Khasim72d0f1c2006-12-06 17:14:05 -080031
Tony Lindgren4952af42012-09-19 10:33:40 -070032#include "id.h"
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +030033
Tony Lindgrendbc04162012-08-31 10:59:07 -070034#include "soc.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060035#include "control.h"
36
Ivan Khoronzhuk42a1cc92012-11-14 12:10:37 -080037#define OMAP4_SILICON_TYPE_STANDARD 0x01
38#define OMAP4_SILICON_TYPE_PERFORMANCE 0x02
39
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +020040#define OMAP_SOC_MAX_NAME_LENGTH 16
41
Lauri Leukkunen84a34342008-12-10 17:36:31 -080042static unsigned int omap_revision;
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +020043static char soc_name[OMAP_SOC_MAX_NAME_LENGTH];
44static char soc_rev[OMAP_SOC_MAX_NAME_LENGTH];
Aneesh Vcc0170b2011-07-02 08:00:22 +053045u32 omap_features;
Lauri Leukkunen84a34342008-12-10 17:36:31 -080046
47unsigned int omap_rev(void)
48{
49 return omap_revision;
50}
51EXPORT_SYMBOL(omap_rev);
Paul Walmsley097c5842008-07-03 12:24:45 +030052
Kevin Hilman8e25ad92009-06-23 13:30:23 +030053int omap_type(void)
54{
55 u32 val = 0;
56
Felipe Balbiedeae652009-11-22 10:11:24 -080057 if (cpu_is_omap24xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030058 val = omap_ctrl_readl(OMAP24XX_CONTROL_STATUS);
Tony Lindgrene226ebe2015-01-14 17:37:15 -080059 } else if (cpu_is_ti81xx()) {
60 val = omap_ctrl_readl(TI81XX_CONTROL_STATUS);
Afzal Mohammed49cc4852013-05-27 20:06:33 +053061 } else if (soc_is_am33xx() || soc_is_am43xx()) {
Afzal Mohammedfb3cfb12012-03-05 16:11:01 -080062 val = omap_ctrl_readl(AM33XX_CONTROL_STATUS);
Felipe Balbiedeae652009-11-22 10:11:24 -080063 } else if (cpu_is_omap34xx()) {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030064 val = omap_ctrl_readl(OMAP343X_CONTROL_STATUS);
Santosh Shilimkar737daa02010-02-18 08:59:10 +000065 } else if (cpu_is_omap44xx()) {
Santosh Shilimkardcf5ef32010-09-27 14:02:58 -060066 val = omap_ctrl_readl(OMAP4_CTRL_MODULE_CORE_STATUS);
R Sricharan68522152013-02-06 20:25:40 +053067 } else if (soc_is_omap54xx() || soc_is_dra7xx()) {
R Sricharanb13e80a2012-04-19 17:42:19 +053068 val = omap_ctrl_readl(OMAP5XXX_CONTROL_STATUS);
69 val &= OMAP5_DEVICETYPE_MASK;
70 val >>= 6;
71 goto out;
Felipe Balbiedeae652009-11-22 10:11:24 -080072 } else {
Kevin Hilman8e25ad92009-06-23 13:30:23 +030073 pr_err("Cannot detect omap type!\n");
74 goto out;
75 }
76
77 val &= OMAP2_DEVICETYPE_MASK;
78 val >>= 8;
79
80out:
81 return val;
82}
83EXPORT_SYMBOL(omap_type);
84
85
Tony Lindgrena8823142008-12-10 17:36:30 -080086/*----------------------------------------------------------------------------*/
Paul Walmsley097c5842008-07-03 12:24:45 +030087
Tony Lindgrena8823142008-12-10 17:36:30 -080088#define OMAP_TAP_IDCODE 0x0204
89#define OMAP_TAP_DIE_ID_0 0x0218
90#define OMAP_TAP_DIE_ID_1 0x021C
91#define OMAP_TAP_DIE_ID_2 0x0220
92#define OMAP_TAP_DIE_ID_3 0x0224
Paul Walmsley097c5842008-07-03 12:24:45 +030093
Andy Greenb235e002011-03-12 22:50:54 +000094#define OMAP_TAP_DIE_ID_44XX_0 0x0200
95#define OMAP_TAP_DIE_ID_44XX_1 0x0208
96#define OMAP_TAP_DIE_ID_44XX_2 0x020c
97#define OMAP_TAP_DIE_ID_44XX_3 0x0210
98
Victor Kamenskyedfaf052014-04-15 20:37:46 +030099#define read_tap_reg(reg) readl_relaxed(tap_base + (reg))
Tony Lindgren0e564842008-10-06 15:49:16 +0300100
Tony Lindgrena8823142008-12-10 17:36:30 -0800101struct omap_id {
102 u16 hawkeye; /* Silicon type (Hawkeye id) */
103 u8 dev; /* Device type from production_id reg */
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800104 u32 type; /* Combined type id copied to omap_revision */
Tony Lindgrena8823142008-12-10 17:36:30 -0800105};
Tony Lindgren0e564842008-10-06 15:49:16 +0300106
Tony Lindgrena8823142008-12-10 17:36:30 -0800107/* Register values to detect the OMAP version */
108static struct omap_id omap_ids[] __initdata = {
109 { .hawkeye = 0xb5d9, .dev = 0x0, .type = 0x24200024 },
110 { .hawkeye = 0xb5d9, .dev = 0x1, .type = 0x24201024 },
111 { .hawkeye = 0xb5d9, .dev = 0x2, .type = 0x24202024 },
112 { .hawkeye = 0xb5d9, .dev = 0x4, .type = 0x24220024 },
113 { .hawkeye = 0xb5d9, .dev = 0x8, .type = 0x24230024 },
114 { .hawkeye = 0xb68a, .dev = 0x0, .type = 0x24300024 },
115};
Paul Walmsley097c5842008-07-03 12:24:45 +0300116
Tony Lindgrena8823142008-12-10 17:36:30 -0800117static void __iomem *tap_base;
118static u16 tap_prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000119
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300120void omap_get_die_id(struct omap_die_id *odi)
121{
R Sricharan68522152013-02-06 20:25:40 +0530122 if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
Andy Greenb235e002011-03-12 22:50:54 +0000123 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_0);
124 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_1);
125 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_2);
126 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_44XX_3);
127
128 return;
129 }
Kan-Ru Chen2e130fc2010-08-02 14:21:41 +0300130 odi->id_0 = read_tap_reg(OMAP_TAP_DIE_ID_0);
131 odi->id_1 = read_tap_reg(OMAP_TAP_DIE_ID_1);
132 odi->id_2 = read_tap_reg(OMAP_TAP_DIE_ID_2);
133 odi->id_3 = read_tap_reg(OMAP_TAP_DIE_ID_3);
134}
135
Linus Walleijde268042013-09-05 09:29:18 +0200136static int __init omap_feed_randpool(void)
137{
138 struct omap_die_id odi;
139
140 /* Throw the die ID into the entropy pool at boot */
141 omap_get_die_id(&odi);
142 add_device_randomness(&odi, sizeof(odi));
143 return 0;
144}
145omap_device_initcall(omap_feed_randpool);
146
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530147void __init omap2xxx_check_revision(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000148{
149 int i, j;
Tony Lindgrena8823142008-12-10 17:36:30 -0800150 u32 idcode, prod_id;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000151 u16 hawkeye;
Tony Lindgrena8823142008-12-10 17:36:30 -0800152 u8 dev_type, rev;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300153 struct omap_die_id odi;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000154
155 idcode = read_tap_reg(OMAP_TAP_IDCODE);
Tony Lindgren0e564842008-10-06 15:49:16 +0300156 prod_id = read_tap_reg(tap_prod_id);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000157 hawkeye = (idcode >> 12) & 0xffff;
158 rev = (idcode >> 28) & 0x0f;
159 dev_type = (prod_id >> 16) & 0x0f;
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300160 omap_get_die_id(&odi);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000161
Paul Walmsley097c5842008-07-03 12:24:45 +0300162 pr_debug("OMAP_TAP_IDCODE 0x%08x REV %i HAWKEYE 0x%04x MANF %03x\n",
163 idcode, rev, hawkeye, (idcode >> 1) & 0x7ff);
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300164 pr_debug("OMAP_TAP_DIE_ID_0: 0x%08x\n", odi.id_0);
Paul Walmsley097c5842008-07-03 12:24:45 +0300165 pr_debug("OMAP_TAP_DIE_ID_1: 0x%08x DEV_REV: %i\n",
Kan-Ru Chenc46732b2010-08-02 14:21:41 +0300166 odi.id_1, (odi.id_1 >> 28) & 0xf);
167 pr_debug("OMAP_TAP_DIE_ID_2: 0x%08x\n", odi.id_2);
168 pr_debug("OMAP_TAP_DIE_ID_3: 0x%08x\n", odi.id_3);
Paul Walmsley097c5842008-07-03 12:24:45 +0300169 pr_debug("OMAP_TAP_PROD_ID_0: 0x%08x DEV_TYPE: %i\n",
170 prod_id, dev_type);
171
Tony Lindgren1dbae812005-11-10 14:26:51 +0000172 /* Check hawkeye ids */
173 for (i = 0; i < ARRAY_SIZE(omap_ids); i++) {
174 if (hawkeye == omap_ids[i].hawkeye)
175 break;
176 }
177
178 if (i == ARRAY_SIZE(omap_ids)) {
179 printk(KERN_ERR "Unknown OMAP CPU id\n");
180 return;
181 }
182
183 for (j = i; j < ARRAY_SIZE(omap_ids); j++) {
184 if (dev_type == omap_ids[j].dev)
185 break;
186 }
187
188 if (j == ARRAY_SIZE(omap_ids)) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600189 pr_err("Unknown OMAP device type. Handling it as OMAP%04x\n",
190 omap_ids[i].type >> 16);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000191 j = i;
192 }
Tony Lindgren1dbae812005-11-10 14:26:51 +0000193
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200194 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
195 sprintf(soc_rev, "ES%x", (omap_rev() >> 12) & 0xf);
196
197 pr_info("%s", soc_name);
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800198 if ((omap_rev() >> 8) & 0x0f)
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200199 pr_info("%s", soc_rev);
Paul Walmsley097c5842008-07-03 12:24:45 +0300200 pr_info("\n");
Tony Lindgren1dbae812005-11-10 14:26:51 +0000201}
202
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530203#define OMAP3_SHOW_FEATURE(feat) \
204 if (omap3_has_ ##feat()) \
205 printk(#feat" ");
206
207static void __init omap3_cpuinfo(void)
208{
209 const char *cpu_name;
210
211 /*
212 * OMAP3430 and OMAP3530 are assumed to be same.
213 *
214 * OMAP3525, OMAP3515 and OMAP3503 can be detected only based
215 * on available features. Upon detection, update the CPU id
216 * and CPU class bits.
217 */
218 if (cpu_is_omap3630()) {
219 cpu_name = "OMAP3630";
Kevin Hilman68a88b92012-04-30 16:37:10 -0700220 } else if (soc_is_am35xx()) {
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530221 cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
222 } else if (cpu_is_ti816x()) {
223 cpu_name = "TI816X";
Vaibhav Hiremath971b8a92012-07-05 08:05:15 -0700224 } else if (soc_is_am335x()) {
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530225 cpu_name = "AM335X";
Afzal Mohammedc04bbaa2013-05-27 20:06:01 +0530226 } else if (soc_is_am437x()) {
227 cpu_name = "AM437x";
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530228 } else if (cpu_is_ti814x()) {
229 cpu_name = "TI814X";
230 } else if (omap3_has_iva() && omap3_has_sgx()) {
231 /* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
232 cpu_name = "OMAP3430/3530";
233 } else if (omap3_has_iva()) {
234 cpu_name = "OMAP3525";
235 } else if (omap3_has_sgx()) {
236 cpu_name = "OMAP3515";
237 } else {
238 cpu_name = "OMAP3503";
239 }
240
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200241 sprintf(soc_name, "%s", cpu_name);
242
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530243 /* Print verbose information */
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200244 pr_info("%s %s (", soc_name, soc_rev);
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530245
246 OMAP3_SHOW_FEATURE(l2cache);
247 OMAP3_SHOW_FEATURE(iva);
248 OMAP3_SHOW_FEATURE(sgx);
249 OMAP3_SHOW_FEATURE(neon);
250 OMAP3_SHOW_FEATURE(isp);
251 OMAP3_SHOW_FEATURE(192mhz_clk);
252
253 printk(")\n");
254}
255
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800256#define OMAP3_CHECK_FEATURE(status,feat) \
257 if (((status & OMAP3_ ##feat## _MASK) \
258 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
Aneesh Vcc0170b2011-07-02 08:00:22 +0530259 omap_features |= OMAP3_HAS_ ##feat; \
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800260 }
261
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530262void __init omap3xxx_check_features(void)
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800263{
264 u32 status;
265
Aneesh Vcc0170b2011-07-02 08:00:22 +0530266 omap_features = 0;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800267
268 status = omap_ctrl_readl(OMAP3_CONTROL_OMAP_STATUS);
269
270 OMAP3_CHECK_FEATURE(status, L2CACHE);
271 OMAP3_CHECK_FEATURE(status, IVA);
272 OMAP3_CHECK_FEATURE(status, SGX);
273 OMAP3_CHECK_FEATURE(status, NEON);
274 OMAP3_CHECK_FEATURE(status, ISP);
Vishwanath BS7356f0b2010-02-22 22:09:10 -0700275 if (cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530276 omap_features |= OMAP3_HAS_192MHZ_CLK;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600277 if (cpu_is_omap3430() || cpu_is_omap3630())
Aneesh Vcc0170b2011-07-02 08:00:22 +0530278 omap_features |= OMAP3_HAS_IO_WAKEUP;
Paul Walmsleyb02b9172011-10-06 17:18:45 -0600279 if (cpu_is_omap3630() || omap_rev() == OMAP3430_REV_ES3_1 ||
280 omap_rev() == OMAP3430_REV_ES3_1_2)
281 omap_features |= OMAP3_HAS_IO_CHAIN_CTRL;
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800282
Aneesh Vcc0170b2011-07-02 08:00:22 +0530283 omap_features |= OMAP3_HAS_SDRC;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800284
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800285 /*
Mark A. Greer1ce02992012-04-30 16:57:09 -0700286 * am35x fixups:
287 * - The am35x Chip ID register has bits 12, 7:5, and 3:2 marked as
288 * reserved and therefore return 0 when read. Unfortunately,
289 * OMAP3_CHECK_FEATURE() will interpret some of those zeroes to
290 * mean that a feature is present even though it isn't so clear
291 * the incorrectly set feature bits.
292 */
293 if (soc_is_am35xx())
294 omap_features &= ~(OMAP3_HAS_IVA | OMAP3_HAS_ISP);
295
296 /*
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800297 * TODO: Get additional info (where applicable)
298 * e.g. Size of L2 cache.
299 */
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530300
301 omap3_cpuinfo();
Sanjeev Premi8384ce02009-11-22 10:10:53 -0800302}
303
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530304void __init omap4xxx_check_features(void)
Aneesh Vcc0170b2011-07-02 08:00:22 +0530305{
306 u32 si_type;
307
Ivan Khoronzhuk42a1cc92012-11-14 12:10:37 -0800308 si_type =
309 (read_tap_reg(OMAP4_CTRL_MODULE_CORE_STD_FUSE_PROD_ID_1) >> 16) & 0x03;
Aneesh Vcc0170b2011-07-02 08:00:22 +0530310
Ivan Khoronzhuk42a1cc92012-11-14 12:10:37 -0800311 if (si_type == OMAP4_SILICON_TYPE_PERFORMANCE)
312 omap_features = OMAP4_HAS_PERF_SILICON;
Aneesh Vcc0170b2011-07-02 08:00:22 +0530313}
314
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530315void __init ti81xx_check_features(void)
Hemant Pedanekar01001712011-02-16 08:31:39 -0800316{
Aneesh Vcc0170b2011-07-02 08:00:22 +0530317 omap_features = OMAP3_HAS_NEON;
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530318 omap3_cpuinfo();
Hemant Pedanekar01001712011-02-16 08:31:39 -0800319}
320
Vaibhav Hiremath7bcad172013-05-17 15:43:41 +0530321void __init am33xx_check_features(void)
322{
323 u32 status;
324
325 omap_features = OMAP3_HAS_NEON;
326
327 status = omap_ctrl_readl(AM33XX_DEV_FEATURE);
328 if (status & AM33XX_SGX_MASK)
329 omap_features |= OMAP3_HAS_SGX;
330
331 omap3_cpuinfo();
332}
333
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530334void __init omap3xxx_check_revision(void)
Tony Lindgrena8823142008-12-10 17:36:30 -0800335{
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200336 const char *cpu_rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800337 u32 cpuid, idcode;
338 u16 hawkeye;
339 u8 rev;
Tony Lindgrena8823142008-12-10 17:36:30 -0800340
341 /*
342 * We cannot access revision registers on ES1.0.
343 * If the processor type is Cortex-A8 and the revision is 0x0
344 * it means its Cortex r0p0 which is 3430 ES1.0.
345 */
Uwe Kleine-Königac52e832013-01-30 17:38:21 +0100346 cpuid = read_cpuid_id();
Tony Lindgrena8823142008-12-10 17:36:30 -0800347 if ((((cpuid >> 4) & 0xfff) == 0xc08) && ((cpuid & 0xf) == 0x0)) {
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800348 omap_revision = OMAP3430_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530349 cpu_rev = "1.0";
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800350 return;
Tony Lindgrena8823142008-12-10 17:36:30 -0800351 }
352
353 /*
354 * Detection for 34xx ES2.0 and above can be done with just
355 * hawkeye and rev. See TRM 1.5.2 Device Identification.
356 * Note that rev does not map directly to our defined processor
357 * revision numbers as ES1.0 uses value 0.
358 */
359 idcode = read_tap_reg(OMAP_TAP_IDCODE);
360 hawkeye = (idcode >> 12) & 0xffff;
361 rev = (idcode >> 28) & 0xff;
362
Nishanth Menon2456a102009-11-22 10:10:56 -0800363 switch (hawkeye) {
364 case 0xb7ae:
365 /* Handle 34xx/35xx devices */
Tony Lindgrena8823142008-12-10 17:36:30 -0800366 switch (rev) {
Sanjeev Premi048f4bd2009-11-22 10:10:54 -0800367 case 0: /* Take care of early samples */
368 case 1:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800369 omap_revision = OMAP3430_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530370 cpu_rev = "2.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800371 break;
372 case 2:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800373 omap_revision = OMAP3430_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530374 cpu_rev = "2.1";
Tony Lindgrena8823142008-12-10 17:36:30 -0800375 break;
376 case 3:
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800377 omap_revision = OMAP3430_REV_ES3_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530378 cpu_rev = "3.0";
Tony Lindgrena8823142008-12-10 17:36:30 -0800379 break;
Tony Lindgren187e6882009-01-29 08:57:16 -0800380 case 4:
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800381 omap_revision = OMAP3430_REV_ES3_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530382 cpu_rev = "3.1";
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800383 break;
384 case 7:
Felipe Balbiedeae652009-11-22 10:11:24 -0800385 /* FALLTHROUGH */
Tony Lindgrena8823142008-12-10 17:36:30 -0800386 default:
387 /* Use the latest known revision as default */
Tony Lindgrene9acb9b2010-01-19 15:40:26 -0800388 omap_revision = OMAP3430_REV_ES3_1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530389 cpu_rev = "3.1.2";
Tony Lindgrena8823142008-12-10 17:36:30 -0800390 }
Nishanth Menon2456a102009-11-22 10:10:56 -0800391 break;
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800392 case 0xb868:
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600393 /*
394 * Handle OMAP/AM 3505/3517 devices
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800395 *
Paul Walmsley1f1b0352011-09-13 19:52:13 -0600396 * Set the device to be OMAP3517 here. Actual device
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800397 * is identified later based on the features.
398 */
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600399 switch (rev) {
400 case 0:
Kevin Hilman68a88b92012-04-30 16:37:10 -0700401 omap_revision = AM35XX_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530402 cpu_rev = "1.0";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600403 break;
404 case 1:
405 /* FALLTHROUGH */
406 default:
Kevin Hilman68a88b92012-04-30 16:37:10 -0700407 omap_revision = AM35XX_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530408 cpu_rev = "1.1";
Paul Walmsley9ed2ba72011-09-13 19:52:14 -0600409 }
Sanjeev Premi4cac6012009-11-22 10:10:58 -0800410 break;
Felipe Balbiedeae652009-11-22 10:11:24 -0800411 case 0xb891:
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000412 /* Handle 36xx devices */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000413
414 switch(rev) {
415 case 0: /* Take care of early samples */
416 omap_revision = OMAP3630_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530417 cpu_rev = "1.0";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000418 break;
419 case 1:
420 omap_revision = OMAP3630_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530421 cpu_rev = "1.1";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000422 break;
423 case 2:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600424 /* FALLTHROUGH */
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000425 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600426 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530427 cpu_rev = "1.2";
Anand Gadiyarb0a1a6c2010-08-03 19:59:24 +0000428 }
Nishanth Menon77c08702010-08-16 09:21:19 +0300429 break;
Hemant Pedanekar01001712011-02-16 08:31:39 -0800430 case 0xb81e:
Hemant Pedanekar01001712011-02-16 08:31:39 -0800431 switch (rev) {
432 case 0:
433 omap_revision = TI8168_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530434 cpu_rev = "1.0";
Hemant Pedanekar01001712011-02-16 08:31:39 -0800435 break;
436 case 1:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600437 omap_revision = TI8168_REV_ES1_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530438 cpu_rev = "1.1";
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600439 break;
Aida Mynzhasovaa5f93d92013-05-30 14:21:01 +0400440 case 2:
441 omap_revision = TI8168_REV_ES2_0;
442 cpu_rev = "2.0";
443 break;
444 case 3:
445 /* FALLTHROUGH */
446 default:
447 omap_revision = TI8168_REV_ES2_1;
448 cpu_rev = "2.1";
Hemant Pedanekar01001712011-02-16 08:31:39 -0800449 }
450 break;
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800451 case 0xb944:
AnilKumar Ch5af044f2013-02-01 15:58:22 +0530452 switch (rev) {
453 case 0:
454 omap_revision = AM335X_REV_ES1_0;
455 cpu_rev = "1.0";
456 break;
457 case 1:
AnilKumar Ch5af044f2013-02-01 15:58:22 +0530458 omap_revision = AM335X_REV_ES2_0;
459 cpu_rev = "2.0";
460 break;
Vaibhav Hiremathd240ef32013-05-08 16:48:02 -0700461 case 2:
462 /* FALLTHROUGH */
463 default:
464 omap_revision = AM335X_REV_ES2_1;
465 cpu_rev = "2.1";
466 break;
AnilKumar Ch5af044f2013-02-01 15:58:22 +0530467 }
Vaibhav Hiremathc2d13552012-01-23 13:26:47 +0530468 break;
Afzal Mohammedc04bbaa2013-05-27 20:06:01 +0530469 case 0xb98c:
Lokesh Vutla4a2ed4c2014-02-07 15:51:24 +0530470 switch (rev) {
471 case 0:
472 omap_revision = AM437X_REV_ES1_0;
473 cpu_rev = "1.0";
474 break;
475 case 1:
Lokesh Vutla4a2ed4c2014-02-07 15:51:24 +0530476 omap_revision = AM437X_REV_ES1_1;
477 cpu_rev = "1.1";
478 break;
Lokesh Vutla4fdd54f2014-11-28 09:02:07 +0530479 case 2:
480 /* FALLTHROUGH */
481 default:
482 omap_revision = AM437X_REV_ES1_2;
483 cpu_rev = "1.2";
484 break;
Lokesh Vutla4a2ed4c2014-02-07 15:51:24 +0530485 }
Afzal Mohammedc04bbaa2013-05-27 20:06:01 +0530486 break;
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800487 case 0xb8f2:
488 switch (rev) {
489 case 0:
490 /* FALLTHROUGH */
491 case 1:
492 omap_revision = TI8148_REV_ES1_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530493 cpu_rev = "1.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800494 break;
495 case 2:
496 omap_revision = TI8148_REV_ES2_0;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530497 cpu_rev = "2.0";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800498 break;
499 case 3:
500 /* FALLTHROUGH */
501 default:
502 omap_revision = TI8148_REV_ES2_1;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530503 cpu_rev = "2.1";
Hemant Pedanekar4390f5b2011-12-13 10:46:45 -0800504 break;
505 }
Afzal Mohammed1e6cb142011-12-13 10:46:43 -0800506 break;
Nishanth Menon2456a102009-11-22 10:10:56 -0800507 default:
Paul Walmsley51ec8112011-09-13 19:52:15 -0600508 /* Unknown default to latest silicon rev as default */
Paul Walmsley3b32b7d2011-09-13 19:52:15 -0600509 omap_revision = OMAP3630_REV_ES1_2;
Vaibhav Hiremath50a01e62011-12-19 15:50:14 +0530510 cpu_rev = "1.2";
Paul Walmsley51ec8112011-09-13 19:52:15 -0600511 pr_warn("Warning: unknown chip type; assuming OMAP3630ES1.2\n");
Tony Lindgrena8823142008-12-10 17:36:30 -0800512 }
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200513 sprintf(soc_rev, "ES%s", cpu_rev);
Tony Lindgrena8823142008-12-10 17:36:30 -0800514}
515
Vaibhav Hiremath4de34f32011-12-19 15:50:15 +0530516void __init omap4xxx_check_revision(void)
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800517{
518 u32 idcode;
519 u16 hawkeye;
520 u8 rev;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800521
522 /*
523 * The IC rev detection is done with hawkeye and rev.
524 * Note that rev does not map directly to defined processor
525 * revision numbers as ES1.0 uses value 0.
526 */
527 idcode = read_tap_reg(OMAP_TAP_IDCODE);
528 hawkeye = (idcode >> 12) & 0xffff;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800529 rev = (idcode >> 28) & 0xf;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800530
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530531 /*
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530532 * Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530533 * Use ARM register to detect the correct ES version
534 */
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800535 if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
Uwe Kleine-Königac52e832013-01-30 17:38:21 +0100536 idcode = read_cpuid_id();
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530537 rev = (idcode & 0xf) - 1;
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800538 }
539
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530540 switch (hawkeye) {
541 case 0xb852:
542 switch (rev) {
543 case 0:
544 omap_revision = OMAP4430_REV_ES1_0;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530545 break;
546 case 1:
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530547 default:
548 omap_revision = OMAP4430_REV_ES2_0;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800549 }
550 break;
551 case 0xb95c:
552 switch (rev) {
553 case 3:
554 omap_revision = OMAP4430_REV_ES2_1;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800555 break;
556 case 4:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800557 omap_revision = OMAP4430_REV_ES2_2;
David Anders55035c12011-12-13 10:46:44 -0800558 break;
559 case 6:
560 default:
561 omap_revision = OMAP4430_REV_ES2_3;
Nishant Kamate49c4d22011-02-17 09:55:03 -0800562 }
563 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530564 case 0xb94e:
565 switch (rev) {
566 case 0:
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530567 omap_revision = OMAP4460_REV_ES1_0;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530568 break;
Chris Lalancette33ee0db2012-05-09 09:45:02 -0700569 case 2:
570 default:
571 omap_revision = OMAP4460_REV_ES1_1;
572 break;
Aneesh Vfa54dcc2011-07-02 08:00:21 +0530573 }
574 break;
Leonid Iziumtsevec023e42011-12-13 10:46:44 -0800575 case 0xb975:
576 switch (rev) {
577 case 0:
578 default:
579 omap_revision = OMAP4470_REV_ES1_0;
580 break;
581 }
582 break;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530583 default:
Nishant Kamate49c4d22011-02-17 09:55:03 -0800584 /* Unknown default to latest silicon rev as default */
David Anders55035c12011-12-13 10:46:44 -0800585 omap_revision = OMAP4430_REV_ES2_3;
Santosh Shilimkared6be0b2010-09-16 18:44:46 +0530586 }
587
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200588 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
589 sprintf(soc_rev, "ES%d.%d", (omap_rev() >> 12) & 0xf,
590 (omap_rev() >> 8) & 0xf);
591 pr_info("%s %s\n", soc_name, soc_rev);
Santosh Shilimkarb570e0e2009-12-11 16:16:34 -0800592}
593
R Sricharanb13e80a2012-04-19 17:42:19 +0530594void __init omap5xxx_check_revision(void)
595{
596 u32 idcode;
597 u16 hawkeye;
598 u8 rev;
599
600 idcode = read_tap_reg(OMAP_TAP_IDCODE);
601 hawkeye = (idcode >> 12) & 0xffff;
602 rev = (idcode >> 28) & 0xff;
603 switch (hawkeye) {
604 case 0xb942:
605 switch (rev) {
606 case 0:
Nishanth Menonaa2f4b12013-09-18 09:05:42 -0500607 /* No support for ES1.0 Test chip */
608 BUG();
Santosh Shilimkar5a898a72013-01-07 19:29:46 +0530609 case 1:
610 default:
611 omap_revision = OMAP5430_REV_ES2_0;
R Sricharanb13e80a2012-04-19 17:42:19 +0530612 }
613 break;
614
615 case 0xb998:
616 switch (rev) {
617 case 0:
Nishanth Menonaa2f4b12013-09-18 09:05:42 -0500618 /* No support for ES1.0 Test chip */
619 BUG();
Santosh Shilimkar5a898a72013-01-07 19:29:46 +0530620 case 1:
621 default:
622 omap_revision = OMAP5432_REV_ES2_0;
R Sricharanb13e80a2012-04-19 17:42:19 +0530623 }
624 break;
625
626 default:
627 /* Unknown default to latest silicon rev as default*/
Santosh Shilimkar5a898a72013-01-07 19:29:46 +0530628 omap_revision = OMAP5430_REV_ES2_0;
R Sricharanb13e80a2012-04-19 17:42:19 +0530629 }
630
Ruslan Bilovolf9d41ee2013-02-14 13:55:23 +0200631 sprintf(soc_name, "OMAP%04x", omap_rev() >> 16);
632 sprintf(soc_rev, "ES%d.0", (omap_rev() >> 12) & 0xf);
633
634 pr_info("%s %s\n", soc_name, soc_rev);
R Sricharanb13e80a2012-04-19 17:42:19 +0530635}
636
Nishanth Menon733d20e2014-05-19 10:27:11 -0500637void __init dra7xxx_check_revision(void)
638{
639 u32 idcode;
640 u16 hawkeye;
641 u8 rev;
642
643 idcode = read_tap_reg(OMAP_TAP_IDCODE);
644 hawkeye = (idcode >> 12) & 0xffff;
645 rev = (idcode >> 28) & 0xff;
646 switch (hawkeye) {
647 case 0xb990:
648 switch (rev) {
649 case 0:
650 omap_revision = DRA752_REV_ES1_0;
651 break;
652 case 1:
653 default:
654 omap_revision = DRA752_REV_ES1_1;
655 }
656 break;
657
Nishanth Menon73d20282014-05-29 14:05:50 -0500658 case 0xb9bc:
659 switch (rev) {
660 case 0:
661 omap_revision = DRA722_REV_ES1_0;
662 break;
663 default:
664 /* If we have no new revisions */
665 omap_revision = DRA722_REV_ES1_0;
666 break;
667 }
668 break;
669
Nishanth Menon733d20e2014-05-19 10:27:11 -0500670 default:
671 /* Unknown default to latest silicon rev as default*/
Hans Wennborg6953faf2014-08-25 16:15:34 -0700672 pr_warn("%s: unknown idcode=0x%08x (hawkeye=0x%08x,rev=0x%x)\n",
Nishanth Menon733d20e2014-05-19 10:27:11 -0500673 __func__, idcode, hawkeye, rev);
674 omap_revision = DRA752_REV_ES1_1;
675 }
676
677 sprintf(soc_name, "DRA%03x", omap_rev() >> 16);
678 sprintf(soc_rev, "ES%d.%d", (omap_rev() >> 12) & 0xf,
679 (omap_rev() >> 8) & 0xf);
680
681 pr_info("%s %s\n", soc_name, soc_rev);
682}
683
Tony Lindgrena8823142008-12-10 17:36:30 -0800684/*
685 * Set up things for map_io and processor detection later on. Gets called
686 * pretty much first thing from board init. For multi-omap, this gets
687 * cpu_is_omapxxxx() working accurately enough for map_io. Then we'll try to
688 * detect the exact revision later on in omap2_detect_revision() once map_io
689 * is done.
690 */
Paul Walmsleyb6a42262012-10-29 20:50:21 -0600691void __init omap2_set_globals_tap(u32 class, void __iomem *tap)
Tony Lindgren0e564842008-10-06 15:49:16 +0300692{
Paul Walmsleyb6a42262012-10-29 20:50:21 -0600693 omap_revision = class;
694 tap_base = tap;
Tony Lindgren0e564842008-10-06 15:49:16 +0300695
Paul Walmsleyb6a42262012-10-29 20:50:21 -0600696 /* XXX What is this intended to do? */
Tony Lindgrena8823142008-12-10 17:36:30 -0800697 if (cpu_is_omap34xx())
Tony Lindgren0e564842008-10-06 15:49:16 +0300698 tap_prod_id = 0x0210;
699 else
700 tap_prod_id = 0x0208;
701}
Ruslan Bilovol6770b212013-02-14 13:55:24 +0200702
703#ifdef CONFIG_SOC_BUS
704
Sebastian Andrzej Siewior415ab322013-06-06 15:24:38 +0200705static const char * const omap_types[] = {
Ruslan Bilovol6770b212013-02-14 13:55:24 +0200706 [OMAP2_DEVICE_TYPE_TEST] = "TST",
707 [OMAP2_DEVICE_TYPE_EMU] = "EMU",
708 [OMAP2_DEVICE_TYPE_SEC] = "HS",
709 [OMAP2_DEVICE_TYPE_GP] = "GP",
710 [OMAP2_DEVICE_TYPE_BAD] = "BAD",
711};
712
713static const char * __init omap_get_family(void)
714{
715 if (cpu_is_omap24xx())
716 return kasprintf(GFP_KERNEL, "OMAP2");
717 else if (cpu_is_omap34xx())
718 return kasprintf(GFP_KERNEL, "OMAP3");
719 else if (cpu_is_omap44xx())
720 return kasprintf(GFP_KERNEL, "OMAP4");
721 else if (soc_is_omap54xx())
722 return kasprintf(GFP_KERNEL, "OMAP5");
Afzal Mohammed7a2e0512014-02-07 15:51:25 +0530723 else if (soc_is_am43xx())
724 return kasprintf(GFP_KERNEL, "AM43xx");
Nishanth Menon733d20e2014-05-19 10:27:11 -0500725 else if (soc_is_dra7xx())
726 return kasprintf(GFP_KERNEL, "DRA7");
Ruslan Bilovol6770b212013-02-14 13:55:24 +0200727 else
728 return kasprintf(GFP_KERNEL, "Unknown");
729}
730
731static ssize_t omap_get_type(struct device *dev,
732 struct device_attribute *attr,
733 char *buf)
734{
735 return sprintf(buf, "%s\n", omap_types[omap_type()]);
736}
737
738static struct device_attribute omap_soc_attr =
739 __ATTR(type, S_IRUGO, omap_get_type, NULL);
740
741void __init omap_soc_device_init(void)
742{
743 struct device *parent;
744 struct soc_device *soc_dev;
745 struct soc_device_attribute *soc_dev_attr;
746
747 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
748 if (!soc_dev_attr)
749 return;
750
751 soc_dev_attr->machine = soc_name;
752 soc_dev_attr->family = omap_get_family();
753 soc_dev_attr->revision = soc_rev;
754
755 soc_dev = soc_device_register(soc_dev_attr);
Tony Lindgrenb1dd11d2013-05-09 08:27:25 -0700756 if (IS_ERR(soc_dev)) {
Ruslan Bilovol6770b212013-02-14 13:55:24 +0200757 kfree(soc_dev_attr);
758 return;
759 }
760
761 parent = soc_device_to_device(soc_dev);
Tony Lindgrenb1dd11d2013-05-09 08:27:25 -0700762 device_create_file(parent, &omap_soc_attr);
Ruslan Bilovol6770b212013-02-14 13:55:24 +0200763}
764#endif /* CONFIG_SOC_BUS */