blob: 50ac542c9382ec371aa336e937bd6bc779a52581 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PCI_H
2#define _ASM_X86_PCI_H
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -07003
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-Hartmanf3e6f162007-10-12 14:07:23 -070011#ifdef __KERNEL__
12
13struct pci_sysdata {
14 int domain; /* PCI domain */
15 int node; /* NUMA node */
16#ifdef CONFIG_X86_64
Joe Perches69bdb7b2008-03-23 01:03:04 -070017 void *iommu; /* IOMMU private data */
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070018#endif
19};
20
Thomas Gleixner07156502008-05-12 15:43:37 +020021extern int pci_routeirq;
22
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070023/* scan a bus after allocating a pci_sysdata for it */
Yinghai Lu871d5f82008-02-19 03:20:09 -080024extern struct pci_bus *pci_scan_bus_on_node(int busno, struct pci_ops *ops,
25 int node);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070026extern struct pci_bus *pci_scan_bus_with_sysdata(int busno);
27
28static inline int pci_domain_nr(struct pci_bus *bus)
29{
30 struct pci_sysdata *sd = bus->sysdata;
31 return sd->domain;
32}
33
34static 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
45extern unsigned int pcibios_assign_all_busses(void);
46#else
47#define pcibios_assign_all_busses() 0
48#endif
49#define pcibios_scan_all_fns(a, b) 0
50
51extern unsigned long pci_mem_start;
52#define PCIBIOS_MIN_IO 0x1000
53#define PCIBIOS_MIN_MEM (pci_mem_start)
54
55#define PCIBIOS_MIN_CARDBUS_IO 0x4000
56
57void pcibios_config_init(void);
Joe Perches69bdb7b2008-03-23 01:03:04 -070058struct pci_bus *pcibios_scan_root(int bus);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070059
60void pcibios_set_master(struct pci_dev *dev);
61void pcibios_penalize_isa_irq(int irq, int active);
62struct irq_routing_table *pcibios_get_irq_routing_table(void);
63int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
64
65
66#define HAVE_PCI_MMAP
67extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Joe Perches69bdb7b2008-03-23 01:03:04 -070068 enum pci_mmap_state mmap_state,
69 int write_combine);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070070
71
72#ifdef CONFIG_PCI
Thomas Gleixner376ff032008-01-30 13:30:16 +010073extern void early_quirks(void);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070074static 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}
Thomas Gleixner376ff032008-01-30 13:30:16 +010081#else
82static inline void early_quirks(void) { }
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070083#endif
84
Jeremy Fitzhardingecfb80c92008-12-16 12:17:36 -080085extern void pci_iommu_alloc(void);
86
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070087#endif /* __KERNEL__ */
88
Thomas Gleixner96a388d2007-10-11 11:20:03 +020089#ifdef CONFIG_X86_32
90# include "pci_32.h"
91#else
92# include "pci_64.h"
93#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070094
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
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100101#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;
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700106
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100107 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
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700115
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700116#endif /* _ASM_X86_PCI_H */