blob: 2a54b8b3234b1cf6a4baa4d7ec0250ce8cc112d1 [file] [log] [blame]
Vipin KUMAR7cc4c462010-01-15 19:15:48 +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 KUMAR7cc4c462010-01-15 19:15:48 +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 KUMAR7cc4c462010-01-15 19:15:48 +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 KUMAR7cc4c462010-01-15 19:15:48 +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 KUMAR7cc4c462010-01-15 19:15:48 +053020
21int board_init(void)
22{
23 return spear_board_init(MACH_TYPE_SPEAR600);
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 KUMAR7cc4c462010-01-15 19:15:48 +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 KUMAR7cc4c462010-01-15 19:15:48 +053038
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000039#if defined(CONFIG_NAND_FSMC)
Vipin KUMAR7cc4c462010-01-15 19:15:48 +053040 if (!(readl(&misc_regs_p->auto_cfg_reg) & MISC_NANDDIS))
Vipin KUMARf1bd24e2012-05-22 00:15:55 +000041 fsmc_nand_init(nand);
42#endif
43 return;
Vipin KUMAR7cc4c462010-01-15 19:15:48 +053044}
Vipin KUMAR6b49f982012-05-07 13:06:42 +053045
46int board_eth_init(bd_t *bis)
47{
Vipin Kumar7443d602012-05-07 13:06:44 +053048 int ret = 0;
49
Simon Glass6e378742015-04-05 16:07:34 -060050#if defined(CONFIG_ETH_DESIGNWARE)
Vipin Kumar7443d602012-05-07 13:06:44 +053051 u32 interface = PHY_INTERFACE_MODE_MII;
Alexey Brodkin9a0b1302014-01-22 20:54:06 +040052 if (designware_initialize(CONFIG_SPEAR_ETHBASE, interface) >= 0)
Vipin Kumar7443d602012-05-07 13:06:44 +053053 ret++;
Vipin KUMAR6b49f982012-05-07 13:06:42 +053054#endif
Vipin Kumar7443d602012-05-07 13:06:44 +053055 return ret;
Vipin KUMAR6b49f982012-05-07 13:06:42 +053056}