cpuidle: fix C3 for no bus-master control case
[linux-2.6/mini2440.git] / include / asm-sh64 / pci.h
blob57a67cf7a5c4e06309e25c2e70569dadb921fd23
1 #ifndef __ASM_SH64_PCI_H
2 #define __ASM_SH64_PCI_H
4 #ifdef __KERNEL__
6 #include <linux/dma-mapping.h>
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 */
12 #define pcibios_assign_all_busses() 1
15 * These are currently the correct values for the STM overdrive board
16 * We need some way of setting this on a board specific way, it will
17 * not be the same on other boards I think
19 #if defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
20 #define PCIBIOS_MIN_IO 0x2000
21 #define PCIBIOS_MIN_MEM 0x40000000
22 #endif
24 extern void pcibios_set_master(struct pci_dev *dev);
27 * Set penalize isa irq function
29 static inline void pcibios_penalize_isa_irq(int irq, int active)
31 /* We don't do dynamic PCI IRQ allocation */
34 /* Dynamic DMA mapping stuff.
35 * SuperH has everything mapped statically like x86.
38 /* The PCI address space does equal the physical memory
39 * address space. The networking and block device layers use
40 * this boolean for bounce buffer decisions.
42 #define PCI_DMA_BUS_IS_PHYS (1)
44 #include <linux/types.h>
45 #include <linux/slab.h>
46 #include <asm/scatterlist.h>
47 #include <linux/string.h>
48 #include <asm/io.h>
50 /* pci_unmap_{single,page} being a nop depends upon the
51 * configuration.
53 #ifdef CONFIG_SH_PCIDMA_NONCOHERENT
54 #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
55 dma_addr_t ADDR_NAME;
56 #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
57 __u32 LEN_NAME;
58 #define pci_unmap_addr(PTR, ADDR_NAME) \
59 ((PTR)->ADDR_NAME)
60 #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
61 (((PTR)->ADDR_NAME) = (VAL))
62 #define pci_unmap_len(PTR, LEN_NAME) \
63 ((PTR)->LEN_NAME)
64 #define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
65 (((PTR)->LEN_NAME) = (VAL))
66 #else
67 #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
68 #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
69 #define pci_unmap_addr(PTR, ADDR_NAME) (0)
70 #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
71 #define pci_unmap_len(PTR, LEN_NAME) (0)
72 #define pci_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
73 #endif
75 /* These macros should be used after a pci_map_sg call has been done
76 * to get bus addresses of each of the SG entries and their lengths.
77 * You should only work with the number of sg entries pci_map_sg
78 * returns, or alternatively stop on the first sg_dma_len(sg) which
79 * is 0.
81 #define sg_dma_address(sg) ((sg)->dma_address)
82 #define sg_dma_len(sg) ((sg)->length)
84 #ifdef CONFIG_PCI
85 static inline void pci_dma_burst_advice(struct pci_dev *pdev,
86 enum pci_dma_burst_strategy *strat,
87 unsigned long *strategy_parameter)
89 *strat = PCI_DMA_BURST_INFINITY;
90 *strategy_parameter = ~0UL;
92 #endif
94 /* Board-specific fixup routines. */
95 extern void pcibios_fixup(void);
96 extern void pcibios_fixup_irqs(void);
98 #ifdef CONFIG_PCI_AUTO
99 extern int pciauto_assign_resources(int busno, struct pci_channel *hose);
100 #endif
102 #endif /* __KERNEL__ */
104 /* generic pci stuff */
105 #include <asm-generic/pci.h>
107 /* generic DMA-mapping stuff */
108 #include <asm-generic/pci-dma-compat.h>
110 #endif /* __ASM_SH64_PCI_H */