blob: 4163950cd1c6e329ca76b60fafb46f91f4440e8b [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14/*
15 * A board can define one or more PCI channels that represent built-in (or
16 * external) PCI controllers.
17 */
18struct pci_channel {
Paul Mundte79066a2009-04-20 18:29:22 +090019 struct pci_channel *next;
Paul Mundt0bb34a62009-04-20 16:38:00 +090020
Paul Mundte79066a2009-04-20 18:29:22 +090021 struct pci_ops *pci_ops;
22 struct resource *io_resource;
23 struct resource *mem_resource;
24
Paul Mundt09cfeb12009-04-20 18:42:00 +090025 unsigned long io_offset;
26 unsigned long mem_offset;
27
Paul Mundte79066a2009-04-20 18:29:22 +090028 unsigned long reg_base;
Paul Mundte79066a2009-04-20 18:29:22 +090029
30 unsigned long io_map_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
32
Paul Mundte79066a2009-04-20 18:29:22 +090033extern void register_pci_controller(struct pci_channel *hose);
34
Paul Mundta3c0e0d2009-04-20 16:14:29 +090035extern unsigned long PCIBIOS_MIN_IO, PCIBIOS_MIN_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37struct pci_dev;
38
Paul Mundt98333852009-04-20 15:51:45 +090039#define HAVE_PCI_MMAP
40extern int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
41 enum pci_mmap_state mmap_state, int write_combine);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern void pcibios_set_master(struct pci_dev *dev);
43
David Shaohua Lic9c3e452005-04-01 00:07:31 -050044static inline void pcibios_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 /* We don't do dynamic PCI IRQ allocation */
47}
48
49/* Dynamic DMA mapping stuff.
50 * SuperH has everything mapped statically like x86.
51 */
52
53/* The PCI address space does equal the physical memory
54 * address space. The networking and block device layers use
55 * this boolean for bounce buffer decisions.
56 */
57#define PCI_DMA_BUS_IS_PHYS (1)
58
59#include <linux/types.h>
60#include <linux/slab.h>
61#include <asm/scatterlist.h>
62#include <linux/string.h>
63#include <asm/io.h>
64
65/* pci_unmap_{single,page} being a nop depends upon the
66 * configuration.
67 */
68#ifdef CONFIG_SH_PCIDMA_NONCOHERENT
69#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
70 dma_addr_t ADDR_NAME;
71#define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
72 __u32 LEN_NAME;
73#define pci_unmap_addr(PTR, ADDR_NAME) \
74 ((PTR)->ADDR_NAME)
75#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
76 (((PTR)->ADDR_NAME) = (VAL))
77#define pci_unmap_len(PTR, LEN_NAME) \
78 ((PTR)->LEN_NAME)
79#define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
80 (((PTR)->LEN_NAME) = (VAL))
81#else
82#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
83#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
84#define pci_unmap_addr(PTR, ADDR_NAME) (0)
85#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
86#define pci_unmap_len(PTR, LEN_NAME) (0)
87#define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
88#endif
89
Paul Mundt3e98f9f2009-04-24 15:39:39 +090090#ifdef CONFIG_PCI
Paul Mundtb7e2ac62009-05-26 23:13:13 +090091/*
92 * None of the SH PCI controllers support MWI, it is always treated as a
93 * direct memory write.
94 */
95#define PCI_DISABLE_MWI
96
David S. Millere24c2d92005-06-02 12:55:50 -070097static inline void pci_dma_burst_advice(struct pci_dev *pdev,
98 enum pci_dma_burst_strategy *strat,
99 unsigned long *strategy_parameter)
100{
Paul Mundtb7e2ac62009-05-26 23:13:13 +0900101 unsigned long cacheline_size;
102 u8 byte;
103
104 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte);
105
106 if (byte == 0)
107 cacheline_size = L1_CACHE_BYTES;
108 else
109 cacheline_size = byte << 2;
110
111 *strat = PCI_DMA_BURST_MULTIPLE;
112 *strategy_parameter = cacheline_size;
David S. Millere24c2d92005-06-02 12:55:50 -0700113}
Paul Mundt3e98f9f2009-04-24 15:39:39 +0900114#endif
Magnus Dammef339f22008-02-19 21:35:22 +0900115
Paul Mundt99f95f12009-04-20 18:24:57 +0900116#ifdef CONFIG_SUPERH32
117/*
118 * If we're on an SH7751 or SH7780 PCI controller, PCI memory is mapped
119 * at the end of the address space in a special non-translatable area.
120 */
121#define PCI_MEM_FIXED_START 0xfd000000
122#define PCI_MEM_FIXED_END (PCI_MEM_FIXED_START + 0x01000000)
Magnus Dammef339f22008-02-19 21:35:22 +0900123
Paul Mundt99f95f12009-04-20 18:24:57 +0900124#define is_pci_memory_fixed_range(s, e) \
125 ((s) >= PCI_MEM_FIXED_START && (e) < PCI_MEM_FIXED_END)
Magnus Dammef339f22008-02-19 21:35:22 +0900126#else
Paul Mundt99f95f12009-04-20 18:24:57 +0900127#define is_pci_memory_fixed_range(s, e) (0)
Andrew Mortonbb4a61b2005-06-06 23:07:46 -0700128#endif
David S. Millere24c2d92005-06-02 12:55:50 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/* Board-specific fixup routines. */
Paul Mundt959f85f2006-09-27 16:43:28 +0900131int pcibios_map_platform_irq(struct pci_dev *dev, u8 slot, u8 pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
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
Paul Mundt9ade1212009-04-20 15:38:25 +0900139/* Chances are this interrupt is wired PC-style ... */
140static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
141{
142 return channel ? 15 : 14;
143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/* generic DMA-mapping stuff */
146#include <asm-generic/pci-dma-compat.h>
147
Paul Mundt9ade1212009-04-20 15:38:25 +0900148#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#endif /* __ASM_SH_PCI_H */
150