1
2
3
4
5
6#include <common.h>
7#include <command.h>
8#include <console.h>
9#include <i2c.h>
10#include <init.h>
11#include <net.h>
12#include <pci.h>
13#if !defined(CONFIG_SPL_BUILD)
14#include <bootcount.h>
15#endif
16#include <asm/gpio.h>
17#include <asm/io.h>
18#include <asm/arch/cpu.h>
19#include <asm/arch/soc.h>
20#include <linux/delay.h>
21#include <linux/mbus.h>
22#ifdef CONFIG_NET
23#include <netdev.h>
24#endif
25#include <u-boot/crc.h>
26#include "theadorable.h"
27
28#include "../drivers/ddr/marvell/axp/ddr3_hw_training.h"
29#include "../arch/arm/mach-mvebu/serdes/axp/high_speed_env_spec.h"
30
31DECLARE_GLOBAL_DATA_PTR;
32
33#define MV_USB_PHY_BASE (MVEBU_AXP_USB_BASE + 0x800)
34#define PHY_CHANNEL_RX_CTRL0_REG(port, chan) \
35 (MV_USB_PHY_BASE + ((port) << 12) + ((chan) << 6) + 0x8)
36
37#define THEADORABLE_GPP_OUT_ENA_LOW 0x00336780
38#define THEADORABLE_GPP_OUT_ENA_MID 0x00003cf0
39#define THEADORABLE_GPP_OUT_ENA_HIGH (~(0x0))
40
41#define THEADORABLE_GPP_OUT_VAL_LOW 0x2c0c983f
42#define THEADORABLE_GPP_OUT_VAL_MID 0x0007000c
43#define THEADORABLE_GPP_OUT_VAL_HIGH 0x00000000
44
45#define GPIO_USB0_PWR_ON 18
46#define GPIO_USB1_PWR_ON 19
47
48#define PEX_SWITCH_NOT_FOUNT_LIMIT 3
49
50#define STM_I2C_BUS 1
51#define STM_I2C_ADDR 0x27
52#define REBOOT_DELAY 1000
53#define ABORT_TIMEOUT 3000
54
55
56static MV_DRAM_MC_INIT ddr3_theadorable[MV_MAX_DDR3_STATIC_SIZE] = {
57 {0x00001400, 0x7301ca28},
58 {0x00001404, 0x30000800},
59 {0x00001408, 0x44149887},
60 {0x0000140C, 0x38d93fc7},
61 {0x00001410, 0x1b100001},
62 {0x00001424, 0x0000f3ff},
63 {0x00001428, 0x000f8830},
64 {0x0000142C, 0x014c50f4},
65 {0x0000147C, 0x0000c671},
66
67 {0x00001494, 0x00010000},
68 {0x0000149C, 0x00000001},
69 {0x000014A0, 0x00000001},
70 {0x000014A8, 0x00000101},
71
72
73
74
75
76 {0x000200e8, 0x3fff0e01},
77 {0x00020184, 0x3fffffe0},
78
79 {0x0001504, 0x7fffffe1},
80 {0x000150C, 0x00000000},
81 {0x0001514, 0x00000000},
82 {0x000151C, 0x00000000},
83
84 {0x00020220, 0x00000007},
85
86 {0x00001538, 0x00000009},
87 {0x0000153C, 0x00000009},
88
89 {0x000015D0, 0x00000650},
90 {0x000015D4, 0x00000044},
91 {0x000015D8, 0x00000010},
92 {0x000015DC, 0x00000000},
93 {0x000015E0, 0x00000001},
94 {0x000015E4, 0x00203c18},
95 {0x000015EC, 0xf800a225},
96
97
98 {0x000014C0, 0x192424c9},
99 {0x000014C4, 0x0aaa24c9},
100
101 {0x0, 0x0}
102};
103
104static MV_DRAM_MODES board_ddr_modes[MV_DDR3_MODES_NUMBER] = {
105 {"theadorable_1333-667", 0x3, 0x5, 0x0, A0, ddr3_theadorable, NULL},
106};
107
108extern MV_SERDES_CHANGE_M_PHY serdes_change_m_phy[];
109
110
111
112
113
114
115
116
117
118MV_BIN_SERDES_CFG theadorable_serdes_cfg[] = {
119 { MV_PEX_ROOT_COMPLEX, 0x22200001, 0x00001111,
120 { PEX_BUS_MODE_X1, PEX_BUS_DISABLED, PEX_BUS_MODE_X4,
121 PEX_BUS_DISABLED },
122 0x0060, serdes_change_m_phy
123 },
124};
125
126
127
128
129
130
131u8 serdes_pex_pulse_width[4] = { 0, 2, 2, 2 };
132
133MV_DRAM_MODES *ddr3_get_static_ddr_mode(void)
134{
135
136 return &board_ddr_modes[0];
137}
138
139MV_BIN_SERDES_CFG *board_serdes_cfg_get(void)
140{
141 return &theadorable_serdes_cfg[0];
142}
143
144u8 board_sat_r_get(u8 dev_num, u8 reg)
145{
146
147 return 0xe;
148}
149
150int board_early_init_f(void)
151{
152
153 writel(0x00000000, MVEBU_MPP_BASE + 0x00);
154 writel(0x03300000, MVEBU_MPP_BASE + 0x04);
155 writel(0x00000033, MVEBU_MPP_BASE + 0x08);
156 writel(0x00000000, MVEBU_MPP_BASE + 0x0c);
157 writel(0x11110000, MVEBU_MPP_BASE + 0x10);
158 writel(0x00221100, MVEBU_MPP_BASE + 0x14);
159 writel(0x00000000, MVEBU_MPP_BASE + 0x18);
160 writel(0x00000000, MVEBU_MPP_BASE + 0x1c);
161 writel(0x00000000, MVEBU_MPP_BASE + 0x20);
162
163
164 writel(THEADORABLE_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
165 writel(THEADORABLE_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
166 writel(THEADORABLE_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
167 writel(THEADORABLE_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
168 writel(THEADORABLE_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
169 writel(THEADORABLE_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
170
171 return 0;
172}
173
174int board_init(void)
175{
176 int ret;
177
178
179 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
180
181
182
183
184
185 mbus_dt_setup_win(&mbus_state, SPI_BUS0_DEV1_BASE, SPI_BUS0_DEV1_SIZE,
186 CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_SPI0_CS1);
187 mbus_dt_setup_win(&mbus_state, SPI_BUS1_DEV2_BASE, SPI_BUS0_DEV1_SIZE,
188 CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_SPI1_CS2);
189
190
191
192
193
194
195 setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 1), 0xc);
196 setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 2), 0xc);
197 setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 3), 0xc);
198
199
200 ret = gpio_request(GPIO_USB0_PWR_ON, "USB0_PWR_ON");
201 if (ret < 0)
202 return ret;
203 gpio_direction_output(GPIO_USB0_PWR_ON, 0);
204 ret = gpio_request(GPIO_USB1_PWR_ON, "USB1_PWR_ON");
205 if (ret < 0)
206 return ret;
207 gpio_direction_output(GPIO_USB1_PWR_ON, 0);
208 mdelay(1);
209 gpio_set_value(GPIO_USB0_PWR_ON, 1);
210 gpio_set_value(GPIO_USB1_PWR_ON, 1);
211
212 return 0;
213}
214
215int checkboard(void)
216{
217 board_fpga_add();
218
219 return 0;
220}
221
222#ifdef CONFIG_NET
223int board_eth_init(bd_t *bis)
224{
225 cpu_eth_init(bis);
226 return pci_eth_init(bis);
227}
228#endif
229
230#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_BOARD_LATE_INIT)
231int board_late_init(void)
232{
233 pci_dev_t bdf;
234 ulong bootcount;
235
236
237
238
239
240
241
242 bdf = pci_find_device(PCI_VENDOR_ID_PLX, 0x8619, 0);
243 if (bdf == -1) {
244 unsigned long start_time = get_timer(0);
245 u8 i2c_buf[8];
246 int ret;
247
248
249 bootcount = bootcount_load();
250 printf("Failed to find PLX PEX-switch (bootcount=%ld)\n",
251 bootcount);
252
253
254
255
256
257 printf("Continue booting with Ctrl-C, otherwise rebooting\n");
258 do {
259
260 if (ctrlc()) {
261 printf("PEX error boot-loop aborted!\n");
262 return 0;
263 }
264 } while (get_timer(start_time) < ABORT_TIMEOUT);
265
266
267
268
269
270
271
272 bootcount_inc();
273
274 if (bootcount > PEX_SWITCH_NOT_FOUNT_LIMIT) {
275 printf("Issuing power-switch via uC!\n");
276
277 printf("Issuing power-switch via uC!\n");
278 i2c_set_bus_num(STM_I2C_BUS);
279 i2c_buf[0] = STM_I2C_ADDR << 1;
280 i2c_buf[1] = 0xc5;
281 i2c_buf[2] = 0x01;
282
283 i2c_buf[3] = REBOOT_DELAY & 0x00ff;
284 i2c_buf[4] = (REBOOT_DELAY & 0xff00) >> 8;
285
286 i2c_buf[5] = 0x00;
287 i2c_buf[6] = 0x00;
288 i2c_buf[7] = crc8(0x72, &i2c_buf[0], 7);
289
290 ret = i2c_write(STM_I2C_ADDR, 0, 0, &i2c_buf[1], 7);
291 if (ret) {
292 printf("I2C write error (ret=%d)\n", ret);
293 printf("Issuing soft-reset...\n");
294
295 do_reset(NULL, 0, 0, NULL);
296 }
297
298
299 printf("Waiting for power-cycle via uC...\n");
300 while (1)
301 ;
302 } else {
303 printf("Issuing soft-reset...\n");
304
305 do_reset(NULL, 0, 0, NULL);
306 }
307 }
308
309 return 0;
310}
311#endif
312
313#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_PCI)
314int do_pcie_test(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
315{
316 pci_dev_t bdf;
317 u16 ven_id, dev_id;
318
319 if (argc != 3)
320 return cmd_usage(cmdtp);
321
322 ven_id = simple_strtoul(argv[1], NULL, 16);
323 dev_id = simple_strtoul(argv[2], NULL, 16);
324
325 printf("Checking for PCIe device: VendorID 0x%04x, DeviceId 0x%04x\n",
326 ven_id, dev_id);
327
328
329
330
331
332 bdf = pci_find_device(ven_id, dev_id, 0);
333 if (bdf == -1) {
334
335 printf("Failed to find PCIe device\n");
336 } else {
337
338 printf("PCIe device found, resetting board...\n");
339
340
341 do_reset(NULL, 0, 0, NULL);
342 }
343
344 return 0;
345}
346
347U_BOOT_CMD(
348 pcie, 3, 0, do_pcie_test,
349 "Test for presence of a PCIe device",
350 "<VendorID> <DeviceID>"
351);
352#endif
353