aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86_64/pci.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86_64/pci.h')
-rw-r--r--include/asm-x86_64/pci.h105
1 files changed, 0 insertions, 105 deletions
diff --git a/include/asm-x86_64/pci.h b/include/asm-x86_64/pci.h
deleted file mode 100644
index bda94fd5176f..000000000000
--- a/include/asm-x86_64/pci.h
+++ /dev/null
@@ -1,105 +0,0 @@
1#ifndef __x8664_PCI_H
2#define __x8664_PCI_H
3
4#include <asm/io.h>
5
6#ifdef __KERNEL__
7
8#include <linux/mm.h> /* for struct page */
9
10/* Can be used to override the logic in pci_scan_bus for skipping
11 already-configured bus numbers - to be used for buggy BIOSes
12 or architectures with incomplete PCI setup by the loader */
13
14#ifdef CONFIG_PCI
15extern unsigned int pcibios_assign_all_busses(void);
16#else
17#define pcibios_assign_all_busses() 0
18#endif
19#define pcibios_scan_all_fns(a, b) 0
20
21extern unsigned long pci_mem_start;
22#define PCIBIOS_MIN_IO 0x1000
23#define PCIBIOS_MIN_MEM (pci_mem_start)
24
25#define PCIBIOS_MIN_CARDBUS_IO 0x4000
26
27void pcibios_config_init(void);
28struct pci_bus * pcibios_scan_root(int bus);
29extern int (*pci_config_read)(int seg, int bus, int dev, int fn, int reg, int len, u32 *value);
30extern int (*pci_config_write)(int seg, int bus, int dev, int fn, int reg, int len, u32 value);
31
32void pcibios_set_master(struct pci_dev *dev);
33void pcibios_penalize_isa_irq(int irq, int active);
34struct irq_routing_table *pcibios_get_irq_routing_table(void);
35int pcibios_set_irq_routing(struct pci_dev *dev, int pin, int irq);
36
37#include <linux/types.h>
38#include <linux/slab.h>
39#include <asm/scatterlist.h>
40#include <linux/string.h>
41#include <asm/page.h>
42
43extern void pci_iommu_alloc(void);
44extern int iommu_setup(char *opt);
45
46/* The PCI address space does equal the physical memory
47 * address space. The networking and block device layers use
48 * this boolean for bounce buffer decisions
49 *
50 * On AMD64 it mostly equals, but we set it to zero if a hardware
51 * IOMMU (gart) of sotware IOMMU (swiotlb) is available.
52 */
53#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
54
55#if defined(CONFIG_IOMMU) || defined(CONFIG_CALGARY_IOMMU)
56
57#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
58 dma_addr_t ADDR_NAME;
59#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
60 __u32 LEN_NAME;
61#define pci_unmap_addr(PTR, ADDR_NAME) \
62 ((PTR)->ADDR_NAME)
63#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
64 (((PTR)->ADDR_NAME) = (VAL))
65#define pci_unmap_len(PTR, LEN_NAME) \
66 ((PTR)->LEN_NAME)
67#define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
68 (((PTR)->LEN_NAME) = (VAL))
69
70#else
71/* No IOMMU */
72
73#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
74#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
75#define pci_unmap_addr(PTR, ADDR_NAME) (0)
76#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
77#define pci_unmap_len(PTR, LEN_NAME) (0)
78#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
79
80#endif
81
82#include <asm-generic/pci-dma-compat.h>
83
84#ifdef CONFIG_PCI
85static inline void pci_dma_burst_advice(struct pci_dev *pdev,
86 enum pci_dma_burst_strategy *strat,
87 unsigned long *strategy_parameter)
88{
89 *strat = PCI_DMA_BURST_INFINITY;
90 *strategy_parameter = ~0UL;
91}
92#endif
93
94#define HAVE_PCI_MMAP
95extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
96 enum pci_mmap_state mmap_state, int write_combine);
97
98#endif /* __KERNEL__ */
99
100/* generic pci stuff */
101#ifdef CONFIG_PCI
102#include <asm-generic/pci.h>
103#endif
104
105#endif /* __x8664_PCI_H */