blob: 532428289772911c74d6a0880eb84d0c3a3d9d88 [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
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 */
19struct pci_channel {
Magnus Dammd0e3db42009-03-11 15:46:14 +090020 int (*init)(struct pci_channel *chan);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 struct pci_ops *pci_ops;
22 struct resource *io_resource;
23 struct resource *mem_resource;
24 int first_devfn;
25 int last_devfn;
Magnus Dammd0e3db42009-03-11 15:46:14 +090026 int enabled;
Magnus Damme4c6a362008-02-19 21:35:04 +090027 unsigned long reg_base;
Magnus Dammef53fde2008-02-19 21:35:14 +090028 unsigned long io_base;
Paul Mundt0bb34a62009-04-20 16:38:00 +090029
30 unsigned long io_map_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
32
33/*
34 * Each board initializes this array and terminates it with a NULL entry.
35 */
36extern struct pci_channel board_pci_channels[];
37
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 */
60#define PCI_DMA_BUS_IS_PHYS (1)
61
62#include <linux/types.h>
63#include <linux/slab.h>
64#include <asm/scatterlist.h>
65#include <linux/string.h>
66#include <asm/io.h>
67
68/* pci_unmap_{single,page} being a nop depends upon the
69 * configuration.
70 */
71#ifdef CONFIG_SH_PCIDMA_NONCOHERENT
72#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
73 dma_addr_t ADDR_NAME;
74#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
75 __u32 LEN_NAME;
76#define pci_unmap_addr(PTR, ADDR_NAME) \
77 ((PTR)->ADDR_NAME)
78#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
79 (((PTR)->ADDR_NAME) = (VAL))
80#define pci_unmap_len(PTR, LEN_NAME) \
81 ((PTR)->LEN_NAME)
82#define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
83 (((PTR)->LEN_NAME) = (VAL))
84#else
85#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
86#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
87#define pci_unmap_addr(PTR, ADDR_NAME) (0)
88#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
89#define pci_unmap_len(PTR, LEN_NAME) (0)
90#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
91#endif
92
Andrew Mortonbb4a61b2005-06-06 23:07:46 -070093#ifdef CONFIG_PCI
David S. Millere24c2d92005-06-02 12:55:50 -070094static inline void pci_dma_burst_advice(struct pci_dev *pdev,
95 enum pci_dma_burst_strategy *strat,
96 unsigned long *strategy_parameter)
97{
98 *strat = PCI_DMA_BURST_INFINITY;
99 *strategy_parameter = ~0UL;
100}
Magnus Dammef339f22008-02-19 21:35:22 +0900101
102static inline int __is_pci_memory(unsigned long phys_addr, unsigned long size)
103{
104 struct pci_channel *p;
105 struct resource *res;
106
107 for (p = board_pci_channels; p->init; p++) {
108 res = p->mem_resource;
109 if (p->enabled && (phys_addr >= res->start) &&
110 (phys_addr + size) <= (res->end + 1))
111 return 1;
112 }
113 return 0;
114}
115#else
116static inline int __is_pci_memory(unsigned long phys_addr, unsigned long size)
117{
118 return 0;
119}
Andrew Mortonbb4a61b2005-06-06 23:07:46 -0700120#endif
David S. Millere24c2d92005-06-02 12:55:50 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/* Board-specific fixup routines. */
Paul Mundt959f85f2006-09-27 16:43:28 +0900123int pcibios_init_platform(void);
124int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126#ifdef CONFIG_PCI_AUTO
Paul Mundt959f85f2006-09-27 16:43:28 +0900127int pciauto_assign_resources(int busno, struct pci_channel *hose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif
129
Paul Mundt9ade1212009-04-20 15:38:25 +0900130extern void pcibios_resource_to_bus(struct pci_dev *dev,
131 struct pci_bus_region *region, struct resource *res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Paul Mundt9ade1212009-04-20 15:38:25 +0900133extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
134 struct pci_bus_region *region);
135
136static inline struct resource *
137pcibios_select_root(struct pci_dev *pdev, struct resource *res)
138{
139 struct resource *root = NULL;
140
141 if (res->flags & IORESOURCE_IO)
142 root = &ioport_resource;
143 if (res->flags & IORESOURCE_MEM)
144 root = &iomem_resource;
145
146 return root;
147}
148
149/* Chances are this interrupt is wired PC-style ... */
150static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
151{
152 return channel ? 15 : 14;
153}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155/* generic DMA-mapping stuff */
156#include <asm-generic/pci-dma-compat.h>
157
Paul Mundt9ade1212009-04-20 15:38:25 +0900158#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#endif /* __ASM_SH_PCI_H */
160