aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/pci.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-10-28 11:26:12 -0400
committerIngo Molnar <mingo@elte.hu>2008-10-28 11:26:12 -0400
commit7a9787e1eba95a166265e6a260cf30af04ef0a99 (patch)
treee730a4565e0318140d2fbd2f0415d18a339d7336 /arch/x86/include/asm/pci.h
parent41b9eb264c8407655db57b60b4457fe1b2ec9977 (diff)
parent0173a3265b228da319ceb9c1ec6a5682fd1b2d92 (diff)
Merge commit 'v2.6.28-rc2' into x86/pci-ioapic-boot-irq-quirks
Diffstat (limited to 'arch/x86/include/asm/pci.h')
-rw-r--r--arch/x86/include/asm/pci.h116
1 files changed, 116 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pci.h b/arch/x86/include/asm/pci.h
new file mode 100644
index 000000000000..647781298e7e
--- /dev/null
+++ b/arch/x86/include/asm/pci.h
@@ -0,0 +1,116 @@
1#ifndef _ASM_X86_PCI_H
2#define _ASM_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#ifdef __KERNEL__
12
13struct pci_sysdata {
14 int domain; /* PCI domain */
15 int node; /* NUMA node */
16#ifdef CONFIG_X86_64
17 void *iommu; /* IOMMU private data */
18#endif
19};
20
21extern int pci_routeirq;
22extern int noioapicquirk;
23extern int noioapicreroute;
24
25/* scan a bus after allocating a pci_sysdata for it */
26extern struct pci_bus *pci_scan_bus_on_node(int busno, struct pci_ops *ops,
27 int node);
28extern struct pci_bus *pci_scan_bus_with_sysdata(int busno);
29
30static inline int pci_domain_nr(struct pci_bus *bus)
31{
32 struct pci_sysdata *sd = bus->sysdata;
33 return sd->domain;
34}
35
36static 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
47extern 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
53extern 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
59void pcibios_config_init(void);
60struct pci_bus *pcibios_scan_root(int bus);
61
62void pcibios_set_master(struct pci_dev *dev);
63void pcibios_penalize_isa_irq(int irq, int active);
64struct irq_routing_table *pcibios_get_irq_routing_table(void);
65int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
66
67
68#define HAVE_PCI_MMAP
69extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
70 enum pci_mmap_state mmap_state,
71 int write_combine);
72
73
74#ifdef CONFIG_PCI
75extern void early_quirks(void);
76static 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}
83#else
84static inline void early_quirks(void) { }
85#endif
86
87#endif /* __KERNEL__ */
88
89#ifdef CONFIG_X86_32
90# include "pci_32.h"
91#else
92# include "pci_64.h"
93#endif
94
95/* implement the pci_ DMA API in terms of the generic device dma_ one */
96#include <asm-generic/pci-dma-compat.h>
97
98/* generic pci stuff */
99#include <asm-generic/pci.h>
100
101#ifdef CONFIG_NUMA
102/* Returns the node based on pci bus */
103static inline int __pcibus_to_node(struct pci_bus *bus)
104{
105 struct pci_sysdata *sd = bus->sysdata;
106
107 return sd->node;
108}
109
110static inline cpumask_t __pcibus_to_cpumask(struct pci_bus *bus)
111{
112 return node_to_cpumask(__pcibus_to_node(bus));
113}
114#endif
115
116#endif /* _ASM_X86_PCI_H */