blob: a12e08685bf69d9e951a04c5640a606a90940d29 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dirk Eibachb355f172015-10-28 11:46:32 +01002/*
3 * (C) Copyright 2014
Mario Sixb4893582018-03-06 08:04:58 +01004 * Dirk Eibach, Guntermann & Drunck GmbH, dirk.eibach@gdsys.cc
Dirk Eibachb355f172015-10-28 11:46:32 +01005 */
6
7#include <common.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06008#include <env.h>
Simon Glass8e201882020-05-10 11:39:54 -06009#include <flash.h>
Dirk Eibachb355f172015-10-28 11:46:32 +010010#include <hwconfig.h>
11#include <i2c.h>
Simon Glass18afe102019-11-14 12:57:47 -070012#include <init.h>
Dirk Eibachb355f172015-10-28 11:46:32 +010013#include <spi.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090014#include <linux/libfdt.h>
Dirk Eibachb355f172015-10-28 11:46:32 +010015#include <fdt_support.h>
16#include <pci.h>
17#include <mpc83xx.h>
18#include <fsl_esdhc.h>
19#include <asm/io.h>
20#include <asm/fsl_serdes.h>
21#include <asm/fsl_mpc83xx_serdes.h>
22
23#include "mpc8308.h"
24
25#include <gdsys_fpga.h>
26
27#include "../common/adv7611.h"
28#include "../common/ch7301.h"
Dirk Eibache9539ed2016-03-16 09:20:11 +010029#include "../common/dp501.h"
Dirk Eibachb355f172015-10-28 11:46:32 +010030#include "../common/ioep-fpga.h"
31#include "../common/mclink.h"
32#include "../common/osd.h"
33#include "../common/phy.h"
Dirk Eibach94594332015-10-28 11:46:36 +010034#include "../common/fanctrl.h"
Dirk Eibachb355f172015-10-28 11:46:32 +010035
36#include <pca953x.h>
37#include <pca9698.h>
38
39#include <miiphy.h>
40
Dirk Eibachb355f172015-10-28 11:46:32 +010041#define MAX_MUX_CHANNELS 2
42
43enum {
44 MCFPGA_DONE = 1 << 0,
45 MCFPGA_INIT_N = 1 << 1,
46 MCFPGA_PROGRAM_N = 1 << 2,
47 MCFPGA_UPDATE_ENABLE_N = 1 << 3,
48 MCFPGA_RESET_N = 1 << 4,
49};
50
51enum {
52 GPIO_MDC = 1 << 14,
53 GPIO_MDIO = 1 << 15,
54};
55
Mario Six3809c472019-03-29 10:18:06 +010056uint mclink_fpgacount;
Dirk Eibachb355f172015-10-28 11:46:32 +010057struct ihs_fpga *fpga_ptr[] = CONFIG_SYS_FPGA_PTR;
58
59struct {
60 u8 bus;
61 u8 addr;
62} strider_fans[] = CONFIG_STRIDER_FANS;
63
64int fpga_set_reg(u32 fpga, u16 *reg, off_t regoff, u16 data)
65{
66 int res;
67
68 switch (fpga) {
69 case 0:
70 out_le16(reg, data);
71 break;
72 default:
73 res = mclink_send(fpga - 1, regoff, data);
74 if (res < 0) {
75 printf("mclink_send reg %02lx data %04x returned %d\n",
76 regoff, data, res);
77 return res;
78 }
79 break;
80 }
81
82 return 0;
83}
84
85int fpga_get_reg(u32 fpga, u16 *reg, off_t regoff, u16 *data)
86{
87 int res;
88
89 switch (fpga) {
90 case 0:
91 *data = in_le16(reg);
92 break;
93 default:
94 if (fpga > mclink_fpgacount)
95 return -EINVAL;
96 res = mclink_receive(fpga - 1, regoff, data);
97 if (res < 0) {
98 printf("mclink_receive reg %02lx returned %d\n",
99 regoff, res);
100 return res;
101 }
102 }
103
104 return 0;
105}
106
107int checkboard(void)
108{
Simon Glass64b723f2017-08-03 12:22:12 -0600109 char *s = env_get("serial#");
Dirk Eibachb355f172015-10-28 11:46:32 +0100110 bool hw_type_cat = pca9698_get_value(0x20, 18);
111
112 puts("Board: ");
113
114 printf("Strider %s", hw_type_cat ? "CAT" : "Fiber");
115
Mario Six3809c472019-03-29 10:18:06 +0100116 if (s) {
Dirk Eibachb355f172015-10-28 11:46:32 +0100117 puts(", serial# ");
118 puts(s);
119 }
120
121 puts("\n");
122
123 return 0;
124}
125
Dirk Eibachb355f172015-10-28 11:46:32 +0100126int last_stage_init(void)
127{
128 int slaves;
Mario Six3809c472019-03-29 10:18:06 +0100129 uint k;
130 uint mux_ch;
131 uchar mclink_controllers_dvi[] = { 0x3c, 0x3d, 0x3e };
Dirk Eibache9539ed2016-03-16 09:20:11 +0100132#ifdef CONFIG_STRIDER_CPU
Mario Six3809c472019-03-29 10:18:06 +0100133 uchar mclink_controllers_dp[] = { 0x24, 0x25, 0x26 };
Dirk Eibache9539ed2016-03-16 09:20:11 +0100134#endif
Dirk Eibachb355f172015-10-28 11:46:32 +0100135 bool hw_type_cat = pca9698_get_value(0x20, 18);
Dirk Eibach3c6a5092016-06-02 09:05:41 +0200136#ifdef CONFIG_STRIDER_CON_DP
137 bool is_dh = pca9698_get_value(0x20, 25);
138#endif
Mario Six3809c472019-03-29 10:18:06 +0100139 bool ch0_sgmii2_present;
Dirk Eibachb355f172015-10-28 11:46:32 +0100140
141 /* Turn on Analog Devices ADV7611 */
142 pca9698_direction_output(0x20, 8, 0);
143
144 /* Turn on Parade DP501 */
Dirk Eibache9539ed2016-03-16 09:20:11 +0100145 pca9698_direction_output(0x20, 10, 1);
Dirk Eibach3c6a5092016-06-02 09:05:41 +0200146 pca9698_direction_output(0x20, 11, 1);
Dirk Eibachb355f172015-10-28 11:46:32 +0100147
148 ch0_sgmii2_present = !pca9698_get_value(0x20, 37);
149
150 /* wait for FPGA done, then reset FPGA */
Dirk Eibache9539ed2016-03-16 09:20:11 +0100151 for (k = 0; k < ARRAY_SIZE(mclink_controllers_dvi); ++k) {
Mario Six3809c472019-03-29 10:18:06 +0100152 uint ctr = 0;
153 uchar *mclink_controllers = mclink_controllers_dvi;
Dirk Eibachb355f172015-10-28 11:46:32 +0100154
Dirk Eibache9539ed2016-03-16 09:20:11 +0100155#ifdef CONFIG_STRIDER_CPU
156 if (i2c_probe(mclink_controllers[k])) {
157 mclink_controllers = mclink_controllers_dp;
158 if (i2c_probe(mclink_controllers[k]))
159 continue;
160 }
161#else
Dirk Eibachb355f172015-10-28 11:46:32 +0100162 if (i2c_probe(mclink_controllers[k]))
163 continue;
Dirk Eibache9539ed2016-03-16 09:20:11 +0100164#endif
Dirk Eibachb355f172015-10-28 11:46:32 +0100165 while (!(pca953x_get_val(mclink_controllers[k])
166 & MCFPGA_DONE)) {
Mario Six3809c472019-03-29 10:18:06 +0100167 mdelay(100);
Dirk Eibachb355f172015-10-28 11:46:32 +0100168 if (ctr++ > 5) {
169 printf("no done for mclink_controller %d\n", k);
170 break;
171 }
172 }
173
174 pca953x_set_dir(mclink_controllers[k], MCFPGA_RESET_N, 0);
175 pca953x_set_val(mclink_controllers[k], MCFPGA_RESET_N, 0);
176 udelay(10);
177 pca953x_set_val(mclink_controllers[k], MCFPGA_RESET_N,
178 MCFPGA_RESET_N);
179 }
180
181 if (hw_type_cat) {
Joe Hershberger1fbcbed2016-08-08 11:28:38 -0500182 int retval;
183 struct mii_dev *mdiodev = mdio_alloc();
Mario Six3809c472019-03-29 10:18:06 +0100184
Joe Hershberger1fbcbed2016-08-08 11:28:38 -0500185 if (!mdiodev)
186 return -ENOMEM;
187 strncpy(mdiodev->name, bb_miiphy_buses[0].name, MDIO_NAME_LEN);
188 mdiodev->read = bb_miiphy_read;
189 mdiodev->write = bb_miiphy_write;
190
191 retval = mdio_register(mdiodev);
192 if (retval < 0)
193 return retval;
Dirk Eibachb355f172015-10-28 11:46:32 +0100194 for (mux_ch = 0; mux_ch < MAX_MUX_CHANNELS; ++mux_ch) {
195 if ((mux_ch == 1) && !ch0_sgmii2_present)
196 continue;
197
198 setup_88e1514(bb_miiphy_buses[0].name, mux_ch);
199 }
200 }
201
202 /* give slave-PLLs and Parade DP501 some time to be up and running */
Mario Six3809c472019-03-29 10:18:06 +0100203 mdelay(500);
Dirk Eibachb355f172015-10-28 11:46:32 +0100204
205 mclink_fpgacount = CONFIG_SYS_MCLINK_MAX;
206 slaves = mclink_probe();
207 mclink_fpgacount = 0;
208
209 ioep_fpga_print_info(0);
210
211 if (!adv7611_probe(0))
212 printf(" Advantiv ADV7611 HDMI Receiver\n");
213
214#ifdef CONFIG_STRIDER_CON
215 if (ioep_fpga_has_osd(0))
216 osd_probe(0);
217#endif
218
Dirk Eibach3c6a5092016-06-02 09:05:41 +0200219#ifdef CONFIG_STRIDER_CON_DP
220 if (ioep_fpga_has_osd(0)) {
221 osd_probe(0);
222 if (is_dh)
223 osd_probe(4);
224 }
225#endif
226
Dirk Eibachb355f172015-10-28 11:46:32 +0100227#ifdef CONFIG_STRIDER_CPU
228 ch7301_probe(0, false);
Dirk Eibache9539ed2016-03-16 09:20:11 +0100229 dp501_probe(0, false);
Dirk Eibachb355f172015-10-28 11:46:32 +0100230#endif
231
232 if (slaves <= 0)
233 return 0;
234
235 mclink_fpgacount = slaves;
236
Dirk Eibache9539ed2016-03-16 09:20:11 +0100237#ifdef CONFIG_STRIDER_CPU
238 /* get ADV7611 out of reset, power up DP501, give some time to wakeup */
239 for (k = 1; k <= slaves; ++k)
240 FPGA_SET_REG(k, extended_control, 0x10); /* enable video */
241
Mario Six3809c472019-03-29 10:18:06 +0100242 mdelay(500);
Dirk Eibache9539ed2016-03-16 09:20:11 +0100243#endif
244
Dirk Eibachb355f172015-10-28 11:46:32 +0100245 for (k = 1; k <= slaves; ++k) {
246 ioep_fpga_print_info(k);
247#ifdef CONFIG_STRIDER_CON
248 if (ioep_fpga_has_osd(k))
249 osd_probe(k);
250#endif
Dirk Eibach3c6a5092016-06-02 09:05:41 +0200251#ifdef CONFIG_STRIDER_CON_DP
252 if (ioep_fpga_has_osd(k)) {
253 osd_probe(k);
254 if (is_dh)
255 osd_probe(k + 4);
256 }
257#endif
Dirk Eibachb355f172015-10-28 11:46:32 +0100258#ifdef CONFIG_STRIDER_CPU
Dirk Eibachb355f172015-10-28 11:46:32 +0100259 if (!adv7611_probe(k))
260 printf(" Advantiv ADV7611 HDMI Receiver\n");
261 ch7301_probe(k, false);
Dirk Eibache9539ed2016-03-16 09:20:11 +0100262 dp501_probe(k, false);
Dirk Eibachb355f172015-10-28 11:46:32 +0100263#endif
264 if (hw_type_cat) {
Joe Hershberger1fbcbed2016-08-08 11:28:38 -0500265 int retval;
266 struct mii_dev *mdiodev = mdio_alloc();
Mario Six3809c472019-03-29 10:18:06 +0100267
Joe Hershberger1fbcbed2016-08-08 11:28:38 -0500268 if (!mdiodev)
269 return -ENOMEM;
270 strncpy(mdiodev->name, bb_miiphy_buses[k].name,
271 MDIO_NAME_LEN);
272 mdiodev->read = bb_miiphy_read;
273 mdiodev->write = bb_miiphy_write;
274
275 retval = mdio_register(mdiodev);
276 if (retval < 0)
277 return retval;
Dirk Eibachb355f172015-10-28 11:46:32 +0100278 setup_88e1514(bb_miiphy_buses[k].name, 0);
279 }
280 }
281
282 for (k = 0; k < ARRAY_SIZE(strider_fans); ++k) {
283 i2c_set_bus_num(strider_fans[k].bus);
284 init_fan_controller(strider_fans[k].addr);
285 }
286
287 return 0;
288}
289
290/*
291 * provide access to fpga gpios (for I2C bitbang)
292 * (these may look all too simple but make iocon.h much more readable)
293 */
Mario Six3809c472019-03-29 10:18:06 +0100294void fpga_gpio_set(uint bus, int pin)
Dirk Eibachb355f172015-10-28 11:46:32 +0100295{
296 FPGA_SET_REG(bus, gpio.set, pin);
297}
298
Mario Six3809c472019-03-29 10:18:06 +0100299void fpga_gpio_clear(uint bus, int pin)
Dirk Eibachb355f172015-10-28 11:46:32 +0100300{
301 FPGA_SET_REG(bus, gpio.clear, pin);
302}
303
Mario Six3809c472019-03-29 10:18:06 +0100304int fpga_gpio_get(uint bus, int pin)
Dirk Eibachb355f172015-10-28 11:46:32 +0100305{
306 u16 val;
307
308 FPGA_GET_REG(bus, gpio.read, &val);
309
310 return val & pin;
311}
312
Dirk Eibach3c6a5092016-06-02 09:05:41 +0200313#ifdef CONFIG_STRIDER_CON_DP
Mario Six3809c472019-03-29 10:18:06 +0100314void fpga_control_set(uint bus, int pin)
Dirk Eibach3c6a5092016-06-02 09:05:41 +0200315{
316 u16 val;
317
318 FPGA_GET_REG(bus, control, &val);
319 FPGA_SET_REG(bus, control, val | pin);
320}
321
Mario Six3809c472019-03-29 10:18:06 +0100322void fpga_control_clear(uint bus, int pin)
Dirk Eibach3c6a5092016-06-02 09:05:41 +0200323{
324 u16 val;
325
326 FPGA_GET_REG(bus, control, &val);
327 FPGA_SET_REG(bus, control, val & ~pin);
328}
329#endif
330
Dirk Eibachb355f172015-10-28 11:46:32 +0100331void mpc8308_init(void)
332{
333 pca9698_direction_output(0x20, 26, 1);
334}
335
Mario Six3809c472019-03-29 10:18:06 +0100336void mpc8308_set_fpga_reset(uint state)
Dirk Eibachb355f172015-10-28 11:46:32 +0100337{
338 pca9698_set_value(0x20, 26, state ? 0 : 1);
339}
340
341void mpc8308_setup_hw(void)
342{
343 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
344
345 /*
346 * set "startup-finished"-gpios
347 */
Mario Six3809c472019-03-29 10:18:06 +0100348 setbits_be32(&immr->gpio[0].dir, BIT(31 - 11) | BIT(31 - 12));
Mario Sixae0feaa2019-03-29 10:18:07 +0100349 setbits_gpio0_out(BIT(31 - 12));
Dirk Eibachb355f172015-10-28 11:46:32 +0100350}
351
Mario Six3809c472019-03-29 10:18:06 +0100352int mpc8308_get_fpga_done(uint fpga)
Dirk Eibachb355f172015-10-28 11:46:32 +0100353{
354 return pca9698_get_value(0x20, 20);
355}
356
357#ifdef CONFIG_FSL_ESDHC
358int board_mmc_init(bd_t *bd)
359{
360 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
361 sysconf83xx_t *sysconf = &immr->sysconf;
362
363 /* Enable cache snooping in eSDHC system configuration register */
364 out_be32(&sysconf->sdhccr, 0x02000000);
365
366 return fsl_esdhc_mmc_init(bd);
367}
368#endif
369
370static struct pci_region pcie_regions_0[] = {
371 {
372 .bus_start = CONFIG_SYS_PCIE1_MEM_BASE,
373 .phys_start = CONFIG_SYS_PCIE1_MEM_PHYS,
374 .size = CONFIG_SYS_PCIE1_MEM_SIZE,
375 .flags = PCI_REGION_MEM,
376 },
377 {
378 .bus_start = CONFIG_SYS_PCIE1_IO_BASE,
379 .phys_start = CONFIG_SYS_PCIE1_IO_PHYS,
380 .size = CONFIG_SYS_PCIE1_IO_SIZE,
381 .flags = PCI_REGION_IO,
382 },
383};
384
385void pci_init_board(void)
386{
387 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
388 sysconf83xx_t *sysconf = &immr->sysconf;
389 law83xx_t *pcie_law = sysconf->pcielaw;
390 struct pci_region *pcie_reg[] = { pcie_regions_0 };
391
392 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_PEX,
393 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
394
395 /* Deassert the resets in the control register */
396 out_be32(&sysconf->pecr1, 0xE0008000);
397 udelay(2000);
398
399 /* Configure PCI Express Local Access Windows */
400 out_be32(&pcie_law[0].bar, CONFIG_SYS_PCIE1_BASE & LAWBAR_BAR);
401 out_be32(&pcie_law[0].ar, LBLAWAR_EN | LBLAWAR_512MB);
402
403 mpc83xx_pcie_init(1, pcie_reg);
404}
405
406ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
407{
408 info->portwidth = FLASH_CFI_16BIT;
409 info->chipwidth = FLASH_CFI_BY16;
410 info->interface = FLASH_CFI_X16;
411 return 1;
412}
413
414#if defined(CONFIG_OF_BOARD_SETUP)
415int ft_board_setup(void *blob, bd_t *bd)
416{
417 ft_cpu_setup(blob, bd);
Sriram Dash9fd465c2016-09-16 17:12:15 +0530418 fsl_fdt_fixup_dr_usb(blob, bd);
Dirk Eibachb355f172015-10-28 11:46:32 +0100419 fdt_fixup_esdhc(blob, bd);
420
421 return 0;
422}
423#endif
424
425/*
426 * FPGA MII bitbang implementation
427 */
428
429struct fpga_mii {
Mario Six3809c472019-03-29 10:18:06 +0100430 uint fpga;
Dirk Eibachb355f172015-10-28 11:46:32 +0100431 int mdio;
432} fpga_mii[] = {
433 { 0, 1},
434 { 1, 1},
435 { 2, 1},
436 { 3, 1},
437};
438
439static int mii_dummy_init(struct bb_miiphy_bus *bus)
440{
441 return 0;
442}
443
444static int mii_mdio_active(struct bb_miiphy_bus *bus)
445{
446 struct fpga_mii *fpga_mii = bus->priv;
447
448 if (fpga_mii->mdio)
449 FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDIO);
450 else
451 FPGA_SET_REG(fpga_mii->fpga, gpio.clear, GPIO_MDIO);
452
453 return 0;
454}
455
456static int mii_mdio_tristate(struct bb_miiphy_bus *bus)
457{
458 struct fpga_mii *fpga_mii = bus->priv;
459
460 FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDIO);
461
462 return 0;
463}
464
465static int mii_set_mdio(struct bb_miiphy_bus *bus, int v)
466{
467 struct fpga_mii *fpga_mii = bus->priv;
468
469 if (v)
470 FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDIO);
471 else
472 FPGA_SET_REG(fpga_mii->fpga, gpio.clear, GPIO_MDIO);
473
474 fpga_mii->mdio = v;
475
476 return 0;
477}
478
479static int mii_get_mdio(struct bb_miiphy_bus *bus, int *v)
480{
481 u16 gpio;
482 struct fpga_mii *fpga_mii = bus->priv;
483
484 FPGA_GET_REG(fpga_mii->fpga, gpio.read, &gpio);
485
486 *v = ((gpio & GPIO_MDIO) != 0);
487
488 return 0;
489}
490
491static int mii_set_mdc(struct bb_miiphy_bus *bus, int v)
492{
493 struct fpga_mii *fpga_mii = bus->priv;
494
495 if (v)
496 FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDC);
497 else
498 FPGA_SET_REG(fpga_mii->fpga, gpio.clear, GPIO_MDC);
499
500 return 0;
501}
502
503static int mii_delay(struct bb_miiphy_bus *bus)
504{
505 udelay(1);
506
507 return 0;
508}
509
510struct bb_miiphy_bus bb_miiphy_buses[] = {
511 {
512 .name = "board0",
513 .init = mii_dummy_init,
514 .mdio_active = mii_mdio_active,
515 .mdio_tristate = mii_mdio_tristate,
516 .set_mdio = mii_set_mdio,
517 .get_mdio = mii_get_mdio,
518 .set_mdc = mii_set_mdc,
519 .delay = mii_delay,
520 .priv = &fpga_mii[0],
521 },
522 {
523 .name = "board1",
524 .init = mii_dummy_init,
525 .mdio_active = mii_mdio_active,
526 .mdio_tristate = mii_mdio_tristate,
527 .set_mdio = mii_set_mdio,
528 .get_mdio = mii_get_mdio,
529 .set_mdc = mii_set_mdc,
530 .delay = mii_delay,
531 .priv = &fpga_mii[1],
532 },
533 {
534 .name = "board2",
535 .init = mii_dummy_init,
536 .mdio_active = mii_mdio_active,
537 .mdio_tristate = mii_mdio_tristate,
538 .set_mdio = mii_set_mdio,
539 .get_mdio = mii_get_mdio,
540 .set_mdc = mii_set_mdc,
541 .delay = mii_delay,
542 .priv = &fpga_mii[2],
543 },
544 {
545 .name = "board3",
546 .init = mii_dummy_init,
547 .mdio_active = mii_mdio_active,
548 .mdio_tristate = mii_mdio_tristate,
549 .set_mdio = mii_set_mdio,
550 .get_mdio = mii_get_mdio,
551 .set_mdc = mii_set_mdc,
552 .delay = mii_delay,
553 .priv = &fpga_mii[3],
554 },
555};
556
Mario Six3809c472019-03-29 10:18:06 +0100557int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);