blob: bbb65bbe7263674c2b47b97ee05a9f588ed1c58f [file] [log] [blame]
Dirk Behmee0e49fe2008-12-14 09:47:15 +01001/*
2 * (C) Copyright 2008
3 * Texas Instruments, <www.ti.com>
4 *
5 * Author :
6 * Manikandan Pillai <mani.pillai@ti.com>
7 *
8 * Derived from Beagle Board and 3430 SDP code by
9 * Richard Woodruff <r-woodruff2@ti.com>
10 * Syed Mohammed Khasim <khasim@ti.com>
11 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Dirk Behmee0e49fe2008-12-14 09:47:15 +010013 */
14
15#include <common.h>
16#include <asm/io.h>
17#include <asm/arch/mem.h> /* get mem tables */
18#include <asm/arch/sys_proto.h>
Jeroen Hofstee2b562202014-10-08 22:57:57 +020019#include <asm/bootm.h>
20
Dirk Behmee0e49fe2008-12-14 09:47:15 +010021#include <i2c.h>
Nikita Kiryanov275c05a2012-01-05 02:03:22 +000022#include <linux/compiler.h>
Dirk Behmee0e49fe2008-12-14 09:47:15 +010023
24extern omap3_sysinfo sysinfo;
Dirk Behmedc7af202009-08-08 09:30:21 +020025static struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
Sanjeev Premi9659e3f2011-07-18 09:12:24 -040026
27#ifdef CONFIG_DISPLAY_CPUINFO
Sanjeev Premifcbb44f2009-04-27 21:27:54 +053028static char *rev_s[CPU_3XX_MAX_REV] = {
29 "1.0",
30 "2.0",
31 "2.1",
32 "3.0",
Steve Sakomanad74ace2010-08-17 14:39:34 -070033 "3.1",
34 "UNKNOWN",
35 "UNKNOWN",
36 "3.1.2"};
Dirk Behmee0e49fe2008-12-14 09:47:15 +010037
Howard D. Gray3082bc62011-09-04 14:11:17 -040038/* this is the revision table for 37xx CPUs */
39static char *rev_s_37xx[CPU_37XX_MAX_REV] = {
40 "1.0",
41 "1.1",
42 "1.2"};
Sanjeev Premi21614962011-09-23 05:29:45 +000043#endif /* CONFIG_DISPLAY_CPUINFO */
Howard D. Gray3082bc62011-09-04 14:11:17 -040044
Dirk Behme12dbcf62009-03-12 19:30:50 +010045/*****************************************************************
Nishanth Menon346e34f2014-03-28 11:00:05 -050046 * get_dieid(u32 *id) - read die ID
47 *****************************************************************/
48void get_dieid(u32 *id)
49{
50 struct ctrl_id *id_base = (struct ctrl_id *)OMAP34XX_ID_L4_IO_BASE;
51
52 id[3] = readl(&id_base->die_id_0);
53 id[2] = readl(&id_base->die_id_1);
54 id[1] = readl(&id_base->die_id_2);
55 id[0] = readl(&id_base->die_id_3);
56}
57
58/*****************************************************************
Dirk Behme12dbcf62009-03-12 19:30:50 +010059 * dieid_num_r(void) - read and set die ID
60 *****************************************************************/
61void dieid_num_r(void)
62{
Dirk Behme12dbcf62009-03-12 19:30:50 +010063 char *uid_s, die_id[34];
64 u32 id[4];
65
66 memset(die_id, 0, sizeof(die_id));
67
68 uid_s = getenv("dieid#");
69
70 if (uid_s == NULL) {
Nishanth Menon346e34f2014-03-28 11:00:05 -050071 get_dieid(id);
Dirk Behme12dbcf62009-03-12 19:30:50 +010072 sprintf(die_id, "%08x%08x%08x%08x", id[0], id[1], id[2], id[3]);
73 setenv("dieid#", die_id);
74 uid_s = die_id;
75 }
76
77 printf("Die ID #%s\n", uid_s);
78}
79
Dirk Behmee0e49fe2008-12-14 09:47:15 +010080/******************************************
Dirk Behme2d0d4fa2009-02-12 18:55:42 +010081 * get_cpu_type(void) - extract cpu info
82 ******************************************/
83u32 get_cpu_type(void)
84{
85 return readl(&ctrl_base->ctrl_omap_stat);
86}
87
88/******************************************
Steve Sakomanad74ace2010-08-17 14:39:34 -070089 * get_cpu_id(void) - extract cpu id
90 * returns 0 for ES1.0, cpuid otherwise
Dirk Behmee0e49fe2008-12-14 09:47:15 +010091 ******************************************/
Steve Sakomanad74ace2010-08-17 14:39:34 -070092u32 get_cpu_id(void)
Dirk Behmee0e49fe2008-12-14 09:47:15 +010093{
Dirk Behmedc7af202009-08-08 09:30:21 +020094 struct ctrl_id *id_base;
Steve Sakomanad74ace2010-08-17 14:39:34 -070095 u32 cpuid = 0;
Dirk Behmee0e49fe2008-12-14 09:47:15 +010096
97 /*
98 * On ES1.0 the IDCODE register is not exposed on L4
Sanjeev Premifcbb44f2009-04-27 21:27:54 +053099 * so using CPU ID to differentiate between ES1.0 and > ES1.0.
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100100 */
101 __asm__ __volatile__("mrc p15, 0, %0, c0, c0, 0":"=r"(cpuid));
Steve Sakomanad74ace2010-08-17 14:39:34 -0700102 if ((cpuid & 0xf) == 0x0) {
103 return 0;
104 } else {
Sanjeev Premifcbb44f2009-04-27 21:27:54 +0530105 /* Decode the IDs on > ES1.0 */
Dirk Behmedc7af202009-08-08 09:30:21 +0200106 id_base = (struct ctrl_id *) OMAP34XX_ID_L4_IO_BASE;
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100107
Steve Sakomanad74ace2010-08-17 14:39:34 -0700108 cpuid = readl(&id_base->idcode);
109 }
110
111 return cpuid;
112}
113
114/******************************************
115 * get_cpu_family(void) - extract cpu info
116 ******************************************/
117u32 get_cpu_family(void)
118{
119 u16 hawkeye;
120 u32 cpu_family;
121 u32 cpuid = get_cpu_id();
Sanjeev Premifcbb44f2009-04-27 21:27:54 +0530122
Steve Sakomanad74ace2010-08-17 14:39:34 -0700123 if (cpuid == 0)
124 return CPU_OMAP34XX;
Sanjeev Premifcbb44f2009-04-27 21:27:54 +0530125
Steve Sakomanad74ace2010-08-17 14:39:34 -0700126 hawkeye = (cpuid >> HAWKEYE_SHIFT) & 0xffff;
127 switch (hawkeye) {
128 case HAWKEYE_OMAP34XX:
129 cpu_family = CPU_OMAP34XX;
130 break;
131 case HAWKEYE_AM35XX:
132 cpu_family = CPU_AM35XX;
133 break;
134 case HAWKEYE_OMAP36XX:
135 cpu_family = CPU_OMAP36XX;
136 break;
137 default:
138 cpu_family = CPU_OMAP34XX;
Sanjeev Premifcbb44f2009-04-27 21:27:54 +0530139 }
Steve Sakomanad74ace2010-08-17 14:39:34 -0700140
141 return cpu_family;
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100142}
143
Steve Sakomanad74ace2010-08-17 14:39:34 -0700144/******************************************
145 * get_cpu_rev(void) - extract version info
146 ******************************************/
147u32 get_cpu_rev(void)
148{
149 u32 cpuid = get_cpu_id();
150
151 if (cpuid == 0)
152 return CPU_3XX_ES10;
153 else
154 return (cpuid >> CPU_3XX_ID_SHIFT) & 0xf;
155}
156
157/*****************************************************************
158 * get_sku_id(void) - read sku_id to get info on max clock rate
159 *****************************************************************/
160u32 get_sku_id(void)
161{
162 struct ctrl_id *id_base = (struct ctrl_id *)OMAP34XX_ID_L4_IO_BASE;
163 return readl(&id_base->sku_id) & SKUID_CLK_MASK;
164}
165
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100166/***************************************************************************
167 * get_gpmc0_base() - Return current address hardware will be
168 * fetching from. The below effectively gives what is correct, its a bit
169 * mis-leading compared to the TRM. For the most general case the mask
170 * needs to be also taken into account this does work in practice.
171 * - for u-boot we currently map:
172 * -- 0 to nothing,
173 * -- 4 to flash
174 * -- 8 to enent
175 * -- c to wifi
176 ****************************************************************************/
177u32 get_gpmc0_base(void)
178{
179 u32 b;
180
Dirk Behmea4becd62009-08-08 09:30:22 +0200181 b = readl(&gpmc_cfg->cs[0].config7);
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100182 b &= 0x1F; /* keep base [5:0] */
183 b = b << 24; /* ret 0x0b000000 */
184 return b;
185}
186
187/*******************************************************************
188 * get_gpmc0_width() - See if bus is in x8 or x16 (mainly for nand)
189 *******************************************************************/
190u32 get_gpmc0_width(void)
191{
192 return WIDTH_16BIT;
193}
194
195/*************************************************************************
196 * get_board_rev() - setup to pass kernel board revision information
197 * returns:(bit[0-3] sub version, higher bit[7-4] is higher version)
198 *************************************************************************/
Nikita Kiryanov275c05a2012-01-05 02:03:22 +0000199u32 __weak get_board_rev(void)
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100200{
201 return 0x20;
202}
203
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100204/********************************************************
205 * get_base(); get upper addr of current execution
206 *******************************************************/
Jeroen Hofsteecbc75622014-10-08 22:57:41 +0200207static u32 get_base(void)
Dirk Behmee0e49fe2008-12-14 09:47:15 +0100208{
209 u32 val;
210
211 __asm__ __volatile__("mov %0, pc \n":"=r"(val)::"memory");
212 val &= 0xF0000000;
213 val >>= 28;
214 return val;
215}
216
217/********************************************************
218 * is_running_in_flash() - tell if currently running in
219 * FLASH.
220 *******************************************************/
221u32 is_running_in_flash(void)
222{
223 if (get_base() < 4)
224 return 1; /* in FLASH */
225
226 return 0; /* running in SRAM or SDRAM */
227}
228
229/********************************************************
230 * is_running_in_sram() - tell if currently running in
231 * SRAM.
232 *******************************************************/
233u32 is_running_in_sram(void)
234{
235 if (get_base() == 4)
236 return 1; /* in SRAM */
237
238 return 0; /* running in FLASH or SDRAM */
239}
240
241/********************************************************
242 * is_running_in_sdram() - tell if currently running in
243 * SDRAM.
244 *******************************************************/
245u32 is_running_in_sdram(void)
246{
247 if (get_base() > 4)
248 return 1; /* in SDRAM */
249
250 return 0; /* running in SRAM or FLASH */
251}
252
253/***************************************************************
254 * get_boot_type() - Is this an XIP type device or a stream one
255 * bits 4-0 specify type. Bit 5 says mem/perif
256 ***************************************************************/
257u32 get_boot_type(void)
258{
259 return (readl(&ctrl_base->status) & SYSBOOT_MASK);
260}
261
262/*************************************************************
263 * get_device_type(): tell if GP/HS/EMU/TST
264 *************************************************************/
265u32 get_device_type(void)
266{
267 return ((readl(&ctrl_base->status) & (DEVICE_MASK)) >> 8);
268}
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530269
270#ifdef CONFIG_DISPLAY_CPUINFO
271/**
272 * Print CPU information
273 */
274int print_cpuinfo (void)
275{
Steve Sakomanad74ace2010-08-17 14:39:34 -0700276 char *cpu_family_s, *cpu_s, *sec_s, *max_clk;
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530277
Steve Sakomanad74ace2010-08-17 14:39:34 -0700278 switch (get_cpu_family()) {
279 case CPU_OMAP34XX:
280 cpu_family_s = "OMAP";
281 switch (get_cpu_type()) {
282 case OMAP3503:
283 cpu_s = "3503";
284 break;
285 case OMAP3515:
286 cpu_s = "3515";
287 break;
288 case OMAP3525:
289 cpu_s = "3525";
290 break;
291 case OMAP3530:
292 cpu_s = "3530";
293 break;
294 default:
295 cpu_s = "35XX";
296 break;
297 }
298 if ((get_cpu_rev() >= CPU_3XX_ES31) &&
299 (get_sku_id() == SKUID_CLK_720MHZ))
man.huber@arcor.deb709cd12013-04-10 12:12:17 +0000300 max_clk = "720 MHz";
Steve Sakomanad74ace2010-08-17 14:39:34 -0700301 else
man.huber@arcor.deb709cd12013-04-10 12:12:17 +0000302 max_clk = "600 MHz";
Steve Sakomanad74ace2010-08-17 14:39:34 -0700303
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530304 break;
Steve Sakomanad74ace2010-08-17 14:39:34 -0700305 case CPU_AM35XX:
306 cpu_family_s = "AM";
307 switch (get_cpu_type()) {
308 case AM3505:
309 cpu_s = "3505";
310 break;
311 case AM3517:
312 cpu_s = "3517";
313 break;
314 default:
315 cpu_s = "35XX";
316 break;
317 }
318 max_clk = "600 Mhz";
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530319 break;
Steve Sakomanad74ace2010-08-17 14:39:34 -0700320 case CPU_OMAP36XX:
321 cpu_family_s = "OMAP";
322 switch (get_cpu_type()) {
323 case OMAP3730:
324 cpu_s = "3630/3730";
325 break;
326 default:
327 cpu_s = "36XX/37XX";
328 break;
329 }
330 max_clk = "1 Ghz";
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530331 break;
332 default:
Steve Sakomanad74ace2010-08-17 14:39:34 -0700333 cpu_family_s = "OMAP";
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530334 cpu_s = "35XX";
Steve Sakomanad74ace2010-08-17 14:39:34 -0700335 max_clk = "600 Mhz";
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530336 }
337
338 switch (get_device_type()) {
339 case TST_DEVICE:
340 sec_s = "TST";
341 break;
342 case EMU_DEVICE:
343 sec_s = "EMU";
344 break;
345 case HS_DEVICE:
346 sec_s = "HS";
347 break;
348 case GP_DEVICE:
349 sec_s = "GP";
350 break;
351 default:
352 sec_s = "?";
353 }
354
Howard D. Gray3082bc62011-09-04 14:11:17 -0400355 if (CPU_OMAP36XX == get_cpu_family())
Andreas Bießmann4738e362013-07-08 15:21:34 +0200356 printf("%s%s-%s ES%s, CPU-OPP2, L3-200MHz, Max CPU Clock %s\n",
357 cpu_family_s, cpu_s, sec_s,
358 rev_s_37xx[get_cpu_rev()], max_clk);
Howard D. Gray3082bc62011-09-04 14:11:17 -0400359 else
360 printf("%s%s-%s ES%s, CPU-OPP2, L3-165MHz, Max CPU Clock %s\n",
Steve Sakomanad74ace2010-08-17 14:39:34 -0700361 cpu_family_s, cpu_s, sec_s,
362 rev_s[get_cpu_rev()], max_clk);
Sanjeev Premie32ef2e2009-04-27 21:27:27 +0530363
364 return 0;
365}
366#endif /* CONFIG_DISPLAY_CPUINFO */