Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 2 | /* |
Zhao Chenhui | 2436cb1 | 2011-08-24 13:20:04 +0800 | [diff] [blame] | 3 | * Copyright 2004, 2007, 2009-2011 Freescale Semiconductor, Inc. |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 4 | * |
| 5 | * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com> |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 18afe10 | 2019-11-14 12:57:47 -0700 | [diff] [blame] | 9 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 10 | #include <net.h> |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 11 | #include <pci.h> |
Simon Glass | f5c208d | 2019-11-14 12:57:20 -0700 | [diff] [blame] | 12 | #include <vsprintf.h> |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 13 | #include <asm/processor.h> |
Jon Loeliger | c378bae | 2008-03-18 13:51:06 -0500 | [diff] [blame] | 14 | #include <asm/mmu.h> |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 15 | #include <asm/immap_85xx.h> |
Kumar Gala | 9bbd643 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 16 | #include <asm/fsl_pci.h> |
York Sun | f062659 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 17 | #include <fsl_ddr_sdram.h> |
Kumar Gala | 3d02038 | 2010-12-15 04:55:20 -0600 | [diff] [blame] | 18 | #include <asm/fsl_serdes.h> |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 19 | #include <miiphy.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 20 | #include <linux/delay.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 21 | #include <linux/libfdt.h> |
Kumar Gala | d28ced3 | 2007-11-29 00:11:44 -0600 | [diff] [blame] | 22 | #include <fdt_support.h> |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 23 | #include <tsec.h> |
| 24 | #include <fsl_mdio.h> |
| 25 | #include <netdev.h> |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 26 | |
| 27 | #include "../common/cadmus.h" |
| 28 | #include "../common/eeprom.h" |
Matthew McClintock | aa6dd06 | 2006-06-28 10:46:13 -0500 | [diff] [blame] | 29 | #include "../common/via.h" |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 30 | |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 31 | void local_bus_init(void); |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 32 | |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 33 | int checkboard (void) |
| 34 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 35 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 36 | volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 37 | |
| 38 | /* PCI slot in USER bits CSR[6:7] by convention. */ |
| 39 | uint pci_slot = get_pci_slot (); |
| 40 | |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 41 | uint cpu_board_rev = get_cpu_board_revision (); |
| 42 | |
chenhui zhao | e97171e | 2011-10-13 13:40:59 +0800 | [diff] [blame] | 43 | puts("Board: MPC8548CDS"); |
| 44 | printf(" Carrier Rev: 0x%02x, PCI Slot %d\n", |
| 45 | get_board_version(), pci_slot); |
| 46 | printf(" Daughtercard Rev: %d.%d (0x%04x)\n", |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 47 | MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev), |
| 48 | MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev); |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 49 | /* |
| 50 | * Initialize local bus. |
| 51 | */ |
| 52 | local_bus_init (); |
| 53 | |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 54 | /* |
| 55 | * Hack TSEC 3 and 4 IO voltages. |
| 56 | */ |
| 57 | gur->tsec34ioovcr = 0xe7e0; /* 1110 0111 1110 0xxx */ |
| 58 | |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 59 | ecm->eedr = 0xffffffff; /* clear ecm errors */ |
| 60 | ecm->eeer = 0xffffffff; /* enable ecm errors */ |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 61 | return 0; |
| 62 | } |
| 63 | |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 64 | /* |
| 65 | * Initialize Local Bus |
| 66 | */ |
| 67 | void |
| 68 | local_bus_init(void) |
| 69 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 70 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Becky Bruce | 0d4cee1 | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 71 | volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 72 | |
| 73 | uint clkdiv; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 74 | sys_info_t sysinfo; |
| 75 | |
| 76 | get_sys_info(&sysinfo); |
Trent Piepho | 1b560ac | 2008-12-03 15:16:34 -0800 | [diff] [blame] | 77 | clkdiv = (lbc->lcrr & LCRR_CLKDIV) * 2; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 78 | |
| 79 | gur->lbiuiplldcr1 = 0x00078080; |
| 80 | if (clkdiv == 16) { |
| 81 | gur->lbiuiplldcr0 = 0x7c0f1bf0; |
| 82 | } else if (clkdiv == 8) { |
| 83 | gur->lbiuiplldcr0 = 0x6c0f1bf0; |
| 84 | } else if (clkdiv == 4) { |
| 85 | gur->lbiuiplldcr0 = 0x5c0f1bf0; |
| 86 | } |
| 87 | |
| 88 | lbc->lcrr |= 0x00030000; |
| 89 | |
| 90 | asm("sync;isync;msync"); |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 91 | |
| 92 | lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */ |
| 93 | lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */ |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Initialize SDRAM memory on the Local Bus. |
| 98 | */ |
Becky Bruce | b88d3d0 | 2010-12-17 17:17:57 -0600 | [diff] [blame] | 99 | void lbc_sdram_init(void) |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 100 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 101 | #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM) |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 102 | |
| 103 | uint idx; |
Becky Bruce | 0d4cee1 | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 104 | volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 106 | uint lsdmr_common; |
| 107 | |
Becky Bruce | 2d8ecac | 2010-12-17 17:17:59 -0600 | [diff] [blame] | 108 | puts("LBC SDRAM: "); |
| 109 | print_size(CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, |
chenhui zhao | 33b53e4 | 2011-09-06 16:41:14 +0000 | [diff] [blame] | 110 | "\n"); |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 111 | |
| 112 | /* |
| 113 | * Setup SDRAM Base and Option Registers |
| 114 | */ |
Becky Bruce | 0d4cee1 | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 115 | set_lbc_or(2, CONFIG_SYS_OR2_PRELIM); |
| 116 | set_lbc_br(2, CONFIG_SYS_BR2_PRELIM); |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 117 | lbc->lbcr = CONFIG_SYS_LBC_LBCR; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 118 | asm("msync"); |
| 119 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 120 | lbc->lsrt = CONFIG_SYS_LBC_LSRT; |
| 121 | lbc->mrtpr = CONFIG_SYS_LBC_MRTPR; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 122 | asm("msync"); |
| 123 | |
| 124 | /* |
| 125 | * MPC8548 uses "new" 15-16 style addressing. |
| 126 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON; |
Kumar Gala | 727c6a6 | 2009-03-26 01:34:38 -0500 | [diff] [blame] | 128 | lsdmr_common |= LSDMR_BSMA1516; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 129 | |
| 130 | /* |
| 131 | * Issue PRECHARGE ALL command. |
| 132 | */ |
Kumar Gala | 727c6a6 | 2009-03-26 01:34:38 -0500 | [diff] [blame] | 133 | lbc->lsdmr = lsdmr_common | LSDMR_OP_PCHALL; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 134 | asm("sync;msync"); |
| 135 | *sdram_addr = 0xff; |
| 136 | ppcDcbf((unsigned long) sdram_addr); |
| 137 | udelay(100); |
| 138 | |
| 139 | /* |
| 140 | * Issue 8 AUTO REFRESH commands. |
| 141 | */ |
| 142 | for (idx = 0; idx < 8; idx++) { |
Kumar Gala | 727c6a6 | 2009-03-26 01:34:38 -0500 | [diff] [blame] | 143 | lbc->lsdmr = lsdmr_common | LSDMR_OP_ARFRSH; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 144 | asm("sync;msync"); |
| 145 | *sdram_addr = 0xff; |
| 146 | ppcDcbf((unsigned long) sdram_addr); |
| 147 | udelay(100); |
| 148 | } |
| 149 | |
| 150 | /* |
| 151 | * Issue 8 MODE-set command. |
| 152 | */ |
Kumar Gala | 727c6a6 | 2009-03-26 01:34:38 -0500 | [diff] [blame] | 153 | lbc->lsdmr = lsdmr_common | LSDMR_OP_MRW; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 154 | asm("sync;msync"); |
| 155 | *sdram_addr = 0xff; |
| 156 | ppcDcbf((unsigned long) sdram_addr); |
| 157 | udelay(100); |
| 158 | |
| 159 | /* |
| 160 | * Issue NORMAL OP command. |
| 161 | */ |
Kumar Gala | 727c6a6 | 2009-03-26 01:34:38 -0500 | [diff] [blame] | 162 | lbc->lsdmr = lsdmr_common | LSDMR_OP_NORMAL; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 163 | asm("sync;msync"); |
| 164 | *sdram_addr = 0xff; |
| 165 | ppcDcbf((unsigned long) sdram_addr); |
| 166 | udelay(200); /* Overkill. Must wait > 200 bus cycles */ |
| 167 | |
| 168 | #endif /* enable SDRAM init */ |
| 169 | } |
| 170 | |
Hou Zhiqiang | 59810bc | 2019-08-27 11:05:12 +0000 | [diff] [blame] | 171 | #if (defined(CONFIG_PCI) || defined(CONFIG_PCI1)) && !defined(CONFIG_DM_PCI) |
Matthew McClintock | aa6dd06 | 2006-06-28 10:46:13 -0500 | [diff] [blame] | 172 | /* For some reason the Tundra PCI bridge shows up on itself as a |
| 173 | * different device. Work around that by refusing to configure it. |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 174 | */ |
Matthew McClintock | aa6dd06 | 2006-06-28 10:46:13 -0500 | [diff] [blame] | 175 | void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { } |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 176 | |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 177 | static struct pci_config_table pci_mpc85xxcds_config_table[] = { |
Matthew McClintock | aa6dd06 | 2006-06-28 10:46:13 -0500 | [diff] [blame] | 178 | {0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}}, |
Randy Vinson | 1dfd6d9 | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 179 | {0x1106, 0x0686, PCI_ANY_ID, 1, VIA_ID, 0, mpc85xx_config_via, {0,0,0}}, |
| 180 | {0x1106, 0x0571, PCI_ANY_ID, 1, VIA_ID, 1, |
Andy Fleming | dcd580b | 2007-02-24 01:08:13 -0600 | [diff] [blame] | 181 | mpc85xx_config_via_usbide, {0,0,0}}, |
Randy Vinson | 1dfd6d9 | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 182 | {0x1105, 0x3038, PCI_ANY_ID, 1, VIA_ID, 2, |
| 183 | mpc85xx_config_via_usb, {0,0,0}}, |
| 184 | {0x1106, 0x3038, PCI_ANY_ID, 1, VIA_ID, 3, |
| 185 | mpc85xx_config_via_usb2, {0,0,0}}, |
| 186 | {0x1106, 0x3058, PCI_ANY_ID, 1, VIA_ID, 5, |
Andy Fleming | dcd580b | 2007-02-24 01:08:13 -0600 | [diff] [blame] | 187 | mpc85xx_config_via_power, {0,0,0}}, |
Randy Vinson | 1dfd6d9 | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 188 | {0x1106, 0x3068, PCI_ANY_ID, 1, VIA_ID, 6, |
| 189 | mpc85xx_config_via_ac97, {0,0,0}}, |
Andy Fleming | dcd580b | 2007-02-24 01:08:13 -0600 | [diff] [blame] | 190 | {}, |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 191 | }; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 192 | |
Zhao Chenhui | 2436cb1 | 2011-08-24 13:20:04 +0800 | [diff] [blame] | 193 | static struct pci_controller pci1_hose; |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 194 | #endif /* CONFIG_PCI */ |
| 195 | |
Hou Zhiqiang | 59810bc | 2019-08-27 11:05:12 +0000 | [diff] [blame] | 196 | #if !defined(CONFIG_DM_PCI) |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 197 | void pci_init_board(void) |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 198 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 199 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | ac79985 | 2010-12-17 10:21:22 -0600 | [diff] [blame] | 200 | struct fsl_pci_info pci_info; |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 201 | u32 devdisr, pordevsr, io_sel; |
| 202 | u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel; |
| 203 | int first_free_busno = 0; |
chenhui zhao | 701a8e4 | 2011-09-15 14:52:34 +0800 | [diff] [blame] | 204 | char buf[32]; |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 205 | |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 206 | devdisr = in_be32(&gur->devdisr); |
| 207 | pordevsr = in_be32(&gur->pordevsr); |
| 208 | porpllsr = in_be32(&gur->porpllsr); |
| 209 | io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19; |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 210 | |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 211 | debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel); |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 212 | |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 213 | #ifdef CONFIG_PCI1 |
| 214 | pci_speed = get_clock_freq (); /* PCI PSPEED in [4:5] */ |
| 215 | pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */ |
| 216 | pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; |
| 217 | pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 218 | |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 219 | if (!(devdisr & MPC85xx_DEVDISR_PCI1)) { |
Kumar Gala | ac79985 | 2010-12-17 10:21:22 -0600 | [diff] [blame] | 220 | SET_STD_PCI_INFO(pci_info, 1); |
| 221 | set_next_law(pci_info.mem_phys, |
| 222 | law_size_bits(pci_info.mem_size), pci_info.law); |
| 223 | set_next_law(pci_info.io_phys, |
| 224 | law_size_bits(pci_info.io_size), pci_info.law); |
| 225 | |
| 226 | pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs); |
chenhui zhao | 33b53e4 | 2011-09-06 16:41:14 +0000 | [diff] [blame] | 227 | printf("PCI1: %d bit, %s MHz, %s, %s, %s (base address %lx)\n", |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 228 | (pci_32) ? 32 : 64, |
chenhui zhao | 701a8e4 | 2011-09-15 14:52:34 +0800 | [diff] [blame] | 229 | strmhz(buf, pci_speed), |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 230 | pci_clk_sel ? "sync" : "async", |
| 231 | pci_agent ? "agent" : "host", |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 232 | pci_arb ? "arbiter" : "external-arbiter", |
Kumar Gala | ac79985 | 2010-12-17 10:21:22 -0600 | [diff] [blame] | 233 | pci_info.regs); |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 234 | |
Zhao Chenhui | 2436cb1 | 2011-08-24 13:20:04 +0800 | [diff] [blame] | 235 | pci1_hose.config_table = pci_mpc85xxcds_config_table; |
Kumar Gala | ac79985 | 2010-12-17 10:21:22 -0600 | [diff] [blame] | 236 | first_free_busno = fsl_pci_init_port(&pci_info, |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 237 | &pci1_hose, first_free_busno); |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 238 | |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 239 | #ifdef CONFIG_PCIX_CHECK |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 240 | if (!(pordevsr & MPC85xx_PORDEVSR_PCI1)) { |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 241 | /* PCI-X init */ |
| 242 | if (CONFIG_SYS_CLK_FREQ < 66000000) |
| 243 | printf("PCI-X will only work at 66 MHz\n"); |
| 244 | |
| 245 | reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ |
| 246 | | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E; |
| 247 | pci_hose_write_config_word(hose, bus, PCIX_COMMAND, reg16); |
| 248 | } |
| 249 | #endif |
| 250 | } else { |
chenhui zhao | 33b53e4 | 2011-09-06 16:41:14 +0000 | [diff] [blame] | 251 | printf("PCI1: disabled\n"); |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 252 | } |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 253 | |
| 254 | puts("\n"); |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 255 | #else |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 256 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */ |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 257 | #endif |
| 258 | |
| 259 | #ifdef CONFIG_PCI2 |
| 260 | { |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 261 | uint pci2_clk_sel = porpllsr & 0x4000; /* PORPLLSR[17] */ |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 262 | uint pci_dual = get_pci_dual (); /* PCI DUAL in CM_PCI[3] */ |
| 263 | if (pci_dual) { |
Peter Tyser | 2b91f71 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 264 | printf("PCI2: 32 bit, 66 MHz, %s\n", |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 265 | pci2_clk_sel ? "sync" : "async"); |
| 266 | } else { |
Peter Tyser | 2b91f71 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 267 | printf("PCI2: disabled\n"); |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 268 | } |
| 269 | } |
| 270 | #else |
Kumar Gala | a737f5a | 2009-11-04 11:15:29 -0600 | [diff] [blame] | 271 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable */ |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 272 | #endif /* CONFIG_PCI2 */ |
| 273 | |
Kumar Gala | ac79985 | 2010-12-17 10:21:22 -0600 | [diff] [blame] | 274 | fsl_pcie_init_board(first_free_busno); |
Jon Loeliger | 77a4f6e | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 275 | } |
Hou Zhiqiang | 59810bc | 2019-08-27 11:05:12 +0000 | [diff] [blame] | 276 | #endif |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 277 | |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 278 | void configure_rgmii(void) |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 279 | { |
Jon Loeliger | 249688a | 2006-10-20 15:54:34 -0500 | [diff] [blame] | 280 | unsigned short temp; |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 281 | |
| 282 | /* Change the resistors for the PHY */ |
| 283 | /* This is needed to get the RGMII working for the 1.3+ |
| 284 | * CDS cards */ |
| 285 | if (get_board_version() == 0x13) { |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 286 | miiphy_write(DEFAULT_MII_NAME, |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 287 | TSEC1_PHY_ADDR, 29, 18); |
| 288 | |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 289 | miiphy_read(DEFAULT_MII_NAME, |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 290 | TSEC1_PHY_ADDR, 30, &temp); |
| 291 | |
| 292 | temp = (temp & 0xf03f); |
| 293 | temp |= 2 << 9; /* 36 ohm */ |
| 294 | temp |= 2 << 6; /* 39 ohm */ |
| 295 | |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 296 | miiphy_write(DEFAULT_MII_NAME, |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 297 | TSEC1_PHY_ADDR, 30, temp); |
| 298 | |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 299 | miiphy_write(DEFAULT_MII_NAME, |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 300 | TSEC1_PHY_ADDR, 29, 3); |
| 301 | |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 302 | miiphy_write(DEFAULT_MII_NAME, |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 303 | TSEC1_PHY_ADDR, 30, 0x8000); |
| 304 | } |
| 305 | |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 306 | return; |
Andy Fleming | 239e75f | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 307 | } |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 308 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 309 | int board_eth_init(struct bd_info *bis) |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 310 | { |
Bin Meng | d268e91 | 2016-01-11 22:41:15 -0800 | [diff] [blame] | 311 | #ifdef CONFIG_TSEC_ENET |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 312 | struct fsl_pq_mdio_info mdio_info; |
| 313 | struct tsec_info_struct tsec_info[4]; |
| 314 | int num = 0; |
| 315 | |
| 316 | #ifdef CONFIG_TSEC1 |
| 317 | SET_STD_TSEC_INFO(tsec_info[num], 1); |
| 318 | num++; |
| 319 | #endif |
| 320 | #ifdef CONFIG_TSEC2 |
| 321 | SET_STD_TSEC_INFO(tsec_info[num], 2); |
| 322 | num++; |
| 323 | #endif |
| 324 | #ifdef CONFIG_TSEC3 |
| 325 | /* initialize TSEC3 only if Carrier is 1.3 or above on CDS */ |
| 326 | if (get_board_version() >= 0x13) { |
| 327 | SET_STD_TSEC_INFO(tsec_info[num], 3); |
| 328 | tsec_info[num].interface = PHY_INTERFACE_MODE_RGMII_ID; |
| 329 | num++; |
| 330 | } |
| 331 | #endif |
| 332 | #ifdef CONFIG_TSEC4 |
| 333 | /* initialize TSEC4 only if Carrier is 1.3 or above on CDS */ |
| 334 | if (get_board_version() >= 0x13) { |
| 335 | SET_STD_TSEC_INFO(tsec_info[num], 4); |
| 336 | tsec_info[num].interface = PHY_INTERFACE_MODE_RGMII_ID; |
| 337 | num++; |
| 338 | } |
| 339 | #endif |
| 340 | |
| 341 | if (!num) { |
| 342 | printf("No TSECs initialized\n"); |
| 343 | |
| 344 | return 0; |
| 345 | } |
| 346 | |
| 347 | mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR; |
| 348 | mdio_info.name = DEFAULT_MII_NAME; |
| 349 | fsl_pq_mdio_init(bis, &mdio_info); |
| 350 | |
| 351 | tsec_eth_init(bis, tsec_info, num); |
| 352 | configure_rgmii(); |
Bin Meng | d268e91 | 2016-01-11 22:41:15 -0800 | [diff] [blame] | 353 | #endif |
chenhui zhao | d1077b6 | 2011-09-06 16:41:18 +0000 | [diff] [blame] | 354 | |
| 355 | return pci_eth_init(bis); |
| 356 | } |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 357 | |
Hou Zhiqiang | 59810bc | 2019-08-27 11:05:12 +0000 | [diff] [blame] | 358 | #if defined(CONFIG_OF_BOARD_SETUP) && !defined(CONFIG_DM_PCI) |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 359 | void ft_pci_setup(void *blob, struct bd_info *bd) |
Kumar Gala | c10a0c4 | 2008-10-21 08:28:33 -0500 | [diff] [blame] | 360 | { |
Kumar Gala | d0f27d3 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 361 | FT_FSL_PCI_SETUP; |
Ed Swarthout | 95ae0a0 | 2007-07-27 01:50:52 -0500 | [diff] [blame] | 362 | } |
| 363 | #endif |