2 * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
4 * Based on sheevaplug.c originally written by
5 * Prafulla Wadaskar <prafulla@marvell.com>
7 * Marvell Semiconductor <www.marvell.com>
9 * SPDX-License-Identifier: GPL-2.0+
14 #include <asm/arch/soc.h>
15 #include <asm/arch/mpp.h>
16 #include <asm/arch/cpu.h>
18 #include <asm/mach-types.h>
21 DECLARE_GLOBAL_DATA_PTR;
23 int board_early_init_f(void)
26 * default gpio configuration
27 * There are maximum 64 gpios controlled through 2 sets of registers
28 * the below configuration configures mainly initial LED status
30 mvebu_config_gpio(DOCKSTAR_OE_VAL_LOW,
32 DOCKSTAR_OE_LOW, DOCKSTAR_OE_HIGH);
34 /* Multi-Purpose Pins Functionality configuration */
35 static const u32 kwmpp_config[] = {
88 kirkwood_mpp_conf(kwmpp_config, NULL);
95 * arch number of board
97 gd->bd->bi_arch_number = MACH_TYPE_DOCKSTAR;
99 /* address of boot parameters */
100 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
105 #ifdef CONFIG_RESET_PHY_R
106 /* Configure and enable MV88E1116 PHY */
111 char *name = "egiga0";
113 if (miiphy_set_current_dev(name))
116 /* command to read PHY dev address */
117 if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
118 printf("Err..%s could not read PHY dev address\n",
124 * Enable RGMII delay on Tx and Rx for CPU port
125 * Ref: sec 4.7.2 of chip datasheet
127 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
128 miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, ®);
129 reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
130 miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
131 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
134 miiphy_reset(name, devadr);
136 printf("88E1116 Initialized on %s\n", name);
138 #endif /* CONFIG_RESET_PHY_R */
140 #define GREEN_LED (1 << 14)
141 #define ORANGE_LED (1 << 15)
142 #define BOTH_LEDS (GREEN_LED | ORANGE_LED)
143 #define NEITHER_LED 0
145 static void set_leds(u32 leds, u32 blinking)
147 struct kwgpio_registers *r = (struct kwgpio_registers *)MVEBU_GPIO1_BASE;
148 u32 oe = readl(&r->oe) | BOTH_LEDS;
149 writel(oe & ~leds, &r->oe); /* active low */
150 u32 bl = readl(&r->blink_en) & ~BOTH_LEDS;
151 writel(bl | blinking, &r->blink_en);
154 void show_boot_progress(int val)
157 case BOOTSTAGE_ID_RUN_OS: /* booting Linux */
158 set_leds(BOTH_LEDS, NEITHER_LED);
160 case BOOTSTAGE_ID_NET_ETH_START: /* Ethernet initialization */
161 set_leds(GREEN_LED, GREEN_LED);
164 if (val < 0) /* error */
165 set_leds(ORANGE_LED, ORANGE_LED);