blob: a78f33661e7cf9e0e6f6c6b5cb0e3ff4a13ee8c5 [file] [log] [blame]
Marek Behúnf835bed2018-04-24 17:21:31 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Marek Behun <marek.behun@nic.cz>
4 */
5
6#include <common.h>
Marek Behún455ef5b2020-04-08 19:25:22 +02007#include <asm/arch/cpu.h>
Marek Behún1055ce12020-04-08 12:02:07 +02008#include <asm/arch/soc.h>
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <net.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Marek Behún9602a8c2018-08-21 12:22:09 +020011#include <asm/io.h>
Marek Behún28e935f2020-04-08 12:02:08 +020012#include <asm/gpio.h>
Marek Behún859ada52021-06-07 16:34:47 +020013#include <button.h>
Marek Behúnf835bed2018-04-24 17:21:31 +020014#include <clk.h>
Marek Behún28e935f2020-04-08 12:02:08 +020015#include <dm.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060016#include <env.h>
Marek Behún9602a8c2018-08-21 12:22:09 +020017#include <fdt_support.h>
Marek Behún28e935f2020-04-08 12:02:08 +020018#include <init.h>
Marek Behún859ada52021-06-07 16:34:47 +020019#include <led.h>
Simon Glassdbd79542020-05-10 11:40:11 -060020#include <linux/delay.h>
Marek Behún28e935f2020-04-08 12:02:08 +020021#include <linux/libfdt.h>
22#include <linux/string.h>
23#include <miiphy.h>
24#include <mvebu/comphy.h>
25#include <spi.h>
Marek Behúnf835bed2018-04-24 17:21:31 +020026
Marek Behún35572c92018-12-17 16:10:08 +010027#include "mox_sp.h"
28
Marek Behún9602a8c2018-08-21 12:22:09 +020029#define MAX_MOX_MODULES 10
30
31#define MOX_MODULE_SFP 0x1
32#define MOX_MODULE_PCI 0x2
33#define MOX_MODULE_TOPAZ 0x3
34#define MOX_MODULE_PERIDOT 0x4
35#define MOX_MODULE_USB3 0x5
36#define MOX_MODULE_PASSPCI 0x6
37
Marek Behún1055ce12020-04-08 12:02:07 +020038#define ARMADA_37XX_NB_GPIO_SEL (MVEBU_REGISTER(0x13830))
39#define ARMADA_37XX_SPI_CTRL (MVEBU_REGISTER(0x10600))
40#define ARMADA_37XX_SPI_CFG (MVEBU_REGISTER(0x10604))
41#define ARMADA_37XX_SPI_DOUT (MVEBU_REGISTER(0x10608))
42#define ARMADA_37XX_SPI_DIN (MVEBU_REGISTER(0x1060c))
Marek Behún9602a8c2018-08-21 12:22:09 +020043
Marek Behún4529fce2020-04-08 12:02:05 +020044#define ETH1_PATH "/soc/internal-regs@d0000000/ethernet@40000"
45#define MDIO_PATH "/soc/internal-regs@d0000000/mdio@32004"
46#define SFP_GPIO_PATH "/soc/internal-regs@d0000000/spi@10600/moxtet@1/gpio@0"
Marek Behún9602a8c2018-08-21 12:22:09 +020047#define PCIE_PATH "/soc/pcie@d0070000"
Marek Behún4529fce2020-04-08 12:02:05 +020048#define SFP_PATH "/sfp"
Marek Behún859ada52021-06-07 16:34:47 +020049#define LED_PATH "/leds/led"
50#define BUTTON_PATH "/gpio-keys/reset"
Marek Behún9602a8c2018-08-21 12:22:09 +020051
Marek Behúnf835bed2018-04-24 17:21:31 +020052DECLARE_GLOBAL_DATA_PTR;
53
Marek Behún9602a8c2018-08-21 12:22:09 +020054#if defined(CONFIG_OF_BOARD_FIXUP)
55int board_fix_fdt(void *blob)
56{
57 u8 topology[MAX_MOX_MODULES];
58 int i, size, node;
59 bool enable;
60
61 /*
62 * SPI driver is not loaded in driver model yet, but we have to find out
63 * if pcie should be enabled in U-Boot's device tree. Therefore we have
64 * to read SPI by reading/writing SPI registers directly
65 */
66
Marek Behún9602a8c2018-08-21 12:22:09 +020067 writel(0x10df, ARMADA_37XX_SPI_CFG);
Marek Behúna4e697f2020-04-08 12:02:03 +020068 /* put pin from GPIO to SPI mode */
69 clrbits_le32(ARMADA_37XX_NB_GPIO_SEL, BIT(12));
70 /* enable SPI CS1 */
71 setbits_le32(ARMADA_37XX_SPI_CTRL, BIT(17));
Marek Behún9602a8c2018-08-21 12:22:09 +020072
73 while (!(readl(ARMADA_37XX_SPI_CTRL) & 0x2))
74 udelay(1);
75
76 for (i = 0; i < MAX_MOX_MODULES; ++i) {
77 writel(0x0, ARMADA_37XX_SPI_DOUT);
78
79 while (!(readl(ARMADA_37XX_SPI_CTRL) & 0x2))
80 udelay(1);
81
82 topology[i] = readl(ARMADA_37XX_SPI_DIN) & 0xff;
83 if (topology[i] == 0xff)
84 break;
85
86 topology[i] &= 0xf;
87 }
88
89 size = i;
90
Marek Behúna4e697f2020-04-08 12:02:03 +020091 /* disable SPI CS1 */
92 clrbits_le32(ARMADA_37XX_SPI_CTRL, BIT(17));
Marek Behún9602a8c2018-08-21 12:22:09 +020093
94 if (size > 1 && (topology[1] == MOX_MODULE_PCI ||
95 topology[1] == MOX_MODULE_USB3 ||
96 topology[1] == MOX_MODULE_PASSPCI))
97 enable = true;
98 else
99 enable = false;
100
101 node = fdt_path_offset(blob, PCIE_PATH);
102
103 if (node < 0) {
104 printf("Cannot find PCIe node in U-Boot's device tree!\n");
105 return 0;
106 }
107
108 if (fdt_setprop_string(blob, node, "status",
109 enable ? "okay" : "disabled") < 0) {
110 printf("Cannot %s PCIe in U-Boot's device tree!\n",
111 enable ? "enable" : "disable");
112 return 0;
113 }
114
Marek Behún455ef5b2020-04-08 19:25:22 +0200115 if (a3700_fdt_fix_pcie_regions(blob) < 0) {
116 printf("Cannot fix PCIe regions in U-Boot's device tree!\n");
117 return 0;
118 }
119
Marek Behún9602a8c2018-08-21 12:22:09 +0200120 return 0;
121}
122#endif
123
Marek Behúnf835bed2018-04-24 17:21:31 +0200124int board_init(void)
125{
126 /* address of boot parameters */
127 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
128
Marek Behúnf835bed2018-04-24 17:21:31 +0200129 return 0;
130}
131
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100132static int mox_do_spi(u8 *in, u8 *out, size_t size)
Marek Behúnf835bed2018-04-24 17:21:31 +0200133{
134 struct spi_slave *slave;
135 struct udevice *dev;
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100136 int ret;
Marek Behúnf835bed2018-04-24 17:21:31 +0200137
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100138 ret = spi_get_bus_and_cs(0, 1, 1000000, SPI_CPHA | SPI_CPOL,
139 "spi_generic_drv", "moxtet@1", &dev,
140 &slave);
Marek Behúnf835bed2018-04-24 17:21:31 +0200141 if (ret)
142 goto fail;
143
144 ret = spi_claim_bus(slave);
145 if (ret)
146 goto fail_free;
147
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100148 ret = spi_xfer(slave, size * 8, out, in, SPI_XFER_ONCE);
149
150 spi_release_bus(slave);
151fail_free:
152 spi_free_slave(slave);
153fail:
154 return ret;
155}
156
157static int mox_get_topology(const u8 **ptopology, int *psize, int *pis_sd)
158{
159 static int is_sd;
160 static u8 topology[MAX_MOX_MODULES - 1];
161 static int size;
162 u8 din[MAX_MOX_MODULES], dout[MAX_MOX_MODULES];
163 int ret, i;
164
165 if (size) {
166 if (ptopology)
167 *ptopology = topology;
168 if (psize)
169 *psize = size;
170 if (pis_sd)
171 *pis_sd = is_sd;
172 return 0;
173 }
Marek Behúnf835bed2018-04-24 17:21:31 +0200174
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100175 memset(din, 0, MAX_MOX_MODULES);
176 memset(dout, 0, MAX_MOX_MODULES);
177
178 ret = mox_do_spi(din, dout, MAX_MOX_MODULES);
Marek Behúnf835bed2018-04-24 17:21:31 +0200179 if (ret)
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100180 return ret;
Marek Behúnf835bed2018-04-24 17:21:31 +0200181
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100182 if (din[0] == 0x10)
183 is_sd = 1;
184 else if (din[0] == 0x00)
185 is_sd = 0;
186 else
187 return -ENODEV;
Marek Behúnf835bed2018-04-24 17:21:31 +0200188
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100189 for (i = 1; i < MAX_MOX_MODULES && din[i] != 0xff; ++i)
190 topology[i - 1] = din[i] & 0xf;
191 size = i - 1;
192
193 if (ptopology)
194 *ptopology = topology;
195 if (psize)
196 *psize = size;
197 if (pis_sd)
198 *pis_sd = is_sd;
199
200 return 0;
201}
202
Marek Behúna261d132018-12-17 16:10:02 +0100203int comphy_update_map(struct comphy_map *serdes_map, int count)
204{
205 int ret, i, size, sfpindex = -1, swindex = -1;
206 const u8 *topology;
207
208 ret = mox_get_topology(&topology, &size, NULL);
209 if (ret)
210 return ret;
211
212 for (i = 0; i < size; ++i) {
213 if (topology[i] == MOX_MODULE_SFP && sfpindex == -1)
214 sfpindex = i;
215 else if ((topology[i] == MOX_MODULE_TOPAZ ||
216 topology[i] == MOX_MODULE_PERIDOT) &&
217 swindex == -1)
218 swindex = i;
219 }
220
221 if (sfpindex >= 0 && swindex >= 0) {
222 if (sfpindex < swindex)
Igal Libermanffd5d2f2017-04-26 15:40:00 +0300223 serdes_map[0].speed = COMPHY_SPEED_1_25G;
Marek Behúna261d132018-12-17 16:10:02 +0100224 else
Igal Libermanffd5d2f2017-04-26 15:40:00 +0300225 serdes_map[0].speed = COMPHY_SPEED_3_125G;
Marek Behúna261d132018-12-17 16:10:02 +0100226 } else if (sfpindex >= 0) {
Igal Libermanffd5d2f2017-04-26 15:40:00 +0300227 serdes_map[0].speed = COMPHY_SPEED_1_25G;
Marek Behúna261d132018-12-17 16:10:02 +0100228 } else if (swindex >= 0) {
Igal Libermanffd5d2f2017-04-26 15:40:00 +0300229 serdes_map[0].speed = COMPHY_SPEED_3_125G;
Marek Behúna261d132018-12-17 16:10:02 +0100230 }
231
232 return 0;
233}
234
Marek Behún35b35132018-12-17 16:10:03 +0100235#define SW_SMI_CMD_R(d, r) (0x9800 | (((d) & 0x1f) << 5) | ((r) & 0x1f))
236#define SW_SMI_CMD_W(d, r) (0x9400 | (((d) & 0x1f) << 5) | ((r) & 0x1f))
237
238static int sw_multi_read(struct mii_dev *bus, int sw, int dev, int reg)
239{
240 bus->write(bus, sw, 0, 0, SW_SMI_CMD_R(dev, reg));
241 mdelay(5);
242 return bus->read(bus, sw, 0, 1);
243}
244
245static void sw_multi_write(struct mii_dev *bus, int sw, int dev, int reg,
246 u16 val)
247{
248 bus->write(bus, sw, 0, 1, val);
249 bus->write(bus, sw, 0, 0, SW_SMI_CMD_W(dev, reg));
250 mdelay(5);
251}
252
253static int sw_scratch_read(struct mii_dev *bus, int sw, int reg)
254{
255 sw_multi_write(bus, sw, 0x1c, 0x1a, (reg & 0x7f) << 8);
256 return sw_multi_read(bus, sw, 0x1c, 0x1a) & 0xff;
257}
258
259static void sw_led_write(struct mii_dev *bus, int sw, int port, int reg,
260 u16 val)
261{
262 sw_multi_write(bus, sw, port, 0x16, 0x8000 | ((reg & 7) << 12)
263 | (val & 0x7ff));
264}
265
266static void sw_blink_leds(struct mii_dev *bus, int peridot, int topaz)
267{
268 int i, p;
269 struct {
270 int port;
271 u16 val;
272 int wait;
273 } regs[] = {
274 { 2, 0xef, 1 }, { 2, 0xfe, 1 }, { 2, 0x33, 0 },
275 { 4, 0xef, 1 }, { 4, 0xfe, 1 }, { 4, 0x33, 0 },
276 { 3, 0xfe, 1 }, { 3, 0xef, 1 }, { 3, 0x33, 0 },
277 { 1, 0xfe, 1 }, { 1, 0xef, 1 }, { 1, 0x33, 0 }
278 };
279
280 for (i = 0; i < 12; ++i) {
281 for (p = 0; p < peridot; ++p) {
282 sw_led_write(bus, 0x10 + p, regs[i].port, 0,
283 regs[i].val);
284 sw_led_write(bus, 0x10 + p, regs[i].port + 4, 0,
285 regs[i].val);
286 }
287 if (topaz) {
288 sw_led_write(bus, 0x2, 0x10 + regs[i].port, 0,
289 regs[i].val);
290 }
291
292 if (regs[i].wait)
293 mdelay(75);
294 }
295}
296
297static void check_switch_address(struct mii_dev *bus, int addr)
298{
299 if (sw_scratch_read(bus, addr, 0x70) >> 3 != addr)
300 printf("Check of switch MDIO address failed for 0x%02x\n",
301 addr);
302}
303
304static int sfp, pci, topaz, peridot, usb, passpci;
305static int sfp_pos, peridot_pos[3];
306static int module_count;
307
308static int configure_peridots(struct gpio_desc *reset_gpio)
309{
310 int i, ret;
311 u8 dout[MAX_MOX_MODULES];
312
313 memset(dout, 0, MAX_MOX_MODULES);
314
315 /* set addresses of Peridot modules */
316 for (i = 0; i < peridot; ++i)
317 dout[module_count - peridot_pos[i]] = (~i) & 3;
318
319 /*
320 * if there is a SFP module connected to the last Peridot module, set
321 * the P10_SMODE to 1 for the Peridot module
322 */
323 if (sfp)
324 dout[module_count - peridot_pos[i - 1]] |= 1 << 3;
325
326 dm_gpio_set_value(reset_gpio, 1);
327 mdelay(10);
328
329 ret = mox_do_spi(NULL, dout, module_count + 1);
330
331 mdelay(10);
332 dm_gpio_set_value(reset_gpio, 0);
333
334 mdelay(50);
335
336 return ret;
337}
338
339static int get_reset_gpio(struct gpio_desc *reset_gpio)
340{
341 int node;
342
343 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, "cznic,moxtet");
344 if (node < 0) {
345 printf("Cannot find Moxtet bus device node!\n");
346 return -1;
347 }
348
349 gpio_request_by_name_nodev(offset_to_ofnode(node), "reset-gpios", 0,
350 reset_gpio, GPIOD_IS_OUT);
351
352 if (!dm_gpio_is_valid(reset_gpio)) {
353 printf("Cannot find reset GPIO for Moxtet bus!\n");
354 return -1;
355 }
356
Marek Behún35572c92018-12-17 16:10:08 +0100357 return 0;
358}
359
360int misc_init_r(void)
361{
362 int ret;
363 u8 mac1[6], mac2[6];
364
365 ret = mbox_sp_get_board_info(NULL, mac1, mac2, NULL, NULL);
366 if (ret < 0) {
367 printf("Cannot read data from OTP!\n");
368 return 0;
369 }
370
371 if (is_valid_ethaddr(mac1) && !env_get("ethaddr"))
372 eth_env_set_enetaddr("ethaddr", mac1);
373
374 if (is_valid_ethaddr(mac2) && !env_get("eth1addr"))
375 eth_env_set_enetaddr("eth1addr", mac2);
376
Marek Behún35b35132018-12-17 16:10:03 +0100377 return 0;
378}
379
Marek Behún859ada52021-06-07 16:34:47 +0200380static bool read_reset_button(void)
381{
382 struct udevice *button, *led;
383 int i;
384
385 if (device_get_global_by_ofnode(ofnode_path(BUTTON_PATH), &button)) {
386 printf("Cannot find reset button!\n");
387 return false;
388 }
389
390 if (device_get_global_by_ofnode(ofnode_path(LED_PATH), &led)) {
391 printf("Cannot find status LED!\n");
392 return false;
393 }
394
395 led_set_state(led, LEDST_ON);
396
397 for (i = 0; i < 21; ++i) {
398 if (button_get_state(button) != BUTTON_ON)
399 return false;
400 if (i < 20)
401 mdelay(50);
402 }
403
404 led_set_state(led, LEDST_OFF);
405
406 return true;
407}
408
409static void handle_reset_button(void)
410{
411 if (read_reset_button()) {
412 const char * const vars[3] = {
413 "bootcmd",
414 "bootcmd_rescue",
415 "distro_bootcmd",
416 };
417
418 /*
419 * Set the above envs to their default values, in case the user
420 * managed to break them.
421 */
422 env_set_default_vars(3, (char * const *)vars, 0);
423
424 /* Ensure bootcmd_rescue is used by distroboot */
425 env_set("boot_targets", "rescue");
426
427 printf("RESET button was pressed, overwriting boot_targets!\n");
428 } else {
429 /*
430 * In case the user somehow managed to save environment with
431 * boot_targets=rescue, reset boot_targets to default value.
432 * This could happen in subsequent commands if bootcmd_rescue
433 * failed.
434 */
435 if (!strcmp(env_get("boot_targets"), "rescue")) {
436 const char * const vars[1] = {
437 "boot_targets",
438 };
439
440 env_set_default_vars(1, (char * const *)vars, 0);
441 }
442 }
443}
444
Marek Behún35572c92018-12-17 16:10:08 +0100445static void mox_print_info(void)
446{
447 int ret, board_version, ram_size;
448 u64 serial_number;
449 const char *pub_key;
450
451 ret = mbox_sp_get_board_info(&serial_number, NULL, NULL, &board_version,
452 &ram_size);
453 if (ret < 0)
454 return;
455
456 printf("Turris Mox:\n");
457 printf(" Board version: %i\n", board_version);
458 printf(" RAM size: %i MiB\n", ram_size);
459 printf(" Serial Number: %016llX\n", serial_number);
460
461 pub_key = mox_sp_get_ecdsa_public_key();
462 if (pub_key)
463 printf(" ECDSA Public Key: %s\n", pub_key);
464 else
465 printf("Cannot read ECDSA Public Key\n");
466}
467
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100468int last_stage_init(void)
469{
470 int ret, i;
471 const u8 *topology;
Marek Behún35b35132018-12-17 16:10:03 +0100472 int is_sd;
473 struct mii_dev *bus;
474 struct gpio_desc reset_gpio = {};
Marek Behúnf835bed2018-04-24 17:21:31 +0200475
Marek Behún35572c92018-12-17 16:10:08 +0100476 mox_print_info();
477
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100478 ret = mox_get_topology(&topology, &module_count, &is_sd);
479 if (ret) {
480 printf("Cannot read module topology!\n");
481 return 0;
482 }
483
Marek Behún35572c92018-12-17 16:10:08 +0100484 printf(" SD/eMMC version: %s\n", is_sd ? "SD" : "eMMC");
485
486 if (module_count)
487 printf("Module Topology:\n");
488
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100489 for (i = 0; i < module_count; ++i) {
490 switch (topology[i]) {
491 case MOX_MODULE_SFP:
492 printf("% 4i: SFP Module\n", i + 1);
Marek Behúnf835bed2018-04-24 17:21:31 +0200493 break;
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100494 case MOX_MODULE_PCI:
495 printf("% 4i: Mini-PCIe Module\n", i + 1);
Marek Behúnf835bed2018-04-24 17:21:31 +0200496 break;
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100497 case MOX_MODULE_TOPAZ:
498 printf("% 4i: Topaz Switch Module (4-port)\n", i + 1);
499 break;
500 case MOX_MODULE_PERIDOT:
501 printf("% 4i: Peridot Switch Module (8-port)\n", i + 1);
502 break;
503 case MOX_MODULE_USB3:
504 printf("% 4i: USB 3.0 Module (4 ports)\n", i + 1);
505 break;
506 case MOX_MODULE_PASSPCI:
507 printf("% 4i: Passthrough Mini-PCIe Module\n", i + 1);
Marek Behúnf835bed2018-04-24 17:21:31 +0200508 break;
509 default:
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100510 printf("% 4i: unknown (ID %i)\n", i + 1, topology[i]);
Marek Behúnf835bed2018-04-24 17:21:31 +0200511 }
512 }
Marek Behúnf835bed2018-04-24 17:21:31 +0200513
Marek Behún35b35132018-12-17 16:10:03 +0100514 /* now check if modules are connected in supported mode */
515
516 for (i = 0; i < module_count; ++i) {
517 switch (topology[i]) {
518 case MOX_MODULE_SFP:
519 if (sfp) {
520 printf("Error: Only one SFP module is supported!\n");
521 } else if (topaz) {
522 printf("Error: SFP module cannot be connected after Topaz Switch module!\n");
523 } else {
524 sfp_pos = i;
525 ++sfp;
526 }
527 break;
528 case MOX_MODULE_PCI:
Marek Behún4529fce2020-04-08 12:02:05 +0200529 if (pci)
Marek Behún35b35132018-12-17 16:10:03 +0100530 printf("Error: Only one Mini-PCIe module is supported!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200531 else if (usb)
Marek Behún35b35132018-12-17 16:10:03 +0100532 printf("Error: Mini-PCIe module cannot come after USB 3.0 module!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200533 else if (i && (i != 1 || !passpci))
Marek Behún35b35132018-12-17 16:10:03 +0100534 printf("Error: Mini-PCIe module should be the first connected module or come right after Passthrough Mini-PCIe module!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200535 else
Marek Behún35b35132018-12-17 16:10:03 +0100536 ++pci;
Marek Behún35b35132018-12-17 16:10:03 +0100537 break;
538 case MOX_MODULE_TOPAZ:
Marek Behún4529fce2020-04-08 12:02:05 +0200539 if (topaz)
Marek Behún35b35132018-12-17 16:10:03 +0100540 printf("Error: Only one Topaz module is supported!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200541 else if (peridot >= 3)
Marek Behún35b35132018-12-17 16:10:03 +0100542 printf("Error: At most two Peridot modules can come before Topaz module!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200543 else
Marek Behún35b35132018-12-17 16:10:03 +0100544 ++topaz;
Marek Behún35b35132018-12-17 16:10:03 +0100545 break;
546 case MOX_MODULE_PERIDOT:
547 if (sfp || topaz) {
548 printf("Error: Peridot module must come before SFP or Topaz module!\n");
549 } else if (peridot >= 3) {
550 printf("Error: At most three Peridot modules are supported!\n");
551 } else {
552 peridot_pos[peridot] = i;
553 ++peridot;
554 }
555 break;
556 case MOX_MODULE_USB3:
Marek Behún4529fce2020-04-08 12:02:05 +0200557 if (pci)
Marek Behún35b35132018-12-17 16:10:03 +0100558 printf("Error: USB 3.0 module cannot come after Mini-PCIe module!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200559 else if (usb)
Marek Behún35b35132018-12-17 16:10:03 +0100560 printf("Error: Only one USB 3.0 module is supported!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200561 else if (i && (i != 1 || !passpci))
Marek Behún35b35132018-12-17 16:10:03 +0100562 printf("Error: USB 3.0 module should be the first connected module or come right after Passthrough Mini-PCIe module!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200563 else
Marek Behún35b35132018-12-17 16:10:03 +0100564 ++usb;
Marek Behún35b35132018-12-17 16:10:03 +0100565 break;
566 case MOX_MODULE_PASSPCI:
Marek Behún4529fce2020-04-08 12:02:05 +0200567 if (passpci)
Marek Behún35b35132018-12-17 16:10:03 +0100568 printf("Error: Only one Passthrough Mini-PCIe module is supported!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200569 else if (i != 0)
Marek Behún35b35132018-12-17 16:10:03 +0100570 printf("Error: Passthrough Mini-PCIe module should be the first connected module!\n");
Marek Behún4529fce2020-04-08 12:02:05 +0200571 else
Marek Behún35b35132018-12-17 16:10:03 +0100572 ++passpci;
Marek Behún35b35132018-12-17 16:10:03 +0100573 }
574 }
575
576 /* now configure modules */
577
578 if (get_reset_gpio(&reset_gpio) < 0)
579 return 0;
580
581 if (peridot > 0) {
582 if (configure_peridots(&reset_gpio) < 0) {
583 printf("Cannot configure Peridot modules!\n");
584 peridot = 0;
585 }
586 } else {
587 dm_gpio_set_value(&reset_gpio, 1);
588 mdelay(50);
589 dm_gpio_set_value(&reset_gpio, 0);
590 mdelay(50);
591 }
592
593 if (peridot || topaz) {
594 /*
595 * now check if the addresses are set by reading Scratch & Misc
596 * register 0x70 of Peridot (and potentially Topaz) modules
597 */
598
599 bus = miiphy_get_dev_by_name("neta@30000");
600 if (!bus) {
601 printf("Cannot get MDIO bus device!\n");
602 } else {
603 for (i = 0; i < peridot; ++i)
604 check_switch_address(bus, 0x10 + i);
605
606 if (topaz)
607 check_switch_address(bus, 0x2);
608
609 sw_blink_leds(bus, peridot, topaz);
610 }
611 }
612
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100613 printf("\n");
Marek Behúnf835bed2018-04-24 17:21:31 +0200614
Marek Behún859ada52021-06-07 16:34:47 +0200615 handle_reset_button();
616
Marek Behúnf68ed8b2018-12-17 16:10:01 +0100617 return 0;
Marek Behúnf835bed2018-04-24 17:21:31 +0200618}
Marek Behún4529fce2020-04-08 12:02:05 +0200619
620#if defined(CONFIG_OF_BOARD_SETUP)
621
622static int vnode_by_path(void *blob, const char *fmt, va_list ap)
623{
624 char path[128];
625
626 vsnprintf(path, 128, fmt, ap);
627 return fdt_path_offset(blob, path);
628}
629
630static int node_by_path(void *blob, const char *fmt, ...)
631{
632 va_list ap;
633 int res;
634
635 va_start(ap, fmt);
636 res = vnode_by_path(blob, fmt, ap);
637 va_end(ap);
638
639 return res;
640}
641
642static int phandle_by_path(void *blob, const char *fmt, ...)
643{
644 va_list ap;
645 int node, phandle, res;
646
647 va_start(ap, fmt);
648 node = vnode_by_path(blob, fmt, ap);
649 va_end(ap);
650
651 if (node < 0)
652 return node;
653
654 phandle = fdt_get_phandle(blob, node);
655 if (phandle > 0)
656 return phandle;
657
658 phandle = fdt_get_max_phandle(blob);
659 if (phandle < 0)
660 return phandle;
661
662 phandle += 1;
663
664 res = fdt_setprop_u32(blob, node, "linux,phandle", phandle);
665 if (res < 0)
666 return res;
667
668 res = fdt_setprop_u32(blob, node, "phandle", phandle);
669 if (res < 0)
670 return res;
671
672 return phandle;
673}
674
675static int enable_by_path(void *blob, const char *fmt, ...)
676{
677 va_list ap;
678 int node;
679
680 va_start(ap, fmt);
681 node = vnode_by_path(blob, fmt, ap);
682 va_end(ap);
683
684 if (node < 0)
685 return node;
686
687 return fdt_setprop_string(blob, node, "status", "okay");
688}
689
690static bool is_topaz(int id)
691{
692 return topaz && id == peridot + topaz - 1;
693}
694
695static int switch_addr(int id)
696{
697 return is_topaz(id) ? 0x2 : 0x10 + id;
698}
699
700static int setup_switch(void *blob, int id)
701{
702 int res, addr, i, node, phandle;
703
704 addr = switch_addr(id);
705
706 /* first enable the switch by setting status = "okay" */
707 res = enable_by_path(blob, MDIO_PATH "/switch%i@%x", id, addr);
708 if (res < 0)
709 return res;
710
711 /*
712 * now if there are more switches or a SFP module coming after,
713 * enable corresponding ports
714 */
715 if (id < peridot + topaz - 1) {
716 res = enable_by_path(blob,
717 MDIO_PATH "/switch%i@%x/ports/port@a",
718 id, addr);
719 } else if (id == peridot - 1 && !topaz && sfp) {
720 res = enable_by_path(blob,
721 MDIO_PATH "/switch%i@%x/ports/port-sfp@a",
722 id, addr);
723 } else {
724 res = 0;
725 }
726 if (res < 0)
727 return res;
728
729 if (id >= peridot + topaz - 1)
730 return 0;
731
732 /* finally change link property if needed */
733 node = node_by_path(blob, MDIO_PATH "/switch%i@%x/ports/port@a", id,
734 addr);
735 if (node < 0)
736 return node;
737
738 for (i = id + 1; i < peridot + topaz; ++i) {
739 phandle = phandle_by_path(blob,
740 MDIO_PATH "/switch%i@%x/ports/port@%x",
741 i, switch_addr(i),
742 is_topaz(i) ? 5 : 9);
743 if (phandle < 0)
744 return phandle;
745
746 if (i == id + 1)
747 res = fdt_setprop_u32(blob, node, "link", phandle);
748 else
749 res = fdt_appendprop_u32(blob, node, "link", phandle);
750 if (res < 0)
751 return res;
752 }
753
754 return 0;
755}
756
757static int remove_disabled_nodes(void *blob)
758{
759 while (1) {
760 int res, offset;
761
762 offset = fdt_node_offset_by_prop_value(blob, -1, "status",
763 "disabled", 9);
764 if (offset < 0)
765 break;
766
767 res = fdt_del_node(blob, offset);
768 if (res < 0)
769 return res;
770 }
771
772 return 0;
773}
774
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900775int ft_board_setup(void *blob, struct bd_info *bd)
Marek Behún4529fce2020-04-08 12:02:05 +0200776{
777 int node, phandle, res;
778
779 /*
780 * If MOX B (PCI), MOX F (USB) or MOX G (Passthrough PCI) modules are
781 * connected, enable the PCIe node.
782 */
783 if (pci || usb || passpci) {
784 node = fdt_path_offset(blob, PCIE_PATH);
785 if (node < 0)
786 return node;
787
788 res = fdt_setprop_string(blob, node, "status", "okay");
789 if (res < 0)
790 return res;
Marek Behún455ef5b2020-04-08 19:25:22 +0200791
792 /* Fix PCIe regions for devices with 4 GB RAM */
793 res = a3700_fdt_fix_pcie_regions(blob);
794 if (res < 0)
795 return res;
Marek Behún4529fce2020-04-08 12:02:05 +0200796 }
797
798 /*
799 * If MOX C (Topaz switch) and/or MOX E (Peridot switch) are connected,
800 * enable the eth1 node and setup the switches.
801 */
802 if (peridot || topaz) {
803 int i;
804
805 res = enable_by_path(blob, ETH1_PATH);
806 if (res < 0)
807 return res;
808
809 for (i = 0; i < peridot + topaz; ++i) {
810 res = setup_switch(blob, i);
811 if (res < 0)
812 return res;
813 }
814 }
815
816 /*
817 * If MOX D (SFP cage module) is connected, enable the SFP node and eth1
818 * node. If there is no Peridot switch between MOX A and MOX D, add link
819 * to the SFP node to eth1 node.
820 * Also enable and configure SFP GPIO controller node.
821 */
822 if (sfp) {
823 res = enable_by_path(blob, SFP_PATH);
824 if (res < 0)
825 return res;
826
827 res = enable_by_path(blob, ETH1_PATH);
828 if (res < 0)
829 return res;
830
831 if (!peridot) {
832 phandle = phandle_by_path(blob, SFP_PATH);
833 if (phandle < 0)
834 return res;
835
836 node = node_by_path(blob, ETH1_PATH);
837 if (node < 0)
838 return node;
839
840 res = fdt_setprop_u32(blob, node, "sfp", phandle);
841 if (res < 0)
842 return res;
843
844 res = fdt_setprop_string(blob, node, "phy-mode",
845 "sgmii");
846 if (res < 0)
847 return res;
848 }
849
850 res = enable_by_path(blob, SFP_GPIO_PATH);
851 if (res < 0)
852 return res;
853
854 if (sfp_pos) {
855 char newname[16];
856
857 /* moxtet-sfp is on non-zero position, change default */
858 node = node_by_path(blob, SFP_GPIO_PATH);
859 if (node < 0)
860 return node;
861
862 res = fdt_setprop_u32(blob, node, "reg", sfp_pos);
863 if (res < 0)
864 return res;
865
866 sprintf(newname, "gpio@%x", sfp_pos);
867
868 res = fdt_set_name(blob, node, newname);
869 if (res < 0)
870 return res;
871 }
872 }
873
874 fdt_fixup_ethernet(blob);
875
876 /* Finally remove disabled nodes, as per Rob Herring's request. */
877 remove_disabled_nodes(blob);
878
879 return 0;
880}
881
882#endif