busdma: Add bus_dmamap_load_ccb; ease driver porting from FreeBSD.
[dragonfly.git] / sys / sys / bus_dma.h
blobdbedbdfd8bae3df39b4a79fbf1ffb8fdd829c0cd
1 /*-
2 * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
3 * All rights reserved.
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
7 * NASA Ames Research Center.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the NetBSD
20 * Foundation, Inc. and its contributors.
21 * 4. Neither the name of The NetBSD Foundation nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
38 * Copyright (c) 1996 Charles M. Hannum. All rights reserved.
39 * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
43 * are met:
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * 2. Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in the
48 * documentation and/or other materials provided with the distribution.
49 * 3. All advertising materials mentioning features or use of this software
50 * must display the following acknowledgement:
51 * This product includes software developed by Christopher G. Demetriou
52 * for the NetBSD Project.
53 * 4. The name of the author may not be used to endorse or promote products
54 * derived from this software without specific prior written permission
56 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
57 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
58 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
59 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
60 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
61 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
62 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
63 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
64 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
65 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68 * $NetBSD: bus.h,v 1.12 1997/10/01 08:25:15 fvdl Exp $
69 * $FreeBSD: src/sys/i386/include/bus_dma.h,v 1.15.2.2 2002/11/21 23:36:01 sam Exp $
72 #ifndef _SYS_BUS_DMA_H_
73 #define _SYS_BUS_DMA_H_
76 * Include machine-specific bus stuff
78 #include <machine/bus_dma.h> /* bus_addr_t */
81 * Flags used in various bus DMA methods.
83 #define BUS_DMA_WAITOK 0x0000 /* safe to sleep (pseudo-flag) */
84 #define BUS_DMA_NOWAIT 0x0001 /* not safe to sleep */
85 #define BUS_DMA_ALLOCNOW 0x0002 /* perform resource allocation now */
86 #define BUS_DMA_COHERENT 0x0004 /* map memory to not require sync */
87 #define BUS_DMA_ZERO 0x0008 /* allocate zero'ed memory */
88 #define BUS_DMA_BUS1 0x0010 /* placeholders for bus functions... */
89 #define BUS_DMA_BUS2 0x0020
90 #define BUS_DMA_BUS3 0x0040
91 #define BUS_DMA_BUS4 0x0080
92 #define BUS_DMA_ONEBPAGE 0x0100 /* allocate one bpage per map at most */
93 #define BUS_DMA_ALIGNED 0x0200 /* no bpage should be allocated due to
94 * alignment requirement; all to-be-
95 * loaded memory is properly aligned */
96 #define BUS_DMA_PRIVBZONE 0x0400 /* need private bounce zone */
97 #define BUS_DMA_ALLOCALL 0x0800 /* allocate all needed resources */
98 #define BUS_DMA_PROTECTED 0x1000 /* all busdma functions are already
99 * protected */
100 #define BUS_DMA_KEEP_PG_OFFSET 0x2000 /* DMA tag hint that the page offset of the
101 * loaded kernel virtual address must be
102 * preserved in the first physical segment
103 * address, when the KVA is loaded into DMA. */
104 #define BUS_DMA_NOCACHE 0x4000 /* map memory uncached */
106 /* Forwards needed by prototypes below. */
107 struct mbuf;
108 struct uio;
109 union ccb;
112 * bus_dmasync_op_t
114 * Operations performed by bus_dmamap_sync().
116 typedef int bus_dmasync_op_t;
118 #define BUS_DMASYNC_PREREAD 0x01
119 #define BUS_DMASYNC_POSTREAD 0x02
120 #define BUS_DMASYNC_PREWRITE 0x04
121 #define BUS_DMASYNC_POSTWRITE 0x08
124 * bus_dma_tag_t
126 * A machine-dependent opaque type describing the characteristics
127 * of how to perform DMA mappings. This structure encapsultes
128 * information concerning address and alignment restrictions, number
129 * of S/G segments, amount of data per S/G segment, etc.
131 typedef struct bus_dma_tag *bus_dma_tag_t;
134 * bus_dmamap_t
136 * DMA mapping instance information.
138 typedef struct bus_dmamap *bus_dmamap_t;
141 * bus_dma_segment_t
143 * Describes a single contiguous DMA transaction. Values
144 * are suitable for programming into DMA registers.
146 typedef struct bus_dma_segment {
147 bus_addr_t ds_addr; /* DMA address */
148 bus_size_t ds_len; /* length of transfer */
149 } bus_dma_segment_t;
151 typedef struct bus_dmamem {
152 bus_dma_tag_t dmem_tag;
153 bus_dmamap_t dmem_map;
154 void *dmem_addr;
155 bus_addr_t dmem_busaddr;
156 } bus_dmamem_t;
159 * A function that returns 1 if the address cannot be accessed by
160 * a device and 0 if it can be.
162 typedef int bus_dma_filter_t(void *, bus_addr_t);
165 * Allocate a device specific dma_tag encapsulating the constraints of
166 * the parent tag in addition to other restrictions specified:
168 * alignment: alignment for segments.
169 * boundary: Boundary that segments cannot cross.
170 * lowaddr: Low restricted address that cannot appear in a mapping.
171 * highaddr: High restricted address that cannot appear in a mapping.
172 * filtfunc: An optional function to further test if an address
173 * within the range of lowaddr and highaddr cannot appear
174 * in a mapping.
175 * filtfuncarg: An argument that will be passed to filtfunc in addition
176 * to the address to test.
177 * maxsize: Maximum mapping size supported by this tag.
178 * nsegments: Number of discontinuities allowed in maps.
179 * maxsegsz: Maximum size of a segment in the map.
180 * flags: Bus DMA flags.
181 * dmat: A pointer to set to a valid dma tag should the return
182 * value of this function indicate success.
184 /* XXX Should probably allow specification of alignment */
185 int bus_dma_tag_create(bus_dma_tag_t parent, bus_size_t alignment,
186 bus_size_t boundary, bus_addr_t lowaddr,
187 bus_addr_t highaddr, bus_dma_filter_t *filtfunc,
188 void *filtfuncarg, bus_size_t maxsize, int nsegments,
189 bus_size_t maxsegsz, int flags, bus_dma_tag_t *dmat);
191 int bus_dma_tag_destroy(bus_dma_tag_t dmat);
192 bus_size_t bus_dma_tag_getmaxsize(bus_dma_tag_t tag);
195 * Allocate a handle for mapping from kva/uva/physical
196 * address space into bus device space.
198 int bus_dmamap_create(bus_dma_tag_t dmat, int flags, bus_dmamap_t *mapp);
201 * Destroy a handle for mapping from kva/uva/physical
202 * address space into bus device space.
204 int bus_dmamap_destroy(bus_dma_tag_t dmat, bus_dmamap_t map);
207 * Allocate a piece of memory that can be efficiently mapped into
208 * bus device space based on the constraints lited in the dma tag.
209 * A dmamap to for use with dmamap_load is also allocated.
211 int bus_dmamem_alloc(bus_dma_tag_t dmat, void** vaddr, int flags,
212 bus_dmamap_t *mapp);
215 * Free a piece of memory and it's allociated dmamap, that was allocated
216 * via bus_dmamem_alloc.
218 void bus_dmamem_free(bus_dma_tag_t dmat, void *vaddr, bus_dmamap_t map);
221 * A function that processes a successfully loaded dma map or an error
222 * from a delayed load map.
224 typedef void bus_dmamap_callback_t(void *, bus_dma_segment_t *, int, int);
227 * Map the buffer buf into bus space using the dmamap map.
229 int bus_dmamap_load(bus_dma_tag_t dmat, bus_dmamap_t map, void *buf,
230 bus_size_t buflen, bus_dmamap_callback_t *callback,
231 void *callback_arg, int flags);
234 * Like bus_dmamap_callback but includes map size in bytes. This is
235 * defined as a separate interface to maintain compatiiblity for users
236 * of bus_dmamap_callback_t--at some point these interfaces should be merged.
238 typedef void bus_dmamap_callback2_t(void *, bus_dma_segment_t *, int, bus_size_t, int);
240 * Like bus_dmamap_load but for mbufs. Note the use of the
241 * bus_dmamap_callback2_t interface.
243 int bus_dmamap_load_mbuf(bus_dma_tag_t dmat, bus_dmamap_t map,
244 struct mbuf *mbuf,
245 bus_dmamap_callback2_t *callback, void *callback_arg,
246 int flags);
248 * Like bus_dmamap_load but for uios. Note the use of the
249 * bus_dmamap_callback2_t interface.
251 int bus_dmamap_load_uio(bus_dma_tag_t dmat, bus_dmamap_t map,
252 struct uio *ui,
253 bus_dmamap_callback2_t *callback, void *callback_arg,
254 int flags);
256 * Like bus_dmamap_load but for ccb.
258 int bus_dmamap_load_ccb(bus_dma_tag_t dmat, bus_dmamap_t map,
259 union ccb *ccb,
260 bus_dmamap_callback_t *callback, void *callback_arg,
261 int flags);
264 * Like bus_dmamap_load_mbuf without callback.
265 * Segmentation information are saved in 'segs' and 'nsegs' if
266 * the loading is successful. 'maxsegs' must be set by caller
267 * and must be at least 1 but less than 'dmat' nsegment. It
268 * indicates the number of elements in 'segs'. 'flags' must
269 * have BUS_DMA_NOWAIT turned on.
272 bus_dmamap_load_mbuf_segment(bus_dma_tag_t dmat, bus_dmamap_t map,
273 struct mbuf *mbuf,
274 bus_dma_segment_t *segs, int maxsegs,
275 int *nsegs, int flags);
278 * Like bus_dmamap_load_mbuf_segment, but it will call m_defrag()
279 * and try reloading if low level code indicates too many fragments
280 * in the '*mbuf'; 'mbuf' will be updated under this situation.
283 bus_dmamap_load_mbuf_defrag(bus_dma_tag_t dmat, bus_dmamap_t map,
284 struct mbuf **mbuf,
285 bus_dma_segment_t *segs, int maxsegs,
286 int *nsegs, int flags);
289 * Convenient function to create coherent busdma memory
292 bus_dmamem_coherent(bus_dma_tag_t parent,
293 bus_size_t alignment, bus_size_t boundary,
294 bus_addr_t lowaddr, bus_addr_t highaddr,
295 bus_size_t maxsize, int flags,
296 bus_dmamem_t *dmem);
299 * Simplified version of bus_dmamem_coherent() with:
300 * boundary == 0
301 * lowaddr == BUS_SPACE_MAXADDR
302 * highaddr == BUS_SPACE_MAXADDR
304 * 'parent' usually should not be NULL, so we could inherit
305 * boundary, lowaddr and highaddr from it.
307 void *
308 bus_dmamem_coherent_any(bus_dma_tag_t parent, bus_size_t alignment,
309 bus_size_t maxsize, int flags,
310 bus_dma_tag_t *dtag, bus_dmamap_t *dmap,
311 bus_addr_t *busaddr);
314 * Perform a syncronization operation on the given map.
316 void _bus_dmamap_sync(bus_dma_tag_t, bus_dmamap_t, bus_dmasync_op_t);
317 #define bus_dmamap_sync(dmat, dmamap, op) \
318 if ((dmamap) != NULL) \
319 _bus_dmamap_sync(dmat, dmamap, op)
322 * Release the mapping held by map.
324 void _bus_dmamap_unload(bus_dma_tag_t dmat, bus_dmamap_t map);
325 #define bus_dmamap_unload(dmat, dmamap) \
326 if ((dmamap) != NULL) \
327 _bus_dmamap_unload(dmat, dmamap)
329 #endif /* _SYS_BUS_DMA_H_ */