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