H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_PCI_H |
| 2 | #define _ASM_X86_PCI_H |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 3 | |
| 4 | #include <linux/mm.h> /* for struct page */ |
| 5 | #include <linux/types.h> |
| 6 | #include <linux/slab.h> |
| 7 | #include <linux/string.h> |
| 8 | #include <asm/scatterlist.h> |
| 9 | #include <asm/io.h> |
| 10 | |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 11 | #ifdef __KERNEL__ |
| 12 | |
| 13 | struct pci_sysdata { |
| 14 | int domain; /* PCI domain */ |
| 15 | int node; /* NUMA node */ |
| 16 | #ifdef CONFIG_X86_64 |
Joe Perches | 69bdb7b | 2008-03-23 01:03:04 -0700 | [diff] [blame] | 17 | void *iommu; /* IOMMU private data */ |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 18 | #endif |
| 19 | }; |
| 20 | |
Thomas Gleixner | 0715650 | 2008-05-12 15:43:37 +0200 | [diff] [blame] | 21 | extern int pci_routeirq; |
Ingo Molnar | 7a9787e | 2008-10-28 16:26:12 +0100 | [diff] [blame] | 22 | extern int noioapicquirk; |
| 23 | extern int noioapicreroute; |
Thomas Gleixner | 0715650 | 2008-05-12 15:43:37 +0200 | [diff] [blame] | 24 | |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 25 | /* scan a bus after allocating a pci_sysdata for it */ |
Yinghai Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 26 | extern struct pci_bus *pci_scan_bus_on_node(int busno, struct pci_ops *ops, |
| 27 | int node); |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 28 | extern struct pci_bus *pci_scan_bus_with_sysdata(int busno); |
| 29 | |
| 30 | static inline int pci_domain_nr(struct pci_bus *bus) |
| 31 | { |
| 32 | struct pci_sysdata *sd = bus->sysdata; |
| 33 | return sd->domain; |
| 34 | } |
| 35 | |
| 36 | static inline int pci_proc_domain(struct pci_bus *bus) |
| 37 | { |
| 38 | return pci_domain_nr(bus); |
| 39 | } |
| 40 | |
| 41 | |
| 42 | /* Can be used to override the logic in pci_scan_bus for skipping |
| 43 | already-configured bus numbers - to be used for buggy BIOSes |
| 44 | or architectures with incomplete PCI setup by the loader */ |
| 45 | |
| 46 | #ifdef CONFIG_PCI |
| 47 | extern unsigned int pcibios_assign_all_busses(void); |
| 48 | #else |
| 49 | #define pcibios_assign_all_busses() 0 |
| 50 | #endif |
| 51 | #define pcibios_scan_all_fns(a, b) 0 |
| 52 | |
| 53 | extern unsigned long pci_mem_start; |
| 54 | #define PCIBIOS_MIN_IO 0x1000 |
| 55 | #define PCIBIOS_MIN_MEM (pci_mem_start) |
| 56 | |
| 57 | #define PCIBIOS_MIN_CARDBUS_IO 0x4000 |
| 58 | |
| 59 | void pcibios_config_init(void); |
Joe Perches | 69bdb7b | 2008-03-23 01:03:04 -0700 | [diff] [blame] | 60 | struct pci_bus *pcibios_scan_root(int bus); |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 61 | |
| 62 | void pcibios_set_master(struct pci_dev *dev); |
| 63 | void pcibios_penalize_isa_irq(int irq, int active); |
| 64 | struct irq_routing_table *pcibios_get_irq_routing_table(void); |
| 65 | int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq); |
| 66 | |
| 67 | |
| 68 | #define HAVE_PCI_MMAP |
| 69 | extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma, |
Joe Perches | 69bdb7b | 2008-03-23 01:03:04 -0700 | [diff] [blame] | 70 | enum pci_mmap_state mmap_state, |
| 71 | int write_combine); |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 72 | |
| 73 | |
| 74 | #ifdef CONFIG_PCI |
Thomas Gleixner | 376ff03 | 2008-01-30 13:30:16 +0100 | [diff] [blame] | 75 | extern void early_quirks(void); |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 76 | static inline void pci_dma_burst_advice(struct pci_dev *pdev, |
| 77 | enum pci_dma_burst_strategy *strat, |
| 78 | unsigned long *strategy_parameter) |
| 79 | { |
| 80 | *strat = PCI_DMA_BURST_INFINITY; |
| 81 | *strategy_parameter = ~0UL; |
| 82 | } |
Thomas Gleixner | 376ff03 | 2008-01-30 13:30:16 +0100 | [diff] [blame] | 83 | #else |
| 84 | static inline void early_quirks(void) { } |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 85 | #endif |
| 86 | |
Jeremy Fitzhardinge | cfb80c9 | 2008-12-16 12:17:36 -0800 | [diff] [blame] | 87 | extern void pci_iommu_alloc(void); |
| 88 | |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 89 | #endif /* __KERNEL__ */ |
| 90 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 91 | #ifdef CONFIG_X86_32 |
| 92 | # include "pci_32.h" |
| 93 | #else |
| 94 | # include "pci_64.h" |
| 95 | #endif |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 96 | |
| 97 | /* implement the pci_ DMA API in terms of the generic device dma_ one */ |
| 98 | #include <asm-generic/pci-dma-compat.h> |
| 99 | |
| 100 | /* generic pci stuff */ |
| 101 | #include <asm-generic/pci.h> |
| 102 | |
Thomas Gleixner | b4ea929 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 103 | #ifdef CONFIG_NUMA |
| 104 | /* Returns the node based on pci bus */ |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 105 | static inline int __pcibus_to_node(const struct pci_bus *bus) |
Thomas Gleixner | b4ea929 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 106 | { |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 107 | const struct pci_sysdata *sd = bus->sysdata; |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 108 | |
Thomas Gleixner | b4ea929 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 109 | return sd->node; |
| 110 | } |
| 111 | |
| 112 | static inline cpumask_t __pcibus_to_cpumask(struct pci_bus *bus) |
| 113 | { |
| 114 | return node_to_cpumask(__pcibus_to_node(bus)); |
| 115 | } |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 116 | |
| 117 | static inline const struct cpumask * |
| 118 | cpumask_of_pcibus(const struct pci_bus *bus) |
| 119 | { |
| 120 | return cpumask_of_node(__pcibus_to_node(bus)); |
| 121 | } |
Thomas Gleixner | b4ea929 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 122 | #endif |
Greg Kroah-Hartman | f3e6f16 | 2007-10-12 14:07:23 -0700 | [diff] [blame] | 123 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 124 | #endif /* _ASM_X86_PCI_H */ |