blob: 8f8132a31a7d396d7263eb87faf8c1710fb24b58 [file] [log] [blame]
Vipin KUMARb0ea0892010-01-15 19:15:50 +05301/*
2 * (C) Copyright 2009
3 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Vipin KUMARb0ea0892010-01-15 19:15:50 +05306 */
7
8#include <common.h>
Vipin Kumar7443d602012-05-07 13:06:44 +05309#include <miiphy.h>
Vipin KUMAR6b49f982012-05-07 13:06:42 +053010#include <netdev.h>
Vipin KUMARb0ea0892010-01-15 19:15:50 +053011#include <nand.h>
12#include <asm/io.h>
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000013#include <linux/mtd/fsmc_nand.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060014#include <asm/mach-types.h>
Vipin KUMARb0ea0892010-01-15 19:15:50 +053015#include <asm/arch/hardware.h>
16#include <asm/arch/spr_defs.h>
17#include <asm/arch/spr_misc.h>
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000018
19static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE];
Vipin KUMARb0ea0892010-01-15 19:15:50 +053020
21int board_init(void)
22{
23 return spear_board_init(MACH_TYPE_SPEAR300);
24}
25
26/*
27 * board_nand_init - Board specific NAND initialization
28 * @nand: mtd private chip structure
29 *
30 * Called by nand_init_chip to initialize the board specific functions
31 */
32
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000033void board_nand_init()
Vipin KUMARb0ea0892010-01-15 19:15:50 +053034{
35 struct misc_regs *const misc_regs_p =
36 (struct misc_regs *)CONFIG_SPEAR_MISCBASE;
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000037 struct nand_chip *nand = &nand_chip[0];
Vipin KUMARb0ea0892010-01-15 19:15:50 +053038
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000039#if defined(CONFIG_NAND_FSMC)
Vipin KUMARb0ea0892010-01-15 19:15:50 +053040 if (((readl(&misc_regs_p->auto_cfg_reg) & MISC_SOCCFGMSK) ==
41 MISC_SOCCFG30) ||
42 ((readl(&misc_regs_p->auto_cfg_reg) & MISC_SOCCFGMSK) ==
43 MISC_SOCCFG31)) {
44
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000045 fsmc_nand_init(nand);
Vipin KUMARb0ea0892010-01-15 19:15:50 +053046 }
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000047#endif
48 return;
Vipin KUMARb0ea0892010-01-15 19:15:50 +053049}
Vipin KUMAR6b49f982012-05-07 13:06:42 +053050
51int board_eth_init(bd_t *bis)
52{
Vipin Kumar7443d602012-05-07 13:06:44 +053053 int ret = 0;
54
Simon Glass6e378742015-04-05 16:07:34 -060055#if defined(CONFIG_ETH_DESIGNWARE)
Vipin Kumar7443d602012-05-07 13:06:44 +053056 u32 interface = PHY_INTERFACE_MODE_MII;
Alexey Brodkin9a0b1302014-01-22 20:54:06 +040057 if (designware_initialize(CONFIG_SPEAR_ETHBASE, interface) >= 0)
Vipin Kumar7443d602012-05-07 13:06:44 +053058 ret++;
Vipin KUMAR6b49f982012-05-07 13:06:42 +053059#endif
Vipin Kumar7443d602012-05-07 13:06:44 +053060 return ret;
Vipin KUMAR6b49f982012-05-07 13:06:42 +053061}