blob: 5da8cb0c0599fccc883992354929238aa8700bd1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __x8664_PCI_H
2#define __x8664_PCI_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <asm/io.h>
5
6#ifdef __KERNEL__
7
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +03008struct pci_sysdata {
9 int node; /* NUMA node */
10 void* iommu; /* IOMMU private data */
11};
12
Muli Ben-Yehuda73c59af2007-08-10 13:01:19 -070013extern struct pci_bus *pci_scan_bus_with_sysdata(int busno);
14
Muli Ben-Yehuda08f1c192007-07-22 00:23:39 +030015#ifdef CONFIG_CALGARY_IOMMU
16static inline void* pci_iommu(struct pci_bus *bus)
17{
18 struct pci_sysdata *sd = bus->sysdata;
19 return sd->iommu;
20}
21
22static inline void set_pci_iommu(struct pci_bus *bus, void *val)
23{
24 struct pci_sysdata *sd = bus->sysdata;
25 sd->iommu = val;
26}
27#endif /* CONFIG_CALGARY_IOMMU */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mm.h> /* for struct page */
30
31/* Can be used to override the logic in pci_scan_bus for skipping
32 already-configured bus numbers - to be used for buggy BIOSes
33 or architectures with incomplete PCI setup by the loader */
34
35#ifdef CONFIG_PCI
36extern unsigned int pcibios_assign_all_busses(void);
37#else
38#define pcibios_assign_all_busses() 0
39#endif
40#define pcibios_scan_all_fns(a, b) 0
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern unsigned long pci_mem_start;
Linus Torvalds2ba84682005-08-14 18:21:30 -070043#define PCIBIOS_MIN_IO 0x1000
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define PCIBIOS_MIN_MEM (pci_mem_start)
45
Linus Torvalds2ba84682005-08-14 18:21:30 -070046#define PCIBIOS_MIN_CARDBUS_IO 0x4000
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048void pcibios_config_init(void);
49struct pci_bus * pcibios_scan_root(int bus);
50extern int (*pci_config_read)(int seg, int bus, int dev, int fn, int reg, int len, u32 *value);
51extern int (*pci_config_write)(int seg, int bus, int dev, int fn, int reg, int len, u32 value);
52
53void pcibios_set_master(struct pci_dev *dev);
David Shaohua Lic9c3e452005-04-01 00:07:31 -050054void pcibios_penalize_isa_irq(int irq, int active);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct irq_routing_table *pcibios_get_irq_routing_table(void);
56int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
57
58#include <linux/types.h>
59#include <linux/slab.h>
60#include <asm/scatterlist.h>
61#include <linux/string.h>
62#include <asm/page.h>
63
Jon Mason0dc243a2006-06-26 13:58:11 +020064extern void pci_iommu_alloc(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065extern int iommu_setup(char *opt);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/* The PCI address space does equal the physical memory
68 * address space. The networking and block device layers use
69 * this boolean for bounce buffer decisions
70 *
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010071 * On AMD64 it mostly equals, but we set it to zero if a hardware
72 * IOMMU (gart) of sotware IOMMU (swiotlb) is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
Muli Ben-Yehuda17a941d2006-01-11 22:44:42 +010074#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
75
Jon Masone4650582006-06-26 13:58:14 +020076#if defined(CONFIG_IOMMU) || defined(CONFIG_CALGARY_IOMMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
79 dma_addr_t ADDR_NAME;
80#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
81 __u32 LEN_NAME;
82#define pci_unmap_addr(PTR, ADDR_NAME) \
83 ((PTR)->ADDR_NAME)
84#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
85 (((PTR)->ADDR_NAME) = (VAL))
86#define pci_unmap_len(PTR, LEN_NAME) \
87 ((PTR)->LEN_NAME)
88#define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
89 (((PTR)->LEN_NAME) = (VAL))
90
91#else
92/* No IOMMU */
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
95#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
96#define pci_unmap_addr(PTR, ADDR_NAME) (0)
97#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
98#define pci_unmap_len(PTR, LEN_NAME) (0)
99#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
100
101#endif
102
103#include <asm-generic/pci-dma-compat.h>
104
Andrew Mortonbb4a61b2005-06-06 23:07:46 -0700105#ifdef CONFIG_PCI
David S. Millere24c2d92005-06-02 12:55:50 -0700106static inline void pci_dma_burst_advice(struct pci_dev *pdev,
107 enum pci_dma_burst_strategy *strat,
108 unsigned long *strategy_parameter)
109{
110 *strat = PCI_DMA_BURST_INFINITY;
111 *strategy_parameter = ~0UL;
112}
Andrew Mortonbb4a61b2005-06-06 23:07:46 -0700113#endif
David S. Millere24c2d92005-06-02 12:55:50 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define HAVE_PCI_MMAP
116extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
117 enum pci_mmap_state mmap_state, int write_combine);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#endif /* __KERNEL__ */
120
121/* generic pci stuff */
122#ifdef CONFIG_PCI
123#include <asm-generic/pci.h>
124#endif
125
126#endif /* __x8664_PCI_H */