| 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | /* Can be used to override the logic in pci_scan_bus for skipping | 
|  | 7 | already-configured bus numbers - to be used for buggy BIOSes | 
|  | 8 | or architectures with incomplete PCI setup by the loader */ | 
|  | 9 |  | 
|  | 10 | #define pcibios_assign_all_busses()	1 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 |  | 
|  | 12 | /* | 
|  | 13 | * A board can define one or more PCI channels that represent built-in (or | 
|  | 14 | * external) PCI controllers. | 
|  | 15 | */ | 
|  | 16 | struct pci_channel { | 
| Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 17 | struct pci_channel	*next; | 
| Paul Mundt | 0bb34a6 | 2009-04-20 16:38:00 +0900 | [diff] [blame] | 18 |  | 
| Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 19 | struct pci_ops		*pci_ops; | 
|  | 20 | struct resource		*io_resource; | 
|  | 21 | struct resource		*mem_resource; | 
|  | 22 |  | 
| Paul Mundt | 09cfeb1 | 2009-04-20 18:42:00 +0900 | [diff] [blame] | 23 | unsigned long		io_offset; | 
|  | 24 | unsigned long		mem_offset; | 
|  | 25 |  | 
| Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 26 | unsigned long		reg_base; | 
| Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 27 |  | 
|  | 28 | unsigned long		io_map_base; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | }; | 
|  | 30 |  | 
| Paul Mundt | e79066a | 2009-04-20 18:29:22 +0900 | [diff] [blame] | 31 | extern void register_pci_controller(struct pci_channel *hose); | 
|  | 32 |  | 
| Paul Mundt | a3c0e0d | 2009-04-20 16:14:29 +0900 | [diff] [blame] | 33 | extern unsigned long PCIBIOS_MIN_IO, PCIBIOS_MIN_MEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
|  | 35 | struct pci_dev; | 
|  | 36 |  | 
| Paul Mundt | 9833385 | 2009-04-20 15:51:45 +0900 | [diff] [blame] | 37 | #define HAVE_PCI_MMAP | 
|  | 38 | extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma, | 
|  | 39 | enum pci_mmap_state mmap_state, int write_combine); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | extern void pcibios_set_master(struct pci_dev *dev); | 
|  | 41 |  | 
| David Shaohua Li | c9c3e45 | 2005-04-01 00:07:31 -0500 | [diff] [blame] | 42 | static inline void pcibios_penalize_isa_irq(int irq, int active) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { | 
|  | 44 | /* We don't do dynamic PCI IRQ allocation */ | 
|  | 45 | } | 
|  | 46 |  | 
|  | 47 | /* Dynamic DMA mapping stuff. | 
|  | 48 | * SuperH has everything mapped statically like x86. | 
|  | 49 | */ | 
|  | 50 |  | 
|  | 51 | /* The PCI address space does equal the physical memory | 
|  | 52 | * address space.  The networking and block device layers use | 
|  | 53 | * this boolean for bounce buffer decisions. | 
|  | 54 | */ | 
| Paul Mundt | 73c926b | 2009-10-20 12:55:56 +0900 | [diff] [blame] | 55 | #define PCI_DMA_BUS_IS_PHYS	(dma_ops->is_phys) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 |  | 
|  | 57 | /* pci_unmap_{single,page} being a nop depends upon the | 
|  | 58 | * configuration. | 
|  | 59 | */ | 
| Paul Mundt | 01be5d6 | 2009-10-27 10:35:02 +0900 | [diff] [blame] | 60 | #ifdef CONFIG_DMA_NONCOHERENT | 
|  | 61 | #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)	dma_addr_t ADDR_NAME; | 
|  | 62 | #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)		__u32 LEN_NAME; | 
|  | 63 | #define pci_unmap_addr(PTR, ADDR_NAME)		((PTR)->ADDR_NAME) | 
|  | 64 | #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)	(((PTR)->ADDR_NAME) = (VAL)) | 
|  | 65 | #define pci_unmap_len(PTR, LEN_NAME)		((PTR)->LEN_NAME) | 
|  | 66 | #define pci_unmap_len_set(PTR, LEN_NAME, VAL)	(((PTR)->LEN_NAME) = (VAL)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #else | 
|  | 68 | #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) | 
|  | 69 | #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) | 
|  | 70 | #define pci_unmap_addr(PTR, ADDR_NAME)		(0) | 
|  | 71 | #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)	do { } while (0) | 
|  | 72 | #define pci_unmap_len(PTR, LEN_NAME)		(0) | 
|  | 73 | #define pci_unmap_len_set(PTR, LEN_NAME, VAL)	do { } while (0) | 
|  | 74 | #endif | 
|  | 75 |  | 
| Paul Mundt | 3e98f9f | 2009-04-24 15:39:39 +0900 | [diff] [blame] | 76 | #ifdef CONFIG_PCI | 
| Paul Mundt | b7e2ac6 | 2009-05-26 23:13:13 +0900 | [diff] [blame] | 77 | /* | 
|  | 78 | * None of the SH PCI controllers support MWI, it is always treated as a | 
|  | 79 | * direct memory write. | 
|  | 80 | */ | 
|  | 81 | #define PCI_DISABLE_MWI | 
|  | 82 |  | 
| David S. Miller | e24c2d9 | 2005-06-02 12:55:50 -0700 | [diff] [blame] | 83 | static inline void pci_dma_burst_advice(struct pci_dev *pdev, | 
|  | 84 | enum pci_dma_burst_strategy *strat, | 
|  | 85 | unsigned long *strategy_parameter) | 
|  | 86 | { | 
| Paul Mundt | b7e2ac6 | 2009-05-26 23:13:13 +0900 | [diff] [blame] | 87 | unsigned long cacheline_size; | 
|  | 88 | u8 byte; | 
|  | 89 |  | 
|  | 90 | pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte); | 
|  | 91 |  | 
|  | 92 | if (byte == 0) | 
|  | 93 | cacheline_size = L1_CACHE_BYTES; | 
|  | 94 | else | 
|  | 95 | cacheline_size = byte << 2; | 
|  | 96 |  | 
|  | 97 | *strat = PCI_DMA_BURST_MULTIPLE; | 
|  | 98 | *strategy_parameter = cacheline_size; | 
| David S. Miller | e24c2d9 | 2005-06-02 12:55:50 -0700 | [diff] [blame] | 99 | } | 
| Paul Mundt | 3e98f9f | 2009-04-24 15:39:39 +0900 | [diff] [blame] | 100 | #endif | 
| Magnus Damm | ef339f2 | 2008-02-19 21:35:22 +0900 | [diff] [blame] | 101 |  | 
| Paul Mundt | 99f95f1 | 2009-04-20 18:24:57 +0900 | [diff] [blame] | 102 | #ifdef CONFIG_SUPERH32 | 
|  | 103 | /* | 
|  | 104 | * If we're on an SH7751 or SH7780 PCI controller, PCI memory is mapped | 
|  | 105 | * at the end of the address space in a special non-translatable area. | 
|  | 106 | */ | 
|  | 107 | #define PCI_MEM_FIXED_START	0xfd000000 | 
|  | 108 | #define PCI_MEM_FIXED_END	(PCI_MEM_FIXED_START + 0x01000000) | 
| Magnus Damm | ef339f2 | 2008-02-19 21:35:22 +0900 | [diff] [blame] | 109 |  | 
| Paul Mundt | 99f95f1 | 2009-04-20 18:24:57 +0900 | [diff] [blame] | 110 | #define is_pci_memory_fixed_range(s, e)	\ | 
|  | 111 | ((s) >= PCI_MEM_FIXED_START && (e) < PCI_MEM_FIXED_END) | 
| Magnus Damm | ef339f2 | 2008-02-19 21:35:22 +0900 | [diff] [blame] | 112 | #else | 
| Paul Mundt | 99f95f1 | 2009-04-20 18:24:57 +0900 | [diff] [blame] | 113 | #define is_pci_memory_fixed_range(s, e)	(0) | 
| Andrew Morton | bb4a61b | 2005-06-06 23:07:46 -0700 | [diff] [blame] | 114 | #endif | 
| David S. Miller | e24c2d9 | 2005-06-02 12:55:50 -0700 | [diff] [blame] | 115 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* Board-specific fixup routines. */ | 
| Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 117 | 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] | 118 |  | 
| Paul Mundt | 9ade121 | 2009-04-20 15:38:25 +0900 | [diff] [blame] | 119 | extern void pcibios_resource_to_bus(struct pci_dev *dev, | 
|  | 120 | struct pci_bus_region *region, struct resource *res); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 |  | 
| Paul Mundt | 9ade121 | 2009-04-20 15:38:25 +0900 | [diff] [blame] | 122 | extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res, | 
|  | 123 | struct pci_bus_region *region); | 
|  | 124 |  | 
| Paul Mundt | 9ade121 | 2009-04-20 15:38:25 +0900 | [diff] [blame] | 125 | /* Chances are this interrupt is wired PC-style ...  */ | 
|  | 126 | static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel) | 
|  | 127 | { | 
|  | 128 | return channel ? 15 : 14; | 
|  | 129 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
|  | 131 | /* generic DMA-mapping stuff */ | 
|  | 132 | #include <asm-generic/pci-dma-compat.h> | 
|  | 133 |  | 
| Paul Mundt | 9ade121 | 2009-04-20 15:38:25 +0900 | [diff] [blame] | 134 | #endif /* __KERNEL__ */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | #endif /* __ASM_SH_PCI_H */ | 
|  | 136 |  |