2 * Copyright 2007-2011 Freescale Semiconductor, Inc.
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)
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.
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,
22 #include <asm/fsl_serdes.h>
24 DECLARE_GLOBAL_DATA_PTR;
27 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
29 * Initialize controller and call the common driver/pci pci_hose_scan to
30 * scan for bridges and devices.
32 * Hose fields which need to be pre-initialized by board specific code:
42 #include <asm/fsl_pci.h>
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
48 #define FSL_PROG_IF_AGENT 0x1
50 #ifndef CONFIG_SYS_PCI_MEMORY_BUS
51 #define CONFIG_SYS_PCI_MEMORY_BUS 0
54 #ifndef CONFIG_SYS_PCI_MEMORY_PHYS
55 #define CONFIG_SYS_PCI_MEMORY_PHYS 0
58 #if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
59 #define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
62 /* Setup one inbound ATMU window.
64 * We let the caller decide what the window size should be
66 static void set_inbound_window(volatile pit_t *pi,
70 u32 sz = (__ilog2_u64(size) - 1);
71 u32 flag = PIWAR_EN | PIWAR_LOCAL |
72 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
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);
79 out_be32(&pi->piwbear, 0);
81 if (r->flags & PCI_REGION_PREFETCH)
83 out_be32(&pi->piwar, flag | sz);
86 int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
88 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
90 /* Reset hose to make sure its in a clean state */
91 memset(hose, 0, sizeof(struct pci_controller));
93 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
95 return fsl_is_pci_agent(hose);
98 static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
99 u64 out_lo, u8 pcie_cap,
102 struct pci_region *r = hose->regions + hose->region_count;
103 u64 sz = min((u64)gd->ram_size, (1ull << 32));
105 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
106 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
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");
116 if ((bus_start + sz) > out_lo) {
117 sz = out_lo - bus_start;
118 debug ("limiting size to %llx\n", sz);
121 pci_sz = 1ull << __ilog2_u64(sz);
123 * we can overlap inbound/outbound windows on PCI-E since RX & TX
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,
130 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
131 PCI_REGION_PREFETCH);
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.
138 sz = 2ull << __ilog2_u64(sz);
140 set_inbound_window(pi--, r++, sz);
141 sz = 0; /* make sure we dont set the R2 window */
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);
152 phys_start += pci_sz;
154 pci_sz = 1ull << __ilog2_u64(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);
164 phys_start += pci_sz;
168 #if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
170 * On 64-bit capable systems, set up a mapping for all of DRAM
171 * in high pci address space.
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)
176 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
177 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
178 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
179 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
182 CONFIG_SYS_PCI64_MEMORY_BUS,
183 CONFIG_SYS_PCI_MEMORY_PHYS,
185 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
186 PCI_REGION_PREFETCH);
187 set_inbound_window(pi--, r++, pci_sz);
189 pci_sz = 1ull << __ilog2_u64(sz);
191 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
192 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
193 pci_set_region(r, bus_start, phys_start, pci_sz,
194 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
195 PCI_REGION_PREFETCH);
198 phys_start += pci_sz;
199 set_inbound_window(pi--, r++, pci_sz);
203 #ifdef CONFIG_PHYS_64BIT
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);
209 hose->region_count = r - hose->regions;
214 void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
216 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
217 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
221 int enabled, r, inbound = 0;
224 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
225 struct pci_region *reg = hose->regions + hose->region_count;
226 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
228 /* Initialize ATMU registers based on hose regions and flags */
229 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
232 u64 out_hi = 0, out_lo = -1ULL;
233 u32 pcicsrbar, pcicsrbar_sz;
235 pci_setup_indirect(hose, cfg_addr, cfg_data);
237 block_rev = in_be32(&pci->block_rev1);
238 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
239 pi = &pci->pit[2]; /* 0xDC0 */
241 pi = &pci->pit[3]; /* 0xDE0 */
244 /* Handle setup of outbound windows first */
245 for (r = 0; r < hose->region_count; r++) {
246 unsigned long flags = hose->regions[r].flags;
247 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
249 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
250 if (flags != PCI_REGION_SYS_MEMORY) {
251 u64 start = hose->regions[r].bus_start;
252 u64 end = start + hose->regions[r].size;
254 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
255 out_be32(&po->potar, start >> 12);
256 #ifdef CONFIG_SYS_PCI_64BIT
257 out_be32(&po->potear, start >> 44);
259 out_be32(&po->potear, 0);
261 if (hose->regions[r].flags & PCI_REGION_IO) {
262 out_be32(&po->powar, POWAR_EN | sz |
263 POWAR_IO_READ | POWAR_IO_WRITE);
265 out_be32(&po->powar, POWAR_EN | sz |
266 POWAR_MEM_READ | POWAR_MEM_WRITE);
267 out_lo = min(start, out_lo);
268 out_hi = max(end, out_hi);
273 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
275 /* setup PCSRBAR/PEXCSRBAR */
276 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
277 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
278 pcicsrbar_sz = ~pcicsrbar_sz + 1;
280 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
281 (out_lo > 0x100000000ull))
282 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
284 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
285 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
287 out_lo = min(out_lo, (u64)pcicsrbar);
289 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
291 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
292 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
293 hose->region_count++;
295 /* see if we are a PCIe or PCI controller */
296 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
299 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
301 for (r = 0; r < hose->region_count; r++)
302 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
303 (u64)hose->regions[r].phys_start,
304 (u64)hose->regions[r].bus_start,
305 (u64)hose->regions[r].size,
306 hose->regions[r].flags);
308 pci_register_hose(hose);
309 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
310 hose->current_busno = hose->first_busno;
312 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
313 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
314 * - Master abort (pci)
315 * - Master PERR (pci)
318 pci_hose_read_config_dword(hose, dev, PCI_DCR, &temp32);
319 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
320 pci_hose_write_config_dword(hose, dev, PCI_DCR, temp32);
322 #if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
324 pci_hose_read_config_dword(hose, dev, PCI_LCR, &temp32);
325 temp32 &= ~0x03; /* Disable ASPM */
326 pci_hose_write_config_dword(hose, dev, PCI_LCR, temp32);
329 if (pcie_cap == PCI_CAP_ID_EXP) {
330 pci_hose_read_config_word(hose, dev, PCI_LTSSM, <ssm);
331 enabled = ltssm >= PCI_LTSSM_L0;
333 #ifdef CONFIG_FSL_PCIE_RESET
336 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
337 /* assert PCIe reset */
338 setbits_be32(&pci->pdb_stat, 0x08000000);
339 (void) in_be32(&pci->pdb_stat);
341 debug(" Asserting PCIe reset @%p = %x\n",
342 &pci->pdb_stat, in_be32(&pci->pdb_stat));
343 /* clear PCIe reset */
344 clrbits_be32(&pci->pdb_stat, 0x08000000);
346 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
347 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
350 debug("....PCIe link error. "
351 "LTSSM=0x%02x.\n", ltssm);
353 enabled = ltssm >= PCI_LTSSM_L0;
355 /* we need to re-write the bar0 since a reset will
358 pci_hose_write_config_dword(hose, dev,
359 PCI_BASE_ADDRESS_0, pcicsrbar);
364 /* Let the user know there's no PCIe link */
365 printf("no link, regs @ 0x%lx\n", pci_info->regs);
366 hose->last_busno = hose->first_busno;
370 out_be32(&pci->pme_msg_det, 0xffffffff);
371 out_be32(&pci->pme_msg_int_en, 0xffffffff);
373 /* Print the negotiated PCIe link width */
374 pci_hose_read_config_word(hose, dev, PCI_LSR, &temp16);
375 printf("x%d, regs @ 0x%lx\n", (temp16 & 0x3f0 ) >> 4,
378 hose->current_busno++; /* Start scan with secondary */
379 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
382 /* Use generic setup_device to initialize standard pci regs,
383 * but do not allocate any windows since any BAR found (such
384 * as PCSRBAR) is not in this cpu's memory space.
386 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
387 hose->pci_prefetch, hose->pci_io);
390 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
391 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
392 temp16 | PCI_COMMAND_MEMORY);
395 #ifndef CONFIG_PCI_NOSCAN
396 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &temp8);
398 /* Programming Interface (PCI_CLASS_PROG)
399 * 0 == pci host or pcie root-complex,
400 * 1 == pci agent or pcie end-point
403 debug(" Scanning PCI bus %02x\n",
404 hose->current_busno);
405 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
407 debug(" Not scanning PCI bus %02x. PI=%x\n",
408 hose->current_busno, temp8);
409 hose->last_busno = hose->current_busno;
412 /* if we are PCIe - update limit regs and subordinate busno
413 * for the virtual P2P bridge
415 if (pcie_cap == PCI_CAP_ID_EXP) {
416 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
419 hose->last_busno = hose->current_busno;
422 /* Clear all error indications */
423 if (pcie_cap == PCI_CAP_ID_EXP)
424 out_be32(&pci->pme_msg_det, 0xffffffff);
425 out_be32(&pci->pedr, 0xffffffff);
427 pci_hose_read_config_word (hose, dev, PCI_DSR, &temp16);
429 pci_hose_write_config_word(hose, dev, PCI_DSR, 0xffff);
432 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
434 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
438 int fsl_is_pci_agent(struct pci_controller *hose)
441 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
443 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
445 return (prog_if == FSL_PROG_IF_AGENT);
448 int fsl_pci_init_port(struct fsl_pci_info *pci_info,
449 struct pci_controller *hose, int busno)
451 volatile ccsr_fsl_pci_t *pci;
452 struct pci_region *r;
453 pci_dev_t dev = PCI_BDF(busno,0,0);
456 pci = (ccsr_fsl_pci_t *) pci_info->regs;
458 /* on non-PCIe controllers we don't have pme_msg_det so this code
459 * should do nothing since the read will return 0
461 if (in_be32(&pci->pme_msg_det)) {
462 out_be32(&pci->pme_msg_det, 0xffffffff);
463 debug (" with errors. Clearing. Now 0x%08x",
467 r = hose->regions + hose->region_count;
469 /* outbound memory */
483 hose->region_count = r - hose->regions;
484 hose->first_busno = busno;
486 fsl_pci_init(hose, pci_info);
488 if (fsl_is_pci_agent(hose)) {
489 fsl_pci_config_unlock(hose);
490 hose->last_busno = hose->first_busno;
493 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
494 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
495 "e" : "", pci_info->pci_num,
496 hose->first_busno, hose->last_busno);
498 return(hose->last_busno + 1);
501 /* Enable inbound PCI config cycles for agent/endpoint interface */
502 void fsl_pci_config_unlock(struct pci_controller *hose)
504 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
509 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &agent);
513 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
514 if (pcie_cap != 0x0) {
515 /* PCIe - set CFG_READY bit of Configuration Ready Register */
516 pci_hose_write_config_byte(hose, dev, FSL_PCIE_CFG_RDY, 0x1);
518 /* PCI - clear ACL bit of PBFR */
519 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
521 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
525 #if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
526 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
527 int fsl_configure_pcie(struct fsl_pci_info *info,
528 struct pci_controller *hose,
529 const char *connected, int busno)
533 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
534 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
536 is_endpoint = fsl_setup_hose(hose, info->regs);
537 printf("PCIe%u: %s", info->pci_num,
538 is_endpoint ? "Endpoint" : "Root Complex");
540 printf(" of %s", connected);
543 return fsl_pci_init_port(info, hose, busno);
546 #if defined(CONFIG_FSL_CORENET)
547 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
548 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
549 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
550 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
551 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
552 #elif defined(CONFIG_MPC85xx)
553 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
554 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
555 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
556 #define _DEVDISR_PCIE4 0
557 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
558 #elif defined(CONFIG_MPC86xx)
559 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
560 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
561 #define _DEVDISR_PCIE3 0
562 #define _DEVDISR_PCIE4 0
563 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
564 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
566 #error "No defines for DEVDISR_PCIE"
569 /* Implement a dummy function for those platforms w/o SERDES */
570 static const char *__board_serdes_name(enum srds_prtcl device)
573 #ifdef CONFIG_SYS_PCIE1_NAME
575 return CONFIG_SYS_PCIE1_NAME;
577 #ifdef CONFIG_SYS_PCIE2_NAME
579 return CONFIG_SYS_PCIE2_NAME;
581 #ifdef CONFIG_SYS_PCIE3_NAME
583 return CONFIG_SYS_PCIE3_NAME;
585 #ifdef CONFIG_SYS_PCIE4_NAME
587 return CONFIG_SYS_PCIE4_NAME;
596 __attribute__((weak, alias("__board_serdes_name"))) const char *
597 board_serdes_name(enum srds_prtcl device);
599 static u32 devdisr_mask[] = {
606 int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
607 struct fsl_pci_info *pci_info)
609 struct pci_controller *hose;
610 int num = dev - PCIE1;
612 hose = calloc(1, sizeof(struct pci_controller));
616 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
617 busno = fsl_configure_pcie(pci_info, hose,
618 board_serdes_name(dev), busno);
620 printf("PCIe%d: disabled\n", num + 1);
626 int fsl_pcie_init_board(int busno)
628 struct fsl_pci_info pci_info;
629 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
630 u32 devdisr = in_be32(&gur->devdisr);
633 SET_STD_PCIE_INFO(pci_info, 1);
634 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
636 setbits_be32(&gur->devdisr, _DEVDISR_PCIE1); /* disable */
640 SET_STD_PCIE_INFO(pci_info, 2);
641 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
643 setbits_be32(&gur->devdisr, _DEVDISR_PCIE2); /* disable */
647 SET_STD_PCIE_INFO(pci_info, 3);
648 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
650 setbits_be32(&gur->devdisr, _DEVDISR_PCIE3); /* disable */
654 SET_STD_PCIE_INFO(pci_info, 4);
655 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
657 setbits_be32(&gur->devdisr, _DEVDISR_PCIE4); /* disable */
663 int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
664 struct fsl_pci_info *pci_info)
669 int fsl_pcie_init_board(int busno)
675 #ifdef CONFIG_OF_BOARD_SETUP
677 #include <fdt_support.h>
679 void ft_fsl_pci_setup(void *blob, const char *pci_compat,
680 unsigned long ctrl_addr)
684 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
685 struct pci_controller *hose;
687 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
689 /* convert ctrl_addr to true physical address */
690 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
691 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
693 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
698 /* We assume a cfg_addr not being set means we didn't setup the controller */
699 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
700 fdt_del_node(blob, off);
703 bus_range[1] = hose->last_busno - hose->first_busno;
704 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
705 fdt_pci_dma_ranges(blob, off, hose);