1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
5 * Based on da850evm.c. Original Copyrights follow:
7 * Copyright (C) 2009 Nick Thompson, GE Fanuc, Ltd. <nick.thompson@gefanuc.com>
8 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
16 #include <asm/arch/hardware.h>
17 #include <asm/global_data.h>
18 #include <asm/ti-common/davinci_nand.h>
21 #include <dm/platdata.h>
22 #include <linux/errno.h>
23 #include <asm/mach-types.h>
24 #include <asm/arch/davinci_misc.h>
25 #ifdef CONFIG_MMC_DAVINCI
27 #include <asm/arch/sdmmc_defs.h>
30 DECLARE_GLOBAL_DATA_PTR;
32 #define pinmux(x) (&davinci_syscfg_regs->pinmux[x])
34 #ifdef CONFIG_MMC_DAVINCI
35 /* MMC0 pin muxer settings */
36 const struct pinmux_config mmc0_pins[] = {
37 /* GP0[11] is required for SD to work on Rev 3 EVMs */
38 { pinmux(0), 8, 4 }, /* GP0[11] */
39 { pinmux(10), 2, 0 }, /* MMCSD0_CLK */
40 { pinmux(10), 2, 1 }, /* MMCSD0_CMD */
41 { pinmux(10), 2, 2 }, /* MMCSD0_DAT_0 */
42 { pinmux(10), 2, 3 }, /* MMCSD0_DAT_1 */
43 { pinmux(10), 2, 4 }, /* MMCSD0_DAT_2 */
44 { pinmux(10), 2, 5 }, /* MMCSD0_DAT_3 */
45 /* LCDK supports only 4-bit mode, remaining pins are not configured */
49 /* UART pin muxer settings */
50 static const struct pinmux_config uart_pins[] = {
57 #ifdef CONFIG_DRIVER_TI_EMAC
58 static const struct pinmux_config emac_pins[] = {
77 #endif /* CONFIG_DRIVER_TI_EMAC */
79 /* I2C pin muxer settings */
80 static const struct pinmux_config i2c_pins[] = {
85 #ifdef CONFIG_NAND_DAVINCI
86 const struct pinmux_config nand_pins[] = {
107 { pinmux(12), 1, 5 },
113 #ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
119 const struct pinmux_resource pinmuxes[] = {
120 PINMUX_ITEM(uart_pins),
121 PINMUX_ITEM(i2c_pins),
122 #ifdef CONFIG_NAND_DAVINCI
123 PINMUX_ITEM(nand_pins),
127 const int pinmuxes_size = ARRAY_SIZE(pinmuxes);
129 const struct lpsc_resource lpsc[] = {
130 { DAVINCI_LPSC_AEMIF }, /* NAND, NOR */
131 { DAVINCI_LPSC_SPI1 }, /* Serial Flash */
132 { DAVINCI_LPSC_EMAC }, /* image download */
133 { DAVINCI_LPSC_UART2 }, /* console */
134 { DAVINCI_LPSC_GPIO },
135 #ifdef CONFIG_MMC_DAVINCI
136 { DAVINCI_LPSC_MMC_SD },
140 const int lpsc_size = ARRAY_SIZE(lpsc);
142 #ifndef CONFIG_DA850_EVM_MAX_CPU_CLK
143 #define CONFIG_DA850_EVM_MAX_CPU_CLK 456000000
146 int board_early_init_f(void)
149 * Power on required peripherals
150 * ARM does not have access by default to PSC0 and PSC1
151 * assuming here that the DSP bootloader has set the IOPU
152 * such that PSC access is available to ARM
154 if (da8xx_configure_lpsc_items(lpsc, ARRAY_SIZE(lpsc)))
164 /* arch number of the board */
165 gd->bd->bi_arch_number = MACH_TYPE_OMAPL138_LCDK;
167 /* address of boot parameters */
168 gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
171 /* setup the SUSPSRC for ARM to control emulation suspend */
172 writel(readl(&davinci_syscfg_regs->suspsrc) &
173 ~(DAVINCI_SYSCFG_SUSPSRC_EMAC | DAVINCI_SYSCFG_SUSPSRC_I2C |
174 DAVINCI_SYSCFG_SUSPSRC_SPI1 | DAVINCI_SYSCFG_SUSPSRC_TIMER0 |
175 DAVINCI_SYSCFG_SUSPSRC_UART2),
176 &davinci_syscfg_regs->suspsrc);
178 /* configure pinmux settings */
179 if (davinci_configure_pin_mux_items(pinmuxes, ARRAY_SIZE(pinmuxes)))
182 #ifdef CONFIG_NAND_DAVINCI
184 * NAND CS setup - cycle counts based on da850evm NAND timings in the
185 * Linux kernel @ 25MHz EMIFA
187 writel((DAVINCI_ABCR_WSETUP(15) |
188 DAVINCI_ABCR_WSTROBE(63) |
189 DAVINCI_ABCR_WHOLD(7) |
190 DAVINCI_ABCR_RSETUP(15) |
191 DAVINCI_ABCR_RSTROBE(63) |
192 DAVINCI_ABCR_RHOLD(7) |
194 DAVINCI_ABCR_ASIZE_16BIT),
195 &davinci_emif_regs->ab2cr); /* CS3 */
199 #ifdef CONFIG_MMC_DAVINCI
200 if (davinci_configure_pin_mux(mmc0_pins, ARRAY_SIZE(mmc0_pins)) != 0)
204 #ifdef CONFIG_DRIVER_TI_EMAC
205 if (davinci_configure_pin_mux(emac_pins, ARRAY_SIZE(emac_pins)) != 0)
207 davinci_emac_mii_mode_sel(HAS_RMII);
208 #endif /* CONFIG_DRIVER_TI_EMAC */
210 /* enable the console UART */
211 writel((DAVINCI_UART_PWREMU_MGMT_FREE | DAVINCI_UART_PWREMU_MGMT_URRST |
212 DAVINCI_UART_PWREMU_MGMT_UTRST),
213 &davinci_uart2_ctrl_regs->pwremu_mgmt);
218 #define CFG_MAC_ADDR_SPI_BUS 0
219 #define CFG_MAC_ADDR_SPI_CS 0
220 #define CFG_MAC_ADDR_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
221 #define CFG_MAC_ADDR_SPI_MODE SPI_MODE_3
223 #define CFG_MAC_ADDR_OFFSET (flash->size - SZ_64K)
225 void dsp_lpsc_on(unsigned domain, unsigned int id)
227 dv_reg_p mdstat, mdctl, ptstat, ptcmd;
228 struct davinci_psc_regs *psc_regs;
230 psc_regs = davinci_psc0_regs;
231 mdstat = &psc_regs->psc0.mdstat[id];
232 mdctl = &psc_regs->psc0.mdctl[id];
233 ptstat = &psc_regs->ptstat;
234 ptcmd = &psc_regs->ptcmd;
236 while (*ptstat & (0x1 << domain))
239 if ((*mdstat & 0x1f) == 0x03)
240 return; /* Already on and enabled */
244 *ptcmd = 0x1 << domain;
246 while (*ptstat & (0x1 << domain))
248 while ((*mdstat & 0x1f) != 0x03)
249 ; /* Probably an overkill... */
252 static void dspwake(void)
254 unsigned *resetvect = (unsigned *)DAVINCI_L3CBARAM_BASE;
256 /* if the device is ARM only, return */
257 if ((REG(CHIP_REV_ID_REG) & 0x3f) == 0x10)
260 if (!strcmp(env_get("dspwake"), "no"))
263 *resetvect++ = 0x1E000; /* DSP Idle */
264 /* clear out the next 10 words as NOP */
265 memset(resetvect, 0, sizeof(unsigned) * 10);
267 /* setup the DSP reset vector */
268 REG(HOST1CFG) = DAVINCI_L3CBARAM_BASE;
270 dsp_lpsc_on(1, DAVINCI_LPSC_GEM);
271 REG(PSC0_MDCTL + (15 * 4)) |= 0x100;
274 #ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
279 int rmii_hw_init(void)
283 #endif /* CONFIG_DRIVER_TI_EMAC_USE_RMII */
285 int misc_init_r(void)
287 #ifdef CONFIG_DRIVER_TI_EMAC_USE_RMII
288 /* Select RMII fucntion through the expander */
290 printf("RMII hardware init failed!!!\n");
298 #if !CONFIG_IS_ENABLED(DM_MMC)
299 #ifdef CONFIG_MMC_DAVINCI
300 static struct davinci_mmc mmc_sd0 = {
301 .reg_base = (struct davinci_mmc_regs *)DAVINCI_MMC_SD0_BASE,
302 .host_caps = MMC_MODE_4BIT, /* DA850 supports only 4-bit SD/MMC */
303 .voltages = MMC_VDD_32_33 | MMC_VDD_33_34,
306 int board_mmc_init(struct bd_info *bis)
308 mmc_sd0.input_clk = clk_get(DAVINCI_MMCSD_CLKID);
310 /* Add slot-0 to mmc subsystem */
311 return davinci_mmc_init(bis, &mmc_sd0);
316 #ifdef CONFIG_SPL_BUILD
317 static const struct ns16550_plat serial_pdata = {
318 .base = DAVINCI_UART2_BASE,
321 .fcr = UART_FCR_DEFVAL,
324 U_BOOT_DRVINFO(omapl138_uart) = {
325 .name = "ns16550_serial",
326 .plat = &serial_pdata,
329 static const struct davinci_mmc_plat mmc_plat = {
330 .reg_base = (struct davinci_mmc_regs *)DAVINCI_MMC_SD0_BASE,
334 .voltages = MMC_VDD_32_33 | MMC_VDD_33_34,
335 .host_caps = MMC_MODE_4BIT,
336 .b_max = DAVINCI_MAX_BLOCKS,
340 U_BOOT_DRVINFO(omapl138_mmc) = {
341 .name = "ti_da830_mmc",
345 void spl_board_init(void)
347 davinci_configure_pin_mux(mmc0_pins, ARRAY_SIZE(mmc0_pins));