3 * Sascha Hauer, Pengutronix
5 * (C) Copyright 2009 Freescale Semiconductor, Inc.
7 * SPDX-License-Identifier: GPL-2.0+
11 #include <asm/errno.h>
13 #include <asm/arch/imx-regs.h>
14 #include <asm/arch/clock.h>
15 #include <asm/arch/sys_proto.h>
16 #include <asm/arch/crm_regs.h>
17 #include <ipu_pixfmt.h>
19 #ifdef CONFIG_FSL_ESDHC
20 #include <fsl_esdhc.h>
23 char *get_reset_cause(void)
26 struct src *src_regs = (struct src *)SRC_BASE_ADDR;
28 cause = readl(&src_regs->srsr);
29 writel(cause, &src_regs->srsr);
48 return "unknown reset";
52 #if defined(CONFIG_MX53) || defined(CONFIG_MX6)
53 #if defined(CONFIG_MX53)
54 #define MEMCTL_BASE ESDCTL_BASE_ADDR
56 #define MEMCTL_BASE MMDC_P0_BASE_ADDR
58 static const unsigned char col_lookup[] = {9, 10, 11, 8, 12, 9, 9, 9};
59 static const unsigned char bank_lookup[] = {3, 2};
61 /* these MMDC registers are common to the IMX53 and IMX6 */
62 struct esd_mmdc_regs {
72 #define ESD_MMDC_CTL_GET_ROW(mdctl) ((ctl >> 24) & 7)
73 #define ESD_MMDC_CTL_GET_COLUMN(mdctl) ((ctl >> 20) & 7)
74 #define ESD_MMDC_CTL_GET_WIDTH(mdctl) ((ctl >> 16) & 3)
75 #define ESD_MMDC_CTL_GET_CS1(mdctl) ((ctl >> 30) & 1)
76 #define ESD_MMDC_MISC_GET_BANK(mdmisc) ((misc >> 5) & 1)
79 * imx_ddr_size - return size in bytes of DRAM according MMDC config
80 * The MMDC MDCTL register holds the number of bits for row, col, and data
81 * width and the MMDC MDMISC register holds the number of banks. Combine
82 * all these bits to determine the meme size the MMDC has been configured for
84 unsigned imx_ddr_size(void)
86 struct esd_mmdc_regs *mem = (struct esd_mmdc_regs *)MEMCTL_BASE;
87 unsigned ctl = readl(&mem->ctl);
88 unsigned misc = readl(&mem->misc);
89 int bits = 11 + 0 + 0 + 1; /* row + col + bank + width */
91 bits += ESD_MMDC_CTL_GET_ROW(ctl);
92 bits += col_lookup[ESD_MMDC_CTL_GET_COLUMN(ctl)];
93 bits += bank_lookup[ESD_MMDC_MISC_GET_BANK(misc)];
94 bits += ESD_MMDC_CTL_GET_WIDTH(ctl);
95 bits += ESD_MMDC_CTL_GET_CS1(ctl);
97 /* The MX6 can do only 3840 MiB of DRAM */
105 #if defined(CONFIG_DISPLAY_CPUINFO)
107 const char *get_imx_type(u32 imxtype)
111 return "6Q"; /* Quad-core version of the mx6 */
113 return "6D"; /* Dual-core version of the mx6 */
115 return "6DL"; /* Dual Lite version of the mx6 */
116 case MXC_CPU_MX6SOLO:
117 return "6SOLO"; /* Solo version of the mx6 */
119 return "6SL"; /* Solo-Lite version of the mx6 */
121 return "6SX"; /* SoloX version of the mx6 */
131 int print_cpuinfo(void)
135 cpurev = get_cpu_rev();
137 printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
138 get_imx_type((cpurev & 0xFF000) >> 12),
139 (cpurev & 0x000F0) >> 4,
140 (cpurev & 0x0000F) >> 0,
141 mxc_get_clock(MXC_ARM_CLK) / 1000000);
142 printf("Reset cause: %s\n", get_reset_cause());
147 int cpu_eth_init(bd_t *bis)
151 #if defined(CONFIG_FEC_MXC)
152 rc = fecmxc_initialize(bis);
158 #ifdef CONFIG_FSL_ESDHC
160 * Initializes on-chip MMC controllers.
161 * to override, implement board_mmc_init()
163 int cpu_mmc_init(bd_t *bis)
165 return fsl_esdhc_mmc_init(bis);
169 u32 get_ahb_clk(void)
171 struct mxc_ccm_reg *imx_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
174 reg = __raw_readl(&imx_ccm->cbcdr);
175 reg &= MXC_CCM_CBCDR_AHB_PODF_MASK;
176 ahb_podf = reg >> MXC_CCM_CBCDR_AHB_PODF_OFFSET;
178 return get_periph_clk() / (ahb_podf + 1);
181 #if defined(CONFIG_VIDEO_IPUV3)
182 void arch_preboot_os(void)
184 /* disable video before launching O/S */