blob: 6f39ef1b407af9ffa5d2fb66f655d80f762d63b4 [file] [log] [blame]
Vipin KUMAR080cfee2010-01-15 19:15:52 +05301/*
2 * (C) Copyright 2009
3 * Ryan Chen, ST Micoelectronics, ryan.chen@st.com.
4 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Vipin KUMAR080cfee2010-01-15 19:15:52 +05307 */
8
9#include <common.h>
Vipin Kumar9afc1af2012-05-07 13:06:44 +053010#include <miiphy.h>
Vipin KUMARdeb00562012-05-07 13:06:42 +053011#include <netdev.h>
Vipin KUMAR080cfee2010-01-15 19:15:52 +053012#include <nand.h>
13#include <asm/io.h>
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000014#include <linux/mtd/fsmc_nand.h>
Vipin KUMAR080cfee2010-01-15 19:15:52 +053015#include <asm/arch/hardware.h>
16#include <asm/arch/spr_defs.h>
17#include <asm/arch/spr_misc.h>
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000018
19static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE];
Vipin KUMAR080cfee2010-01-15 19:15:52 +053020
21int board_init(void)
22{
Vipin Kumar9d69e332010-03-02 10:46:52 +053023 return spear_board_init(MACH_TYPE_SPEAR310);
Vipin KUMAR080cfee2010-01-15 19:15:52 +053024}
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 KUMAR1fa943b2012-05-22 00:15:55 +000033void board_nand_init()
Vipin KUMAR080cfee2010-01-15 19:15:52 +053034{
35 struct misc_regs *const misc_regs_p =
36 (struct misc_regs *)CONFIG_SPEAR_MISCBASE;
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000037 struct nand_chip *nand = &nand_chip[0];
Vipin KUMAR080cfee2010-01-15 19:15:52 +053038
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000039#if defined(CONFIG_NAND_FSMC)
Vipin KUMAR080cfee2010-01-15 19:15:52 +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 KUMAR1fa943b2012-05-22 00:15:55 +000045 fsmc_nand_init(nand);
Vipin KUMAR080cfee2010-01-15 19:15:52 +053046 }
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000047#endif
48 return;
Vipin KUMAR080cfee2010-01-15 19:15:52 +053049}
Vipin KUMARdeb00562012-05-07 13:06:42 +053050
51int board_eth_init(bd_t *bis)
52{
Vipin KUMAR8eb0ee62012-05-07 13:06:43 +053053 int ret = 0;
54
Simon Glassef48f6d2015-04-05 16:07:34 -060055#if defined(CONFIG_ETH_DESIGNWARE)
Vipin Kumar9afc1af2012-05-07 13:06:44 +053056 u32 interface = PHY_INTERFACE_MODE_MII;
Alexey Brodkin92a190a2014-01-22 20:54:06 +040057 if (designware_initialize(CONFIG_SPEAR_ETHBASE, interface) >= 0)
Vipin Kumar9afc1af2012-05-07 13:06:44 +053058 ret++;
Vipin KUMARdeb00562012-05-07 13:06:42 +053059#endif
Vipin KUMAR8eb0ee62012-05-07 13:06:43 +053060#if defined(CONFIG_MACB)
61 if (macb_eth_initialize(0, (void *)CONFIG_SYS_MACB0_BASE,
Vipin Kumar9afc1af2012-05-07 13:06:44 +053062 CONFIG_MACB0_PHY) >= 0)
63 ret++;
Vipin KUMAR8eb0ee62012-05-07 13:06:43 +053064
65 if (macb_eth_initialize(1, (void *)CONFIG_SYS_MACB1_BASE,
Vipin Kumar9afc1af2012-05-07 13:06:44 +053066 CONFIG_MACB1_PHY) >= 0)
67 ret++;
Vipin KUMAR8eb0ee62012-05-07 13:06:43 +053068
69 if (macb_eth_initialize(2, (void *)CONFIG_SYS_MACB2_BASE,
Vipin Kumar9afc1af2012-05-07 13:06:44 +053070 CONFIG_MACB2_PHY) >= 0)
71 ret++;
Vipin KUMAR8eb0ee62012-05-07 13:06:43 +053072
73 if (macb_eth_initialize(3, (void *)CONFIG_SYS_MACB3_BASE,
Vipin Kumar9afc1af2012-05-07 13:06:44 +053074 CONFIG_MACB3_PHY) >= 0)
75 ret++;
Vipin KUMAR8eb0ee62012-05-07 13:06:43 +053076#endif
77 return ret;
Vipin KUMARdeb00562012-05-07 13:06:42 +053078}