6 #include <linux/spinlock.h>
7 #include <linux/dma-mapping.h>
8 #include <linux/scatterlist.h>
9 #include <asm/machvec.h>
10 #include <asm-generic/pci-bridge.h>
13 * The following structure is used to manage multiple PCI busses.
19 struct pci_iommu_arena
;
22 /* A controller. Used to manage multiple PCI busses. */
24 struct pci_controller
{
25 struct pci_controller
*next
;
27 struct resource
*io_space
;
28 struct resource
*mem_space
;
30 /* The following are for reporting to userland. The invariant is
31 that if we report a BWX-capable dense memory, we do not report
32 a sparse memory at all, even if it exists. */
33 unsigned long sparse_mem_base
;
34 unsigned long dense_mem_base
;
35 unsigned long sparse_io_base
;
36 unsigned long dense_io_base
;
38 /* This one's for the kernel only. It's in KSEG somewhere. */
39 unsigned long config_space_base
;
42 /* For compatibility with current (as of July 2003) pciutils
43 and XFree86. Eventually will be removed. */
44 unsigned int need_domain_info
;
46 struct pci_iommu_arena
*sg_pci
;
47 struct pci_iommu_arena
*sg_isa
;
52 /* Override the logic in pci_scan_bus for skipping already-configured
55 #define pcibios_assign_all_busses() 1
57 #define PCIBIOS_MIN_IO alpha_mv.min_io_address
58 #define PCIBIOS_MIN_MEM alpha_mv.min_mem_address
60 extern void pcibios_set_master(struct pci_dev
*dev
);
64 /* The PCI address space does not equal the physical memory address space.
65 The networking and block device layers use this boolean for bounce buffer
67 #define PCI_DMA_BUS_IS_PHYS 0
71 /* implement the pci_ DMA API in terms of the generic device dma_ one */
72 #include <asm-generic/pci-dma-compat.h>
76 /* TODO: integrate with include/asm-generic/pci.h ? */
77 static inline int pci_get_legacy_ide_irq(struct pci_dev
*dev
, int channel
)
79 return channel
? 15 : 14;
82 #define pci_domain_nr(bus) ((struct pci_controller *)(bus)->sysdata)->index
84 static inline int pci_proc_domain(struct pci_bus
*bus
)
86 struct pci_controller
*hose
= bus
->sysdata
;
87 return hose
->need_domain_info
;
90 #endif /* __KERNEL__ */
92 /* Values for the `which' argument to sys_pciconfig_iobase. */
94 #define IOBASE_SPARSE_MEM 1
95 #define IOBASE_DENSE_MEM 2
96 #define IOBASE_SPARSE_IO 3
97 #define IOBASE_DENSE_IO 4
98 #define IOBASE_ROOT_BUS 5
99 #define IOBASE_FROM_HOSE 0x10000
101 extern struct pci_dev
*isa_bridge
;
103 extern int pci_legacy_read(struct pci_bus
*bus
, loff_t port
, u32
*val
,
105 extern int pci_legacy_write(struct pci_bus
*bus
, loff_t port
, u32 val
,
107 extern int pci_mmap_legacy_page_range(struct pci_bus
*bus
,
108 struct vm_area_struct
*vma
,
109 enum pci_mmap_state mmap_state
);
110 extern void pci_adjust_legacy_attr(struct pci_bus
*bus
,
111 enum pci_mmap_state mmap_type
);
112 #define HAVE_PCI_LEGACY 1
114 extern int pci_create_resource_files(struct pci_dev
*dev
);
115 extern void pci_remove_resource_files(struct pci_dev
*dev
);
117 #endif /* __ALPHA_PCI_H */