rename symbol: CONFIG_KIRKWOOD -> CONFIG_ARCH_KIRKWOOD
[oweals/u-boot.git] / board / gdsys / mpc8308 / hrcon.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2014
4  * Dirk Eibach,  Guntermann & Drunck GmbH, dirk.eibach@gdsys.cc
5  */
6
7 #include <common.h>
8 #include <env.h>
9 #include <hwconfig.h>
10 #include <i2c.h>
11 #include <init.h>
12 #include <spi.h>
13 #include <linux/libfdt.h>
14 #include <fdt_support.h>
15 #include <pci.h>
16 #include <mpc83xx.h>
17 #include <fsl_esdhc.h>
18 #include <asm/io.h>
19 #include <asm/fsl_serdes.h>
20 #include <asm/fsl_mpc83xx_serdes.h>
21
22 #include "mpc8308.h"
23
24 #include <gdsys_fpga.h>
25
26 #include "../common/ioep-fpga.h"
27 #include "../common/osd.h"
28 #include "../common/mclink.h"
29 #include "../common/phy.h"
30 #include "../common/fanctrl.h"
31
32 #include <pca953x.h>
33 #include <pca9698.h>
34
35 #include <miiphy.h>
36
37 #define MAX_MUX_CHANNELS 2
38
39 enum {
40         MCFPGA_DONE = BIT(0),
41         MCFPGA_INIT_N = BIT(1),
42         MCFPGA_PROGRAM_N = BIT(2),
43         MCFPGA_UPDATE_ENABLE_N = BIT(3),
44         MCFPGA_RESET_N = BIT(4),
45 };
46
47 enum {
48         GPIO_MDC = 1 << 14,
49         GPIO_MDIO = 1 << 15,
50 };
51
52 uint mclink_fpgacount;
53 struct ihs_fpga *fpga_ptr[] = CONFIG_SYS_FPGA_PTR;
54
55 struct {
56         u8 bus;
57         u8 addr;
58 } hrcon_fans[] = CONFIG_HRCON_FANS;
59
60 int fpga_set_reg(u32 fpga, u16 *reg, off_t regoff, u16 data)
61 {
62         int res;
63
64         switch (fpga) {
65         case 0:
66                 out_le16(reg, data);
67                 break;
68         default:
69                 res = mclink_send(fpga - 1, regoff, data);
70                 if (res < 0) {
71                         printf("mclink_send reg %02lx data %04x returned %d\n",
72                                regoff, data, res);
73                         return res;
74                 }
75                 break;
76         }
77
78         return 0;
79 }
80
81 int fpga_get_reg(u32 fpga, u16 *reg, off_t regoff, u16 *data)
82 {
83         int res;
84
85         switch (fpga) {
86         case 0:
87                 *data = in_le16(reg);
88                 break;
89         default:
90                 if (fpga > mclink_fpgacount)
91                         return -EINVAL;
92                 res = mclink_receive(fpga - 1, regoff, data);
93                 if (res < 0) {
94                         printf("mclink_receive reg %02lx returned %d\n",
95                                regoff, res);
96                         return res;
97                 }
98         }
99
100         return 0;
101 }
102
103 int checkboard(void)
104 {
105         char *s = env_get("serial#");
106         bool hw_type_cat = pca9698_get_value(0x20, 20);
107
108         puts("Board: ");
109
110         printf("HRCon %s", hw_type_cat ? "CAT" : "Fiber");
111
112         if (s) {
113                 puts(", serial# ");
114                 puts(s);
115         }
116
117         puts("\n");
118
119         return 0;
120 }
121
122 int last_stage_init(void)
123 {
124         int slaves;
125         uint k;
126         uchar mclink_controllers[] = { 0x3c, 0x3d, 0x3e };
127         u16 fpga_features;
128         bool hw_type_cat = pca9698_get_value(0x20, 20);
129         bool ch0_rgmii2_present;
130
131         FPGA_GET_REG(0, fpga_features, &fpga_features);
132
133         /* Turn on Parade DP501 */
134         pca9698_direction_output(0x20, 10, 1);
135         pca9698_direction_output(0x20, 11, 1);
136
137         ch0_rgmii2_present = !pca9698_get_value(0x20, 30);
138
139         /* wait for FPGA done, then reset FPGA */
140         for (k = 0; k < ARRAY_SIZE(mclink_controllers); ++k) {
141                 uint ctr = 0;
142
143                 if (i2c_probe(mclink_controllers[k]))
144                         continue;
145
146                 while (!(pca953x_get_val(mclink_controllers[k])
147                        & MCFPGA_DONE)) {
148                         mdelay(100);
149                         if (ctr++ > 5) {
150                                 printf("no done for mclink_controller %u\n", k);
151                                 break;
152                         }
153                 }
154
155                 pca953x_set_dir(mclink_controllers[k], MCFPGA_RESET_N, 0);
156                 pca953x_set_val(mclink_controllers[k], MCFPGA_RESET_N, 0);
157                 udelay(10);
158                 pca953x_set_val(mclink_controllers[k], MCFPGA_RESET_N,
159                                 MCFPGA_RESET_N);
160         }
161
162         if (hw_type_cat) {
163                 uint mux_ch;
164                 int retval;
165                 struct mii_dev *mdiodev = mdio_alloc();
166
167                 if (!mdiodev)
168                         return -ENOMEM;
169                 strncpy(mdiodev->name, bb_miiphy_buses[0].name, MDIO_NAME_LEN);
170                 mdiodev->read = bb_miiphy_read;
171                 mdiodev->write = bb_miiphy_write;
172
173                 retval = mdio_register(mdiodev);
174                 if (retval < 0)
175                         return retval;
176                 for (mux_ch = 0; mux_ch < MAX_MUX_CHANNELS; ++mux_ch) {
177                         if ((mux_ch == 1) && !ch0_rgmii2_present)
178                                 continue;
179
180                         setup_88e1514(bb_miiphy_buses[0].name, mux_ch);
181                 }
182         }
183
184         /* give slave-PLLs and Parade DP501 some time to be up and running */
185         mdelay(500);
186
187         mclink_fpgacount = CONFIG_SYS_MCLINK_MAX;
188         slaves = mclink_probe();
189         mclink_fpgacount = 0;
190
191         ioep_fpga_print_info(0);
192         osd_probe(0);
193 #ifdef CONFIG_SYS_OSD_DH
194         osd_probe(4);
195 #endif
196
197         if (slaves <= 0)
198                 return 0;
199
200         mclink_fpgacount = slaves;
201
202         for (k = 1; k <= slaves; ++k) {
203                 FPGA_GET_REG(k, fpga_features, &fpga_features);
204
205                 ioep_fpga_print_info(k);
206                 osd_probe(k);
207 #ifdef CONFIG_SYS_OSD_DH
208                 osd_probe(k + 4);
209 #endif
210                 if (hw_type_cat) {
211                         int retval;
212                         struct mii_dev *mdiodev = mdio_alloc();
213
214                         if (!mdiodev)
215                                 return -ENOMEM;
216                         strncpy(mdiodev->name, bb_miiphy_buses[k].name,
217                                 MDIO_NAME_LEN);
218                         mdiodev->read = bb_miiphy_read;
219                         mdiodev->write = bb_miiphy_write;
220
221                         retval = mdio_register(mdiodev);
222                         if (retval < 0)
223                                 return retval;
224                         setup_88e1514(bb_miiphy_buses[k].name, 0);
225                 }
226         }
227
228         for (k = 0; k < ARRAY_SIZE(hrcon_fans); ++k) {
229                 i2c_set_bus_num(hrcon_fans[k].bus);
230                 init_fan_controller(hrcon_fans[k].addr);
231         }
232
233         return 0;
234 }
235
236 /*
237  * provide access to fpga gpios and controls (for I2C bitbang)
238  * (these may look all too simple but make iocon.h much more readable)
239  */
240 void fpga_gpio_set(uint bus, int pin)
241 {
242         FPGA_SET_REG(bus >= 4 ? (bus - 4) : bus, gpio.set, pin);
243 }
244
245 void fpga_gpio_clear(uint bus, int pin)
246 {
247         FPGA_SET_REG(bus >= 4 ? (bus - 4) : bus, gpio.clear, pin);
248 }
249
250 int fpga_gpio_get(uint bus, int pin)
251 {
252         u16 val;
253
254         FPGA_GET_REG(bus >= 4 ? (bus - 4) : bus, gpio.read, &val);
255
256         return val & pin;
257 }
258
259 void fpga_control_set(uint bus, int pin)
260 {
261         u16 val;
262
263         FPGA_GET_REG(bus >= 4 ? (bus - 4) : bus, control, &val);
264         FPGA_SET_REG(bus >= 4 ? (bus - 4) : bus, control, val | pin);
265 }
266
267 void fpga_control_clear(uint bus, int pin)
268 {
269         u16 val;
270
271         FPGA_GET_REG(bus >= 4 ? (bus - 4) : bus, control, &val);
272         FPGA_SET_REG(bus >= 4 ? (bus - 4) : bus, control, val & ~pin);
273 }
274
275 void mpc8308_init(void)
276 {
277         pca9698_direction_output(0x20, 4, 1);
278 }
279
280 void mpc8308_set_fpga_reset(uint state)
281 {
282         pca9698_set_value(0x20, 4, state ? 0 : 1);
283 }
284
285 void mpc8308_setup_hw(void)
286 {
287         immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
288
289         /*
290          * set "startup-finished"-gpios
291          */
292         setbits_be32(&immr->gpio[0].dir, BIT(31 - 11) | BIT(31 - 12));
293         setbits_gpio0_out(BIT(31 - 12));
294 }
295
296 int mpc8308_get_fpga_done(uint fpga)
297 {
298         return pca9698_get_value(0x20, 19);
299 }
300
301 #ifdef CONFIG_FSL_ESDHC
302 int board_mmc_init(bd_t *bd)
303 {
304         immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
305         sysconf83xx_t *sysconf = &immr->sysconf;
306
307         /* Enable cache snooping in eSDHC system configuration register */
308         out_be32(&sysconf->sdhccr, 0x02000000);
309
310         return fsl_esdhc_mmc_init(bd);
311 }
312 #endif
313
314 static struct pci_region pcie_regions_0[] = {
315         {
316                 .bus_start = CONFIG_SYS_PCIE1_MEM_BASE,
317                 .phys_start = CONFIG_SYS_PCIE1_MEM_PHYS,
318                 .size = CONFIG_SYS_PCIE1_MEM_SIZE,
319                 .flags = PCI_REGION_MEM,
320         },
321         {
322                 .bus_start = CONFIG_SYS_PCIE1_IO_BASE,
323                 .phys_start = CONFIG_SYS_PCIE1_IO_PHYS,
324                 .size = CONFIG_SYS_PCIE1_IO_SIZE,
325                 .flags = PCI_REGION_IO,
326         },
327 };
328
329 void pci_init_board(void)
330 {
331         immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
332         sysconf83xx_t *sysconf = &immr->sysconf;
333         law83xx_t *pcie_law = sysconf->pcielaw;
334         struct pci_region *pcie_reg[] = { pcie_regions_0 };
335
336         fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_PEX,
337                          FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
338
339         /* Deassert the resets in the control register */
340         out_be32(&sysconf->pecr1, 0xE0008000);
341         udelay(2000);
342
343         /* Configure PCI Express Local Access Windows */
344         out_be32(&pcie_law[0].bar, CONFIG_SYS_PCIE1_BASE & LAWBAR_BAR);
345         out_be32(&pcie_law[0].ar, LBLAWAR_EN | LBLAWAR_512MB);
346
347         mpc83xx_pcie_init(1, pcie_reg);
348 }
349
350 ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
351 {
352         info->portwidth = FLASH_CFI_16BIT;
353         info->chipwidth = FLASH_CFI_BY16;
354         info->interface = FLASH_CFI_X16;
355         return 1;
356 }
357
358 #if defined(CONFIG_OF_BOARD_SETUP)
359 int ft_board_setup(void *blob, bd_t *bd)
360 {
361         ft_cpu_setup(blob, bd);
362         fsl_fdt_fixup_dr_usb(blob, bd);
363         fdt_fixup_esdhc(blob, bd);
364
365         return 0;
366 }
367 #endif
368
369 /*
370  * FPGA MII bitbang implementation
371  */
372
373 struct fpga_mii {
374         uint fpga;
375         int mdio;
376 } fpga_mii[] = {
377         { 0, 1},
378         { 1, 1},
379         { 2, 1},
380         { 3, 1},
381 };
382
383 static int mii_dummy_init(struct bb_miiphy_bus *bus)
384 {
385         return 0;
386 }
387
388 static int mii_mdio_active(struct bb_miiphy_bus *bus)
389 {
390         struct fpga_mii *fpga_mii = bus->priv;
391
392         if (fpga_mii->mdio)
393                 FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDIO);
394         else
395                 FPGA_SET_REG(fpga_mii->fpga, gpio.clear, GPIO_MDIO);
396
397         return 0;
398 }
399
400 static int mii_mdio_tristate(struct bb_miiphy_bus *bus)
401 {
402         struct fpga_mii *fpga_mii = bus->priv;
403
404         FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDIO);
405
406         return 0;
407 }
408
409 static int mii_set_mdio(struct bb_miiphy_bus *bus, int v)
410 {
411         struct fpga_mii *fpga_mii = bus->priv;
412
413         if (v)
414                 FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDIO);
415         else
416                 FPGA_SET_REG(fpga_mii->fpga, gpio.clear, GPIO_MDIO);
417
418         fpga_mii->mdio = v;
419
420         return 0;
421 }
422
423 static int mii_get_mdio(struct bb_miiphy_bus *bus, int *v)
424 {
425         u16 gpio;
426         struct fpga_mii *fpga_mii = bus->priv;
427
428         FPGA_GET_REG(fpga_mii->fpga, gpio.read, &gpio);
429
430         *v = ((gpio & GPIO_MDIO) != 0);
431
432         return 0;
433 }
434
435 static int mii_set_mdc(struct bb_miiphy_bus *bus, int v)
436 {
437         struct fpga_mii *fpga_mii = bus->priv;
438
439         if (v)
440                 FPGA_SET_REG(fpga_mii->fpga, gpio.set, GPIO_MDC);
441         else
442                 FPGA_SET_REG(fpga_mii->fpga, gpio.clear, GPIO_MDC);
443
444         return 0;
445 }
446
447 static int mii_delay(struct bb_miiphy_bus *bus)
448 {
449         udelay(1);
450
451         return 0;
452 }
453
454 struct bb_miiphy_bus bb_miiphy_buses[] = {
455         {
456                 .name = "board0",
457                 .init = mii_dummy_init,
458                 .mdio_active = mii_mdio_active,
459                 .mdio_tristate = mii_mdio_tristate,
460                 .set_mdio = mii_set_mdio,
461                 .get_mdio = mii_get_mdio,
462                 .set_mdc = mii_set_mdc,
463                 .delay = mii_delay,
464                 .priv = &fpga_mii[0],
465         },
466         {
467                 .name = "board1",
468                 .init = mii_dummy_init,
469                 .mdio_active = mii_mdio_active,
470                 .mdio_tristate = mii_mdio_tristate,
471                 .set_mdio = mii_set_mdio,
472                 .get_mdio = mii_get_mdio,
473                 .set_mdc = mii_set_mdc,
474                 .delay = mii_delay,
475                 .priv = &fpga_mii[1],
476         },
477         {
478                 .name = "board2",
479                 .init = mii_dummy_init,
480                 .mdio_active = mii_mdio_active,
481                 .mdio_tristate = mii_mdio_tristate,
482                 .set_mdio = mii_set_mdio,
483                 .get_mdio = mii_get_mdio,
484                 .set_mdc = mii_set_mdc,
485                 .delay = mii_delay,
486                 .priv = &fpga_mii[2],
487         },
488         {
489                 .name = "board3",
490                 .init = mii_dummy_init,
491                 .mdio_active = mii_mdio_active,
492                 .mdio_tristate = mii_mdio_tristate,
493                 .set_mdio = mii_set_mdio,
494                 .get_mdio = mii_get_mdio,
495                 .set_mdc = mii_set_mdc,
496                 .delay = mii_delay,
497                 .priv = &fpga_mii[3],
498         },
499 };
500
501 int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);