blob: 1609089502c12fd0d6b35796f05978133ffbee98 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Guinot72198a32011-11-21 19:25:46 +05302/*
3 * Copyright (C) 2011 Simon Guinot <sguinot@lacie.com>
4 *
5 * Based on Kirkwood support:
6 * (C) Copyright 2009
7 * Marvell Semiconductor <www.marvell.com>
8 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
Simon Guinot72198a32011-11-21 19:25:46 +05309 */
10
11#include <common.h>
Simon Guinot72198a32011-11-21 19:25:46 +053012#include <command.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060013#include <env.h>
Alex Kiernan9c215492018-04-01 09:22:38 +000014#include <environment.h>
Simon Guinot1dd67e62013-06-18 15:14:48 +020015#include <i2c.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060016#include <asm/mach-types.h>
Simon Guinot72198a32011-11-21 19:25:46 +053017#include <asm/arch/cpu.h>
Stefan Roesec2437842014-10-22 12:13:06 +020018#include <asm/arch/soc.h>
Simon Guinot72198a32011-11-21 19:25:46 +053019#include <asm/arch/mpp.h>
20#include <asm/arch/gpio.h>
Simon Guinota35cb4c2011-11-21 19:25:47 +053021
Simon Guinot72198a32011-11-21 19:25:46 +053022#include "net2big_v2.h"
Simon Guinota35cb4c2011-11-21 19:25:47 +053023#include "../common/common.h"
Simon Guinotbfbf8862013-06-18 15:14:50 +020024#include "../common/cpld-gpio-bus.h"
Simon Guinot72198a32011-11-21 19:25:46 +053025
26DECLARE_GLOBAL_DATA_PTR;
27
28int board_early_init_f(void)
29{
30 /* GPIO configuration */
Stefan Roesec50ab392014-10-22 12:13:11 +020031 mvebu_config_gpio(NET2BIG_V2_OE_VAL_LOW, NET2BIG_V2_OE_VAL_HIGH,
32 NET2BIG_V2_OE_LOW, NET2BIG_V2_OE_HIGH);
Simon Guinot72198a32011-11-21 19:25:46 +053033
34 /* Multi-Purpose Pins Functionality configuration */
Albert ARIBAUD4d424312012-11-26 11:27:36 +000035 static const u32 kwmpp_config[] = {
Simon Guinot72198a32011-11-21 19:25:46 +053036 MPP0_SPI_SCn,
37 MPP1_SPI_MOSI,
38 MPP2_SPI_SCK,
39 MPP3_SPI_MISO,
40 MPP6_SYSRST_OUTn,
41 MPP7_GPO, /* Request power-off */
42 MPP8_TW_SDA,
43 MPP9_TW_SCK,
44 MPP10_UART0_TXD,
45 MPP11_UART0_RXD,
46 MPP13_GPIO, /* Rear power switch (on|auto) */
47 MPP14_GPIO, /* USB fuse alarm */
48 MPP15_GPIO, /* Rear power switch (auto|off) */
49 MPP16_GPIO, /* SATA HDD1 power */
50 MPP17_GPIO, /* SATA HDD2 power */
51 MPP20_SATA1_ACTn,
52 MPP21_SATA0_ACTn,
53 MPP24_GPIO, /* USB mode select */
54 MPP26_GPIO, /* USB device vbus */
55 MPP28_GPIO, /* USB enable host vbus */
Simon Guinotbfbf8862013-06-18 15:14:50 +020056 MPP29_GPIO, /* CPLD GPIO bus ALE */
Simon Guinot72198a32011-11-21 19:25:46 +053057 MPP34_GPIO, /* Rear Push button 0=on 1=off */
58 MPP35_GPIO, /* Inhibit switch power-off */
59 MPP36_GPIO, /* SATA HDD1 presence */
60 MPP37_GPIO, /* SATA HDD2 presence */
61 MPP40_GPIO, /* eSATA presence */
Simon Guinotbfbf8862013-06-18 15:14:50 +020062 MPP44_GPIO, /* CPLD GPIO bus (data 0) */
63 MPP45_GPIO, /* CPLD GPIO bus (data 1) */
64 MPP46_GPIO, /* CPLD GPIO bus (data 2) */
65 MPP47_GPIO, /* CPLD GPIO bus (addr 0) */
66 MPP48_GPIO, /* CPLD GPIO bus (addr 1) */
67 MPP49_GPIO, /* CPLD GPIO bus (addr 2) */
Simon Guinot72198a32011-11-21 19:25:46 +053068 0
69 };
70
Valentin Longchamp7d0d5022012-06-01 01:31:00 +000071 kirkwood_mpp_conf(kwmpp_config, NULL);
Simon Guinot72198a32011-11-21 19:25:46 +053072
73 return 0;
74}
75
76int board_init(void)
77{
78 /* Machine number */
79 gd->bd->bi_arch_number = MACH_TYPE_NET2BIG_V2;
80
81 /* Boot parameters address */
Stefan Roese0b741752014-10-22 12:13:13 +020082 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
Simon Guinot72198a32011-11-21 19:25:46 +053083
84 return 0;
85}
86
Simon Guinota35cb4c2011-11-21 19:25:47 +053087#if defined(CONFIG_MISC_INIT_R)
Simon Guinot1dd67e62013-06-18 15:14:48 +020088
89#if defined(CONFIG_CMD_I2C) && defined(CONFIG_SYS_I2C_G762_ADDR)
90/*
91 * Start I2C fan (GMT G762 controller)
92 */
93static void init_fan(void)
94{
95 u8 data;
96
97 i2c_set_bus_num(0);
98
99 /* Enable open-loop and PWM modes */
100 data = 0x20;
101 if (i2c_write(CONFIG_SYS_I2C_G762_ADDR,
102 G762_REG_FAN_CMD1, 1, &data, 1) != 0)
103 goto err;
104 data = 0;
105 if (i2c_write(CONFIG_SYS_I2C_G762_ADDR,
106 G762_REG_SET_CNT, 1, &data, 1) != 0)
107 goto err;
108 /*
109 * RPM to PWM (set_out register) fan speed conversion array:
110 * 0 0x00
111 * 1500 0x04
112 * 2800 0x08
113 * 3400 0x0C
114 * 3700 0x10
115 * 4400 0x20
116 * 4700 0x30
117 * 4800 0x50
118 * 5200 0x80
119 * 5400 0xC0
120 * 5500 0xFF
121 *
122 * Start fan at low speed (2800 RPM):
123 */
124 data = 0x08;
125 if (i2c_write(CONFIG_SYS_I2C_G762_ADDR,
126 G762_REG_SET_OUT, 1, &data, 1) != 0)
127 goto err;
128
129 return;
130err:
131 printf("Error: failed to start I2C fan @%02x\n",
132 CONFIG_SYS_I2C_G762_ADDR);
133}
134#else
135static void init_fan(void) {}
136#endif /* CONFIG_CMD_I2C && CONFIG_SYS_I2C_G762_ADDR */
137
Simon Guinotbfbf8862013-06-18 15:14:50 +0200138#if defined(CONFIG_NET2BIG_V2) && defined(CONFIG_KIRKWOOD_GPIO)
139/*
140 * CPLD GPIO bus:
141 *
142 * - address register : bit [0-2] -> GPIO [47-49]
143 * - data register : bit [0-2] -> GPIO [44-46]
144 * - enable register : GPIO 29
145 */
146static unsigned cpld_gpio_bus_addr[] = { 47, 48, 49 };
147static unsigned cpld_gpio_bus_data[] = { 44, 45, 46 };
148
149static struct cpld_gpio_bus cpld_gpio_bus = {
150 .addr = cpld_gpio_bus_addr,
151 .num_addr = ARRAY_SIZE(cpld_gpio_bus_addr),
152 .data = cpld_gpio_bus_data,
153 .num_data = ARRAY_SIZE(cpld_gpio_bus_data),
154 .enable = 29,
155};
156
157/*
158 * LEDs configuration:
159 *
160 * The LEDs are controlled by a CPLD and can be configured through
161 * the CPLD GPIO bus.
162 *
163 * Address register selection:
164 *
165 * addr | register
166 * ----------------------------
167 * 0 | front LED
168 * 1 | front LED brightness
169 * 2 | SATA LED brightness
170 * 3 | SATA0 LED
171 * 4 | SATA1 LED
172 * 5 | SATA2 LED
173 * 6 | SATA3 LED
174 * 7 | SATA4 LED
175 *
176 * Data register configuration:
177 *
178 * data | LED brightness
179 * -------------------------------------------------
180 * 0 | min (off)
181 * - | -
182 * 7 | max
183 *
184 * data | front LED mode
185 * -------------------------------------------------
186 * 0 | fix off
187 * 1 | fix blue on
188 * 2 | fix red on
189 * 3 | blink blue on=1 sec and blue off=1 sec
190 * 4 | blink red on=1 sec and red off=1 sec
191 * 5 | blink blue on=2.5 sec and red on=0.5 sec
192 * 6 | blink blue on=1 sec and red on=1 sec
193 * 7 | blink blue on=0.5 sec and blue off=2.5 sec
194 *
195 * data | SATA LED mode
196 * -------------------------------------------------
197 * 0 | fix off
198 * 1 | SATA activity blink
199 * 2 | fix red on
200 * 3 | blink blue on=1 sec and blue off=1 sec
201 * 4 | blink red on=1 sec and red off=1 sec
202 * 5 | blink blue on=2.5 sec and red on=0.5 sec
203 * 6 | blink blue on=1 sec and red on=1 sec
204 * 7 | fix blue on
205 */
206static void init_leds(void)
207{
208 /* Enable the front blue LED */
209 cpld_gpio_bus_write(&cpld_gpio_bus, 0, 1);
210 cpld_gpio_bus_write(&cpld_gpio_bus, 1, 3);
211
212 /* Configure SATA LEDs to blink in relation with the SATA activity */
213 cpld_gpio_bus_write(&cpld_gpio_bus, 3, 1);
214 cpld_gpio_bus_write(&cpld_gpio_bus, 4, 1);
215 cpld_gpio_bus_write(&cpld_gpio_bus, 2, 3);
216}
217#else
218static void init_leds(void) {}
219#endif /* CONFIG_NET2BIG_V2 && CONFIG_KIRKWOOD_GPIO */
220
Simon Guinot72198a32011-11-21 19:25:46 +0530221int misc_init_r(void)
222{
Simon Guinot1dd67e62013-06-18 15:14:48 +0200223 init_fan();
Simon Guinota35cb4c2011-11-21 19:25:47 +0530224#if defined(CONFIG_CMD_I2C) && defined(CONFIG_SYS_I2C_EEPROM_ADDR)
Simon Glass64b723f2017-08-03 12:22:12 -0600225 if (!env_get("ethaddr")) {
Simon Guinot72198a32011-11-21 19:25:46 +0530226 uchar mac[6];
Simon Guinota35cb4c2011-11-21 19:25:47 +0530227 if (lacie_read_mac_address(mac) == 0)
Simon Glass8551d552017-08-03 12:22:11 -0600228 eth_env_set_enetaddr("ethaddr", mac);
Simon Guinot72198a32011-11-21 19:25:46 +0530229 }
Simon Guinota35cb4c2011-11-21 19:25:47 +0530230#endif
Simon Guinotbfbf8862013-06-18 15:14:50 +0200231 init_leds();
232
Simon Guinot72198a32011-11-21 19:25:46 +0530233 return 0;
234}
Simon Guinot1dd67e62013-06-18 15:14:48 +0200235#endif /* CONFIG_MISC_INIT_R */
Simon Guinot72198a32011-11-21 19:25:46 +0530236
Simon Guinota35cb4c2011-11-21 19:25:47 +0530237#if defined(CONFIG_CMD_NET) && defined(CONFIG_RESET_PHY_R)
Simon Guinot72198a32011-11-21 19:25:46 +0530238/* Configure and initialize PHY */
239void reset_phy(void)
240{
Simon Guinot0473b682012-06-05 13:16:00 +0000241 mv_phy_88e1116_init("egiga0", 8);
Simon Guinot72198a32011-11-21 19:25:46 +0530242}
Simon Guinota35cb4c2011-11-21 19:25:47 +0530243#endif
Simon Guinot72198a32011-11-21 19:25:46 +0530244
Simon Guinota35cb4c2011-11-21 19:25:47 +0530245#if defined(CONFIG_KIRKWOOD_GPIO)
Simon Guinot72198a32011-11-21 19:25:46 +0530246/* Return GPIO push button status */
247static int
248do_read_push_button(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
249{
250 return !kw_gpio_get_value(NET2BIG_V2_GPIO_PUSH_BUTTON);
251}
252
253U_BOOT_CMD(button, 1, 1, do_read_push_button,
254 "Return GPIO push button status 0=off 1=on", "");
Simon Guinota35cb4c2011-11-21 19:25:47 +0530255#endif