blob: dd7f900773d67aab8219e806055fe01d589a6bb8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese459e0642016-01-20 08:13:29 +01002/*
Stefan Roese8c8b15b2019-03-11 13:56:14 +01003 * Copyright (C) 2015-2019 Stefan Roese <sr@denx.de>
Stefan Roese459e0642016-01-20 08:13:29 +01004 */
5
6#include <common.h>
Simon Glassed38aef2020-05-10 11:40:03 -06007#include <command.h>
Stefan Roese8c8b15b2019-03-11 13:56:14 +01008#include <console.h>
Stefan Roesed1e4fc82021-01-25 15:27:19 +01009#include <dm.h>
Stefan Roesea2f62fd2016-04-08 15:58:30 +020010#include <i2c.h>
Simon Glassa7b51302019-11-14 12:57:46 -070011#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060012#include <net.h>
Stefan Roesea2f62fd2016-04-08 15:58:30 +020013#include <pci.h>
Stefan Roese8c8b15b2019-03-11 13:56:14 +010014#if !defined(CONFIG_SPL_BUILD)
15#include <bootcount.h>
16#endif
Stefan Roesed0047fc2016-04-07 10:48:13 +020017#include <asm/gpio.h>
Stefan Roese459e0642016-01-20 08:13:29 +010018#include <asm/io.h>
19#include <asm/arch/cpu.h>
20#include <asm/arch/soc.h>
Simon Glassdbd79542020-05-10 11:40:11 -060021#include <linux/delay.h>
Stefan Roesef0547582016-02-12 14:24:07 +010022#include <linux/mbus.h>
Stefan Roese459e0642016-01-20 08:13:29 +010023#ifdef CONFIG_NET
24#include <netdev.h>
25#endif
Simon Glassca9b0af2019-11-14 12:57:14 -070026#include <u-boot/crc.h>
Stefan Roesef0547582016-02-12 14:24:07 +010027#include "theadorable.h"
Stefan Roese459e0642016-01-20 08:13:29 +010028
29#include "../drivers/ddr/marvell/axp/ddr3_hw_training.h"
30#include "../arch/arm/mach-mvebu/serdes/axp/high_speed_env_spec.h"
31
32DECLARE_GLOBAL_DATA_PTR;
33
Stefan Roesed0047fc2016-04-07 10:48:13 +020034#define MV_USB_PHY_BASE (MVEBU_AXP_USB_BASE + 0x800)
35#define PHY_CHANNEL_RX_CTRL0_REG(port, chan) \
36 (MV_USB_PHY_BASE + ((port) << 12) + ((chan) << 6) + 0x8)
37
Stefan Roese459e0642016-01-20 08:13:29 +010038#define THEADORABLE_GPP_OUT_ENA_LOW 0x00336780
39#define THEADORABLE_GPP_OUT_ENA_MID 0x00003cf0
40#define THEADORABLE_GPP_OUT_ENA_HIGH (~(0x0))
41
42#define THEADORABLE_GPP_OUT_VAL_LOW 0x2c0c983f
43#define THEADORABLE_GPP_OUT_VAL_MID 0x0007000c
44#define THEADORABLE_GPP_OUT_VAL_HIGH 0x00000000
45
Stefan Roesed0047fc2016-04-07 10:48:13 +020046#define GPIO_USB0_PWR_ON 18
47#define GPIO_USB1_PWR_ON 19
48
Stefan Roesea2f62fd2016-04-08 15:58:30 +020049#define PEX_SWITCH_NOT_FOUNT_LIMIT 3
50
51#define STM_I2C_BUS 1
52#define STM_I2C_ADDR 0x27
53#define REBOOT_DELAY 1000 /* reboot-delay in ms */
Stefan Roese8c8b15b2019-03-11 13:56:14 +010054#define ABORT_TIMEOUT 3000 /* 3 seconds reboot abort timeout */
Stefan Roesea2f62fd2016-04-08 15:58:30 +020055
Stefan Roese459e0642016-01-20 08:13:29 +010056/* DDR3 static configuration */
57static MV_DRAM_MC_INIT ddr3_theadorable[MV_MAX_DDR3_STATIC_SIZE] = {
58 {0x00001400, 0x7301ca28}, /* DDR SDRAM Configuration Register */
59 {0x00001404, 0x30000800}, /* Dunit Control Low Register */
60 {0x00001408, 0x44149887}, /* DDR SDRAM Timing (Low) Register */
61 {0x0000140C, 0x38d93fc7}, /* DDR SDRAM Timing (High) Register */
62 {0x00001410, 0x1b100001}, /* DDR SDRAM Address Control Register */
63 {0x00001424, 0x0000f3ff}, /* Dunit Control High Register */
64 {0x00001428, 0x000f8830}, /* ODT Timing (Low) Register */
65 {0x0000142C, 0x014c50f4}, /* DDR3 Timing Register */
66 {0x0000147C, 0x0000c671}, /* ODT Timing (High) Register */
67
68 {0x00001494, 0x00010000}, /* DDR SDRAM ODT Control (Low) Reg */
69 {0x0000149C, 0x00000001}, /* DDR Dunit ODT Control Register */
70 {0x000014A0, 0x00000001}, /* DRAM FIFO Control Register */
71 {0x000014A8, 0x00000101}, /* AXI Control Register */
72
73 /*
74 * DO NOT Modify - Open Mbus Window - 2G - Mbus is required for the
75 * training sequence
76 */
77 {0x000200e8, 0x3fff0e01},
78 {0x00020184, 0x3fffffe0}, /* Close fast path Window to - 2G */
79
80 {0x0001504, 0x7fffffe1}, /* CS0 Size */
81 {0x000150C, 0x00000000}, /* CS1 Size */
82 {0x0001514, 0x00000000}, /* CS2 Size */
83 {0x000151C, 0x00000000}, /* CS3 Size */
84
85 {0x00020220, 0x00000007}, /* Reserved */
86
87 {0x00001538, 0x00000009}, /* Read Data Sample Delays Register */
88 {0x0000153C, 0x00000009}, /* Read Data Ready Delay Register */
89
90 {0x000015D0, 0x00000650}, /* MR0 */
91 {0x000015D4, 0x00000044}, /* MR1 */
92 {0x000015D8, 0x00000010}, /* MR2 */
93 {0x000015DC, 0x00000000}, /* MR3 */
94 {0x000015E0, 0x00000001},
95 {0x000015E4, 0x00203c18}, /* ZQDS Configuration Register */
96 {0x000015EC, 0xf800a225}, /* DDR PHY */
97
98 /* Recommended Settings from Marvell for 4 x 16 bit devices: */
99 {0x000014C0, 0x192424c9}, /* DRAM addr and Ctrl Driving Strenght*/
100 {0x000014C4, 0x0aaa24c9}, /* DRAM Data and DQS Driving Strenght */
101
102 {0x0, 0x0}
103};
104
105static MV_DRAM_MODES board_ddr_modes[MV_DDR3_MODES_NUMBER] = {
106 {"theadorable_1333-667", 0x3, 0x5, 0x0, A0, ddr3_theadorable, NULL},
107};
108
109extern MV_SERDES_CHANGE_M_PHY serdes_change_m_phy[];
110
111/*
112 * Lane0 - PCIE0.0 X1 (to WIFI Module)
113 * Lane5 - SATA0
114 * Lane6 - SATA1
115 * Lane7 - SGMII0 (to Ethernet Phy)
116 * Lane8-11 - PCIE2.0 X4 (to PEX Switch)
117 * all other lanes are disabled
118 */
119MV_BIN_SERDES_CFG theadorable_serdes_cfg[] = {
120 { MV_PEX_ROOT_COMPLEX, 0x22200001, 0x00001111,
121 { PEX_BUS_MODE_X1, PEX_BUS_DISABLED, PEX_BUS_MODE_X4,
122 PEX_BUS_DISABLED },
123 0x0060, serdes_change_m_phy
124 },
125};
126
Stefan Roesea60ceb82017-03-10 15:40:31 +0100127/*
128 * Define a board-specific detection pulse-width array for the SerDes PCIe
129 * interfaces. If not defined in the board code, the default of currently 2
130 * is used. Values from 0...3 are possible (2 bits).
131 */
132u8 serdes_pex_pulse_width[4] = { 0, 2, 2, 2 };
133
Stefan Roese459e0642016-01-20 08:13:29 +0100134MV_DRAM_MODES *ddr3_get_static_ddr_mode(void)
135{
136 /* Only one mode supported for this board */
137 return &board_ddr_modes[0];
138}
139
Stefan Roesef00854f2019-04-08 14:51:49 +0200140MV_BIN_SERDES_CFG *board_serdes_cfg_get(void)
Stefan Roese459e0642016-01-20 08:13:29 +0100141{
142 return &theadorable_serdes_cfg[0];
143}
144
Stefan Roese4caab602016-08-25 16:22:10 +0200145u8 board_sat_r_get(u8 dev_num, u8 reg)
146{
Stefan Roesef00854f2019-04-08 14:51:49 +0200147 /* Bit x enables PCI 2.0 link capabilities instead of PCI 1.x */
148 return 0xe; /* PEX port 0 is PCIe Gen1, PEX port 1..3 PCIe Gen2 */
Stefan Roese4caab602016-08-25 16:22:10 +0200149}
150
Stefan Roese3348e692021-01-25 15:27:20 +0100151#define PCIE_LNK_CTRL_STAT_2_OFF 0x0090
152#define PCIE_LNK_CTRL_STAT_2_DEEM_BIT BIT(6)
153
154static void pcie_set_deemphasis(u32 base)
155{
156 u32 reg;
157
158 reg = readl((void *)base + PCIE_LNK_CTRL_STAT_2_OFF);
159 reg |= PCIE_LNK_CTRL_STAT_2_DEEM_BIT;
160 writel(reg, (void *)base + PCIE_LNK_CTRL_STAT_2_OFF);
161}
162
Stefan Roese459e0642016-01-20 08:13:29 +0100163int board_early_init_f(void)
164{
165 /* Configure MPP */
166 writel(0x00000000, MVEBU_MPP_BASE + 0x00);
167 writel(0x03300000, MVEBU_MPP_BASE + 0x04);
168 writel(0x00000033, MVEBU_MPP_BASE + 0x08);
169 writel(0x00000000, MVEBU_MPP_BASE + 0x0c);
170 writel(0x11110000, MVEBU_MPP_BASE + 0x10);
171 writel(0x00221100, MVEBU_MPP_BASE + 0x14);
172 writel(0x00000000, MVEBU_MPP_BASE + 0x18);
173 writel(0x00000000, MVEBU_MPP_BASE + 0x1c);
174 writel(0x00000000, MVEBU_MPP_BASE + 0x20);
175
176 /* Configure GPIO */
177 writel(THEADORABLE_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
178 writel(THEADORABLE_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
179 writel(THEADORABLE_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
180 writel(THEADORABLE_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
181 writel(THEADORABLE_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
182 writel(THEADORABLE_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
183
Stefan Roese3348e692021-01-25 15:27:20 +0100184 /*
185 * Set deephasis bit in the PCIe configuration of both PCIe ports
186 * used on this board.
187 *
188 * This needs to be done very early, even before the SERDES setup
189 * code is run. This way, the first link will already be established
190 * with this setup. Testing has shown, that this results in a more
191 * stable PCIe link with better signal quality.
192 */
193 pcie_set_deemphasis(MVEBU_REG_PCIE_BASE); /* Port 0 */
194 pcie_set_deemphasis(MVEBU_REG_PCIE_BASE + 0x2000); /* Port 2 */
195
Stefan Roese459e0642016-01-20 08:13:29 +0100196 return 0;
197}
198
199int board_init(void)
200{
Stefan Roesed0047fc2016-04-07 10:48:13 +0200201 int ret;
202
Stefan Roese459e0642016-01-20 08:13:29 +0100203 /* adress of boot parameters */
204 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
205
Stefan Roesef0547582016-02-12 14:24:07 +0100206 /*
207 * Map SPI devices via MBUS so that they can be accessed via
208 * the SPI direct access mode
209 */
210 mbus_dt_setup_win(&mbus_state, SPI_BUS0_DEV1_BASE, SPI_BUS0_DEV1_SIZE,
211 CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_SPI0_CS1);
212 mbus_dt_setup_win(&mbus_state, SPI_BUS1_DEV2_BASE, SPI_BUS0_DEV1_SIZE,
213 CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_SPI1_CS2);
214
Stefan Roesed0047fc2016-04-07 10:48:13 +0200215 /*
216 * Set RX Channel Control 0 Register:
217 * Tests have shown, that setting the LPF_COEF from 0 (1/8)
218 * to 3 (1/1) results in a more stable USB connection.
219 */
220 setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 1), 0xc);
221 setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 2), 0xc);
222 setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 3), 0xc);
223
224 /* Toggle USB power */
225 ret = gpio_request(GPIO_USB0_PWR_ON, "USB0_PWR_ON");
226 if (ret < 0)
227 return ret;
228 gpio_direction_output(GPIO_USB0_PWR_ON, 0);
229 ret = gpio_request(GPIO_USB1_PWR_ON, "USB1_PWR_ON");
230 if (ret < 0)
231 return ret;
232 gpio_direction_output(GPIO_USB1_PWR_ON, 0);
233 mdelay(1);
234 gpio_set_value(GPIO_USB0_PWR_ON, 1);
235 gpio_set_value(GPIO_USB1_PWR_ON, 1);
236
Stefan Roese459e0642016-01-20 08:13:29 +0100237 return 0;
238}
239
240int checkboard(void)
241{
Stefan Roesef0547582016-02-12 14:24:07 +0100242 board_fpga_add();
243
Stefan Roese459e0642016-01-20 08:13:29 +0100244 return 0;
245}
246
247#ifdef CONFIG_NET
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900248int board_eth_init(struct bd_info *bis)
Stefan Roese459e0642016-01-20 08:13:29 +0100249{
250 cpu_eth_init(bis); /* Built in controller(s) come first */
251 return pci_eth_init(bis);
252}
253#endif
254
Stefan Roese8c8b15b2019-03-11 13:56:14 +0100255#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_BOARD_LATE_INIT)
Stefan Roesea2f62fd2016-04-08 15:58:30 +0200256int board_late_init(void)
257{
258 pci_dev_t bdf;
259 ulong bootcount;
260
261 /*
262 * Check if the PEX switch is detected (somtimes its not available
263 * on the PCIe bus). In this case, try to recover by issuing a
264 * soft-reset or even a power-cycle, depending on the bootcounter
265 * value.
266 */
267 bdf = pci_find_device(PCI_VENDOR_ID_PLX, 0x8619, 0);
268 if (bdf == -1) {
Stefan Roese8c8b15b2019-03-11 13:56:14 +0100269 unsigned long start_time = get_timer(0);
Stefan Roesea2f62fd2016-04-08 15:58:30 +0200270 u8 i2c_buf[8];
271 int ret;
272
273 /* PEX switch not found! */
274 bootcount = bootcount_load();
275 printf("Failed to find PLX PEX-switch (bootcount=%ld)\n",
276 bootcount);
Stefan Roese8c8b15b2019-03-11 13:56:14 +0100277
278 /*
279 * The user can exit this boot-loop in the error case by
280 * hitting Ctrl-C. So wait some time for this key here.
281 */
282 printf("Continue booting with Ctrl-C, otherwise rebooting\n");
283 do {
284 /* Handle control-c and timeouts */
285 if (ctrlc()) {
286 printf("PEX error boot-loop aborted!\n");
287 return 0;
288 }
289 } while (get_timer(start_time) < ABORT_TIMEOUT);
290
291
292 /*
293 * At this stage the bootcounter has not been incremented
294 * yet. We need to do this manually here to get an actually
295 * working bootcounter in this error case.
296 */
297 bootcount_inc();
298
Stefan Roesea2f62fd2016-04-08 15:58:30 +0200299 if (bootcount > PEX_SWITCH_NOT_FOUNT_LIMIT) {
300 printf("Issuing power-switch via uC!\n");
301
302 printf("Issuing power-switch via uC!\n");
303 i2c_set_bus_num(STM_I2C_BUS);
304 i2c_buf[0] = STM_I2C_ADDR << 1;
305 i2c_buf[1] = 0xc5; /* cmd */
306 i2c_buf[2] = 0x01; /* enable */
307 /* Delay before reboot */
308 i2c_buf[3] = REBOOT_DELAY & 0x00ff;
309 i2c_buf[4] = (REBOOT_DELAY & 0xff00) >> 8;
310 /* Delay before shutdown */
311 i2c_buf[5] = 0x00;
312 i2c_buf[6] = 0x00;
313 i2c_buf[7] = crc8(0x72, &i2c_buf[0], 7);
314
315 ret = i2c_write(STM_I2C_ADDR, 0, 0, &i2c_buf[1], 7);
316 if (ret) {
317 printf("I2C write error (ret=%d)\n", ret);
318 printf("Issuing soft-reset...\n");
319 /* default handling: SOFT reset */
320 do_reset(NULL, 0, 0, NULL);
321 }
322
323 /* Wait for power-cycle to occur... */
324 printf("Waiting for power-cycle via uC...\n");
325 while (1)
326 ;
327 } else {
328 printf("Issuing soft-reset...\n");
329 /* default handling: SOFT reset */
330 do_reset(NULL, 0, 0, NULL);
331 }
332 }
333
334 return 0;
335}
336#endif
Stefan Roese2816a632017-03-10 15:40:32 +0100337
338#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_PCI)
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100339static int pcie_get_link_speed_width(pci_dev_t bdf, int *speed, int *width)
Stefan Roese2816a632017-03-10 15:40:32 +0100340{
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100341 struct udevice *dev;
Stefan Roese2816a632017-03-10 15:40:32 +0100342 u16 ven_id, dev_id;
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100343 u16 lnksta;
344 int ret;
345 int pos;
Stefan Roese2816a632017-03-10 15:40:32 +0100346
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100347 /*
348 * Check if the PCIe device is detected (sometimes its not available
349 * on the PCIe bus)
350 */
351 ret = dm_pci_bus_find_bdf(bdf, &dev);
352 if (ret)
353 return -ENODEV;
Stefan Roese2816a632017-03-10 15:40:32 +0100354
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100355 /* PCIe device found */
356 dm_pci_read_config16(dev, PCI_VENDOR_ID, &ven_id);
357 dm_pci_read_config16(dev, PCI_DEVICE_ID, &dev_id);
358 printf("Detected PCIe device: VendorID 0x%04x DeviceId 0x%04x @ BDF %d.%d.%d\n",
359 ven_id, dev_id, PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
360
361 /* Now read EXP_LNKSTA register */
362 pos = dm_pci_find_capability(dev, PCI_CAP_ID_EXP);
363 dm_pci_read_config16(dev, pos + PCI_EXP_LNKSTA, &lnksta);
364 *speed = lnksta & PCI_EXP_LNKSTA_CLS;
365 *width = (lnksta & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT;
366
367 return 0;
368}
369
370/*
371 * U-Boot cmd to test for the presence of the directly connected PCIe devices
372 * the theadorable board. This cmd can be used by U-Boot scripts for automated
373 * testing, if the PCIe setup is correct. Meaning, that all PCIe devices are
374 * correctly detected and the link speed and width is corrent.
375 *
376 * Here a short script that may be used for an automated test. It results in
377 * an endless reboot loop, if the PCIe devices are detected correctly. If at
378 * any time a problem is detected (PCIe device not available or link is
379 * incorrect), then booting will halt. So just use this "bootcmd" and let the
380 * board run over a longer time (e.g. one night) and if the board still reboots
381 * after this time, then everything is okay.
382 *
383 * bootcmd=echo bootcount=$bootcount; pcie ;if test $? -eq 0;
384 * then echo PCIe status okay, resetting...; reset; else;
385 * echo PCIe status NOT okay, hanging (bootcount=$bootcount); fi;
386 */
387int do_pcie_test(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
388{
389 pci_dev_t bdf;
390 int speed;
391 int width;
392 int ret;
Stefan Roese2816a632017-03-10 15:40:32 +0100393
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100394 if (argc != 1)
395 return cmd_usage(cmdtp);
Stefan Roese2816a632017-03-10 15:40:32 +0100396
397 /*
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100398 * Check if the PCIe device is detected (sometimes its not available
Stefan Roese2816a632017-03-10 15:40:32 +0100399 * on the PCIe bus)
400 */
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100401
402 /* Check for PCIe device on PCIe port/bus 0 */
403 bdf = PCI_BDF(0, 1, 0);
404 ret = pcie_get_link_speed_width(bdf, &speed, &width);
405 if (ret) {
Stefan Roese2816a632017-03-10 15:40:32 +0100406 /* PCIe device not found! */
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100407 printf("Failed to find PCIe device @ BDF %d.%d.%d\n",
408 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
409 return CMD_RET_FAILURE;
410 }
Stefan Roese2816a632017-03-10 15:40:32 +0100411
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100412 printf("Established speed=%d width=%d\n", speed, width);
413 if ((speed != 1 || width != 1)) {
414 printf("Detected incorrect speed/width!!!\n");
415 return CMD_RET_FAILURE;
Stefan Roese2816a632017-03-10 15:40:32 +0100416 }
417
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100418 /* Check for PCIe device on PCIe port/bus 1 */
419 bdf = PCI_BDF(1, 1, 0);
420 ret = pcie_get_link_speed_width(bdf, &speed, &width);
421 if (ret) {
422 /* PCIe device not found! */
423 printf("Failed to find PCIe device @ BDF %d.%d.%d\n",
424 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
425 return CMD_RET_FAILURE;
426 }
427
428 printf("Established speed=%d width=%d\n", speed, width);
429 if ((speed != 2 || width != 4)) {
430 printf("Detected incorrect speed/width!!!\n");
431 return CMD_RET_FAILURE;
432 }
433
434 return CMD_RET_SUCCESS;
Stefan Roese2816a632017-03-10 15:40:32 +0100435}
436
437U_BOOT_CMD(
Stefan Roesed1e4fc82021-01-25 15:27:19 +0100438 pcie, 1, 0, do_pcie_test,
439 "Test for presence of a PCIe devices with correct link",
440 ""
Stefan Roese2816a632017-03-10 15:40:32 +0100441);
442#endif