blob: 85dd10e55a2c7e3e24e1221f7657573fa047e7ae [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Eric Coopera3f41c82010-11-24 17:11:32 +05302/*
3 * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
4 *
5 * Based on sheevaplug.c originally written by
6 * Prafulla Wadaskar <prafulla@marvell.com>
7 * (C) Copyright 2009
8 * Marvell Semiconductor <www.marvell.com>
Eric Coopera3f41c82010-11-24 17:11:32 +05309 */
10
11#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -060012#include <bootstage.h>
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Eric Coopera3f41c82010-11-24 17:11:32 +053014#include <miiphy.h>
Simon Glass0c364412019-12-28 10:44:48 -070015#include <net.h>
Stefan Roesec2437842014-10-22 12:13:06 +020016#include <asm/arch/soc.h>
Eric Coopera3f41c82010-11-24 17:11:32 +053017#include <asm/arch/mpp.h>
Anatolij Gustschinc8b222e2011-10-29 10:09:22 +000018#include <asm/arch/cpu.h>
19#include <asm/io.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060020#include <asm/mach-types.h>
Eric Coopera3f41c82010-11-24 17:11:32 +053021#include "dockstar.h"
22
23DECLARE_GLOBAL_DATA_PTR;
24
25int board_early_init_f(void)
26{
27 /*
28 * default gpio configuration
29 * There are maximum 64 gpios controlled through 2 sets of registers
30 * the below configuration configures mainly initial LED status
31 */
Stefan Roesec50ab392014-10-22 12:13:11 +020032 mvebu_config_gpio(DOCKSTAR_OE_VAL_LOW,
33 DOCKSTAR_OE_VAL_HIGH,
34 DOCKSTAR_OE_LOW, DOCKSTAR_OE_HIGH);
Eric Coopera3f41c82010-11-24 17:11:32 +053035
36 /* Multi-Purpose Pins Functionality configuration */
Albert ARIBAUD4d424312012-11-26 11:27:36 +000037 static const u32 kwmpp_config[] = {
Eric Coopera3f41c82010-11-24 17:11:32 +053038 MPP0_NF_IO2,
39 MPP1_NF_IO3,
40 MPP2_NF_IO4,
41 MPP3_NF_IO5,
42 MPP4_NF_IO6,
43 MPP5_NF_IO7,
44 MPP6_SYSRST_OUTn,
45 MPP7_GPO,
46 MPP8_UART0_RTS,
47 MPP9_UART0_CTS,
48 MPP10_UART0_TXD,
49 MPP11_UART0_RXD,
50 MPP12_SD_CLK,
51 MPP13_SD_CMD,
52 MPP14_SD_D0,
53 MPP15_SD_D1,
54 MPP16_SD_D2,
55 MPP17_SD_D3,
56 MPP18_NF_IO0,
57 MPP19_NF_IO1,
58 MPP20_GPIO,
59 MPP21_GPIO,
60 MPP22_GPIO,
61 MPP23_GPIO,
62 MPP24_GPIO,
63 MPP25_GPIO,
64 MPP26_GPIO,
65 MPP27_GPIO,
66 MPP28_GPIO,
67 MPP29_TSMP9,
68 MPP30_GPIO,
69 MPP31_GPIO,
70 MPP32_GPIO,
71 MPP33_GPIO,
72 MPP34_GPIO,
73 MPP35_GPIO,
74 MPP36_GPIO,
75 MPP37_GPIO,
76 MPP38_GPIO,
77 MPP39_GPIO,
78 MPP40_GPIO,
79 MPP41_GPIO,
80 MPP42_GPIO,
81 MPP43_GPIO,
82 MPP44_GPIO,
83 MPP45_GPIO,
84 MPP46_GPIO,
85 MPP47_GPIO,
86 MPP48_GPIO,
87 MPP49_GPIO,
88 0
89 };
Valentin Longchamp7d0d5022012-06-01 01:31:00 +000090 kirkwood_mpp_conf(kwmpp_config, NULL);
Eric Coopera3f41c82010-11-24 17:11:32 +053091 return 0;
92}
93
94int board_init(void)
95{
96 /*
97 * arch number of board
98 */
99 gd->bd->bi_arch_number = MACH_TYPE_DOCKSTAR;
100
101 /* address of boot parameters */
Stefan Roese0b741752014-10-22 12:13:13 +0200102 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
Eric Coopera3f41c82010-11-24 17:11:32 +0530103
104 return 0;
105}
106
107#ifdef CONFIG_RESET_PHY_R
108/* Configure and enable MV88E1116 PHY */
109void reset_phy(void)
110{
111 u16 reg;
112 u16 devadr;
113 char *name = "egiga0";
114
115 if (miiphy_set_current_dev(name))
116 return;
117
118 /* command to read PHY dev address */
119 if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
120 printf("Err..%s could not read PHY dev address\n",
121 __FUNCTION__);
122 return;
123 }
124
125 /*
126 * Enable RGMII delay on Tx and Rx for CPU port
127 * Ref: sec 4.7.2 of chip datasheet
128 */
129 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
130 miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, &reg);
131 reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
132 miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
133 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
134
135 /* reset the phy */
136 miiphy_reset(name, devadr);
137
138 printf("88E1116 Initialized on %s\n", name);
139}
140#endif /* CONFIG_RESET_PHY_R */
141
142#define GREEN_LED (1 << 14)
143#define ORANGE_LED (1 << 15)
144#define BOTH_LEDS (GREEN_LED | ORANGE_LED)
145#define NEITHER_LED 0
146
147static void set_leds(u32 leds, u32 blinking)
148{
Stefan Roesec50ab392014-10-22 12:13:11 +0200149 struct kwgpio_registers *r = (struct kwgpio_registers *)MVEBU_GPIO1_BASE;
Eric Coopera3f41c82010-11-24 17:11:32 +0530150 u32 oe = readl(&r->oe) | BOTH_LEDS;
151 writel(oe & ~leds, &r->oe); /* active low */
152 u32 bl = readl(&r->blink_en) & ~BOTH_LEDS;
153 writel(bl | blinking, &r->blink_en);
154}
155
156void show_boot_progress(int val)
157{
158 switch (val) {
Simon Glass29395642011-12-10 11:07:54 +0000159 case BOOTSTAGE_ID_RUN_OS: /* booting Linux */
Eric Coopera3f41c82010-11-24 17:11:32 +0530160 set_leds(BOTH_LEDS, NEITHER_LED);
161 break;
Simon Glass964d1d42012-01-14 15:24:52 +0000162 case BOOTSTAGE_ID_NET_ETH_START: /* Ethernet initialization */
Eric Coopera3f41c82010-11-24 17:11:32 +0530163 set_leds(GREEN_LED, GREEN_LED);
164 break;
165 default:
166 if (val < 0) /* error */
167 set_leds(ORANGE_LED, ORANGE_LED);
168 break;
169 }
170}