Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_SH_PCI_H |
| 2 | #define __ASM_SH_PCI_H |
| 3 | |
| 4 | #ifdef __KERNEL__ |
| 5 | |
| 6 | #include <linux/dma-mapping.h> |
| 7 | |
| 8 | /* Can be used to override the logic in pci_scan_bus for skipping |
| 9 | already-configured bus numbers - to be used for buggy BIOSes |
| 10 | or architectures with incomplete PCI setup by the loader */ |
| 11 | |
| 12 | #define pcibios_assign_all_busses() 1 |
| 13 | #define pcibios_scan_all_fns(a, b) 0 |
| 14 | |
| 15 | /* |
| 16 | * A board can define one or more PCI channels that represent built-in (or |
| 17 | * external) PCI controllers. |
| 18 | */ |
| 19 | struct pci_channel { |
Magnus Damm | d0e3db4 | 2009-03-11 15:46:14 +0900 | [diff] [blame] | 20 | int (*init)(struct pci_channel *chan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | struct pci_ops *pci_ops; |
| 22 | struct resource *io_resource; |
| 23 | struct resource *mem_resource; |
| 24 | int first_devfn; |
| 25 | int last_devfn; |
Magnus Damm | d0e3db4 | 2009-03-11 15:46:14 +0900 | [diff] [blame] | 26 | int enabled; |
Magnus Damm | e4c6a36 | 2008-02-19 21:35:04 +0900 | [diff] [blame] | 27 | unsigned long reg_base; |
Magnus Damm | ef53fde | 2008-02-19 21:35:14 +0900 | [diff] [blame] | 28 | unsigned long io_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | }; |
| 30 | |
| 31 | /* |
| 32 | * Each board initializes this array and terminates it with a NULL entry. |
| 33 | */ |
| 34 | extern struct pci_channel board_pci_channels[]; |
| 35 | |
Paul Mundt | a3c0e0d | 2009-04-20 16:14:29 +0900 | [diff] [blame^] | 36 | extern unsigned long PCIBIOS_MIN_IO, PCIBIOS_MIN_MEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | struct pci_dev; |
| 39 | |
Paul Mundt | 9833385 | 2009-04-20 15:51:45 +0900 | [diff] [blame] | 40 | #define HAVE_PCI_MMAP |
| 41 | extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma, |
| 42 | enum pci_mmap_state mmap_state, int write_combine); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | extern void pcibios_set_master(struct pci_dev *dev); |
| 44 | |
David Shaohua Li | c9c3e45 | 2005-04-01 00:07:31 -0500 | [diff] [blame] | 45 | static inline void pcibios_penalize_isa_irq(int irq, int active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
| 47 | /* We don't do dynamic PCI IRQ allocation */ |
| 48 | } |
| 49 | |
| 50 | /* Dynamic DMA mapping stuff. |
| 51 | * SuperH has everything mapped statically like x86. |
| 52 | */ |
| 53 | |
| 54 | /* The PCI address space does equal the physical memory |
| 55 | * address space. The networking and block device layers use |
| 56 | * this boolean for bounce buffer decisions. |
| 57 | */ |
| 58 | #define PCI_DMA_BUS_IS_PHYS (1) |
| 59 | |
| 60 | #include <linux/types.h> |
| 61 | #include <linux/slab.h> |
| 62 | #include <asm/scatterlist.h> |
| 63 | #include <linux/string.h> |
| 64 | #include <asm/io.h> |
| 65 | |
| 66 | /* pci_unmap_{single,page} being a nop depends upon the |
| 67 | * configuration. |
| 68 | */ |
| 69 | #ifdef CONFIG_SH_PCIDMA_NONCOHERENT |
| 70 | #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \ |
| 71 | dma_addr_t ADDR_NAME; |
| 72 | #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \ |
| 73 | __u32 LEN_NAME; |
| 74 | #define pci_unmap_addr(PTR, ADDR_NAME) \ |
| 75 | ((PTR)->ADDR_NAME) |
| 76 | #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \ |
| 77 | (((PTR)->ADDR_NAME) = (VAL)) |
| 78 | #define pci_unmap_len(PTR, LEN_NAME) \ |
| 79 | ((PTR)->LEN_NAME) |
| 80 | #define pci_unmap_len_set(PTR, LEN_NAME, VAL) \ |
| 81 | (((PTR)->LEN_NAME) = (VAL)) |
| 82 | #else |
| 83 | #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) |
| 84 | #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) |
| 85 | #define pci_unmap_addr(PTR, ADDR_NAME) (0) |
| 86 | #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0) |
| 87 | #define pci_unmap_len(PTR, LEN_NAME) (0) |
| 88 | #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0) |
| 89 | #endif |
| 90 | |
Andrew Morton | bb4a61b | 2005-06-06 23:07:46 -0700 | [diff] [blame] | 91 | #ifdef CONFIG_PCI |
David S. Miller | e24c2d9 | 2005-06-02 12:55:50 -0700 | [diff] [blame] | 92 | static inline void pci_dma_burst_advice(struct pci_dev *pdev, |
| 93 | enum pci_dma_burst_strategy *strat, |
| 94 | unsigned long *strategy_parameter) |
| 95 | { |
| 96 | *strat = PCI_DMA_BURST_INFINITY; |
| 97 | *strategy_parameter = ~0UL; |
| 98 | } |
Magnus Damm | ef339f2 | 2008-02-19 21:35:22 +0900 | [diff] [blame] | 99 | |
| 100 | static inline int __is_pci_memory(unsigned long phys_addr, unsigned long size) |
| 101 | { |
| 102 | struct pci_channel *p; |
| 103 | struct resource *res; |
| 104 | |
| 105 | for (p = board_pci_channels; p->init; p++) { |
| 106 | res = p->mem_resource; |
| 107 | if (p->enabled && (phys_addr >= res->start) && |
| 108 | (phys_addr + size) <= (res->end + 1)) |
| 109 | return 1; |
| 110 | } |
| 111 | return 0; |
| 112 | } |
Magnus Damm | 8ce0143 | 2008-02-19 21:35:31 +0900 | [diff] [blame] | 113 | |
| 114 | static inline void __iomem *__get_pci_io_base(unsigned long port, |
| 115 | unsigned long size) |
| 116 | { |
| 117 | struct pci_channel *p; |
| 118 | struct resource *res; |
| 119 | |
| 120 | for (p = board_pci_channels; p->init; p++) { |
| 121 | res = p->io_resource; |
| 122 | if (p->enabled && (port >= res->start) && |
| 123 | (port + size) <= (res->end + 1)) |
| 124 | return (void __iomem *)(p->io_base + port); |
| 125 | } |
| 126 | return NULL; |
| 127 | } |
Magnus Damm | ef339f2 | 2008-02-19 21:35:22 +0900 | [diff] [blame] | 128 | #else |
| 129 | static inline int __is_pci_memory(unsigned long phys_addr, unsigned long size) |
| 130 | { |
| 131 | return 0; |
| 132 | } |
Magnus Damm | 8ce0143 | 2008-02-19 21:35:31 +0900 | [diff] [blame] | 133 | static inline void __iomem *__get_pci_io_base(unsigned long port, |
| 134 | unsigned long size) |
| 135 | { |
| 136 | return NULL; |
| 137 | } |
Andrew Morton | bb4a61b | 2005-06-06 23:07:46 -0700 | [diff] [blame] | 138 | #endif |
David S. Miller | e24c2d9 | 2005-06-02 12:55:50 -0700 | [diff] [blame] | 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* Board-specific fixup routines. */ |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 141 | void pcibios_fixup(void); |
| 142 | int pcibios_init_platform(void); |
| 143 | int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
| 145 | #ifdef CONFIG_PCI_AUTO |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 146 | int pciauto_assign_resources(int busno, struct pci_channel *hose); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | #endif |
| 148 | |
Paul Mundt | 9ade121 | 2009-04-20 15:38:25 +0900 | [diff] [blame] | 149 | extern void pcibios_resource_to_bus(struct pci_dev *dev, |
| 150 | struct pci_bus_region *region, struct resource *res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Paul Mundt | 9ade121 | 2009-04-20 15:38:25 +0900 | [diff] [blame] | 152 | extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res, |
| 153 | struct pci_bus_region *region); |
| 154 | |
| 155 | static inline struct resource * |
| 156 | pcibios_select_root(struct pci_dev *pdev, struct resource *res) |
| 157 | { |
| 158 | struct resource *root = NULL; |
| 159 | |
| 160 | if (res->flags & IORESOURCE_IO) |
| 161 | root = &ioport_resource; |
| 162 | if (res->flags & IORESOURCE_MEM) |
| 163 | root = &iomem_resource; |
| 164 | |
| 165 | return root; |
| 166 | } |
| 167 | |
| 168 | /* Chances are this interrupt is wired PC-style ... */ |
| 169 | static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel) |
| 170 | { |
| 171 | return channel ? 15 : 14; |
| 172 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | /* generic DMA-mapping stuff */ |
| 175 | #include <asm-generic/pci-dma-compat.h> |
| 176 | |
Paul Mundt | 9ade121 | 2009-04-20 15:38:25 +0900 | [diff] [blame] | 177 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | #endif /* __ASM_SH_PCI_H */ |
| 179 | |