blob: 0be20521a1fe728a1c0713f9308280a09131e1e7 [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 {
Paul Mundte79066a2009-04-20 18:29:22 +090020 struct pci_channel *next;
Paul Mundt0bb34a62009-04-20 16:38:00 +090021
Paul Mundte79066a2009-04-20 18:29:22 +090022 int (*init)(struct pci_channel *chan);
23
24 struct pci_ops *pci_ops;
25 struct resource *io_resource;
26 struct resource *mem_resource;
27
Paul Mundt09cfeb12009-04-20 18:42:00 +090028 unsigned long io_offset;
29 unsigned long mem_offset;
30
Paul Mundte79066a2009-04-20 18:29:22 +090031 int first_devfn;
32 int last_devfn;
33 int enabled;
34
35 unsigned long reg_base;
36 unsigned long io_base;
37
38 unsigned long io_map_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
41/*
42 * Each board initializes this array and terminates it with a NULL entry.
43 */
44extern struct pci_channel board_pci_channels[];
45
Paul Mundte79066a2009-04-20 18:29:22 +090046extern void register_pci_controller(struct pci_channel *hose);
47
Paul Mundta3c0e0d2009-04-20 16:14:29 +090048extern unsigned long PCIBIOS_MIN_IO, PCIBIOS_MIN_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50struct pci_dev;
51
Paul Mundt98333852009-04-20 15:51:45 +090052#define HAVE_PCI_MMAP
53extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
54 enum pci_mmap_state mmap_state, int write_combine);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055extern void pcibios_set_master(struct pci_dev *dev);
56
David Shaohua Lic9c3e452005-04-01 00:07:31 -050057static inline void pcibios_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 /* We don't do dynamic PCI IRQ allocation */
60}
61
62/* Dynamic DMA mapping stuff.
63 * SuperH has everything mapped statically like x86.
64 */
65
66/* The PCI address space does equal the physical memory
67 * address space. The networking and block device layers use
68 * this boolean for bounce buffer decisions.
69 */
70#define PCI_DMA_BUS_IS_PHYS (1)
71
72#include <linux/types.h>
73#include <linux/slab.h>
74#include <asm/scatterlist.h>
75#include <linux/string.h>
76#include <asm/io.h>
77
78/* pci_unmap_{single,page} being a nop depends upon the
79 * configuration.
80 */
81#ifdef CONFIG_SH_PCIDMA_NONCOHERENT
82#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
83 dma_addr_t ADDR_NAME;
84#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
85 __u32 LEN_NAME;
86#define pci_unmap_addr(PTR, ADDR_NAME) \
87 ((PTR)->ADDR_NAME)
88#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
89 (((PTR)->ADDR_NAME) = (VAL))
90#define pci_unmap_len(PTR, LEN_NAME) \
91 ((PTR)->LEN_NAME)
92#define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
93 (((PTR)->LEN_NAME) = (VAL))
94#else
95#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
96#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
97#define pci_unmap_addr(PTR, ADDR_NAME) (0)
98#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
99#define pci_unmap_len(PTR, LEN_NAME) (0)
100#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
101#endif
102
David S. Millere24c2d92005-06-02 12:55:50 -0700103static inline void pci_dma_burst_advice(struct pci_dev *pdev,
104 enum pci_dma_burst_strategy *strat,
105 unsigned long *strategy_parameter)
106{
107 *strat = PCI_DMA_BURST_INFINITY;
108 *strategy_parameter = ~0UL;
109}
Magnus Dammef339f22008-02-19 21:35:22 +0900110
Paul Mundt99f95f12009-04-20 18:24:57 +0900111#ifdef CONFIG_SUPERH32
112/*
113 * If we're on an SH7751 or SH7780 PCI controller, PCI memory is mapped
114 * at the end of the address space in a special non-translatable area.
115 */
116#define PCI_MEM_FIXED_START 0xfd000000
117#define PCI_MEM_FIXED_END (PCI_MEM_FIXED_START + 0x01000000)
Magnus Dammef339f22008-02-19 21:35:22 +0900118
Paul Mundt99f95f12009-04-20 18:24:57 +0900119#define is_pci_memory_fixed_range(s, e) \
120 ((s) >= PCI_MEM_FIXED_START && (e) < PCI_MEM_FIXED_END)
Magnus Dammef339f22008-02-19 21:35:22 +0900121#else
Paul Mundt99f95f12009-04-20 18:24:57 +0900122#define is_pci_memory_fixed_range(s, e) (0)
Andrew Mortonbb4a61b2005-06-06 23:07:46 -0700123#endif
David S. Millere24c2d92005-06-02 12:55:50 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/* Board-specific fixup routines. */
Paul Mundt959f85f2006-09-27 16:43:28 +0900126int pcibios_init_platform(void);
127int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129#ifdef CONFIG_PCI_AUTO
Paul Mundt959f85f2006-09-27 16:43:28 +0900130int pciauto_assign_resources(int busno, struct pci_channel *hose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif
132
Paul Mundt9ade1212009-04-20 15:38:25 +0900133extern void pcibios_resource_to_bus(struct pci_dev *dev,
134 struct pci_bus_region *region, struct resource *res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Paul Mundt9ade1212009-04-20 15:38:25 +0900136extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
137 struct pci_bus_region *region);
138
139static inline struct resource *
140pcibios_select_root(struct pci_dev *pdev, struct resource *res)
141{
142 struct resource *root = NULL;
143
144 if (res->flags & IORESOURCE_IO)
145 root = &ioport_resource;
146 if (res->flags & IORESOURCE_MEM)
147 root = &iomem_resource;
148
149 return root;
150}
151
152/* Chances are this interrupt is wired PC-style ... */
153static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
154{
155 return channel ? 15 : 14;
156}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158/* generic DMA-mapping stuff */
159#include <asm-generic/pci-dma-compat.h>
160
Paul Mundt9ade1212009-04-20 15:38:25 +0900161#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#endif /* __ASM_SH_PCI_H */
163