blob: 84d12ebef0840d8800e11ed366ce852f950c9402 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029};
30
31/*
32 * Each board initializes this array and terminates it with a NULL entry.
33 */
34extern struct pci_channel board_pci_channels[];
35
Magnus Dammb6706ef2008-02-19 21:34:55 +090036/* ugly as hell, but makes drivers/pci/setup-res.c compile and work */
37#define __PCI_CHAN(bus) ((struct pci_channel *)bus->sysdata)
38#define PCIBIOS_MIN_IO __PCI_CHAN(bus)->io_resource->start
39#define PCIBIOS_MIN_MEM __PCI_CHAN(bus)->mem_resource->start
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Paul Mundt959f85f2006-09-27 16:43:28 +090041/*
42 * I/O routine helpers
43 */
Paul Mundt32351a22007-03-12 14:38:59 +090044#if defined(CONFIG_CPU_SUBTYPE_SH7780) || defined(CONFIG_CPU_SUBTYPE_SH7785)
Paul Mundt959f85f2006-09-27 16:43:28 +090045#define PCI_IO_AREA 0xFE400000
46#define PCI_IO_SIZE 0x00400000
Paul Mundtb6d7b662007-11-22 16:29:10 +090047#elif defined(CONFIG_CPU_SH5)
48extern unsigned long PCI_IO_AREA;
49#define PCI_IO_SIZE 0x00010000
Paul Mundt959f85f2006-09-27 16:43:28 +090050#else
51#define PCI_IO_AREA 0xFE240000
Paul Mundtb6d7b662007-11-22 16:29:10 +090052#define PCI_IO_SIZE 0x00040000
Paul Mundt959f85f2006-09-27 16:43:28 +090053#endif
54
55#define PCI_MEM_SIZE 0x01000000
56
57#define SH4_PCIIOBR_MASK 0xFFFC0000
58#define pci_ioaddr(addr) (PCI_IO_AREA + (addr & ~SH4_PCIIOBR_MASK))
59
60#if defined(CONFIG_PCI)
61#define is_pci_ioaddr(port) \
62 (((port) >= PCIBIOS_MIN_IO) && \
63 ((port) < (PCIBIOS_MIN_IO + PCI_IO_SIZE)))
64#define is_pci_memaddr(port) \
65 (((port) >= PCIBIOS_MIN_MEM) && \
66 ((port) < (PCIBIOS_MIN_MEM + PCI_MEM_SIZE)))
67#else
68#define is_pci_ioaddr(port) (0)
69#define is_pci_memaddr(port) (0)
70#endif
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct pci_dev;
73
74extern void pcibios_set_master(struct pci_dev *dev);
75
David Shaohua Lic9c3e452005-04-01 00:07:31 -050076static inline void pcibios_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 /* We don't do dynamic PCI IRQ allocation */
79}
80
81/* Dynamic DMA mapping stuff.
82 * SuperH has everything mapped statically like x86.
83 */
84
85/* The PCI address space does equal the physical memory
86 * address space. The networking and block device layers use
87 * this boolean for bounce buffer decisions.
88 */
89#define PCI_DMA_BUS_IS_PHYS (1)
90
91#include <linux/types.h>
92#include <linux/slab.h>
93#include <asm/scatterlist.h>
94#include <linux/string.h>
95#include <asm/io.h>
96
97/* pci_unmap_{single,page} being a nop depends upon the
98 * configuration.
99 */
100#ifdef CONFIG_SH_PCIDMA_NONCOHERENT
101#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
102 dma_addr_t ADDR_NAME;
103#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
104 __u32 LEN_NAME;
105#define pci_unmap_addr(PTR, ADDR_NAME) \
106 ((PTR)->ADDR_NAME)
107#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
108 (((PTR)->ADDR_NAME) = (VAL))
109#define pci_unmap_len(PTR, LEN_NAME) \
110 ((PTR)->LEN_NAME)
111#define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
112 (((PTR)->LEN_NAME) = (VAL))
113#else
114#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
115#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
116#define pci_unmap_addr(PTR, ADDR_NAME) (0)
117#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
118#define pci_unmap_len(PTR, LEN_NAME) (0)
119#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
120#endif
121
Andrew Mortonbb4a61b2005-06-06 23:07:46 -0700122#ifdef CONFIG_PCI
David S. Millere24c2d92005-06-02 12:55:50 -0700123static inline void pci_dma_burst_advice(struct pci_dev *pdev,
124 enum pci_dma_burst_strategy *strat,
125 unsigned long *strategy_parameter)
126{
127 *strat = PCI_DMA_BURST_INFINITY;
128 *strategy_parameter = ~0UL;
129}
Andrew Mortonbb4a61b2005-06-06 23:07:46 -0700130#endif
David S. Millere24c2d92005-06-02 12:55:50 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* Board-specific fixup routines. */
Paul Mundt959f85f2006-09-27 16:43:28 +0900133void pcibios_fixup(void);
134int pcibios_init_platform(void);
135int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137#ifdef CONFIG_PCI_AUTO
Paul Mundt959f85f2006-09-27 16:43:28 +0900138int pciauto_assign_resources(int busno, struct pci_channel *hose);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#endif
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#endif /* __KERNEL__ */
142
143/* generic pci stuff */
144#include <asm-generic/pci.h>
145
146/* generic DMA-mapping stuff */
147#include <asm-generic/pci-dma-compat.h>
148
149#endif /* __ASM_SH_PCI_H */
150