blob: 2a54b8b3234b1cf6a4baa4d7ec0250ce8cc112d1 [file] [log] [blame]
Vipin KUMAR566c9c12010-01-15 19:15:48 +05301/*
2 * (C) Copyright 2009
3 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Vipin KUMAR566c9c12010-01-15 19:15:48 +05306 */
7
8#include <common.h>
Vipin Kumar9afc1af2012-05-07 13:06:44 +05309#include <miiphy.h>
Vipin KUMARdeb00562012-05-07 13:06:42 +053010#include <netdev.h>
Vipin KUMAR566c9c12010-01-15 19:15:48 +053011#include <nand.h>
12#include <asm/io.h>
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000013#include <linux/mtd/fsmc_nand.h>
Simon Glassc62db352017-05-31 19:47:48 -060014#include <asm/mach-types.h>
Vipin KUMAR566c9c12010-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 KUMAR1fa943b2012-05-22 00:15:55 +000018
19static struct nand_chip nand_chip[CONFIG_SYS_MAX_NAND_DEVICE];
Vipin KUMAR566c9c12010-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 KUMAR1fa943b2012-05-22 00:15:55 +000033void board_nand_init()
Vipin KUMAR566c9c12010-01-15 19:15:48 +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 KUMAR566c9c12010-01-15 19:15:48 +053038
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000039#if defined(CONFIG_NAND_FSMC)
Vipin KUMAR566c9c12010-01-15 19:15:48 +053040 if (!(readl(&misc_regs_p->auto_cfg_reg) & MISC_NANDDIS))
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000041 fsmc_nand_init(nand);
42#endif
43 return;
Vipin KUMAR566c9c12010-01-15 19:15:48 +053044}
Vipin KUMARdeb00562012-05-07 13:06:42 +053045
46int board_eth_init(bd_t *bis)
47{
Vipin Kumar9afc1af2012-05-07 13:06:44 +053048 int ret = 0;
49
Simon Glassef48f6d2015-04-05 16:07:34 -060050#if defined(CONFIG_ETH_DESIGNWARE)
Vipin Kumar9afc1af2012-05-07 13:06:44 +053051 u32 interface = PHY_INTERFACE_MODE_MII;
Alexey Brodkin92a190a2014-01-22 20:54:06 +040052 if (designware_initialize(CONFIG_SPEAR_ETHBASE, interface) >= 0)
Vipin Kumar9afc1af2012-05-07 13:06:44 +053053 ret++;
54#endif
55 return ret;
Vipin KUMARdeb00562012-05-07 13:06:42 +053056}