blob: ddd8e248fc0a43bde4ec039beebbdfc500457e77 [file] [log] [blame]
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -07001#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
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
21/* scan a bus after allocating a pci_sysdata for it */
22extern struct pci_bus *pci_scan_bus_with_sysdata(int busno);
23
24static inline int pci_domain_nr(struct pci_bus *bus)
25{
26 struct pci_sysdata *sd = bus->sysdata;
27 return sd->domain;
28}
29
30static inline int pci_proc_domain(struct pci_bus *bus)
31{
32 return pci_domain_nr(bus);
33}
34
35
36/* Can be used to override the logic in pci_scan_bus for skipping
37 already-configured bus numbers - to be used for buggy BIOSes
38 or architectures with incomplete PCI setup by the loader */
39
40#ifdef CONFIG_PCI
41extern unsigned int pcibios_assign_all_busses(void);
42#else
43#define pcibios_assign_all_busses() 0
44#endif
45#define pcibios_scan_all_fns(a, b) 0
46
47extern unsigned long pci_mem_start;
48#define PCIBIOS_MIN_IO 0x1000
49#define PCIBIOS_MIN_MEM (pci_mem_start)
50
51#define PCIBIOS_MIN_CARDBUS_IO 0x4000
52
53void pcibios_config_init(void);
Joe Perches69bdb7b2008-03-23 01:03:04 -070054struct pci_bus *pcibios_scan_root(int bus);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070055
56void pcibios_set_master(struct pci_dev *dev);
57void pcibios_penalize_isa_irq(int irq, int active);
58struct irq_routing_table *pcibios_get_irq_routing_table(void);
59int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
60
61
62#define HAVE_PCI_MMAP
63extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
Joe Perches69bdb7b2008-03-23 01:03:04 -070064 enum pci_mmap_state mmap_state,
65 int write_combine);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070066
67
68#ifdef CONFIG_PCI
Thomas Gleixner376ff032008-01-30 13:30:16 +010069extern void early_quirks(void);
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070070static inline void pci_dma_burst_advice(struct pci_dev *pdev,
71 enum pci_dma_burst_strategy *strat,
72 unsigned long *strategy_parameter)
73{
74 *strat = PCI_DMA_BURST_INFINITY;
75 *strategy_parameter = ~0UL;
76}
Thomas Gleixner376ff032008-01-30 13:30:16 +010077#else
78static inline void early_quirks(void) { }
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070079#endif
80
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070081#endif /* __KERNEL__ */
82
Thomas Gleixner96a388d2007-10-11 11:20:03 +020083#ifdef CONFIG_X86_32
84# include "pci_32.h"
85#else
86# include "pci_64.h"
87#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -070088
89/* implement the pci_ DMA API in terms of the generic device dma_ one */
90#include <asm-generic/pci-dma-compat.h>
91
92/* generic pci stuff */
93#include <asm-generic/pci.h>
94
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +010095#ifdef CONFIG_NUMA
96/* Returns the node based on pci bus */
97static inline int __pcibus_to_node(struct pci_bus *bus)
98{
99 struct pci_sysdata *sd = bus->sysdata;
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700100
Thomas Gleixnerb4ea9292008-01-30 13:30:38 +0100101 return sd->node;
102}
103
104static inline cpumask_t __pcibus_to_cpumask(struct pci_bus *bus)
105{
106 return node_to_cpumask(__pcibus_to_node(bus));
107}
108#endif
Greg Kroah-Hartmanf3e6f162007-10-12 14:07:23 -0700109
110#endif