Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 2 | /* |
Minghuan Lian | 505f3e6 | 2012-08-21 23:35:42 +0000 | [diff] [blame] | 3 | * Copyright 2007-2012 Freescale Semiconductor, Inc. |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 4 | */ |
Ed Swarthout | 2e4d94f | 2007-07-27 01:50:45 -0500 | [diff] [blame] | 5 | |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 6 | #include <common.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 7 | #include <env.h> |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 8 | #include <malloc.h> |
| 9 | #include <asm/fsl_serdes.h> |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 10 | |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 11 | DECLARE_GLOBAL_DATA_PTR; |
| 12 | |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 13 | /* |
| 14 | * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's |
| 15 | * |
| 16 | * Initialize controller and call the common driver/pci pci_hose_scan to |
| 17 | * scan for bridges and devices. |
| 18 | * |
| 19 | * Hose fields which need to be pre-initialized by board specific code: |
| 20 | * regions[] |
| 21 | * first_busno |
| 22 | * |
| 23 | * Fields updated: |
| 24 | * last_busno |
| 25 | */ |
| 26 | |
| 27 | #include <pci.h> |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 28 | #include <asm/io.h> |
Kumar Gala | c851462 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 29 | #include <asm/fsl_pci.h> |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 30 | |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 31 | #ifndef CONFIG_SYS_PCI_MEMORY_BUS |
| 32 | #define CONFIG_SYS_PCI_MEMORY_BUS 0 |
| 33 | #endif |
| 34 | |
| 35 | #ifndef CONFIG_SYS_PCI_MEMORY_PHYS |
| 36 | #define CONFIG_SYS_PCI_MEMORY_PHYS 0 |
| 37 | #endif |
| 38 | |
| 39 | #if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS) |
| 40 | #define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024) |
| 41 | #endif |
| 42 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 43 | /* Setup one inbound ATMU window. |
| 44 | * |
| 45 | * We let the caller decide what the window size should be |
| 46 | */ |
| 47 | static void set_inbound_window(volatile pit_t *pi, |
| 48 | struct pci_region *r, |
| 49 | u64 size) |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 50 | { |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 51 | u32 sz = (__ilog2_u64(size) - 1); |
Chunhe Lan | f1a96ec | 2014-05-07 10:50:20 +0800 | [diff] [blame] | 52 | #ifdef CONFIG_SYS_FSL_ERRATUM_A005434 |
| 53 | u32 flag = 0; |
| 54 | #else |
| 55 | u32 flag = PIWAR_LOCAL; |
| 56 | #endif |
| 57 | |
| 58 | flag |= PIWAR_EN | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP; |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 59 | |
| 60 | out_be32(&pi->pitar, r->phys_start >> 12); |
| 61 | out_be32(&pi->piwbar, r->bus_start >> 12); |
| 62 | #ifdef CONFIG_SYS_PCI_64BIT |
| 63 | out_be32(&pi->piwbear, r->bus_start >> 44); |
| 64 | #else |
| 65 | out_be32(&pi->piwbear, 0); |
| 66 | #endif |
| 67 | if (r->flags & PCI_REGION_PREFETCH) |
| 68 | flag |= PIWAR_PF; |
| 69 | out_be32(&pi->piwar, flag | sz); |
| 70 | } |
| 71 | |
Kumar Gala | ee53650 | 2009-11-04 13:00:55 -0600 | [diff] [blame] | 72 | int fsl_setup_hose(struct pci_controller *hose, unsigned long addr) |
| 73 | { |
| 74 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr; |
| 75 | |
John Schmoller | 96d6160 | 2010-10-22 00:20:23 -0500 | [diff] [blame] | 76 | /* Reset hose to make sure its in a clean state */ |
| 77 | memset(hose, 0, sizeof(struct pci_controller)); |
| 78 | |
Kumar Gala | ee53650 | 2009-11-04 13:00:55 -0600 | [diff] [blame] | 79 | pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data); |
| 80 | |
| 81 | return fsl_is_pci_agent(hose); |
| 82 | } |
| 83 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 84 | static int fsl_pci_setup_inbound_windows(struct pci_controller *hose, |
| 85 | u64 out_lo, u8 pcie_cap, |
| 86 | volatile pit_t *pi) |
| 87 | { |
| 88 | struct pci_region *r = hose->regions + hose->region_count; |
| 89 | u64 sz = min((u64)gd->ram_size, (1ull << 32)); |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 90 | |
| 91 | phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS; |
| 92 | pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS; |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 93 | pci_size_t pci_sz; |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 94 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 95 | /* we have no space available for inbound memory mapping */ |
| 96 | if (bus_start > out_lo) { |
| 97 | printf ("no space for inbound mapping of memory\n"); |
| 98 | return 0; |
| 99 | } |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 100 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 101 | /* limit size */ |
| 102 | if ((bus_start + sz) > out_lo) { |
| 103 | sz = out_lo - bus_start; |
| 104 | debug ("limiting size to %llx\n", sz); |
| 105 | } |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 106 | |
| 107 | pci_sz = 1ull << __ilog2_u64(sz); |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 108 | /* |
| 109 | * we can overlap inbound/outbound windows on PCI-E since RX & TX |
| 110 | * links a separate |
| 111 | */ |
| 112 | if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) { |
| 113 | debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n", |
| 114 | (u64)bus_start, (u64)phys_start, (u64)sz); |
| 115 | pci_set_region(r, bus_start, phys_start, sz, |
Kumar Gala | ff4e66e | 2009-02-06 09:49:31 -0600 | [diff] [blame] | 116 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY | |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 117 | PCI_REGION_PREFETCH); |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 118 | |
| 119 | /* if we aren't an exact power of two match, pci_sz is smaller |
| 120 | * round it up to the next power of two. We report the actual |
| 121 | * size to pci region tracking. |
| 122 | */ |
| 123 | if (pci_sz != sz) |
| 124 | sz = 2ull << __ilog2_u64(sz); |
| 125 | |
| 126 | set_inbound_window(pi--, r++, sz); |
| 127 | sz = 0; /* make sure we dont set the R2 window */ |
| 128 | } else { |
| 129 | debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n", |
| 130 | (u64)bus_start, (u64)phys_start, (u64)pci_sz); |
| 131 | pci_set_region(r, bus_start, phys_start, pci_sz, |
| 132 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY | |
| 133 | PCI_REGION_PREFETCH); |
| 134 | set_inbound_window(pi--, r++, pci_sz); |
| 135 | |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 136 | sz -= pci_sz; |
| 137 | bus_start += pci_sz; |
| 138 | phys_start += pci_sz; |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 139 | |
| 140 | pci_sz = 1ull << __ilog2_u64(sz); |
| 141 | if (sz) { |
| 142 | debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n", |
| 143 | (u64)bus_start, (u64)phys_start, (u64)pci_sz); |
| 144 | pci_set_region(r, bus_start, phys_start, pci_sz, |
| 145 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY | |
| 146 | PCI_REGION_PREFETCH); |
| 147 | set_inbound_window(pi--, r++, pci_sz); |
| 148 | sz -= pci_sz; |
| 149 | bus_start += pci_sz; |
| 150 | phys_start += pci_sz; |
| 151 | } |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | #if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT) |
Becky Bruce | cd42516 | 2008-10-27 16:09:42 -0500 | [diff] [blame] | 155 | /* |
| 156 | * On 64-bit capable systems, set up a mapping for all of DRAM |
| 157 | * in high pci address space. |
| 158 | */ |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 159 | pci_sz = 1ull << __ilog2_u64(gd->ram_size); |
| 160 | /* round up to the next largest power of two */ |
| 161 | if (gd->ram_size > pci_sz) |
Becky Bruce | cd42516 | 2008-10-27 16:09:42 -0500 | [diff] [blame] | 162 | pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1); |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 163 | debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n", |
Becky Bruce | cd42516 | 2008-10-27 16:09:42 -0500 | [diff] [blame] | 164 | (u64)CONFIG_SYS_PCI64_MEMORY_BUS, |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 165 | (u64)CONFIG_SYS_PCI_MEMORY_PHYS, |
| 166 | (u64)pci_sz); |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 167 | pci_set_region(r, |
Becky Bruce | cd42516 | 2008-10-27 16:09:42 -0500 | [diff] [blame] | 168 | CONFIG_SYS_PCI64_MEMORY_BUS, |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 169 | CONFIG_SYS_PCI_MEMORY_PHYS, |
| 170 | pci_sz, |
Kumar Gala | ff4e66e | 2009-02-06 09:49:31 -0600 | [diff] [blame] | 171 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY | |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 172 | PCI_REGION_PREFETCH); |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 173 | set_inbound_window(pi--, r++, pci_sz); |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 174 | #else |
| 175 | pci_sz = 1ull << __ilog2_u64(sz); |
| 176 | if (sz) { |
| 177 | debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n", |
| 178 | (u64)bus_start, (u64)phys_start, (u64)pci_sz); |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 179 | pci_set_region(r, bus_start, phys_start, pci_sz, |
Kumar Gala | ff4e66e | 2009-02-06 09:49:31 -0600 | [diff] [blame] | 180 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY | |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 181 | PCI_REGION_PREFETCH); |
| 182 | sz -= pci_sz; |
| 183 | bus_start += pci_sz; |
| 184 | phys_start += pci_sz; |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 185 | set_inbound_window(pi--, r++, pci_sz); |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 186 | } |
| 187 | #endif |
| 188 | |
Kumar Gala | 4c253fd | 2008-12-09 10:27:33 -0600 | [diff] [blame] | 189 | #ifdef CONFIG_PHYS_64BIT |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 190 | if (sz && (((u64)gd->ram_size) < (1ull << 32))) |
| 191 | printf("Was not able to map all of memory via " |
| 192 | "inbound windows -- %lld remaining\n", sz); |
Kumar Gala | 4c253fd | 2008-12-09 10:27:33 -0600 | [diff] [blame] | 193 | #endif |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 194 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 195 | hose->region_count = r - hose->regions; |
| 196 | |
| 197 | return 1; |
Kumar Gala | b9a1fa9 | 2008-10-22 14:06:24 -0500 | [diff] [blame] | 198 | } |
| 199 | |
Liu Gang | c8b2815 | 2013-05-07 16:30:46 +0800 | [diff] [blame] | 200 | #ifdef CONFIG_SRIO_PCIE_BOOT_MASTER |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 201 | static void fsl_pcie_boot_master(pit_t *pi) |
| 202 | { |
| 203 | /* configure inbound window for slave's u-boot image */ |
| 204 | debug("PCIEBOOT - MASTER: Inbound window for slave's image; " |
| 205 | "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n", |
| 206 | (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS, |
| 207 | (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1, |
| 208 | CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE); |
| 209 | struct pci_region r_inbound; |
| 210 | u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE) |
| 211 | - 1; |
| 212 | pci_set_region(&r_inbound, |
| 213 | CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1, |
| 214 | CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS, |
| 215 | sz_inbound, |
| 216 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); |
| 217 | |
| 218 | set_inbound_window(pi--, &r_inbound, |
| 219 | CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE); |
| 220 | |
| 221 | /* configure inbound window for slave's u-boot image */ |
| 222 | debug("PCIEBOOT - MASTER: Inbound window for slave's image; " |
| 223 | "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n", |
| 224 | (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS, |
| 225 | (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2, |
| 226 | CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE); |
| 227 | pci_set_region(&r_inbound, |
| 228 | CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2, |
| 229 | CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS, |
| 230 | sz_inbound, |
| 231 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); |
| 232 | |
| 233 | set_inbound_window(pi--, &r_inbound, |
| 234 | CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE); |
| 235 | |
| 236 | /* configure inbound window for slave's ucode and ENV */ |
| 237 | debug("PCIEBOOT - MASTER: Inbound window for slave's " |
| 238 | "ucode and ENV; " |
| 239 | "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n", |
| 240 | (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS, |
| 241 | (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS, |
| 242 | CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE); |
| 243 | sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE) |
| 244 | - 1; |
| 245 | pci_set_region(&r_inbound, |
| 246 | CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS, |
| 247 | CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS, |
| 248 | sz_inbound, |
| 249 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); |
| 250 | |
| 251 | set_inbound_window(pi--, &r_inbound, |
| 252 | CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE); |
| 253 | } |
| 254 | |
| 255 | static void fsl_pcie_boot_master_release_slave(int port) |
| 256 | { |
| 257 | unsigned long release_addr; |
| 258 | |
| 259 | /* now release slave's core 0 */ |
| 260 | switch (port) { |
| 261 | case 1: |
| 262 | release_addr = CONFIG_SYS_PCIE1_MEM_VIRT |
| 263 | + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET; |
| 264 | break; |
York Sun | a1e4318 | 2012-10-08 07:44:04 +0000 | [diff] [blame] | 265 | #ifdef CONFIG_SYS_PCIE2_MEM_VIRT |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 266 | case 2: |
| 267 | release_addr = CONFIG_SYS_PCIE2_MEM_VIRT |
| 268 | + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET; |
| 269 | break; |
York Sun | a1e4318 | 2012-10-08 07:44:04 +0000 | [diff] [blame] | 270 | #endif |
| 271 | #ifdef CONFIG_SYS_PCIE3_MEM_VIRT |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 272 | case 3: |
| 273 | release_addr = CONFIG_SYS_PCIE3_MEM_VIRT |
| 274 | + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET; |
| 275 | break; |
York Sun | a1e4318 | 2012-10-08 07:44:04 +0000 | [diff] [blame] | 276 | #endif |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 277 | default: |
| 278 | release_addr = 0; |
| 279 | break; |
| 280 | } |
| 281 | if (release_addr != 0) { |
| 282 | out_be32((void *)release_addr, |
| 283 | CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK); |
| 284 | debug("PCIEBOOT - MASTER: " |
| 285 | "Release slave successfully! Now the slave should start up!\n"); |
| 286 | } else { |
| 287 | debug("PCIEBOOT - MASTER: " |
| 288 | "Release slave failed!\n"); |
| 289 | } |
| 290 | } |
| 291 | #endif |
| 292 | |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 293 | void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info) |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 294 | { |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 295 | u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr; |
| 296 | u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data; |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 297 | u16 temp16; |
| 298 | u32 temp32; |
Prabhakar Kushwaha | b6ccd2c | 2011-02-04 09:00:43 +0530 | [diff] [blame] | 299 | u32 block_rev; |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 300 | int enabled, r, inbound = 0; |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 301 | u16 ltssm; |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 302 | u8 temp8, pcie_cap; |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 303 | int pcie_cap_pos; |
| 304 | int pci_dcr; |
| 305 | int pci_dsr; |
| 306 | int pci_lsr; |
| 307 | |
| 308 | #if defined(CONFIG_FSL_PCIE_DISABLE_ASPM) |
| 309 | int pci_lcr; |
| 310 | #endif |
| 311 | |
Kumar Gala | fb3143b | 2009-08-03 20:44:55 -0500 | [diff] [blame] | 312 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr; |
Kumar Gala | cb151aa | 2009-08-03 21:02:02 -0500 | [diff] [blame] | 313 | struct pci_region *reg = hose->regions + hose->region_count; |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 314 | pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 315 | |
| 316 | /* Initialize ATMU registers based on hose regions and flags */ |
Wolfgang Denk | d0ff51b | 2008-07-14 15:19:07 +0200 | [diff] [blame] | 317 | volatile pot_t *po = &pci->pot[1]; /* skip 0 */ |
Prabhakar Kushwaha | b6ccd2c | 2011-02-04 09:00:43 +0530 | [diff] [blame] | 318 | volatile pit_t *pi; |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 319 | |
| 320 | u64 out_hi = 0, out_lo = -1ULL; |
| 321 | u32 pcicsrbar, pcicsrbar_sz; |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 322 | |
Kumar Gala | fb3143b | 2009-08-03 20:44:55 -0500 | [diff] [blame] | 323 | pci_setup_indirect(hose, cfg_addr, cfg_data); |
| 324 | |
Joakim Tjernlund | 6ce83fb | 2017-09-12 19:56:41 +0200 | [diff] [blame] | 325 | #ifdef PEX_CCB_DIV |
| 326 | /* Configure the PCIE controller core clock ratio */ |
| 327 | pci_hose_write_config_dword(hose, dev, 0x440, |
| 328 | ((gd->bus_clk / 1000000) * |
| 329 | (16 / PEX_CCB_DIV)) / 333); |
| 330 | #endif |
Prabhakar Kushwaha | b6ccd2c | 2011-02-04 09:00:43 +0530 | [diff] [blame] | 331 | block_rev = in_be32(&pci->block_rev1); |
| 332 | if (PEX_IP_BLK_REV_2_2 <= block_rev) { |
| 333 | pi = &pci->pit[2]; /* 0xDC0 */ |
| 334 | } else { |
| 335 | pi = &pci->pit[3]; /* 0xDE0 */ |
| 336 | } |
| 337 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 338 | /* Handle setup of outbound windows first */ |
| 339 | for (r = 0; r < hose->region_count; r++) { |
| 340 | unsigned long flags = hose->regions[r].flags; |
Kumar Gala | 612ea01 | 2008-10-21 10:13:14 -0500 | [diff] [blame] | 341 | u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1); |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 342 | |
| 343 | flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE; |
| 344 | if (flags != PCI_REGION_SYS_MEMORY) { |
| 345 | u64 start = hose->regions[r].bus_start; |
| 346 | u64 end = start + hose->regions[r].size; |
| 347 | |
| 348 | out_be32(&po->powbar, hose->regions[r].phys_start >> 12); |
| 349 | out_be32(&po->potar, start >> 12); |
Kumar Gala | 612ea01 | 2008-10-21 10:13:14 -0500 | [diff] [blame] | 350 | #ifdef CONFIG_SYS_PCI_64BIT |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 351 | out_be32(&po->potear, start >> 44); |
Kumar Gala | 612ea01 | 2008-10-21 10:13:14 -0500 | [diff] [blame] | 352 | #else |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 353 | out_be32(&po->potear, 0); |
Kumar Gala | 612ea01 | 2008-10-21 10:13:14 -0500 | [diff] [blame] | 354 | #endif |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 355 | if (hose->regions[r].flags & PCI_REGION_IO) { |
| 356 | out_be32(&po->powar, POWAR_EN | sz | |
| 357 | POWAR_IO_READ | POWAR_IO_WRITE); |
| 358 | } else { |
| 359 | out_be32(&po->powar, POWAR_EN | sz | |
| 360 | POWAR_MEM_READ | POWAR_MEM_WRITE); |
| 361 | out_lo = min(start, out_lo); |
| 362 | out_hi = max(end, out_hi); |
| 363 | } |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 364 | po++; |
| 365 | } |
| 366 | } |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 367 | debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi); |
| 368 | |
| 369 | /* setup PCSRBAR/PEXCSRBAR */ |
| 370 | pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff); |
| 371 | pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz); |
| 372 | pcicsrbar_sz = ~pcicsrbar_sz + 1; |
| 373 | |
| 374 | if (out_hi < (0x100000000ull - pcicsrbar_sz) || |
| 375 | (out_lo > 0x100000000ull)) |
| 376 | pcicsrbar = 0x100000000ull - pcicsrbar_sz; |
| 377 | else |
| 378 | pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz; |
| 379 | pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar); |
| 380 | |
| 381 | out_lo = min(out_lo, (u64)pcicsrbar); |
| 382 | |
| 383 | debug("PCICSRBAR @ 0x%x\n", pcicsrbar); |
| 384 | |
| 385 | pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS, |
| 386 | pcicsrbar_sz, PCI_REGION_SYS_MEMORY); |
| 387 | hose->region_count++; |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 388 | |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 389 | /* see if we are a PCIe or PCI controller */ |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 390 | pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP); |
| 391 | pci_dcr = pcie_cap_pos + 0x08; |
| 392 | pci_dsr = pcie_cap_pos + 0x0a; |
| 393 | pci_lsr = pcie_cap_pos + 0x12; |
| 394 | |
| 395 | pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap); |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 396 | |
Liu Gang | c8b2815 | 2013-05-07 16:30:46 +0800 | [diff] [blame] | 397 | #ifdef CONFIG_SRIO_PCIE_BOOT_MASTER |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 398 | /* boot from PCIE --master */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 399 | char *s = env_get("bootmaster"); |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 400 | char pcie[6]; |
| 401 | sprintf(pcie, "PCIE%d", pci_info->pci_num); |
| 402 | |
| 403 | if (s && (strcmp(s, pcie) == 0)) { |
| 404 | debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n", |
| 405 | pci_info->pci_num); |
| 406 | fsl_pcie_boot_master((pit_t *)pi); |
| 407 | } else { |
| 408 | /* inbound */ |
| 409 | inbound = fsl_pci_setup_inbound_windows(hose, |
| 410 | out_lo, pcie_cap, pi); |
| 411 | } |
| 412 | #else |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 413 | /* inbound */ |
| 414 | inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi); |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 415 | #endif |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 416 | |
| 417 | for (r = 0; r < hose->region_count; r++) |
Marek Vasut | d015df8 | 2011-10-21 14:17:21 +0000 | [diff] [blame] | 418 | debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r, |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 419 | (u64)hose->regions[r].phys_start, |
Marek Vasut | d015df8 | 2011-10-21 14:17:21 +0000 | [diff] [blame] | 420 | (u64)hose->regions[r].bus_start, |
| 421 | (u64)hose->regions[r].size, |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 422 | hose->regions[r].flags); |
| 423 | |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 424 | pci_register_hose(hose); |
| 425 | pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */ |
| 426 | hose->current_busno = hose->first_busno; |
| 427 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 428 | out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */ |
Mike Williams | 1626308 | 2011-07-22 04:01:30 +0000 | [diff] [blame] | 429 | out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except |
Ed Swarthout | 2e4d94f | 2007-07-27 01:50:45 -0500 | [diff] [blame] | 430 | * - Master abort (pci) |
| 431 | * - Master PERR (pci) |
| 432 | * - ICCA (PCIe) |
| 433 | */ |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 434 | pci_hose_read_config_dword(hose, dev, pci_dcr, &temp32); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 435 | temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */ |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 436 | pci_hose_write_config_dword(hose, dev, pci_dcr, temp32); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 437 | |
Prabhakar Kushwaha | b03a466 | 2011-02-01 15:55:58 +0000 | [diff] [blame] | 438 | #if defined(CONFIG_FSL_PCIE_DISABLE_ASPM) |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 439 | pci_lcr = pcie_cap_pos + 0x10; |
Prabhakar Kushwaha | b03a466 | 2011-02-01 15:55:58 +0000 | [diff] [blame] | 440 | temp32 = 0; |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 441 | pci_hose_read_config_dword(hose, dev, pci_lcr, &temp32); |
Prabhakar Kushwaha | b03a466 | 2011-02-01 15:55:58 +0000 | [diff] [blame] | 442 | temp32 &= ~0x03; /* Disable ASPM */ |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 443 | pci_hose_write_config_dword(hose, dev, pci_lcr, temp32); |
Prabhakar Kushwaha | b03a466 | 2011-02-01 15:55:58 +0000 | [diff] [blame] | 444 | udelay(1); |
| 445 | #endif |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 446 | if (pcie_cap == PCI_CAP_ID_EXP) { |
Zang Roy-R61911 | 7b4e584 | 2013-07-04 07:25:03 +0800 | [diff] [blame] | 447 | if (block_rev >= PEX_IP_BLK_REV_3_0) { |
| 448 | #define PEX_CSR0_LTSSM_MASK 0xFC |
| 449 | #define PEX_CSR0_LTSSM_SHIFT 2 |
| 450 | ltssm = (in_be32(&pci->pex_csr0) |
| 451 | & PEX_CSR0_LTSSM_MASK) >> PEX_CSR0_LTSSM_SHIFT; |
| 452 | enabled = (ltssm == 0x11) ? 1 : 0; |
Zhao Qiang | 5066e62 | 2015-03-26 16:13:09 +0800 | [diff] [blame] | 453 | #ifdef CONFIG_FSL_PCIE_RESET |
| 454 | int i; |
| 455 | /* assert PCIe reset */ |
| 456 | setbits_be32(&pci->pdb_stat, 0x08000000); |
| 457 | (void) in_be32(&pci->pdb_stat); |
| 458 | udelay(1000); |
| 459 | /* clear PCIe reset */ |
| 460 | clrbits_be32(&pci->pdb_stat, 0x08000000); |
| 461 | asm("sync;isync"); |
| 462 | for (i = 0; i < 100 && ltssm < PCI_LTSSM_L0; i++) { |
| 463 | pci_hose_read_config_word(hose, dev, PCI_LTSSM, |
| 464 | <ssm); |
| 465 | udelay(1000); |
| 466 | } |
| 467 | #endif |
Zang Roy-R61911 | 7b4e584 | 2013-07-04 07:25:03 +0800 | [diff] [blame] | 468 | } else { |
| 469 | /* pci_hose_read_config_word(hose, dev, PCI_LTSSM, <ssm); */ |
| 470 | /* enabled = ltssm >= PCI_LTSSM_L0; */ |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 471 | pci_hose_read_config_word(hose, dev, PCI_LTSSM, <ssm); |
| 472 | enabled = ltssm >= PCI_LTSSM_L0; |
| 473 | |
Kumar Gala | 8ff3de6 | 2007-12-07 12:17:34 -0600 | [diff] [blame] | 474 | #ifdef CONFIG_FSL_PCIE_RESET |
| 475 | if (ltssm == 1) { |
| 476 | int i; |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 477 | debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm); |
| 478 | /* assert PCIe reset */ |
| 479 | setbits_be32(&pci->pdb_stat, 0x08000000); |
| 480 | (void) in_be32(&pci->pdb_stat); |
Kumar Gala | 8ff3de6 | 2007-12-07 12:17:34 -0600 | [diff] [blame] | 481 | udelay(100); |
Marek Vasut | d015df8 | 2011-10-21 14:17:21 +0000 | [diff] [blame] | 482 | debug(" Asserting PCIe reset @%p = %x\n", |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 483 | &pci->pdb_stat, in_be32(&pci->pdb_stat)); |
| 484 | /* clear PCIe reset */ |
| 485 | clrbits_be32(&pci->pdb_stat, 0x08000000); |
Kumar Gala | 8ff3de6 | 2007-12-07 12:17:34 -0600 | [diff] [blame] | 486 | asm("sync;isync"); |
| 487 | for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) { |
| 488 | pci_hose_read_config_word(hose, dev, PCI_LTSSM, |
| 489 | <ssm); |
| 490 | udelay(1000); |
| 491 | debug("....PCIe link error. " |
| 492 | "LTSSM=0x%02x.\n", ltssm); |
| 493 | } |
| 494 | enabled = ltssm >= PCI_LTSSM_L0; |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 495 | |
| 496 | /* we need to re-write the bar0 since a reset will |
| 497 | * clear it |
| 498 | */ |
| 499 | pci_hose_write_config_dword(hose, dev, |
| 500 | PCI_BASE_ADDRESS_0, pcicsrbar); |
Kumar Gala | 8ff3de6 | 2007-12-07 12:17:34 -0600 | [diff] [blame] | 501 | } |
| 502 | #endif |
Zang Roy-R61911 | 7b4e584 | 2013-07-04 07:25:03 +0800 | [diff] [blame] | 503 | } |
Kumar Gala | 8ff3de6 | 2007-12-07 12:17:34 -0600 | [diff] [blame] | 504 | |
Yuanquan Chen | c0a4e6b | 2012-11-26 23:49:45 +0000 | [diff] [blame] | 505 | #ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003 |
| 506 | if (enabled == 0) { |
| 507 | serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR; |
| 508 | temp32 = in_be32(&srds_regs->srdspccr0); |
| 509 | |
| 510 | if ((temp32 >> 28) == 3) { |
| 511 | int i; |
| 512 | |
| 513 | out_be32(&srds_regs->srdspccr0, 2 << 28); |
| 514 | setbits_be32(&pci->pdb_stat, 0x08000000); |
| 515 | in_be32(&pci->pdb_stat); |
| 516 | udelay(100); |
| 517 | clrbits_be32(&pci->pdb_stat, 0x08000000); |
| 518 | asm("sync;isync"); |
| 519 | for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) { |
| 520 | pci_hose_read_config_word(hose, dev, PCI_LTSSM, <ssm); |
| 521 | udelay(1000); |
| 522 | } |
| 523 | enabled = ltssm >= PCI_LTSSM_L0; |
| 524 | } |
| 525 | } |
| 526 | #endif |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 527 | if (!enabled) { |
Zang Roy-R61911 | 32514d2 | 2014-06-12 14:49:23 -0500 | [diff] [blame] | 528 | /* Let the user know there's no PCIe link for root |
| 529 | * complex. for endpoint, the link may not setup, so |
| 530 | * print undetermined. |
| 531 | */ |
| 532 | if (fsl_is_pci_agent(hose)) |
| 533 | printf("undetermined, regs @ 0x%lx\n", pci_info->regs); |
| 534 | else |
| 535 | printf("no link, regs @ 0x%lx\n", pci_info->regs); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 536 | hose->last_busno = hose->first_busno; |
| 537 | return; |
| 538 | } |
| 539 | |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 540 | out_be32(&pci->pme_msg_det, 0xffffffff); |
| 541 | out_be32(&pci->pme_msg_int_en, 0xffffffff); |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 542 | |
| 543 | /* Print the negotiated PCIe link width */ |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 544 | pci_hose_read_config_word(hose, dev, pci_lsr, &temp16); |
Prabhakar Kushwaha | aceea94 | 2014-01-25 12:53:32 +0530 | [diff] [blame] | 545 | printf("x%d gen%d, regs @ 0x%lx\n", (temp16 & 0x3f0) >> 4, |
| 546 | (temp16 & 0xf), pci_info->regs); |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 547 | |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 548 | hose->current_busno++; /* Start scan with secondary */ |
| 549 | pciauto_prescan_setup_bridge(hose, dev, hose->current_busno); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 550 | } |
| 551 | |
Tony O'Brien | 09bfd96 | 2016-12-02 09:22:34 +1300 | [diff] [blame] | 552 | #ifdef CONFIG_SYS_FSL_ERRATUM_A007815 |
| 553 | /* The Read-Only Write Enable bit defaults to 1 instead of 0. |
| 554 | * Set to 0 to protect the read-only registers. |
| 555 | */ |
| 556 | clrbits_be32(&pci->dbi_ro_wr_en, 0x01); |
| 557 | #endif |
| 558 | |
Ed Swarthout | 16e23c3 | 2007-08-20 23:55:33 -0500 | [diff] [blame] | 559 | /* Use generic setup_device to initialize standard pci regs, |
| 560 | * but do not allocate any windows since any BAR found (such |
| 561 | * as PCSRBAR) is not in this cpu's memory space. |
| 562 | */ |
Ed Swarthout | 16e23c3 | 2007-08-20 23:55:33 -0500 | [diff] [blame] | 563 | pciauto_setup_device(hose, dev, 0, hose->pci_mem, |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 564 | hose->pci_prefetch, hose->pci_io); |
Ed Swarthout | 16e23c3 | 2007-08-20 23:55:33 -0500 | [diff] [blame] | 565 | |
Ed Swarthout | cb8250f | 2007-10-19 17:51:40 -0500 | [diff] [blame] | 566 | if (inbound) { |
| 567 | pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16); |
| 568 | pci_hose_write_config_word(hose, dev, PCI_COMMAND, |
| 569 | temp16 | PCI_COMMAND_MEMORY); |
| 570 | } |
| 571 | |
Ed Swarthout | 2e4d94f | 2007-07-27 01:50:45 -0500 | [diff] [blame] | 572 | #ifndef CONFIG_PCI_NOSCAN |
Minghuan Lian | 505f3e6 | 2012-08-21 23:35:42 +0000 | [diff] [blame] | 573 | if (!fsl_is_pci_agent(hose)) { |
Peter Tyser | 37d03fc | 2010-10-29 17:59:26 -0500 | [diff] [blame] | 574 | debug(" Scanning PCI bus %02x\n", |
Ed Swarthout | 6df0efd | 2008-10-08 23:38:00 -0500 | [diff] [blame] | 575 | hose->current_busno); |
| 576 | hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno); |
| 577 | } else { |
Peter Tyser | 8ca78f2 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 578 | debug(" Not scanning PCI bus %02x. PI=%x\n", |
Ed Swarthout | 6df0efd | 2008-10-08 23:38:00 -0500 | [diff] [blame] | 579 | hose->current_busno, temp8); |
| 580 | hose->last_busno = hose->current_busno; |
| 581 | } |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 582 | |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 583 | /* if we are PCIe - update limit regs and subordinate busno |
| 584 | * for the virtual P2P bridge |
| 585 | */ |
| 586 | if (pcie_cap == PCI_CAP_ID_EXP) { |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 587 | pciauto_postscan_setup_bridge(hose, dev, hose->last_busno); |
| 588 | } |
Ed Swarthout | 2e4d94f | 2007-07-27 01:50:45 -0500 | [diff] [blame] | 589 | #else |
| 590 | hose->last_busno = hose->current_busno; |
| 591 | #endif |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 592 | |
| 593 | /* Clear all error indications */ |
Kumar Gala | 8295b94 | 2009-08-05 07:49:27 -0500 | [diff] [blame] | 594 | if (pcie_cap == PCI_CAP_ID_EXP) |
Kumar Gala | ad19e7a | 2009-08-05 07:59:35 -0500 | [diff] [blame] | 595 | out_be32(&pci->pme_msg_det, 0xffffffff); |
| 596 | out_be32(&pci->pedr, 0xffffffff); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 597 | |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 598 | pci_hose_read_config_word(hose, dev, pci_dsr, &temp16); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 599 | if (temp16) { |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 600 | pci_hose_write_config_word(hose, dev, pci_dsr, 0xffff); |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16); |
| 604 | if (temp16) { |
Ed Swarthout | 63cec58 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 605 | pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff); |
| 606 | } |
| 607 | } |
Kumar Gala | a2aab46 | 2008-10-23 00:01:06 -0500 | [diff] [blame] | 608 | |
Ed Swarthout | 715d8f7 | 2009-11-02 09:05:49 -0600 | [diff] [blame] | 609 | int fsl_is_pci_agent(struct pci_controller *hose) |
| 610 | { |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 611 | int pcie_cap_pos; |
Minghuan Lian | 505f3e6 | 2012-08-21 23:35:42 +0000 | [diff] [blame] | 612 | u8 pcie_cap; |
Ed Swarthout | 715d8f7 | 2009-11-02 09:05:49 -0600 | [diff] [blame] | 613 | pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0); |
| 614 | |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 615 | pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP); |
| 616 | pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap); |
Minghuan Lian | 505f3e6 | 2012-08-21 23:35:42 +0000 | [diff] [blame] | 617 | if (pcie_cap == PCI_CAP_ID_EXP) { |
| 618 | u8 header_type; |
Ed Swarthout | 715d8f7 | 2009-11-02 09:05:49 -0600 | [diff] [blame] | 619 | |
Minghuan Lian | 505f3e6 | 2012-08-21 23:35:42 +0000 | [diff] [blame] | 620 | pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, |
| 621 | &header_type); |
| 622 | return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL; |
| 623 | } else { |
| 624 | u8 prog_if; |
| 625 | |
| 626 | pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if); |
Zang Roy-R61911 | 7b4e584 | 2013-07-04 07:25:03 +0800 | [diff] [blame] | 627 | /* Programming Interface (PCI_CLASS_PROG) |
| 628 | * 0 == pci host or pcie root-complex, |
| 629 | * 1 == pci agent or pcie end-point |
| 630 | */ |
Minghuan Lian | 505f3e6 | 2012-08-21 23:35:42 +0000 | [diff] [blame] | 631 | return (prog_if == FSL_PROG_IF_AGENT); |
| 632 | } |
Ed Swarthout | 715d8f7 | 2009-11-02 09:05:49 -0600 | [diff] [blame] | 633 | } |
| 634 | |
Poonam Aggrwal | 0d3d68b | 2009-08-21 07:29:42 +0530 | [diff] [blame] | 635 | int fsl_pci_init_port(struct fsl_pci_info *pci_info, |
Kumar Gala | 01471d5 | 2009-11-04 01:29:04 -0600 | [diff] [blame] | 636 | struct pci_controller *hose, int busno) |
Poonam Aggrwal | 0d3d68b | 2009-08-21 07:29:42 +0530 | [diff] [blame] | 637 | { |
| 638 | volatile ccsr_fsl_pci_t *pci; |
| 639 | struct pci_region *r; |
Peter Tyser | a72dbae | 2010-10-28 15:24:59 -0500 | [diff] [blame] | 640 | pci_dev_t dev = PCI_BDF(busno,0,0); |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 641 | int pcie_cap_pos; |
Peter Tyser | a72dbae | 2010-10-28 15:24:59 -0500 | [diff] [blame] | 642 | u8 pcie_cap; |
Poonam Aggrwal | 0d3d68b | 2009-08-21 07:29:42 +0530 | [diff] [blame] | 643 | |
| 644 | pci = (ccsr_fsl_pci_t *) pci_info->regs; |
| 645 | |
| 646 | /* on non-PCIe controllers we don't have pme_msg_det so this code |
| 647 | * should do nothing since the read will return 0 |
| 648 | */ |
| 649 | if (in_be32(&pci->pme_msg_det)) { |
| 650 | out_be32(&pci->pme_msg_det, 0xffffffff); |
| 651 | debug (" with errors. Clearing. Now 0x%08x", |
| 652 | pci->pme_msg_det); |
| 653 | } |
| 654 | |
| 655 | r = hose->regions + hose->region_count; |
| 656 | |
| 657 | /* outbound memory */ |
| 658 | pci_set_region(r++, |
| 659 | pci_info->mem_bus, |
| 660 | pci_info->mem_phys, |
| 661 | pci_info->mem_size, |
| 662 | PCI_REGION_MEM); |
| 663 | |
| 664 | /* outbound io */ |
| 665 | pci_set_region(r++, |
| 666 | pci_info->io_bus, |
| 667 | pci_info->io_phys, |
| 668 | pci_info->io_size, |
| 669 | PCI_REGION_IO); |
| 670 | |
| 671 | hose->region_count = r - hose->regions; |
| 672 | hose->first_busno = busno; |
| 673 | |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 674 | fsl_pci_init(hose, pci_info); |
Poonam Aggrwal | 0d3d68b | 2009-08-21 07:29:42 +0530 | [diff] [blame] | 675 | |
Ed Swarthout | 715d8f7 | 2009-11-02 09:05:49 -0600 | [diff] [blame] | 676 | if (fsl_is_pci_agent(hose)) { |
| 677 | fsl_pci_config_unlock(hose); |
| 678 | hose->last_busno = hose->first_busno; |
Liu Gang | c8b2815 | 2013-05-07 16:30:46 +0800 | [diff] [blame] | 679 | #ifdef CONFIG_SRIO_PCIE_BOOT_MASTER |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 680 | } else { |
| 681 | /* boot from PCIE --master releases slave's core 0 */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 682 | char *s = env_get("bootmaster"); |
Liu Gang | b5f7c87 | 2012-08-09 05:10:02 +0000 | [diff] [blame] | 683 | char pcie[6]; |
| 684 | sprintf(pcie, "PCIE%d", pci_info->pci_num); |
| 685 | |
| 686 | if (s && (strcmp(s, pcie) == 0)) |
| 687 | fsl_pcie_boot_master_release_slave(pci_info->pci_num); |
| 688 | #endif |
Ed Swarthout | 715d8f7 | 2009-11-02 09:05:49 -0600 | [diff] [blame] | 689 | } |
| 690 | |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 691 | pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP); |
| 692 | pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap); |
Peter Tyser | 8ca78f2 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 693 | printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ? |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 694 | "e" : "", pci_info->pci_num, |
Peter Tyser | 8ca78f2 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 695 | hose->first_busno, hose->last_busno); |
Poonam Aggrwal | 0d3d68b | 2009-08-21 07:29:42 +0530 | [diff] [blame] | 696 | return(hose->last_busno + 1); |
| 697 | } |
| 698 | |
Peter Tyser | 7a89795 | 2008-10-29 12:39:26 -0500 | [diff] [blame] | 699 | /* Enable inbound PCI config cycles for agent/endpoint interface */ |
| 700 | void fsl_pci_config_unlock(struct pci_controller *hose) |
| 701 | { |
| 702 | pci_dev_t dev = PCI_BDF(hose->first_busno,0,0); |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 703 | int pcie_cap_pos; |
Peter Tyser | 7a89795 | 2008-10-29 12:39:26 -0500 | [diff] [blame] | 704 | u8 pcie_cap; |
| 705 | u16 pbfr; |
| 706 | |
Minghuan Lian | 505f3e6 | 2012-08-21 23:35:42 +0000 | [diff] [blame] | 707 | if (!fsl_is_pci_agent(hose)) |
Peter Tyser | 7a89795 | 2008-10-29 12:39:26 -0500 | [diff] [blame] | 708 | return; |
| 709 | |
Zhao Qiang | 287df01 | 2013-10-12 13:46:33 +0800 | [diff] [blame] | 710 | pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP); |
| 711 | pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap); |
Peter Tyser | 7a89795 | 2008-10-29 12:39:26 -0500 | [diff] [blame] | 712 | if (pcie_cap != 0x0) { |
Minghuan Lian | 1d0b59a | 2015-03-27 13:24:39 +0800 | [diff] [blame] | 713 | ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)hose->cfg_addr; |
| 714 | u32 block_rev = in_be32(&pci->block_rev1); |
Peter Tyser | 7a89795 | 2008-10-29 12:39:26 -0500 | [diff] [blame] | 715 | /* PCIe - set CFG_READY bit of Configuration Ready Register */ |
Minghuan Lian | 1d0b59a | 2015-03-27 13:24:39 +0800 | [diff] [blame] | 716 | if (block_rev >= PEX_IP_BLK_REV_3_0) |
| 717 | setbits_be32(&pci->config, FSL_PCIE_V3_CFG_RDY); |
| 718 | else |
| 719 | pci_hose_write_config_byte(hose, dev, |
| 720 | FSL_PCIE_CFG_RDY, 0x1); |
Peter Tyser | 7a89795 | 2008-10-29 12:39:26 -0500 | [diff] [blame] | 721 | } else { |
| 722 | /* PCI - clear ACL bit of PBFR */ |
| 723 | pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr); |
| 724 | pbfr &= ~0x20; |
| 725 | pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr); |
| 726 | } |
| 727 | } |
| 728 | |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 729 | #if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \ |
Wolfgang Denk | d1a24f0 | 2011-02-02 22:36:10 +0100 | [diff] [blame] | 730 | defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4) |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 731 | int fsl_configure_pcie(struct fsl_pci_info *info, |
| 732 | struct pci_controller *hose, |
| 733 | const char *connected, int busno) |
| 734 | { |
| 735 | int is_endpoint; |
| 736 | |
| 737 | set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law); |
| 738 | set_next_law(info->io_phys, law_size_bits(info->io_size), info->law); |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 739 | |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 740 | is_endpoint = fsl_setup_hose(hose, info->regs); |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 741 | printf("PCIe%u: %s", info->pci_num, |
| 742 | is_endpoint ? "Endpoint" : "Root Complex"); |
| 743 | if (connected) |
| 744 | printf(" of %s", connected); |
| 745 | puts(", "); |
| 746 | |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 747 | return fsl_pci_init_port(info, hose, busno); |
| 748 | } |
| 749 | |
| 750 | #if defined(CONFIG_FSL_CORENET) |
York Sun | 9e75875 | 2012-10-08 07:44:19 +0000 | [diff] [blame] | 751 | #ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2 |
| 752 | #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1 |
| 753 | #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2 |
| 754 | #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3 |
| 755 | #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4 |
| 756 | #else |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 757 | #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1 |
| 758 | #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2 |
| 759 | #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3 |
| 760 | #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4 |
York Sun | 9e75875 | 2012-10-08 07:44:19 +0000 | [diff] [blame] | 761 | #endif |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 762 | #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR |
| 763 | #elif defined(CONFIG_MPC85xx) |
| 764 | #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE |
| 765 | #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2 |
| 766 | #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3 |
| 767 | #define _DEVDISR_PCIE4 0 |
| 768 | #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR |
| 769 | #elif defined(CONFIG_MPC86xx) |
| 770 | #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1 |
| 771 | #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2 |
| 772 | #define _DEVDISR_PCIE3 0 |
| 773 | #define _DEVDISR_PCIE4 0 |
| 774 | #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \ |
| 775 | (&((immap_t *)CONFIG_SYS_IMMR)->im_gur) |
| 776 | #else |
| 777 | #error "No defines for DEVDISR_PCIE" |
| 778 | #endif |
| 779 | |
| 780 | /* Implement a dummy function for those platforms w/o SERDES */ |
| 781 | static const char *__board_serdes_name(enum srds_prtcl device) |
| 782 | { |
| 783 | switch (device) { |
| 784 | #ifdef CONFIG_SYS_PCIE1_NAME |
| 785 | case PCIE1: |
| 786 | return CONFIG_SYS_PCIE1_NAME; |
| 787 | #endif |
| 788 | #ifdef CONFIG_SYS_PCIE2_NAME |
| 789 | case PCIE2: |
| 790 | return CONFIG_SYS_PCIE2_NAME; |
| 791 | #endif |
| 792 | #ifdef CONFIG_SYS_PCIE3_NAME |
| 793 | case PCIE3: |
| 794 | return CONFIG_SYS_PCIE3_NAME; |
| 795 | #endif |
| 796 | #ifdef CONFIG_SYS_PCIE4_NAME |
| 797 | case PCIE4: |
| 798 | return CONFIG_SYS_PCIE4_NAME; |
| 799 | #endif |
| 800 | default: |
| 801 | return NULL; |
| 802 | } |
| 803 | |
| 804 | return NULL; |
| 805 | } |
| 806 | |
| 807 | __attribute__((weak, alias("__board_serdes_name"))) const char * |
| 808 | board_serdes_name(enum srds_prtcl device); |
| 809 | |
| 810 | static u32 devdisr_mask[] = { |
| 811 | _DEVDISR_PCIE1, |
| 812 | _DEVDISR_PCIE2, |
| 813 | _DEVDISR_PCIE3, |
| 814 | _DEVDISR_PCIE4, |
| 815 | }; |
| 816 | |
| 817 | int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev, |
| 818 | struct fsl_pci_info *pci_info) |
| 819 | { |
| 820 | struct pci_controller *hose; |
| 821 | int num = dev - PCIE1; |
| 822 | |
| 823 | hose = calloc(1, sizeof(struct pci_controller)); |
| 824 | if (!hose) |
| 825 | return busno; |
| 826 | |
| 827 | if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) { |
| 828 | busno = fsl_configure_pcie(pci_info, hose, |
| 829 | board_serdes_name(dev), busno); |
| 830 | } else { |
Peter Tyser | 213ac73 | 2010-12-28 17:47:25 -0600 | [diff] [blame] | 831 | printf("PCIe%d: disabled\n", num + 1); |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | return busno; |
| 835 | } |
| 836 | |
| 837 | int fsl_pcie_init_board(int busno) |
| 838 | { |
| 839 | struct fsl_pci_info pci_info; |
| 840 | ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR; |
York Sun | 9e75875 | 2012-10-08 07:44:19 +0000 | [diff] [blame] | 841 | u32 devdisr; |
| 842 | u32 *addr; |
| 843 | |
| 844 | #ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2 |
| 845 | addr = &gur->devdisr3; |
| 846 | #else |
| 847 | addr = &gur->devdisr; |
| 848 | #endif |
| 849 | devdisr = in_be32(addr); |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 850 | |
| 851 | #ifdef CONFIG_PCIE1 |
| 852 | SET_STD_PCIE_INFO(pci_info, 1); |
| 853 | busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info); |
| 854 | #else |
York Sun | 9e75875 | 2012-10-08 07:44:19 +0000 | [diff] [blame] | 855 | setbits_be32(addr, _DEVDISR_PCIE1); /* disable */ |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 856 | #endif |
| 857 | |
| 858 | #ifdef CONFIG_PCIE2 |
| 859 | SET_STD_PCIE_INFO(pci_info, 2); |
| 860 | busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info); |
| 861 | #else |
York Sun | 9e75875 | 2012-10-08 07:44:19 +0000 | [diff] [blame] | 862 | setbits_be32(addr, _DEVDISR_PCIE2); /* disable */ |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 863 | #endif |
| 864 | |
| 865 | #ifdef CONFIG_PCIE3 |
| 866 | SET_STD_PCIE_INFO(pci_info, 3); |
| 867 | busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info); |
| 868 | #else |
York Sun | 9e75875 | 2012-10-08 07:44:19 +0000 | [diff] [blame] | 869 | setbits_be32(addr, _DEVDISR_PCIE3); /* disable */ |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 870 | #endif |
| 871 | |
| 872 | #ifdef CONFIG_PCIE4 |
| 873 | SET_STD_PCIE_INFO(pci_info, 4); |
| 874 | busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info); |
| 875 | #else |
York Sun | 9e75875 | 2012-10-08 07:44:19 +0000 | [diff] [blame] | 876 | setbits_be32(addr, _DEVDISR_PCIE4); /* disable */ |
Kumar Gala | a4aafcc | 2010-12-15 14:21:41 -0600 | [diff] [blame] | 877 | #endif |
| 878 | |
| 879 | return busno; |
| 880 | } |
| 881 | #else |
| 882 | int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev, |
| 883 | struct fsl_pci_info *pci_info) |
| 884 | { |
| 885 | return busno; |
| 886 | } |
| 887 | |
| 888 | int fsl_pcie_init_board(int busno) |
| 889 | { |
| 890 | return busno; |
| 891 | } |
| 892 | #endif |
| 893 | |
Kumar Gala | a2aab46 | 2008-10-23 00:01:06 -0500 | [diff] [blame] | 894 | #ifdef CONFIG_OF_BOARD_SETUP |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 895 | #include <linux/libfdt.h> |
Kumar Gala | a2aab46 | 2008-10-23 00:01:06 -0500 | [diff] [blame] | 896 | #include <fdt_support.h> |
| 897 | |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 898 | void ft_fsl_pci_setup(void *blob, const char *pci_compat, |
Kumar Gala | 3a0e3c2 | 2010-12-17 05:57:25 -0600 | [diff] [blame] | 899 | unsigned long ctrl_addr) |
Kumar Gala | a2aab46 | 2008-10-23 00:01:06 -0500 | [diff] [blame] | 900 | { |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 901 | int off; |
Kumar Gala | 5a85a30 | 2010-03-30 10:07:12 -0500 | [diff] [blame] | 902 | u32 bus_range[2]; |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 903 | phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr; |
Kumar Gala | 3a0e3c2 | 2010-12-17 05:57:25 -0600 | [diff] [blame] | 904 | struct pci_controller *hose; |
| 905 | |
| 906 | hose = find_hose_by_cfg_addr((void *)(ctrl_addr)); |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 907 | |
| 908 | /* convert ctrl_addr to true physical address */ |
| 909 | p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR; |
| 910 | p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS; |
| 911 | |
| 912 | off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr); |
Kumar Gala | a2aab46 | 2008-10-23 00:01:06 -0500 | [diff] [blame] | 913 | |
Kumar Gala | 5a85a30 | 2010-03-30 10:07:12 -0500 | [diff] [blame] | 914 | if (off < 0) |
| 915 | return; |
Kumar Gala | a2aab46 | 2008-10-23 00:01:06 -0500 | [diff] [blame] | 916 | |
Kumar Gala | 5a85a30 | 2010-03-30 10:07:12 -0500 | [diff] [blame] | 917 | /* We assume a cfg_addr not being set means we didn't setup the controller */ |
| 918 | if ((hose == NULL) || (hose->cfg_addr == NULL)) { |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 919 | fdt_del_node(blob, off); |
Kumar Gala | 5a85a30 | 2010-03-30 10:07:12 -0500 | [diff] [blame] | 920 | } else { |
Kumar Gala | a2aab46 | 2008-10-23 00:01:06 -0500 | [diff] [blame] | 921 | bus_range[0] = 0; |
| 922 | bus_range[1] = hose->last_busno - hose->first_busno; |
| 923 | fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4); |
| 924 | fdt_pci_dma_ranges(blob, off, hose); |
| 925 | } |
| 926 | } |
| 927 | #endif |