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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | /* |
| 31 | * Each board initializes this array and terminates it with a NULL entry. |
| 32 | */ |
| 33 | extern struct pci_channel board_pci_channels[]; |
| 34 | |
Magnus Damm | b6706ef | 2008-02-19 21:34:55 +0900 | [diff] [blame] | 35 | /* ugly as hell, but makes drivers/pci/setup-res.c compile and work */ |
| 36 | #define __PCI_CHAN(bus) ((struct pci_channel *)bus->sysdata) |
| 37 | #define PCIBIOS_MIN_IO __PCI_CHAN(bus)->io_resource->start |
| 38 | #define PCIBIOS_MIN_MEM __PCI_CHAN(bus)->mem_resource->start |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 40 | /* |
| 41 | * I/O routine helpers |
| 42 | */ |
Paul Mundt | 32351a2 | 2007-03-12 14:38:59 +0900 | [diff] [blame] | 43 | #if defined(CONFIG_CPU_SUBTYPE_SH7780) || defined(CONFIG_CPU_SUBTYPE_SH7785) |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 44 | #define PCI_IO_AREA 0xFE400000 |
| 45 | #define PCI_IO_SIZE 0x00400000 |
Paul Mundt | b6d7b66 | 2007-11-22 16:29:10 +0900 | [diff] [blame] | 46 | #elif defined(CONFIG_CPU_SH5) |
| 47 | extern unsigned long PCI_IO_AREA; |
| 48 | #define PCI_IO_SIZE 0x00010000 |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 49 | #else |
| 50 | #define PCI_IO_AREA 0xFE240000 |
Paul Mundt | b6d7b66 | 2007-11-22 16:29:10 +0900 | [diff] [blame] | 51 | #define PCI_IO_SIZE 0x00040000 |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 52 | #endif |
| 53 | |
| 54 | #define PCI_MEM_SIZE 0x01000000 |
| 55 | |
| 56 | #define SH4_PCIIOBR_MASK 0xFFFC0000 |
| 57 | #define pci_ioaddr(addr) (PCI_IO_AREA + (addr & ~SH4_PCIIOBR_MASK)) |
| 58 | |
| 59 | #if defined(CONFIG_PCI) |
| 60 | #define is_pci_ioaddr(port) \ |
| 61 | (((port) >= PCIBIOS_MIN_IO) && \ |
| 62 | ((port) < (PCIBIOS_MIN_IO + PCI_IO_SIZE))) |
| 63 | #define is_pci_memaddr(port) \ |
| 64 | (((port) >= PCIBIOS_MIN_MEM) && \ |
| 65 | ((port) < (PCIBIOS_MIN_MEM + PCI_MEM_SIZE))) |
| 66 | #else |
| 67 | #define is_pci_ioaddr(port) (0) |
| 68 | #define is_pci_memaddr(port) (0) |
| 69 | #endif |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | struct pci_dev; |
| 72 | |
| 73 | extern void pcibios_set_master(struct pci_dev *dev); |
| 74 | |
David Shaohua Li | c9c3e45 | 2005-04-01 00:07:31 -0500 | [diff] [blame] | 75 | static inline void pcibios_penalize_isa_irq(int irq, int active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
| 77 | /* We don't do dynamic PCI IRQ allocation */ |
| 78 | } |
| 79 | |
| 80 | /* Dynamic DMA mapping stuff. |
| 81 | * SuperH has everything mapped statically like x86. |
| 82 | */ |
| 83 | |
| 84 | /* The PCI address space does equal the physical memory |
| 85 | * address space. The networking and block device layers use |
| 86 | * this boolean for bounce buffer decisions. |
| 87 | */ |
| 88 | #define PCI_DMA_BUS_IS_PHYS (1) |
| 89 | |
| 90 | #include <linux/types.h> |
| 91 | #include <linux/slab.h> |
| 92 | #include <asm/scatterlist.h> |
| 93 | #include <linux/string.h> |
| 94 | #include <asm/io.h> |
| 95 | |
| 96 | /* pci_unmap_{single,page} being a nop depends upon the |
| 97 | * configuration. |
| 98 | */ |
| 99 | #ifdef CONFIG_SH_PCIDMA_NONCOHERENT |
| 100 | #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \ |
| 101 | dma_addr_t ADDR_NAME; |
| 102 | #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \ |
| 103 | __u32 LEN_NAME; |
| 104 | #define pci_unmap_addr(PTR, ADDR_NAME) \ |
| 105 | ((PTR)->ADDR_NAME) |
| 106 | #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \ |
| 107 | (((PTR)->ADDR_NAME) = (VAL)) |
| 108 | #define pci_unmap_len(PTR, LEN_NAME) \ |
| 109 | ((PTR)->LEN_NAME) |
| 110 | #define pci_unmap_len_set(PTR, LEN_NAME, VAL) \ |
| 111 | (((PTR)->LEN_NAME) = (VAL)) |
| 112 | #else |
| 113 | #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) |
| 114 | #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) |
| 115 | #define pci_unmap_addr(PTR, ADDR_NAME) (0) |
| 116 | #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0) |
| 117 | #define pci_unmap_len(PTR, LEN_NAME) (0) |
| 118 | #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0) |
| 119 | #endif |
| 120 | |
Andrew Morton | bb4a61b | 2005-06-06 23:07:46 -0700 | [diff] [blame] | 121 | #ifdef CONFIG_PCI |
David S. Miller | e24c2d9 | 2005-06-02 12:55:50 -0700 | [diff] [blame] | 122 | static inline void pci_dma_burst_advice(struct pci_dev *pdev, |
| 123 | enum pci_dma_burst_strategy *strat, |
| 124 | unsigned long *strategy_parameter) |
| 125 | { |
| 126 | *strat = PCI_DMA_BURST_INFINITY; |
| 127 | *strategy_parameter = ~0UL; |
| 128 | } |
Andrew Morton | bb4a61b | 2005-06-06 23:07:46 -0700 | [diff] [blame] | 129 | #endif |
David S. Miller | e24c2d9 | 2005-06-02 12:55:50 -0700 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | /* Board-specific fixup routines. */ |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 132 | void pcibios_fixup(void); |
| 133 | int pcibios_init_platform(void); |
| 134 | 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] | 135 | |
| 136 | #ifdef CONFIG_PCI_AUTO |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 137 | int pciauto_assign_resources(int busno, struct pci_channel *hose); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | #endif |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | #endif /* __KERNEL__ */ |
| 141 | |
| 142 | /* generic pci stuff */ |
| 143 | #include <asm-generic/pci.h> |
| 144 | |
| 145 | /* generic DMA-mapping stuff */ |
| 146 | #include <asm-generic/pci-dma-compat.h> |
| 147 | |
| 148 | #endif /* __ASM_SH_PCI_H */ |
| 149 | |