Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 2 | /* |
Kumar Gala | d0f27d3 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 3 | * Copyright 2007,2009-2010 Freescale Semiconductor, Inc. |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <command.h> |
Simon Glass | 18afe10 | 2019-11-14 12:57:47 -0700 | [diff] [blame] | 8 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 9 | #include <net.h> |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 10 | #include <pci.h> |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 11 | #include <asm/processor.h> |
Kumar Gala | 573ad30 | 2008-08-26 08:02:30 -0500 | [diff] [blame] | 12 | #include <asm/mmu.h> |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 13 | #include <asm/immap_85xx.h> |
Kumar Gala | 9bbd643 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 14 | #include <asm/fsl_pci.h> |
York Sun | f062659 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 15 | #include <fsl_ddr_sdram.h> |
Kumar Gala | 3d02038 | 2010-12-15 04:55:20 -0600 | [diff] [blame] | 16 | #include <asm/fsl_serdes.h> |
Kumar Gala | e1e870a | 2007-08-30 16:18:18 -0500 | [diff] [blame] | 17 | #include <asm/io.h> |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 18 | #include <miiphy.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 19 | #include <linux/libfdt.h> |
Kumar Gala | 67b349b | 2007-11-26 17:12:24 -0600 | [diff] [blame] | 20 | #include <fdt_support.h> |
Andy Fleming | 422effd | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 21 | #include <fsl_mdio.h> |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 22 | #include <tsec.h> |
Ben Warren | 65b8623 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 23 | #include <netdev.h> |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 24 | |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 25 | #include "../common/sgmii_riser.h" |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 26 | |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 27 | int checkboard (void) |
| 28 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 29 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Becky Bruce | 0d4cee1 | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 30 | volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 31 | volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); |
Kumar Gala | e21db03 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 32 | u8 vboot; |
| 33 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 34 | |
Wolfgang Denk | 58c495b | 2007-05-05 18:23:11 +0200 | [diff] [blame] | 35 | if ((uint)&gur->porpllsr != 0xe00e0000) { |
Wolfgang Denk | 12cec0a | 2008-07-11 01:16:00 +0200 | [diff] [blame] | 36 | printf("immap size error %lx\n",(ulong)&gur->porpllsr); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 37 | } |
Kumar Gala | e21db03 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 38 | printf ("Board: MPC8544DS, Sys ID: 0x%02x, " |
| 39 | "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", |
| 40 | in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), |
| 41 | in_8(pixis_base + PIXIS_PVER)); |
| 42 | |
| 43 | vboot = in_8(pixis_base + PIXIS_VBOOT); |
| 44 | if (vboot & PIXIS_VBOOT_FMAP) |
| 45 | printf ("vBank: %d\n", ((vboot & PIXIS_VBOOT_FBANK) >> 6)); |
| 46 | else |
| 47 | puts ("Promjet\n"); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 48 | |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 49 | lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */ |
| 50 | lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */ |
| 51 | ecm->eedr = 0xffffffff; /* Clear ecm errors */ |
| 52 | ecm->eeer = 0xffffffff; /* Enable ecm errors */ |
| 53 | |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 54 | return 0; |
| 55 | } |
| 56 | |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 57 | #ifdef CONFIG_PCI1 |
| 58 | static struct pci_controller pci1_hose; |
| 59 | #endif |
| 60 | |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 61 | #ifdef CONFIG_PCIE3 |
| 62 | static struct pci_controller pcie3_hose; |
| 63 | #endif |
| 64 | |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 65 | void pci_init_board(void) |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 66 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 67 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 68 | struct fsl_pci_info pci_info; |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 69 | u32 devdisr, pordevsr, io_sel; |
| 70 | u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel; |
| 71 | int first_free_busno = 0; |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 72 | |
| 73 | int pcie_ep, pcie_configured; |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 74 | |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 75 | devdisr = in_be32(&gur->devdisr); |
| 76 | pordevsr = in_be32(&gur->pordevsr); |
| 77 | porpllsr = in_be32(&gur->porpllsr); |
| 78 | io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19; |
| 79 | |
| 80 | debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 81 | |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 82 | puts("\n"); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 83 | |
| 84 | #ifdef CONFIG_PCIE3 |
Kumar Gala | 3d02038 | 2010-12-15 04:55:20 -0600 | [diff] [blame] | 85 | pcie_configured = is_serdes_configured(PCIE3); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 86 | |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 87 | if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE3)){ |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 88 | /* contains both PCIE3 MEM & IO space */ |
| 89 | set_next_law(CONFIG_SYS_PCIE3_MEM_PHYS, LAW_SIZE_4M, |
| 90 | LAW_TRGT_IF_PCIE_3); |
| 91 | SET_STD_PCIE_INFO(pci_info, 3); |
| 92 | pcie_ep = fsl_setup_hose(&pcie3_hose, pci_info.regs); |
| 93 | |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 94 | /* outbound memory */ |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 95 | pci_set_region(&pcie3_hose.regions[0], |
Kumar Gala | 3fe8087 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 96 | CONFIG_SYS_PCIE3_MEM_BUS2, |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 97 | CONFIG_SYS_PCIE3_MEM_PHYS2, |
| 98 | CONFIG_SYS_PCIE3_MEM_SIZE2, |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 99 | PCI_REGION_MEM); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 100 | |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 101 | pcie3_hose.region_count = 1; |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 102 | |
Peter Tyser | 2b91f71 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 103 | printf("PCIE3: connected to ULI as %s (base addr %lx)\n", |
| 104 | pcie_ep ? "Endpoint" : "Root Complex", |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 105 | pci_info.regs); |
| 106 | first_free_busno = fsl_pci_init_port(&pci_info, |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 107 | &pcie3_hose, first_free_busno); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 108 | |
Kumar Gala | e1e870a | 2007-08-30 16:18:18 -0500 | [diff] [blame] | 109 | /* |
| 110 | * Activate ULI1575 legacy chip by performing a fake |
| 111 | * memory access. Needed to make ULI RTC work. |
| 112 | */ |
Kumar Gala | 3fe8087 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 113 | in_be32((u32 *)CONFIG_SYS_PCIE3_MEM_BUS); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 114 | } else { |
Peter Tyser | 2b91f71 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 115 | printf("PCIE3: disabled\n"); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 116 | } |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 117 | puts("\n"); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 118 | #else |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 119 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE3); /* disable */ |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 120 | #endif |
| 121 | |
| 122 | #ifdef CONFIG_PCIE1 |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 123 | SET_STD_PCIE_INFO(pci_info, 1); |
| 124 | first_free_busno = fsl_pcie_init_ctrl(first_free_busno, devdisr, PCIE1, &pci_info); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 125 | #else |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 126 | setbits_be32(&gur->devdisr, _DEVDISR_PCIE1); /* disable */ |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 127 | #endif |
| 128 | |
| 129 | #ifdef CONFIG_PCIE2 |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 130 | SET_STD_PCIE_INFO(pci_info, 2); |
| 131 | first_free_busno = fsl_pcie_init_ctrl(first_free_busno, devdisr, PCIE2, &pci_info); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 132 | #else |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 133 | setbits_be32(&gur->devdisr, _DEVDISR_PCIE2); /* disable */ |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 134 | #endif |
| 135 | |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 136 | #ifdef CONFIG_PCI1 |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 137 | pci_speed = 66666000; |
| 138 | pci_32 = 1; |
| 139 | pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; |
| 140 | pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 141 | |
| 142 | if (!(devdisr & MPC85xx_DEVDISR_PCI1)) { |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 143 | SET_STD_PCI_INFO(pci_info, 1); |
| 144 | set_next_law(pci_info.mem_phys, |
| 145 | law_size_bits(pci_info.mem_size), pci_info.law); |
| 146 | set_next_law(pci_info.io_phys, |
| 147 | law_size_bits(pci_info.io_size), pci_info.law); |
| 148 | |
| 149 | pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs); |
Peter Tyser | 2b91f71 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 150 | printf("PCI: %d bit, %s MHz, %s, %s, %s (base address %lx)\n", |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 151 | (pci_32) ? 32 : 64, |
| 152 | (pci_speed == 33333000) ? "33" : |
| 153 | (pci_speed == 66666000) ? "66" : "unknown", |
| 154 | pci_clk_sel ? "sync" : "async", |
| 155 | pci_agent ? "agent" : "host", |
| 156 | pci_arb ? "arbiter" : "external-arbiter", |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 157 | pci_info.regs); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 158 | |
Kumar Gala | cc46bc7 | 2010-12-17 06:01:24 -0600 | [diff] [blame] | 159 | first_free_busno = fsl_pci_init_port(&pci_info, |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 160 | &pci1_hose, first_free_busno); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 161 | } else { |
Peter Tyser | 2b91f71 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 162 | printf("PCI: disabled\n"); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 163 | } |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 164 | |
| 165 | puts("\n"); |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 166 | #else |
Kumar Gala | 949ea66 | 2009-11-04 10:22:26 -0600 | [diff] [blame] | 167 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */ |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 168 | #endif |
Ed Swarthout | 52b9852 | 2007-07-27 01:50:51 -0500 | [diff] [blame] | 169 | } |
| 170 | |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 171 | int last_stage_init(void) |
| 172 | { |
| 173 | return 0; |
| 174 | } |
| 175 | |
| 176 | |
| 177 | unsigned long |
| 178 | get_board_sys_clk(ulong dummy) |
| 179 | { |
| 180 | u8 i, go_bit, rd_clks; |
| 181 | ulong val = 0; |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 182 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 183 | |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 184 | go_bit = in_8(pixis_base + PIXIS_VCTL); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 185 | go_bit &= 0x01; |
| 186 | |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 187 | rd_clks = in_8(pixis_base + PIXIS_VCFGEN0); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 188 | rd_clks &= 0x1C; |
| 189 | |
| 190 | /* |
| 191 | * Only if both go bit and the SCLK bit in VCFGEN0 are set |
| 192 | * should we be using the AUX register. Remember, we also set the |
| 193 | * GO bit to boot from the alternate bank on the on-board flash |
| 194 | */ |
| 195 | |
| 196 | if (go_bit) { |
| 197 | if (rd_clks == 0x1c) |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 198 | i = in_8(pixis_base + PIXIS_AUX); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 199 | else |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 200 | i = in_8(pixis_base + PIXIS_SPD); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 201 | } else { |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 202 | i = in_8(pixis_base + PIXIS_SPD); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | i &= 0x07; |
| 206 | |
| 207 | switch (i) { |
| 208 | case 0: |
| 209 | val = 33333333; |
| 210 | break; |
| 211 | case 1: |
| 212 | val = 40000000; |
| 213 | break; |
| 214 | case 2: |
| 215 | val = 50000000; |
| 216 | break; |
| 217 | case 3: |
| 218 | val = 66666666; |
| 219 | break; |
| 220 | case 4: |
| 221 | val = 83000000; |
| 222 | break; |
| 223 | case 5: |
| 224 | val = 100000000; |
| 225 | break; |
| 226 | case 6: |
| 227 | val = 133333333; |
| 228 | break; |
| 229 | case 7: |
| 230 | val = 166666666; |
| 231 | break; |
| 232 | } |
| 233 | |
| 234 | return val; |
| 235 | } |
| 236 | |
Andy Fleming | 422effd | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 237 | |
| 238 | #define MIIM_CIS8204_SLED_CON 0x1b |
| 239 | #define MIIM_CIS8204_SLEDCON_INIT 0x1115 |
| 240 | /* |
| 241 | * Hack to write all 4 PHYs with the LED values |
| 242 | */ |
| 243 | int board_phy_config(struct phy_device *phydev) |
| 244 | { |
| 245 | static int do_once; |
| 246 | uint phyid; |
| 247 | struct mii_dev *bus = phydev->bus; |
| 248 | |
Troy Kisky | 8584641 | 2012-02-07 14:08:49 +0000 | [diff] [blame] | 249 | if (phydev->drv->config) |
| 250 | phydev->drv->config(phydev); |
Andy Fleming | 422effd | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 251 | if (do_once) |
| 252 | return 0; |
| 253 | |
| 254 | for (phyid = 0; phyid < 4; phyid++) |
| 255 | bus->write(bus, phyid, MDIO_DEVAD_NONE, MIIM_CIS8204_SLED_CON, |
| 256 | MIIM_CIS8204_SLEDCON_INIT); |
| 257 | |
| 258 | do_once = 1; |
| 259 | |
| 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame^] | 264 | int board_eth_init(struct bd_info *bis) |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 265 | { |
Ben Warren | 65b8623 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 266 | #ifdef CONFIG_TSEC_ENET |
Andy Fleming | 422effd | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 267 | struct fsl_pq_mdio_info mdio_info; |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 268 | struct tsec_info_struct tsec_info[2]; |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 269 | int num = 0; |
| 270 | |
| 271 | #ifdef CONFIG_TSEC1 |
| 272 | SET_STD_TSEC_INFO(tsec_info[num], 1); |
Kumar Gala | e6dc484 | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 273 | if (is_serdes_configured(SGMII_TSEC1)) { |
| 274 | puts("eTSEC1 is in sgmii mode.\n"); |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 275 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | e6dc484 | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 276 | } |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 277 | num++; |
| 278 | #endif |
| 279 | #ifdef CONFIG_TSEC3 |
| 280 | SET_STD_TSEC_INFO(tsec_info[num], 3); |
Kumar Gala | e6dc484 | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 281 | if (is_serdes_configured(SGMII_TSEC3)) { |
| 282 | puts("eTSEC3 is in sgmii mode.\n"); |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 283 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | e6dc484 | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 284 | } |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 285 | num++; |
| 286 | #endif |
| 287 | |
| 288 | if (!num) { |
| 289 | printf("No TSECs initialized\n"); |
| 290 | |
| 291 | return 0; |
| 292 | } |
| 293 | |
Kumar Gala | e6dc484 | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 294 | if (is_serdes_configured(SGMII_TSEC1) || |
| 295 | is_serdes_configured(SGMII_TSEC3)) { |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 296 | fsl_sgmii_riser_init(tsec_info, num); |
Kumar Gala | e6dc484 | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 297 | } |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 298 | |
Andy Fleming | 422effd | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 299 | mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR; |
| 300 | mdio_info.name = DEFAULT_MII_NAME; |
| 301 | fsl_pq_mdio_init(bis, &mdio_info); |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 302 | |
| 303 | tsec_eth_init(bis, tsec_info, num); |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 304 | #endif |
Ben Warren | 65b8623 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 305 | return pci_eth_init(bis); |
| 306 | } |
Andy Fleming | afcf776 | 2008-08-31 16:33:29 -0500 | [diff] [blame] | 307 | |
Kumar Gala | 67b349b | 2007-11-26 17:12:24 -0600 | [diff] [blame] | 308 | #if defined(CONFIG_OF_BOARD_SETUP) |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame^] | 309 | int ft_board_setup(void *blob, struct bd_info *bd) |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 310 | { |
Wolfgang Denk | 58c495b | 2007-05-05 18:23:11 +0200 | [diff] [blame] | 311 | ft_cpu_setup(blob, bd); |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 312 | |
Kumar Gala | d0f27d3 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 313 | FT_FSL_PCI_SETUP; |
Kumar Gala | c10a0c4 | 2008-10-21 08:28:33 -0500 | [diff] [blame] | 314 | |
Andy Fleming | acaccae | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 315 | #ifdef CONFIG_FSL_SGMII_RISER |
| 316 | fsl_sgmii_riser_fdt_fixup(blob); |
| 317 | #endif |
Simon Glass | 2aec3cc | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 318 | |
| 319 | return 0; |
Jon Loeliger | 0553fc0 | 2007-04-11 16:51:02 -0500 | [diff] [blame] | 320 | } |
| 321 | #endif |