blob: a697c19de53b90da8577a3e5c0291db8ddf9d079 [file] [log] [blame]
Ajay Bhargav26749582011-08-04 21:26:02 +05301/*
2 * (C) Copyright 2011
3 * eInfochips Ltd. <www.einfochips.com>
4 * Written-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
5 *
6 * Based on Aspenite:
7 * (C) Copyright 2010
8 * Marvell Semiconductor <www.marvell.com>
9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
10 * Contributor: Mahavir Jain <mjain@marvell.com>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28 * MA 02110-1301 USA
29 */
30
31#include <common.h>
32#include <mvmfp.h>
Prafulla Wadaskarcebad162011-10-18 20:05:47 +053033#include <asm/arch/cpu.h>
Ajay Bhargav26749582011-08-04 21:26:02 +053034#include <asm/arch/mfp.h>
35#include <asm/arch/armada100.h>
Ajay Bhargav47e75d72011-09-13 22:22:13 +053036#include <asm/gpio.h>
37#include <miiphy.h>
Ajay Bhargav26749582011-08-04 21:26:02 +053038
Ajay Bhargavaa0ecfe2011-09-13 22:22:04 +053039#ifdef CONFIG_ARMADA100_FEC
40#include <net.h>
41#include <netdev.h>
42#endif /* CONFIG_ARMADA100_FEC */
43
Ajay Bhargav26749582011-08-04 21:26:02 +053044DECLARE_GLOBAL_DATA_PTR;
45
46int board_early_init_f(void)
47{
48 u32 mfp_cfg[] = {
49 /* I2C */
50 MFP105_CI2C_SDA,
51 MFP106_CI2C_SCL,
52
53 /* Enable Console on UART3 */
54 MFPO8_UART3_TXD,
55 MFPO9_UART3_RXD,
Ajay Bhargavaa0ecfe2011-09-13 22:22:04 +053056
57 /* Ethernet PHY Interface */
58 MFP086_ETH_TXCLK,
59 MFP087_ETH_TXEN,
60 MFP088_ETH_TXDQ3,
61 MFP089_ETH_TXDQ2,
62 MFP090_ETH_TXDQ1,
63 MFP091_ETH_TXDQ0,
64 MFP092_ETH_CRS,
65 MFP093_ETH_COL,
66 MFP094_ETH_RXCLK,
67 MFP095_ETH_RXER,
68 MFP096_ETH_RXDQ3,
69 MFP097_ETH_RXDQ2,
70 MFP098_ETH_RXDQ1,
71 MFP099_ETH_RXDQ0,
72 MFP100_ETH_MDC,
73 MFP101_ETH_MDIO,
74 MFP103_ETH_RXDV,
75
Ajay Bhargavdaa4b2f2011-10-03 14:00:57 +053076 /* SSP2 */
77 MFP107_SSP2_RXD,
78 MFP108_SSP2_TXD,
79 MFP110_SSP2_CS,
80 MFP111_SSP2_CLK,
81
Ajay Bhargav26749582011-08-04 21:26:02 +053082 MFP_EOC /*End of configuration*/
83 };
84 /* configure MFP's */
85 mfp_config(mfp_cfg);
86 return 0;
87}
88
89int board_init(void)
90{
Ajay Bhargavdaa4b2f2011-10-03 14:00:57 +053091 struct armd1apb2_registers *apb2_regs =
92 (struct armd1apb2_registers *)ARMD1_APBC2_BASE;
93
Ajay Bhargav26749582011-08-04 21:26:02 +053094 /* arch number of Board */
95 gd->bd->bi_arch_number = MACH_TYPE_SHEEVAD;
96 /* adress of boot parameters */
97 gd->bd->bi_boot_params = armd1_sdram_base(0) + 0x100;
Ajay Bhargav47e75d72011-09-13 22:22:13 +053098 /* Assert PHY_RST# */
99 gpio_direction_output(CONFIG_SYS_GPIO_PHY_RST, GPIO_LOW);
100 udelay(10);
101 /* Deassert PHY_RST# */
102 gpio_set_value(CONFIG_SYS_GPIO_PHY_RST, GPIO_HIGH);
Ajay Bhargavdaa4b2f2011-10-03 14:00:57 +0530103
104 /* Enable SSP2 clock */
105 writel(SSP2_APBCLK | SSP2_FNCLK, &apb2_regs->ssp2_clkrst);
Ajay Bhargav26749582011-08-04 21:26:02 +0530106 return 0;
107}
Ajay Bhargavaa0ecfe2011-09-13 22:22:04 +0530108
109#ifdef CONFIG_ARMADA100_FEC
110int board_eth_init(bd_t *bis)
111{
112 struct armd1apmu_registers *apmu_regs =
113 (struct armd1apmu_registers *)ARMD1_APMU_BASE;
114
115 /* Enable clock of ethernet controller */
116 writel(FE_CLK_RST | FE_CLK_ENA, &apmu_regs->fecrc);
117
118 return armada100_fec_register(ARMD1_FEC_BASE);
119}
Ajay Bhargav47e75d72011-09-13 22:22:13 +0530120
121#ifdef CONFIG_RESET_PHY_R
122/* Configure and initialize PHY chip 88E3015 */
123void reset_phy(void)
124{
125 u16 phy_adr;
126 const char *name = "armd-fec0";
127
128 if (miiphy_set_current_dev(name))
129 return;
130
131 /* command to read PHY dev address */
132 if (miiphy_read(name, 0xff, 0xff, &phy_adr)) {
133 printf("Err..%s could not read PHY dev address\n", __func__);
134 return;
135 }
136
137 /* Set Ethernet LED in TX blink mode */
138 miiphy_write(name, phy_adr, PHY_LED_MAN_REG, 0x00);
139 miiphy_write(name, phy_adr, PHY_LED_PAR_SEL_REG, PHY_LED_VAL);
140
141 /* reset the phy */
142 miiphy_reset(name, phy_adr);
143 debug("88E3015 Initialized on %s\n", name);
144}
145#endif /* CONFIG_RESET_PHY_R */
Ajay Bhargavaa0ecfe2011-09-13 22:22:04 +0530146#endif /* CONFIG_ARMADA100_FEC */