3 * Marvell Semiconductor <www.marvell.com>
6 * SPDX-License-Identifier: GPL-2.0+
11 #include <asm/arch/cpu.h>
12 #include <asm/arch/kirkwood.h>
13 #include <asm/arch/mpp.h>
14 #include "sheevaplug.h"
16 DECLARE_GLOBAL_DATA_PTR;
18 int board_early_init_f(void)
21 * default gpio configuration
22 * There are maximum 64 gpios controlled through 2 sets of registers
23 * the below configuration configures mainly initial LED status
25 kw_config_gpio(SHEEVAPLUG_OE_VAL_LOW,
26 SHEEVAPLUG_OE_VAL_HIGH,
27 SHEEVAPLUG_OE_LOW, SHEEVAPLUG_OE_HIGH);
29 /* Multi-Purpose Pins Functionality configuration */
30 static const u32 kwmpp_config[] = {
83 kirkwood_mpp_conf(kwmpp_config, NULL);
90 * arch number of board
92 gd->bd->bi_arch_number = MACH_TYPE_SHEEVAPLUG;
94 /* adress of boot parameters */
95 gd->bd->bi_boot_params = kw_sdram_bar(0) + 0x100;
100 #ifdef CONFIG_RESET_PHY_R
101 /* Configure and enable MV88E1116 PHY */
106 char *name = "egiga0";
108 if (miiphy_set_current_dev(name))
111 /* command to read PHY dev address */
112 if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
113 printf("Err..%s could not read PHY dev address\n",
119 * Enable RGMII delay on Tx and Rx for CPU port
120 * Ref: sec 4.7.2 of chip datasheet
122 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
123 miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, ®);
124 reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
125 miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
126 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
129 miiphy_reset(name, devadr);
131 printf("88E1116 Initialized on %s\n", name);
133 #endif /* CONFIG_RESET_PHY_R */