3 * Ryan Chen, ST Micoelectronics, ryan.chen@st.com.
4 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
6 * SPDX-License-Identifier: GPL-2.0+
14 #include <linux/mtd/fsmc_nand.h>
15 #include <asm/arch/hardware.h>
16 #include <asm/arch/spr_defs.h>
17 #include <asm/arch/spr_misc.h>
19 #define PLGPIO_SEL_36 0xb3000028
20 #define PLGPIO_IO_36 0xb3000038
22 static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE];
24 static void spear_phy_reset(void)
26 writel(0x10, PLGPIO_IO_36);
27 writel(0x10, PLGPIO_SEL_36);
33 return spear_board_init(MACH_TYPE_SPEAR320);
37 * board_nand_init - Board specific NAND initialization
38 * @nand: mtd private chip structure
40 * Called by nand_init_chip to initialize the board specific functions
43 void board_nand_init()
45 struct misc_regs *const misc_regs_p =
46 (struct misc_regs *)CONFIG_SPEAR_MISCBASE;
47 struct nand_chip *nand = &nand_chip[0];
49 #if defined(CONFIG_NAND_FSMC)
50 if (((readl(&misc_regs_p->auto_cfg_reg) & MISC_SOCCFGMSK) ==
52 ((readl(&misc_regs_p->auto_cfg_reg) & MISC_SOCCFGMSK) ==
62 int board_eth_init(bd_t *bis)
66 #if defined(CONFIG_ETH_DESIGNWARE)
67 u32 interface = PHY_INTERFACE_MODE_MII;
68 if (designware_initialize(CONFIG_SPEAR_ETHBASE, interface) >= 0)
71 #if defined(CONFIG_MACB)
72 if (macb_eth_initialize(0, (void *)CONFIG_SYS_MACB0_BASE,
73 CONFIG_MACB0_PHY) >= 0)