blob: b58df7da6fc1e3f992e2f5f5ad2e4b40afabb1ea [file] [log] [blame]
Jason Liu18936ee2011-11-25 00:18:01 +00001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
4 *
5 * (C) Copyright 2009 Freescale Semiconductor, Inc.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Jason Liu18936ee2011-11-25 00:18:01 +00008 */
9
Jeroen Hofstee5624c6b2014-10-08 22:57:52 +020010#include <bootm.h>
Jason Liu18936ee2011-11-25 00:18:01 +000011#include <common.h>
Jeroen Hofstee5624c6b2014-10-08 22:57:52 +020012#include <netdev.h>
Jason Liu18936ee2011-11-25 00:18:01 +000013#include <asm/errno.h>
14#include <asm/io.h>
15#include <asm/arch/imx-regs.h>
16#include <asm/arch/clock.h>
17#include <asm/arch/sys_proto.h>
Fabio Estevam6a376042012-04-29 08:11:13 +000018#include <asm/arch/crm_regs.h>
Eric Nelsone1eb75b2012-09-23 07:30:55 +000019#include <ipu_pixfmt.h>
Ye.Li7a264162014-11-20 21:14:14 +080020#include <thermal.h>
Nikita Kiryanov44b98412014-11-21 12:47:26 +020021#include <sata.h>
Jason Liu18936ee2011-11-25 00:18:01 +000022
23#ifdef CONFIG_FSL_ESDHC
24#include <fsl_esdhc.h>
25#endif
26
Fabio Estevam1fc56f12012-04-30 08:12:03 +000027char *get_reset_cause(void)
Jason Liu18936ee2011-11-25 00:18:01 +000028{
29 u32 cause;
30 struct src *src_regs = (struct src *)SRC_BASE_ADDR;
31
32 cause = readl(&src_regs->srsr);
33 writel(cause, &src_regs->srsr);
34
35 switch (cause) {
36 case 0x00001:
Fabio Estevamcece2622012-03-13 07:26:48 +000037 case 0x00011:
Jason Liu18936ee2011-11-25 00:18:01 +000038 return "POR";
39 case 0x00004:
40 return "CSU";
41 case 0x00008:
42 return "IPP USER";
43 case 0x00010:
44 return "WDOG";
45 case 0x00020:
46 return "JTAG HIGH-Z";
47 case 0x00040:
48 return "JTAG SW";
49 case 0x10000:
50 return "WARM BOOT";
51 default:
52 return "unknown reset";
53 }
54}
55
Troy Kiskyeb0344d2012-10-23 10:57:48 +000056#if defined(CONFIG_MX53) || defined(CONFIG_MX6)
57#if defined(CONFIG_MX53)
Eric Nelson3e9cbbb2013-11-08 16:50:53 -070058#define MEMCTL_BASE ESDCTL_BASE_ADDR
Troy Kiskyeb0344d2012-10-23 10:57:48 +000059#else
Eric Nelson3e9cbbb2013-11-08 16:50:53 -070060#define MEMCTL_BASE MMDC_P0_BASE_ADDR
Troy Kiskyeb0344d2012-10-23 10:57:48 +000061#endif
62static const unsigned char col_lookup[] = {9, 10, 11, 8, 12, 9, 9, 9};
63static const unsigned char bank_lookup[] = {3, 2};
64
Tim Harveyb07161c2014-06-02 16:13:21 -070065/* these MMDC registers are common to the IMX53 and IMX6 */
Troy Kiskyeb0344d2012-10-23 10:57:48 +000066struct esd_mmdc_regs {
67 uint32_t ctl;
68 uint32_t pdc;
69 uint32_t otc;
70 uint32_t cfg0;
71 uint32_t cfg1;
72 uint32_t cfg2;
73 uint32_t misc;
Troy Kiskyeb0344d2012-10-23 10:57:48 +000074};
75
76#define ESD_MMDC_CTL_GET_ROW(mdctl) ((ctl >> 24) & 7)
77#define ESD_MMDC_CTL_GET_COLUMN(mdctl) ((ctl >> 20) & 7)
78#define ESD_MMDC_CTL_GET_WIDTH(mdctl) ((ctl >> 16) & 3)
79#define ESD_MMDC_CTL_GET_CS1(mdctl) ((ctl >> 30) & 1)
80#define ESD_MMDC_MISC_GET_BANK(mdmisc) ((misc >> 5) & 1)
81
Tim Harveyb07161c2014-06-02 16:13:21 -070082/*
83 * imx_ddr_size - return size in bytes of DRAM according MMDC config
84 * The MMDC MDCTL register holds the number of bits for row, col, and data
85 * width and the MMDC MDMISC register holds the number of banks. Combine
86 * all these bits to determine the meme size the MMDC has been configured for
87 */
Troy Kiskyeb0344d2012-10-23 10:57:48 +000088unsigned imx_ddr_size(void)
89{
90 struct esd_mmdc_regs *mem = (struct esd_mmdc_regs *)MEMCTL_BASE;
91 unsigned ctl = readl(&mem->ctl);
92 unsigned misc = readl(&mem->misc);
93 int bits = 11 + 0 + 0 + 1; /* row + col + bank + width */
94
95 bits += ESD_MMDC_CTL_GET_ROW(ctl);
96 bits += col_lookup[ESD_MMDC_CTL_GET_COLUMN(ctl)];
97 bits += bank_lookup[ESD_MMDC_MISC_GET_BANK(misc)];
98 bits += ESD_MMDC_CTL_GET_WIDTH(ctl);
99 bits += ESD_MMDC_CTL_GET_CS1(ctl);
Marek Vasutfcfdfdd2014-08-04 01:47:09 +0200100
101 /* The MX6 can do only 3840 MiB of DRAM */
102 if (bits == 32)
103 return 0xf0000000;
104
Troy Kiskyeb0344d2012-10-23 10:57:48 +0000105 return 1 << bits;
106}
107#endif
108
Jason Liu18936ee2011-11-25 00:18:01 +0000109#if defined(CONFIG_DISPLAY_CPUINFO)
Fabio Estevama7683862012-03-20 04:21:45 +0000110
Troy Kisky20332a02012-10-23 10:57:46 +0000111const char *get_imx_type(u32 imxtype)
Fabio Estevama7683862012-03-20 04:21:45 +0000112{
113 switch (imxtype) {
Troy Kisky20332a02012-10-23 10:57:46 +0000114 case MXC_CPU_MX6Q:
Fabio Estevama7683862012-03-20 04:21:45 +0000115 return "6Q"; /* Quad-core version of the mx6 */
Fabio Estevam94db6652014-01-26 15:06:41 -0200116 case MXC_CPU_MX6D:
117 return "6D"; /* Dual-core version of the mx6 */
Troy Kisky20332a02012-10-23 10:57:46 +0000118 case MXC_CPU_MX6DL:
119 return "6DL"; /* Dual Lite version of the mx6 */
120 case MXC_CPU_MX6SOLO:
121 return "6SOLO"; /* Solo version of the mx6 */
122 case MXC_CPU_MX6SL:
Fabio Estevama7683862012-03-20 04:21:45 +0000123 return "6SL"; /* Solo-Lite version of the mx6 */
Fabio Estevam05d54b82014-06-24 17:40:58 -0300124 case MXC_CPU_MX6SX:
125 return "6SX"; /* SoloX version of the mx6 */
Troy Kisky20332a02012-10-23 10:57:46 +0000126 case MXC_CPU_MX51:
Fabio Estevama7683862012-03-20 04:21:45 +0000127 return "51";
Troy Kisky20332a02012-10-23 10:57:46 +0000128 case MXC_CPU_MX53:
Fabio Estevama7683862012-03-20 04:21:45 +0000129 return "53";
130 default:
Otavio Salvadore972d722012-06-30 05:07:32 +0000131 return "??";
Fabio Estevama7683862012-03-20 04:21:45 +0000132 }
133}
134
Jason Liu18936ee2011-11-25 00:18:01 +0000135int print_cpuinfo(void)
136{
137 u32 cpurev;
138
Ye.Li7a264162014-11-20 21:14:14 +0800139#if defined(CONFIG_MX6) && defined(CONFIG_IMX6_THERMAL)
140 struct udevice *thermal_dev;
141 int cpu_tmp, ret;
142#endif
143
Jason Liu18936ee2011-11-25 00:18:01 +0000144 cpurev = get_cpu_rev();
Fabio Estevama7683862012-03-20 04:21:45 +0000145
146 printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
147 get_imx_type((cpurev & 0xFF000) >> 12),
Jason Liu18936ee2011-11-25 00:18:01 +0000148 (cpurev & 0x000F0) >> 4,
149 (cpurev & 0x0000F) >> 0,
150 mxc_get_clock(MXC_ARM_CLK) / 1000000);
Ye.Li7a264162014-11-20 21:14:14 +0800151
152#if defined(CONFIG_MX6) && defined(CONFIG_IMX6_THERMAL)
153 ret = uclass_get_device(UCLASS_THERMAL, 0, &thermal_dev);
154 if (!ret) {
155 ret = thermal_get_temp(thermal_dev, &cpu_tmp);
156
157 if (!ret)
158 printf("CPU: Temperature %d C\n", cpu_tmp);
159 else
160 printf("CPU: Temperature: invalid sensor data\n");
161 } else {
162 printf("CPU: Temperature: Can't find sensor device\n");
163 }
164#endif
165
Jason Liu18936ee2011-11-25 00:18:01 +0000166 printf("Reset cause: %s\n", get_reset_cause());
167 return 0;
168}
169#endif
170
171int cpu_eth_init(bd_t *bis)
172{
173 int rc = -ENODEV;
174
175#if defined(CONFIG_FEC_MXC)
176 rc = fecmxc_initialize(bis);
177#endif
178
179 return rc;
180}
181
Benoît Thébaudeauecb0f312012-08-17 10:42:55 +0000182#ifdef CONFIG_FSL_ESDHC
Jason Liu18936ee2011-11-25 00:18:01 +0000183/*
184 * Initializes on-chip MMC controllers.
185 * to override, implement board_mmc_init()
186 */
187int cpu_mmc_init(bd_t *bis)
188{
Jason Liu18936ee2011-11-25 00:18:01 +0000189 return fsl_esdhc_mmc_init(bis);
Jason Liu18936ee2011-11-25 00:18:01 +0000190}
Benoît Thébaudeauecb0f312012-08-17 10:42:55 +0000191#endif
Jason Liu18936ee2011-11-25 00:18:01 +0000192
Fabio Estevam6a376042012-04-29 08:11:13 +0000193u32 get_ahb_clk(void)
194{
195 struct mxc_ccm_reg *imx_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
196 u32 reg, ahb_podf;
197
198 reg = __raw_readl(&imx_ccm->cbcdr);
199 reg &= MXC_CCM_CBCDR_AHB_PODF_MASK;
200 ahb_podf = reg >> MXC_CCM_CBCDR_AHB_PODF_OFFSET;
201
202 return get_periph_clk() / (ahb_podf + 1);
203}
Eric Nelsone1eb75b2012-09-23 07:30:55 +0000204
Eric Nelsone1eb75b2012-09-23 07:30:55 +0000205void arch_preboot_os(void)
206{
Nikita Kiryanov44b98412014-11-21 12:47:26 +0200207#if defined(CONFIG_CMD_SATA)
208 sata_stop();
209#endif
210#if defined(CONFIG_VIDEO_IPUV3)
Eric Nelsone1eb75b2012-09-23 07:30:55 +0000211 /* disable video before launching O/S */
212 ipuv3_fb_shutdown();
Eric Nelsone1eb75b2012-09-23 07:30:55 +0000213#endif
Nikita Kiryanov44b98412014-11-21 12:47:26 +0200214}
Fabio Estevam32c81ea2014-11-14 11:27:21 -0200215
216void set_chipselect_size(int const cs_size)
217{
218 unsigned int reg;
219 struct iomuxc *iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR;
220 reg = readl(&iomuxc_regs->gpr[1]);
221
222 switch (cs_size) {
223 case CS0_128:
224 reg &= ~0x7; /* CS0=128MB, CS1=0, CS2=0, CS3=0 */
225 reg |= 0x5;
226 break;
227 case CS0_64M_CS1_64M:
228 reg &= ~0x3F; /* CS0=64MB, CS1=64MB, CS2=0, CS3=0 */
229 reg |= 0x1B;
230 break;
231 case CS0_64M_CS1_32M_CS2_32M:
232 reg &= ~0x1FF; /* CS0=64MB, CS1=32MB, CS2=32MB, CS3=0 */
233 reg |= 0x4B;
234 break;
235 case CS0_32M_CS1_32M_CS2_32M_CS3_32M:
236 reg &= ~0xFFF; /* CS0=32MB, CS1=32MB, CS2=32MB, CS3=32MB */
237 reg |= 0x249;
238 break;
239 default:
240 printf("Unknown chip select size: %d\n", cs_size);
241 break;
242 }
243
244 writel(reg, &iomuxc_regs->gpr[1]);
245}