blob: d124a009889f670cd6d2c2e50373e6e092ef7bf2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SH_PCI_H
2#define __ASM_SH_PCI_H
3
4#ifdef __KERNEL__
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/* 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 Torvalds1da177e2005-04-16 15:20:36 -070011
12/*
13 * A board can define one or more PCI channels that represent built-in (or
14 * external) PCI controllers.
15 */
16struct pci_channel {
Paul Mundte79066a2009-04-20 18:29:22 +090017 struct pci_channel *next;
Paul Mundt320e68d2010-01-29 22:38:13 +090018 struct pci_bus *bus;
Paul Mundt0bb34a62009-04-20 16:38:00 +090019
Paul Mundte79066a2009-04-20 18:29:22 +090020 struct pci_ops *pci_ops;
21 struct resource *io_resource;
22 struct resource *mem_resource;
23
Paul Mundt09cfeb12009-04-20 18:42:00 +090024 unsigned long io_offset;
25 unsigned long mem_offset;
26
Paul Mundte79066a2009-04-20 18:29:22 +090027 unsigned long reg_base;
Paul Mundte79066a2009-04-20 18:29:22 +090028 unsigned long io_map_base;
Paul Mundt320e68d2010-01-29 22:38:13 +090029
30 unsigned int index;
31 unsigned int need_domain_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
Paul Mundte79066a2009-04-20 18:29:22 +090034extern void register_pci_controller(struct pci_channel *hose);
35
Paul Mundta3c0e0d2009-04-20 16:14:29 +090036extern unsigned long PCIBIOS_MIN_IO, PCIBIOS_MIN_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38struct pci_dev;
39
Paul Mundt98333852009-04-20 15:51:45 +090040#define HAVE_PCI_MMAP
41extern 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 Torvalds1da177e2005-04-16 15:20:36 -070043extern void pcibios_set_master(struct pci_dev *dev);
44
David Shaohua Lic9c3e452005-04-01 00:07:31 -050045static inline void pcibios_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
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 */
Paul Mundt73c926b2009-10-20 12:55:56 +090058#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/* pci_unmap_{single,page} being a nop depends upon the
61 * configuration.
62 */
Paul Mundt01be5d62009-10-27 10:35:02 +090063#ifdef CONFIG_DMA_NONCOHERENT
64#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME;
65#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME;
66#define pci_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
67#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
68#define pci_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
69#define pci_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#else
71#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
72#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
73#define pci_unmap_addr(PTR, ADDR_NAME) (0)
74#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
75#define pci_unmap_len(PTR, LEN_NAME) (0)
76#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
77#endif
78
Paul Mundt3e98f9f2009-04-24 15:39:39 +090079#ifdef CONFIG_PCI
Paul Mundtb7e2ac62009-05-26 23:13:13 +090080/*
81 * None of the SH PCI controllers support MWI, it is always treated as a
82 * direct memory write.
83 */
84#define PCI_DISABLE_MWI
85
David S. Millere24c2d92005-06-02 12:55:50 -070086static inline void pci_dma_burst_advice(struct pci_dev *pdev,
87 enum pci_dma_burst_strategy *strat,
88 unsigned long *strategy_parameter)
89{
Paul Mundtb7e2ac62009-05-26 23:13:13 +090090 unsigned long cacheline_size;
91 u8 byte;
92
93 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte);
94
95 if (byte == 0)
96 cacheline_size = L1_CACHE_BYTES;
97 else
98 cacheline_size = byte << 2;
99
100 *strat = PCI_DMA_BURST_MULTIPLE;
101 *strategy_parameter = cacheline_size;
David S. Millere24c2d92005-06-02 12:55:50 -0700102}
Paul Mundt3e98f9f2009-04-24 15:39:39 +0900103#endif
Magnus Dammef339f22008-02-19 21:35:22 +0900104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/* Board-specific fixup routines. */
Paul Mundt959f85f2006-09-27 16:43:28 +0900106int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Paul Mundt9ade1212009-04-20 15:38:25 +0900108extern void pcibios_resource_to_bus(struct pci_dev *dev,
109 struct pci_bus_region *region, struct resource *res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Paul Mundt9ade1212009-04-20 15:38:25 +0900111extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
112 struct pci_bus_region *region);
113
Paul Mundt320e68d2010-01-29 22:38:13 +0900114#define pci_domain_nr(bus) ((struct pci_channel *)(bus)->sysdata)->index
115
116static inline int pci_proc_domain(struct pci_bus *bus)
117{
118 struct pci_channel *hose = bus->sysdata;
119 return hose->need_domain_info;
120}
121
Paul Mundt9ade1212009-04-20 15:38:25 +0900122/* Chances are this interrupt is wired PC-style ... */
123static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
124{
125 return channel ? 15 : 14;
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128/* generic DMA-mapping stuff */
129#include <asm-generic/pci-dma-compat.h>
130
Paul Mundt9ade1212009-04-20 15:38:25 +0900131#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#endif /* __ASM_SH_PCI_H */
133