- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete.
[linux-flexiantxendom0-3.2.10.git] / include / asm-x86 / mach-xen / asm / pci.h
1 #ifndef __x86_PCI_H
2 #define __x86_PCI_H
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
11
12 #ifdef __KERNEL__
13
14 struct pci_sysdata {
15         int             domain;         /* PCI domain */
16         int             node;           /* NUMA node */
17 #ifdef CONFIG_X86_64
18         void*           iommu;          /* IOMMU private data */
19 #endif
20 #ifdef CONFIG_XEN_PCIDEV_FRONTEND
21         struct pcifront_device *pdev;
22 #endif
23 };
24
25 /* scan a bus after allocating a pci_sysdata for it */
26 extern struct pci_bus *pci_scan_bus_with_sysdata(int busno);
27
28 static inline int pci_domain_nr(struct pci_bus *bus)
29 {
30         struct pci_sysdata *sd = bus->sysdata;
31         return sd->domain;
32 }
33
34 static inline int pci_proc_domain(struct pci_bus *bus)
35 {
36         return pci_domain_nr(bus);
37 }
38
39
40 /* Can be used to override the logic in pci_scan_bus for skipping
41    already-configured bus numbers - to be used for buggy BIOSes
42    or architectures with incomplete PCI setup by the loader */
43
44 #ifdef CONFIG_PCI
45 extern unsigned int pcibios_assign_all_busses(void);
46 #else
47 #define pcibios_assign_all_busses()     0
48 #endif
49
50 #include <asm/hypervisor.h>
51 #define pcibios_scan_all_fns(a, b)      (!is_initial_xendomain())
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);
60 struct pci_bus * pcibios_scan_root(int bus);
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,
70                                enum pci_mmap_state mmap_state, int write_combine);
71
72
73 #ifdef CONFIG_PCI
74 static inline void pci_dma_burst_advice(struct pci_dev *pdev,
75                                         enum pci_dma_burst_strategy *strat,
76                                         unsigned long *strategy_parameter)
77 {
78         *strat = PCI_DMA_BURST_INFINITY;
79         *strategy_parameter = ~0UL;
80 }
81 #endif
82
83
84 #endif  /* __KERNEL__ */
85
86 #ifdef CONFIG_X86_32
87 # include "pci_32.h"
88 #else
89 # include "pci_64.h"
90 #endif
91
92 /* implement the pci_ DMA API in terms of the generic device dma_ one */
93 #include <asm-generic/pci-dma-compat.h>
94
95 /* generic pci stuff */
96 #include <asm-generic/pci.h>
97
98
99
100 #endif