blob: 5849d435c441968f3873ffea6575989b5869d5d7 [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);
Paul Mundt85b59f52010-02-01 13:01:42 +090035extern int pci_is_66mhz_capable(struct pci_channel *hose,
36 int top_bus, int current_bus);
Paul Mundte79066a2009-04-20 18:29:22 +090037
Paul Mundta3c0e0d2009-04-20 16:14:29 +090038extern unsigned long PCIBIOS_MIN_IO, PCIBIOS_MIN_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40struct pci_dev;
41
Paul Mundt98333852009-04-20 15:51:45 +090042#define HAVE_PCI_MMAP
43extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
44 enum pci_mmap_state mmap_state, int write_combine);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045extern void pcibios_set_master(struct pci_dev *dev);
46
David Shaohua Lic9c3e452005-04-01 00:07:31 -050047static inline void pcibios_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 /* We don't do dynamic PCI IRQ allocation */
50}
51
52/* Dynamic DMA mapping stuff.
53 * SuperH has everything mapped statically like x86.
54 */
55
56/* The PCI address space does equal the physical memory
57 * address space. The networking and block device layers use
58 * this boolean for bounce buffer decisions.
59 */
Paul Mundt73c926b2009-10-20 12:55:56 +090060#define PCI_DMA_BUS_IS_PHYS (dma_ops->is_phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* pci_unmap_{single,page} being a nop depends upon the
63 * configuration.
64 */
Paul Mundt01be5d62009-10-27 10:35:02 +090065#ifdef CONFIG_DMA_NONCOHERENT
66#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME;
67#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME;
68#define pci_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
69#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
70#define pci_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
71#define pci_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#else
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#endif
80
Paul Mundt3e98f9f2009-04-24 15:39:39 +090081#ifdef CONFIG_PCI
Paul Mundtb7e2ac62009-05-26 23:13:13 +090082/*
83 * None of the SH PCI controllers support MWI, it is always treated as a
84 * direct memory write.
85 */
86#define PCI_DISABLE_MWI
87
David S. Millere24c2d92005-06-02 12:55:50 -070088static inline void pci_dma_burst_advice(struct pci_dev *pdev,
89 enum pci_dma_burst_strategy *strat,
90 unsigned long *strategy_parameter)
91{
Paul Mundtb7e2ac62009-05-26 23:13:13 +090092 unsigned long cacheline_size;
93 u8 byte;
94
95 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte);
96
97 if (byte == 0)
98 cacheline_size = L1_CACHE_BYTES;
99 else
100 cacheline_size = byte << 2;
101
102 *strat = PCI_DMA_BURST_MULTIPLE;
103 *strategy_parameter = cacheline_size;
David S. Millere24c2d92005-06-02 12:55:50 -0700104}
Paul Mundt3e98f9f2009-04-24 15:39:39 +0900105#endif
Magnus Dammef339f22008-02-19 21:35:22 +0900106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* Board-specific fixup routines. */
Paul Mundt959f85f2006-09-27 16:43:28 +0900108int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Paul Mundt9ade1212009-04-20 15:38:25 +0900110extern void pcibios_resource_to_bus(struct pci_dev *dev,
111 struct pci_bus_region *region, struct resource *res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Paul Mundt9ade1212009-04-20 15:38:25 +0900113extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
114 struct pci_bus_region *region);
115
Paul Mundt320e68d2010-01-29 22:38:13 +0900116#define pci_domain_nr(bus) ((struct pci_channel *)(bus)->sysdata)->index
117
118static inline int pci_proc_domain(struct pci_bus *bus)
119{
120 struct pci_channel *hose = bus->sysdata;
121 return hose->need_domain_info;
122}
123
Paul Mundt9ade1212009-04-20 15:38:25 +0900124/* Chances are this interrupt is wired PC-style ... */
125static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
126{
127 return channel ? 15 : 14;
128}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* generic DMA-mapping stuff */
131#include <asm-generic/pci-dma-compat.h>
132
Paul Mundt9ade1212009-04-20 15:38:25 +0900133#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#endif /* __ASM_SH_PCI_H */
135