3 * Sascha Hauer, Pengutronix
5 * (C) Copyright 2009 Freescale Semiconductor, Inc.
7 * SPDX-License-Identifier: GPL-2.0+
13 #include <asm/errno.h>
15 #include <asm/arch/imx-regs.h>
16 #include <asm/arch/clock.h>
17 #include <asm/arch/sys_proto.h>
18 #include <asm/arch/crm_regs.h>
19 #include <ipu_pixfmt.h>
23 #ifdef CONFIG_FSL_ESDHC
24 #include <fsl_esdhc.h>
27 char *get_reset_cause(void)
30 struct src *src_regs = (struct src *)SRC_BASE_ADDR;
32 cause = readl(&src_regs->srsr);
33 writel(cause, &src_regs->srsr);
52 return "unknown reset";
56 #if defined(CONFIG_MX53) || defined(CONFIG_MX6)
57 #if defined(CONFIG_MX53)
58 #define MEMCTL_BASE ESDCTL_BASE_ADDR
60 #define MEMCTL_BASE MMDC_P0_BASE_ADDR
62 static const unsigned char col_lookup[] = {9, 10, 11, 8, 12, 9, 9, 9};
63 static const unsigned char bank_lookup[] = {3, 2};
65 /* these MMDC registers are common to the IMX53 and IMX6 */
66 struct esd_mmdc_regs {
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)
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
88 unsigned imx_ddr_size(void)
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 */
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);
101 /* The MX6 can do only 3840 MiB of DRAM */
109 #if defined(CONFIG_DISPLAY_CPUINFO)
111 const char *get_imx_type(u32 imxtype)
115 return "6Q"; /* Quad-core version of the mx6 */
117 return "6D"; /* Dual-core version of the mx6 */
119 return "6DL"; /* Dual Lite version of the mx6 */
120 case MXC_CPU_MX6SOLO:
121 return "6SOLO"; /* Solo version of the mx6 */
123 return "6SL"; /* Solo-Lite version of the mx6 */
125 return "6SX"; /* SoloX version of the mx6 */
135 int print_cpuinfo(void)
139 #if defined(CONFIG_MX6) && defined(CONFIG_IMX6_THERMAL)
140 struct udevice *thermal_dev;
144 cpurev = get_cpu_rev();
146 printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
147 get_imx_type((cpurev & 0xFF000) >> 12),
148 (cpurev & 0x000F0) >> 4,
149 (cpurev & 0x0000F) >> 0,
150 mxc_get_clock(MXC_ARM_CLK) / 1000000);
152 #if defined(CONFIG_MX6) && defined(CONFIG_IMX6_THERMAL)
153 ret = uclass_get_device(UCLASS_THERMAL, 0, &thermal_dev);
155 ret = thermal_get_temp(thermal_dev, &cpu_tmp);
158 printf("CPU: Temperature %d C\n", cpu_tmp);
160 printf("CPU: Temperature: invalid sensor data\n");
162 printf("CPU: Temperature: Can't find sensor device\n");
166 printf("Reset cause: %s\n", get_reset_cause());
171 int cpu_eth_init(bd_t *bis)
175 #if defined(CONFIG_FEC_MXC)
176 rc = fecmxc_initialize(bis);
182 #ifdef CONFIG_FSL_ESDHC
184 * Initializes on-chip MMC controllers.
185 * to override, implement board_mmc_init()
187 int cpu_mmc_init(bd_t *bis)
189 return fsl_esdhc_mmc_init(bis);
193 u32 get_ahb_clk(void)
195 struct mxc_ccm_reg *imx_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
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;
202 return get_periph_clk() / (ahb_podf + 1);
205 void arch_preboot_os(void)
207 #if defined(CONFIG_CMD_SATA)
210 #if defined(CONFIG_VIDEO_IPUV3)
211 /* disable video before launching O/S */
216 void set_chipselect_size(int const cs_size)
219 struct iomuxc *iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR;
220 reg = readl(&iomuxc_regs->gpr[1]);
224 reg &= ~0x7; /* CS0=128MB, CS1=0, CS2=0, CS3=0 */
227 case CS0_64M_CS1_64M:
228 reg &= ~0x3F; /* CS0=64MB, CS1=64MB, CS2=0, CS3=0 */
231 case CS0_64M_CS1_32M_CS2_32M:
232 reg &= ~0x1FF; /* CS0=64MB, CS1=32MB, CS2=32MB, CS3=0 */
235 case CS0_32M_CS1_32M_CS2_32M_CS3_32M:
236 reg &= ~0xFFF; /* CS0=32MB, CS1=32MB, CS2=32MB, CS3=32MB */
240 printf("Unknown chip select size: %d\n", cs_size);
244 writel(reg, &iomuxc_regs->gpr[1]);