device create: isdn: convert device_create to device_create_drvdata
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-alpha / pci.h
blobd31fd49ff79a40fc7d00d22528f9b955739786e9
1 #ifndef __ALPHA_PCI_H
2 #define __ALPHA_PCI_H
4 #ifdef __KERNEL__
6 #include <linux/spinlock.h>
7 #include <linux/dma-mapping.h>
8 #include <asm/scatterlist.h>
9 #include <asm/machvec.h>
12 * The following structure is used to manage multiple PCI busses.
15 struct pci_dev;
16 struct pci_bus;
17 struct resource;
18 struct pci_iommu_arena;
19 struct page;
21 /* A controller. Used to manage multiple PCI busses. */
23 struct pci_controller {
24 struct pci_controller *next;
25 struct pci_bus *bus;
26 struct resource *io_space;
27 struct resource *mem_space;
29 /* The following are for reporting to userland. The invariant is
30 that if we report a BWX-capable dense memory, we do not report
31 a sparse memory at all, even if it exists. */
32 unsigned long sparse_mem_base;
33 unsigned long dense_mem_base;
34 unsigned long sparse_io_base;
35 unsigned long dense_io_base;
37 /* This one's for the kernel only. It's in KSEG somewhere. */
38 unsigned long config_space_base;
40 unsigned int index;
41 /* For compatibility with current (as of July 2003) pciutils
42 and XFree86. Eventually will be removed. */
43 unsigned int need_domain_info;
45 struct pci_iommu_arena *sg_pci;
46 struct pci_iommu_arena *sg_isa;
48 void *sysdata;
51 /* Override the logic in pci_scan_bus for skipping already-configured
52 bus numbers. */
54 #define pcibios_assign_all_busses() 1
55 #define pcibios_scan_all_fns(a, b) 0
57 #define PCIBIOS_MIN_IO alpha_mv.min_io_address
58 #define PCIBIOS_MIN_MEM alpha_mv.min_mem_address
60 extern void pcibios_set_master(struct pci_dev *dev);
62 extern inline void pcibios_penalize_isa_irq(int irq, int active)
64 /* We don't do dynamic PCI IRQ allocation */
67 /* IOMMU controls. */
69 /* The PCI address space does not equal the physical memory address space.
70 The networking and block device layers use this boolean for bounce buffer
71 decisions. */
72 #define PCI_DMA_BUS_IS_PHYS 0
74 /* Allocate and map kernel buffer using consistent mode DMA for PCI
75 device. Returns non-NULL cpu-view pointer to the buffer if
76 successful and sets *DMA_ADDRP to the pci side dma address as well,
77 else DMA_ADDRP is undefined. */
79 extern void *__pci_alloc_consistent(struct pci_dev *, size_t,
80 dma_addr_t *, gfp_t);
81 static inline void *
82 pci_alloc_consistent(struct pci_dev *dev, size_t size, dma_addr_t *dma)
84 return __pci_alloc_consistent(dev, size, dma, GFP_ATOMIC);
87 /* Free and unmap a consistent DMA buffer. CPU_ADDR and DMA_ADDR must
88 be values that were returned from pci_alloc_consistent. SIZE must
89 be the same as what as passed into pci_alloc_consistent.
90 References to the memory and mappings associated with CPU_ADDR or
91 DMA_ADDR past this call are illegal. */
93 extern void pci_free_consistent(struct pci_dev *, size_t, void *, dma_addr_t);
95 /* Map a single buffer of the indicate size for PCI DMA in streaming mode.
96 The 32-bit PCI bus mastering address to use is returned. Once the device
97 is given the dma address, the device owns this memory until either
98 pci_unmap_single or pci_dma_sync_single_for_cpu is performed. */
100 extern dma_addr_t pci_map_single(struct pci_dev *, void *, size_t, int);
102 /* Likewise, but for a page instead of an address. */
103 extern dma_addr_t pci_map_page(struct pci_dev *, struct page *,
104 unsigned long, size_t, int);
106 /* Test for pci_map_single or pci_map_page having generated an error. */
108 static inline int
109 pci_dma_mapping_error(dma_addr_t dma_addr)
111 return dma_addr == 0;
114 /* Unmap a single streaming mode DMA translation. The DMA_ADDR and
115 SIZE must match what was provided for in a previous pci_map_single
116 call. All other usages are undefined. After this call, reads by
117 the cpu to the buffer are guaranteed to see whatever the device
118 wrote there. */
120 extern void pci_unmap_single(struct pci_dev *, dma_addr_t, size_t, int);
121 extern void pci_unmap_page(struct pci_dev *, dma_addr_t, size_t, int);
123 /* pci_unmap_{single,page} is not a nop, thus... */
124 #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) \
125 dma_addr_t ADDR_NAME;
126 #define DECLARE_PCI_UNMAP_LEN(LEN_NAME) \
127 __u32 LEN_NAME;
128 #define pci_unmap_addr(PTR, ADDR_NAME) \
129 ((PTR)->ADDR_NAME)
130 #define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
131 (((PTR)->ADDR_NAME) = (VAL))
132 #define pci_unmap_len(PTR, LEN_NAME) \
133 ((PTR)->LEN_NAME)
134 #define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
135 (((PTR)->LEN_NAME) = (VAL))
137 /* Map a set of buffers described by scatterlist in streaming mode for
138 PCI DMA. This is the scatter-gather version of the above
139 pci_map_single interface. Here the scatter gather list elements
140 are each tagged with the appropriate PCI dma address and length.
141 They are obtained via sg_dma_{address,length}(SG).
143 NOTE: An implementation may be able to use a smaller number of DMA
144 address/length pairs than there are SG table elements. (for
145 example via virtual mapping capabilities) The routine returns the
146 number of addr/length pairs actually used, at most nents.
148 Device ownership issues as mentioned above for pci_map_single are
149 the same here. */
151 extern int pci_map_sg(struct pci_dev *, struct scatterlist *, int, int);
153 /* Unmap a set of streaming mode DMA translations. Again, cpu read
154 rules concerning calls here are the same as for pci_unmap_single()
155 above. */
157 extern void pci_unmap_sg(struct pci_dev *, struct scatterlist *, int, int);
159 /* Make physical memory consistent for a single streaming mode DMA
160 translation after a transfer and device currently has ownership
161 of the buffer.
163 If you perform a pci_map_single() but wish to interrogate the
164 buffer using the cpu, yet do not wish to teardown the PCI dma
165 mapping, you must call this function before doing so. At the next
166 point you give the PCI dma address back to the card, you must first
167 perform a pci_dma_sync_for_device, and then the device again owns
168 the buffer. */
170 static inline void
171 pci_dma_sync_single_for_cpu(struct pci_dev *dev, dma_addr_t dma_addr,
172 long size, int direction)
174 /* Nothing to do. */
177 static inline void
178 pci_dma_sync_single_for_device(struct pci_dev *dev, dma_addr_t dma_addr,
179 size_t size, int direction)
181 /* Nothing to do. */
184 /* Make physical memory consistent for a set of streaming mode DMA
185 translations after a transfer. The same as pci_dma_sync_single_*
186 but for a scatter-gather list, same rules and usage. */
188 static inline void
189 pci_dma_sync_sg_for_cpu(struct pci_dev *dev, struct scatterlist *sg,
190 int nents, int direction)
192 /* Nothing to do. */
195 static inline void
196 pci_dma_sync_sg_for_device(struct pci_dev *dev, struct scatterlist *sg,
197 int nents, int direction)
199 /* Nothing to do. */
202 /* Return whether the given PCI device DMA address mask can
203 be supported properly. For example, if your device can
204 only drive the low 24-bits during PCI bus mastering, then
205 you would pass 0x00ffffff as the mask to this function. */
207 extern int pci_dma_supported(struct pci_dev *hwdev, u64 mask);
209 #ifdef CONFIG_PCI
210 static inline void pci_dma_burst_advice(struct pci_dev *pdev,
211 enum pci_dma_burst_strategy *strat,
212 unsigned long *strategy_parameter)
214 unsigned long cacheline_size;
215 u8 byte;
217 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &byte);
218 if (byte == 0)
219 cacheline_size = 1024;
220 else
221 cacheline_size = (int) byte * 4;
223 *strat = PCI_DMA_BURST_BOUNDARY;
224 *strategy_parameter = cacheline_size;
226 #endif
228 /* TODO: integrate with include/asm-generic/pci.h ? */
229 static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel)
231 return channel ? 15 : 14;
234 extern void pcibios_resource_to_bus(struct pci_dev *, struct pci_bus_region *,
235 struct resource *);
237 extern void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
238 struct pci_bus_region *region);
240 static inline struct resource *
241 pcibios_select_root(struct pci_dev *pdev, struct resource *res)
243 struct resource *root = NULL;
245 if (res->flags & IORESOURCE_IO)
246 root = &ioport_resource;
247 if (res->flags & IORESOURCE_MEM)
248 root = &iomem_resource;
250 return root;
253 #define pci_domain_nr(bus) ((struct pci_controller *)(bus)->sysdata)->index
255 static inline int pci_proc_domain(struct pci_bus *bus)
257 struct pci_controller *hose = bus->sysdata;
258 return hose->need_domain_info;
261 struct pci_dev *alpha_gendev_to_pci(struct device *dev);
263 #endif /* __KERNEL__ */
265 /* Values for the `which' argument to sys_pciconfig_iobase. */
266 #define IOBASE_HOSE 0
267 #define IOBASE_SPARSE_MEM 1
268 #define IOBASE_DENSE_MEM 2
269 #define IOBASE_SPARSE_IO 3
270 #define IOBASE_DENSE_IO 4
271 #define IOBASE_ROOT_BUS 5
272 #define IOBASE_FROM_HOSE 0x10000
274 extern struct pci_dev *isa_bridge;
276 #endif /* __ALPHA_PCI_H */