3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28 #include <asm/arch/cpu.h>
29 #include <asm/arch/kirkwood.h>
30 #include <asm/arch/mpp.h>
33 DECLARE_GLOBAL_DATA_PTR;
35 int board_early_init_f(void)
38 * default gpio configuration
39 * There are maximum 64 gpios controlled through 2 sets of registers
40 * the below configuration configures mainly initial LED status
42 kw_config_gpio(RD6281A_OE_VAL_LOW,
44 RD6281A_OE_LOW, RD6281A_OE_HIGH);
46 /* Multi-Purpose Pins Functionality configuration */
47 u32 kwmpp_config[] = {
100 kirkwood_mpp_conf(kwmpp_config, NULL);
107 * arch number of board
109 gd->bd->bi_arch_number = MACH_TYPE_RD88F6281;
111 /* adress of boot parameters */
112 gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
117 void mv_phy_88e1116_init(char *name)
122 if (miiphy_set_current_dev(name))
125 /* command to read PHY dev address */
126 if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
127 printf("Err..%s could not read PHY dev address\n",
133 * Enable RGMII delay on Tx and Rx for CPU port
134 * Ref: sec 4.7.2 of chip datasheet
136 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
137 miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, ®);
138 reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
139 miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
140 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
143 if (miiphy_read (name, devadr, MII_BMCR, ®) != 0) {
144 printf("Err..(%s) PHY status read failed\n", __FUNCTION__);
147 if (miiphy_write (name, devadr, MII_BMCR, reg | 0x8000) != 0) {
148 printf("Err..(%s) PHY reset failed\n", __FUNCTION__);
152 printf("88E1116 Initialized on %s\n", name);
155 /* Configure and enable Switch and PHY */
158 /* configure and initialize switch */
159 struct mv88e61xx_config swcfg = {
161 .vlancfg = MV88E61XX_VLANCFG_ROUTER,
162 .rgmii_delay = MV88E61XX_RGMII_DELAY_EN,
163 .led_init = MV88E61XX_LED_INIT_EN,
164 .portstate = MV88E61XX_PORTSTT_FORWARDING,
166 .ports_enabled = 0x3f,
169 mv88e61xx_switch_initialize(&swcfg);
171 /* configure and initialize PHY */
172 mv_phy_88e1116_init("egiga1");