• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/kernel/

Lines Matching refs:hose

101 			struct pci_controller *hose = dev->sysdata;
102 struct pci_iommu_arena *pci = hose->sg_pci;
134 struct pci_controller *hose = dev->sysdata;
140 if (start - hose->io_space->start < PCIBIOS_MIN_IO)
141 start = PCIBIOS_MIN_IO + hose->io_space->start;
151 if (start - hose->mem_space->start < PCIBIOS_MIN_MEM)
152 start = PCIBIOS_MIN_MEM + hose->mem_space->start;
173 if (hose->sparse_mem_base && size <= 7 * 16*MB) {
266 struct pci_controller *hose = (struct pci_controller *)bus->sysdata;
274 hose->io_space);
277 hose->mem_space);
284 /* Propagate hose info into the subordinate devices. */
286 struct pci_controller *hose = bus->sysdata;
292 u32 sg_base = hose->sg_pci ? hose->sg_pci->dma_base : ~0;
295 bus->resource[0] = hose->io_space;
296 bus->resource[1] = hose->mem_space;
298 /* Adjust hose mem_space limit to prevent PCI allocations
301 end = hose->mem_space->start + pci_mem_end;
302 if (hose->mem_space->end > end)
303 hose->mem_space->end = end;
327 struct pci_controller *hose = (struct pci_controller *)dev->sysdata;
331 offset = hose->io_space->start;
333 offset = hose->mem_space->start;
342 struct pci_controller *hose = (struct pci_controller *)dev->sysdata;
346 offset = hose->io_space->start;
348 offset = hose->mem_space->start;
416 struct pci_controller *hose;
422 for (next_busno = 0, hose = hose_head; hose; hose = hose->next) {
423 bus = pci_scan_bus(next_busno, alpha_mv.pci_ops, hose);
424 hose->bus = bus;
425 hose->need_domain_info = need_domain_info;
427 /* Don't allow 8-bit bus number overflow inside the hose -
445 struct pci_controller *hose;
447 hose = alloc_bootmem(sizeof(*hose));
449 *hose_tail = hose;
450 hose_tail = &hose->next;
452 return hose;
467 memory. Do this on a per-card basis so that we choose the right hose. */
472 struct pci_controller *hose;
475 /* from hose or from bus.devfn */
477 for(hose = hose_head; hose; hose = hose->next)
478 if (hose->index == bus) break;
479 if (!hose) return -ENODEV;
483 hose = pci_isa_hose;
488 hose = dev->sysdata;
495 return hose->index;
497 return hose->sparse_mem_base;
499 return hose->dense_mem_base;
501 return hose->sparse_io_base;
503 return hose->dense_io_base;
505 return hose->bus->number;