blob: 4c19fa7195e8f1b91402cddce0f8a0bc22afc6b2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +00002/*
3 * Copyright (C) 2013 Suriyan Ramasami <suriyan.r@gmail.com>
4 *
5 * Based on dockstar.c originally written by
6 * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
7 *
8 * Based on sheevaplug.c originally written by
9 * Prafulla Wadaskar <prafulla@marvell.com>
10 * (C) Copyright 2009
11 * Marvell Semiconductor <www.marvell.com>
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +000012 */
13
14#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -060015#include <bootstage.h>
Simon Glass691d7192020-05-10 11:40:02 -060016#include <init.h>
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +000017#include <miiphy.h>
Simon Glass5e6267a2019-12-28 10:44:48 -070018#include <net.h>
Simon Glass401d1c42020-10-30 21:38:53 -060019#include <asm/global_data.h>
Simon Glassc62db352017-05-31 19:47:48 -060020#include <asm/mach-types.h>
Stefan Roese3dc23f72014-10-22 12:13:06 +020021#include <asm/arch/soc.h>
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +000022#include <asm/arch/mpp.h>
23#include <asm/arch/cpu.h>
24#include <asm/io.h>
25
26DECLARE_GLOBAL_DATA_PTR;
27
28int board_early_init_f(void)
29{
30 /* Multi-Purpose Pins Functionality configuration */
31 static const u32 kwmpp_config[] = {
32 MPP0_NF_IO2,
33 MPP1_NF_IO3,
34 MPP2_NF_IO4,
35 MPP3_NF_IO5,
36 MPP4_NF_IO6,
37 MPP5_NF_IO7,
38 MPP6_SYSRST_OUTn,
39 MPP7_GPO,
40 MPP8_UART0_RTS,
41 MPP9_UART0_CTS,
42 MPP10_UART0_TXD,
43 MPP11_UART0_RXD,
44 MPP12_SD_CLK,
45 MPP13_SD_CMD,
46 MPP14_SD_D0,
47 MPP15_SD_D1,
48 MPP16_SD_D2,
49 MPP17_SD_D3,
50 MPP18_NF_IO0,
51 MPP19_NF_IO1,
52 MPP20_GPIO,
53 MPP21_GPIO,
54 MPP22_GPIO,
55 MPP23_GPIO,
56 MPP24_GPIO,
57 MPP25_GPIO,
58 MPP26_GPIO,
59 MPP27_GPIO,
60 MPP28_GPIO,
61 MPP29_TSMP9,
62 MPP30_GPIO,
63 MPP31_GPIO,
64 MPP32_GPIO,
65 MPP33_GPIO,
66 MPP34_GPIO,
67 MPP35_GPIO,
68 MPP36_GPIO,
69 MPP37_GPIO,
70 MPP38_GPIO,
71 MPP39_GPIO,
72 MPP40_GPIO,
73 MPP41_GPIO,
74 MPP42_GPIO,
75 MPP43_GPIO,
76 MPP44_GPIO,
77 MPP45_GPIO,
78 MPP46_GPIO,
79 MPP47_GPIO,
80 MPP48_GPIO,
81 MPP49_GPIO,
82 0
83 };
84
85 /*
86 * default gpio configuration
87 * There are maximum 64 gpios controlled through 2 sets of registers
88 * the below configuration configures mainly initial LED status
89 */
Stefan Roesed5c51322014-10-22 12:13:11 +020090 mvebu_config_gpio(GOFLEXHOME_OE_VAL_LOW,
91 GOFLEXHOME_OE_VAL_HIGH,
92 GOFLEXHOME_OE_LOW, GOFLEXHOME_OE_HIGH);
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +000093 kirkwood_mpp_conf(kwmpp_config, NULL);
94 return 0;
95}
96
97int board_init(void)
98{
Tom Rini94ba26f2017-01-25 20:42:35 -050099 /*
100 * arch number of board
101 */
102 gd->bd->bi_arch_number = MACH_TYPE_GOFLEXHOME;
103
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +0000104 /* address of boot parameters */
Stefan Roese96c5f082014-10-22 12:13:13 +0200105 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +0000106
107 return 0;
108}
109
110#ifdef CONFIG_RESET_PHY_R
111/* Configure and enable MV88E1116 PHY */
112void reset_phy(void)
113{
114 u16 reg;
115 u16 devadr;
116 char *name = "egiga0";
117
118 if (miiphy_set_current_dev(name))
119 return;
120
121 /* command to read PHY dev address */
122 if (miiphy_read(name, 0xEE, 0xEE, (u16 *)&devadr)) {
123 printf("Err..%s could not read PHY dev address\n",
124 __func__);
125 return;
126 }
127
128 /*
129 * Enable RGMII delay on Tx and Rx for CPU port
130 * Ref: sec 4.7.2 of chip datasheet
131 */
132 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
133 miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, &reg);
134 reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
135 miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
136 miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
137
138 /* reset the phy */
139 miiphy_reset(name, devadr);
140
141 printf("88E1116 Initialized on %s\n", name);
142}
143#endif /* CONFIG_RESET_PHY_R */
144
145#define GREEN_LED (1 << 14)
146#define ORANGE_LED (1 << 15)
147#define BOTH_LEDS (GREEN_LED | ORANGE_LED)
148#define NEITHER_LED 0
149
150static void set_leds(u32 leds, u32 blinking)
151{
152 struct kwgpio_registers *r;
153 u32 oe;
154 u32 bl;
155
Stefan Roesed5c51322014-10-22 12:13:11 +0200156 r = (struct kwgpio_registers *)MVEBU_GPIO1_BASE;
Suriyan Ramasami0ad6c342013-04-11 07:17:25 +0000157 oe = readl(&r->oe) | BOTH_LEDS;
158 writel(oe & ~leds, &r->oe); /* active low */
159 bl = readl(&r->blink_en) & ~BOTH_LEDS;
160 writel(bl | blinking, &r->blink_en);
161}
162
163void show_boot_progress(int val)
164{
165 switch (val) {
166 case BOOTSTAGE_ID_RUN_OS: /* booting Linux */
167 set_leds(BOTH_LEDS, NEITHER_LED);
168 break;
169 case BOOTSTAGE_ID_NET_ETH_START: /* Ethernet initialization */
170 set_leds(GREEN_LED, GREEN_LED);
171 break;
172 default:
173 if (val < 0) /* error */
174 set_leds(ORANGE_LED, ORANGE_LED);
175 break;
176 }
177}