1 // SPDX-License-Identifier: GPL-2.0+
4 * Marvell Semiconductor <www.marvell.com>
11 #include <asm/mach-types.h>
12 #include <asm/arch/cpu.h>
13 #include <asm/arch/soc.h>
14 #include <asm/arch/mpp.h>
15 #include "sheevaplug.h"
17 DECLARE_GLOBAL_DATA_PTR;
19 int board_early_init_f(void)
22 * default gpio configuration
23 * There are maximum 64 gpios controlled through 2 sets of registers
24 * the below configuration configures mainly initial LED status
26 mvebu_config_gpio(SHEEVAPLUG_OE_VAL_LOW,
27 SHEEVAPLUG_OE_VAL_HIGH,
28 SHEEVAPLUG_OE_LOW, SHEEVAPLUG_OE_HIGH);
30 /* Multi-Purpose Pins Functionality configuration */
31 static const u32 kwmpp_config[] = {
84 kirkwood_mpp_conf(kwmpp_config, NULL);
91 * arch number of board
93 gd->bd->bi_arch_number = MACH_TYPE_SHEEVAPLUG;
95 /* adress of boot parameters */
96 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
101 #ifdef CONFIG_RESET_PHY_R
102 /* Configure and enable MV88E1116 PHY */
107 char *name = "egiga0";
109 if (miiphy_set_current_dev(name))
112 /* command to read PHY dev address */
113 if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
114 printf("Err..%s could not read PHY dev address\n",
120 * Enable RGMII delay on Tx and Rx for CPU port
121 * Ref: sec 4.7.2 of chip datasheet
123 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
124 miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, ®);
125 reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
126 miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
127 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
130 miiphy_reset(name, devadr);
132 printf("88E1116 Initialized on %s\n", name);
134 #endif /* CONFIG_RESET_PHY_R */