dwlpx_dma.c revision 1.9 1 1.9 thorpej /* $NetBSD: dwlpx_dma.c,v 1.9 1998/05/13 21:21:17 thorpej Exp $ */
2 1.2 thorpej
3 1.2 thorpej /*-
4 1.5 thorpej * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
5 1.2 thorpej * All rights reserved.
6 1.2 thorpej *
7 1.2 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.2 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.2 thorpej * NASA Ames Research Center.
10 1.2 thorpej *
11 1.2 thorpej * Redistribution and use in source and binary forms, with or without
12 1.2 thorpej * modification, are permitted provided that the following conditions
13 1.2 thorpej * are met:
14 1.2 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.2 thorpej * notice, this list of conditions and the following disclaimer.
16 1.2 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.2 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.2 thorpej * documentation and/or other materials provided with the distribution.
19 1.2 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.2 thorpej * must display the following acknowledgement:
21 1.2 thorpej * This product includes software developed by the NetBSD
22 1.2 thorpej * Foundation, Inc. and its contributors.
23 1.2 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.2 thorpej * contributors may be used to endorse or promote products derived
25 1.2 thorpej * from this software without specific prior written permission.
26 1.2 thorpej *
27 1.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.2 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.2 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.2 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.2 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPEDWLPxL, EXEMPLARY, OR
32 1.2 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.2 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.2 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.2 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.2 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.2 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.2 thorpej */
39 1.2 thorpej
40 1.2 thorpej #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
41 1.2 thorpej
42 1.9 thorpej __KERNEL_RCSID(0, "$NetBSD: dwlpx_dma.c,v 1.9 1998/05/13 21:21:17 thorpej Exp $");
43 1.2 thorpej
44 1.2 thorpej #include <sys/param.h>
45 1.2 thorpej #include <sys/systm.h>
46 1.2 thorpej #include <sys/kernel.h>
47 1.2 thorpej #include <sys/device.h>
48 1.2 thorpej #include <sys/malloc.h>
49 1.2 thorpej #include <vm/vm.h>
50 1.2 thorpej
51 1.2 thorpej #define _ALPHA_BUS_DMA_PRIVATE
52 1.2 thorpej #include <machine/bus.h>
53 1.2 thorpej
54 1.2 thorpej #include <dev/pci/pcireg.h>
55 1.2 thorpej #include <dev/pci/pcivar.h>
56 1.2 thorpej #include <alpha/tlsb/tlsbreg.h>
57 1.2 thorpej #include <alpha/tlsb/kftxxvar.h>
58 1.2 thorpej #include <alpha/tlsb/kftxxreg.h>
59 1.2 thorpej #include <alpha/pci/dwlpxreg.h>
60 1.2 thorpej #include <alpha/pci/dwlpxvar.h>
61 1.2 thorpej #include <alpha/pci/pci_kn8ae.h>
62 1.2 thorpej
63 1.2 thorpej bus_dma_tag_t dwlpx_dma_get_tag __P((bus_dma_tag_t, alpha_bus_t));
64 1.2 thorpej
65 1.2 thorpej int dwlpx_bus_dmamap_create_sgmap __P((bus_dma_tag_t, bus_size_t, int,
66 1.2 thorpej bus_size_t, bus_size_t, int, bus_dmamap_t *));
67 1.2 thorpej
68 1.2 thorpej void dwlpx_bus_dmamap_destroy_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
69 1.2 thorpej
70 1.2 thorpej int dwlpx_bus_dmamap_load_sgmap __P((bus_dma_tag_t, bus_dmamap_t, void *,
71 1.2 thorpej bus_size_t, struct proc *, int));
72 1.2 thorpej
73 1.2 thorpej int dwlpx_bus_dmamap_load_mbuf_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
74 1.2 thorpej struct mbuf *, int));
75 1.2 thorpej
76 1.2 thorpej int dwlpx_bus_dmamap_load_uio_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
77 1.2 thorpej struct uio *, int));
78 1.2 thorpej
79 1.2 thorpej int dwlpx_bus_dmamap_load_raw_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
80 1.2 thorpej bus_dma_segment_t *, int, bus_size_t, int));
81 1.2 thorpej
82 1.2 thorpej void dwlpx_bus_dmamap_unload_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
83 1.2 thorpej
84 1.9 thorpej /*
85 1.9 thorpej * Direct-mapped window: 2G at 2G
86 1.9 thorpej */
87 1.9 thorpej #define DWLPx_DIRECT_MAPPED_BASE (2UL*1024UL*1024UL*1024UL)
88 1.9 thorpej #define DWLPx_DIRECT_MAPPED_SIZE (2UL*1024UL*1024UL*1024UL)
89 1.9 thorpej
90 1.9 thorpej /*
91 1.9 thorpej * SGMAP window A: 256M or 1G at 1G
92 1.9 thorpej */
93 1.9 thorpej #define DWLPx_SG_MAPPED_BASE (1*1024*1024*1024)
94 1.9 thorpej #define DWLPx_SG_MAPPED_SIZE(x) ((x) * PAGE_SIZE)
95 1.9 thorpej
96 1.9 thorpej /*
97 1.9 thorpej * Set this to always use SGMAPs.
98 1.9 thorpej */
99 1.9 thorpej #ifdef DWLPX_ALWAYS_USE_SGMAP
100 1.9 thorpej int dwlpx_always_use_sgmap = 1;
101 1.9 thorpej #else
102 1.9 thorpej int dwlpx_always_use_sgmap = 0;
103 1.9 thorpej #endif
104 1.2 thorpej
105 1.2 thorpej void
106 1.2 thorpej dwlpx_dma_init(ccp)
107 1.2 thorpej struct dwlpx_config *ccp;
108 1.2 thorpej {
109 1.2 thorpej char *exname;
110 1.2 thorpej bus_dma_tag_t t;
111 1.2 thorpej u_int32_t *page_table;
112 1.7 mjacob int i, lim, wmask;
113 1.2 thorpej
114 1.2 thorpej /*
115 1.9 thorpej * Determine size of Window C based on the amount of SGMAP
116 1.9 thorpej * page table SRAM available.
117 1.9 thorpej */
118 1.9 thorpej if (ccp->cc_sc->dwlpx_sgmapsz == DWLPX_SG128K) {
119 1.9 thorpej lim = 128 * 1024;
120 1.9 thorpej wmask = PCIA_WMASK_1G;
121 1.9 thorpej } else {
122 1.9 thorpej lim = 32 * 1024;
123 1.9 thorpej wmask = PCIA_WMASK_256M;
124 1.9 thorpej }
125 1.9 thorpej
126 1.9 thorpej /*
127 1.9 thorpej * Initialize the DMA tag used for direct-mapped DMA. Chain
128 1.9 thorpej * this window to the SGMAP window, because we might have
129 1.9 thorpej * a lot of memory in the machine.
130 1.2 thorpej */
131 1.2 thorpej t = &ccp->cc_dmat_direct;
132 1.2 thorpej t->_cookie = ccp;
133 1.8 thorpej t->_wbase = DWLPx_DIRECT_MAPPED_BASE;
134 1.9 thorpej t->_wsize = DWLPx_DIRECT_MAPPED_SIZE;
135 1.9 thorpej t->_next_window = &ccp->cc_dmat_sgmap;
136 1.9 thorpej t->_sgmap = NULL;
137 1.2 thorpej t->_get_tag = dwlpx_dma_get_tag;
138 1.2 thorpej t->_dmamap_create = _bus_dmamap_create;
139 1.2 thorpej t->_dmamap_destroy = _bus_dmamap_destroy;
140 1.8 thorpej t->_dmamap_load = _bus_dmamap_load_direct;
141 1.8 thorpej t->_dmamap_load_mbuf = _bus_dmamap_load_mbuf_direct;
142 1.8 thorpej t->_dmamap_load_uio = _bus_dmamap_load_uio_direct;
143 1.8 thorpej t->_dmamap_load_raw = _bus_dmamap_load_raw_direct;
144 1.2 thorpej t->_dmamap_unload = _bus_dmamap_unload;
145 1.6 thorpej t->_dmamap_sync = _bus_dmamap_sync;
146 1.2 thorpej
147 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
148 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
149 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
150 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
151 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
152 1.2 thorpej
153 1.2 thorpej /*
154 1.2 thorpej * Initialize the DMA tag used for sgmap-mapped DMA.
155 1.2 thorpej */
156 1.2 thorpej t = &ccp->cc_dmat_sgmap;
157 1.2 thorpej t->_cookie = ccp;
158 1.8 thorpej t->_wbase = DWLPx_SG_MAPPED_BASE;
159 1.9 thorpej t->_wsize = DWLPx_SG_MAPPED_SIZE(lim);
160 1.9 thorpej t->_next_window = NULL;
161 1.9 thorpej t->_sgmap = &ccp->cc_sgmap;
162 1.2 thorpej t->_get_tag = dwlpx_dma_get_tag;
163 1.2 thorpej t->_dmamap_create = dwlpx_bus_dmamap_create_sgmap;
164 1.2 thorpej t->_dmamap_destroy = dwlpx_bus_dmamap_destroy_sgmap;
165 1.2 thorpej t->_dmamap_load = dwlpx_bus_dmamap_load_sgmap;
166 1.2 thorpej t->_dmamap_load_mbuf = dwlpx_bus_dmamap_load_mbuf_sgmap;
167 1.2 thorpej t->_dmamap_load_uio = dwlpx_bus_dmamap_load_uio_sgmap;
168 1.2 thorpej t->_dmamap_load_raw = dwlpx_bus_dmamap_load_raw_sgmap;
169 1.2 thorpej t->_dmamap_unload = dwlpx_bus_dmamap_unload_sgmap;
170 1.6 thorpej t->_dmamap_sync = _bus_dmamap_sync;
171 1.2 thorpej
172 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
173 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
174 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
175 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
176 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
177 1.2 thorpej
178 1.2 thorpej /*
179 1.2 thorpej * A few notes about SGMAP-mapped DMA on the DWLPx:
180 1.2 thorpej *
181 1.2 thorpej * The DWLPx has PCIA-resident SRAM that is used for
182 1.2 thorpej * the SGMAP page table; there is no TLB. The DWLPA
183 1.2 thorpej * has room for 32K entries, yielding a total of 256M
184 1.2 thorpej * of sgva space. The DWLPB has 32K entries or 128K
185 1.7 mjacob * entries, depending on TBIT, yielding either 256M or
186 1.2 thorpej * 1G of sgva space.
187 1.2 thorpej *
188 1.2 thorpej * This sgva space must be shared across all windows
189 1.2 thorpej * that wish to use SGMAP-mapped DMA; make sure to
190 1.2 thorpej * adjust the "sgvabase" argument to alpha_sgmap_init()
191 1.2 thorpej * accordingly if you create more than one SGMAP-mapped
192 1.2 thorpej * window. Note that sgvabase != window base. The former
193 1.2 thorpej * is used to compute indexes into the page table only.
194 1.2 thorpej *
195 1.7 mjacob * In the current implementation the first window is a
196 1.7 mjacob * 2G window direct-mapped mapped at 2G and the second
197 1.7 mjacob * window is disabled and the third window is a 256M
198 1.7 mjacob * or 1GB scatter/gather map at 1GB.
199 1.9 thorpej *
200 1.9 thorpej * We just punt on trying to support ISA DMA. If you want
201 1.9 thorpej * try that on a TurboLaser, well, you just lose.
202 1.2 thorpej */
203 1.2 thorpej
204 1.2 thorpej /*
205 1.2 thorpej * Initialize the page table.
206 1.2 thorpej */
207 1.2 thorpej page_table =
208 1.2 thorpej (u_int32_t *)ALPHA_PHYS_TO_K0SEG(PCIA_SGMAP_PT + ccp->cc_sysbase);
209 1.7 mjacob for (i = 0; i < lim; i++)
210 1.7 mjacob page_table[i * SGMAP_PTE_SPACING] = 0;
211 1.2 thorpej alpha_mb();
212 1.2 thorpej
213 1.2 thorpej /*
214 1.7 mjacob * Initialize the SGMAP for window C:
215 1.2 thorpej *
216 1.7 mjacob * Size: 256M or 1GB
217 1.7 mjacob * Window base: 1GB
218 1.2 thorpej * SGVA base: 0
219 1.2 thorpej */
220 1.2 thorpej exname = malloc(16, M_DEVBUF, M_NOWAIT);
221 1.2 thorpej if (exname == NULL)
222 1.2 thorpej panic("dwlpx_dma_init");
223 1.2 thorpej sprintf(exname, "%s_sgmap_a", ccp->cc_sc->dwlpx_dev.dv_xname);
224 1.7 mjacob alpha_sgmap_init(t, &ccp->cc_sgmap, exname, DWLPx_SG_MAPPED_BASE,
225 1.9 thorpej 0, DWLPx_SG_MAPPED_SIZE(lim), sizeof(u_int32_t),
226 1.9 thorpej (void *)page_table, 0);
227 1.2 thorpej
228 1.2 thorpej /*
229 1.2 thorpej * Set up DMA windows for this DWLPx.
230 1.2 thorpej *
231 1.2 thorpej * Do this even for all HPCs- even for the nonexistent
232 1.2 thorpej * one on hose zero of a KFTIA.
233 1.2 thorpej */
234 1.2 thorpej for (i = 0; i < NHPC; i++) {
235 1.7 mjacob REGVAL(PCIA_WMASK_A(i) + ccp->cc_sysbase) = PCIA_WMASK_2G;
236 1.2 thorpej REGVAL(PCIA_TBASE_A(i) + ccp->cc_sysbase) = 0;
237 1.2 thorpej REGVAL(PCIA_WBASE_A(i) + ccp->cc_sysbase) =
238 1.7 mjacob DWLPx_DIRECT_MAPPED_BASE | PCIA_WBASE_W_EN;
239 1.2 thorpej
240 1.7 mjacob REGVAL(PCIA_WMASK_B(i) + ccp->cc_sysbase) = 0;
241 1.2 thorpej REGVAL(PCIA_TBASE_B(i) + ccp->cc_sysbase) = 0;
242 1.7 mjacob REGVAL(PCIA_WBASE_B(i) + ccp->cc_sysbase) = 0;
243 1.2 thorpej
244 1.7 mjacob REGVAL(PCIA_WMASK_C(i) + ccp->cc_sysbase) = wmask;
245 1.2 thorpej REGVAL(PCIA_TBASE_C(i) + ccp->cc_sysbase) = 0;
246 1.7 mjacob REGVAL(PCIA_WBASE_C(i) + ccp->cc_sysbase) =
247 1.7 mjacob DWLPx_SG_MAPPED_BASE | PCIA_WBASE_W_EN | PCIA_WBASE_SG_EN;
248 1.2 thorpej alpha_mb();
249 1.2 thorpej }
250 1.2 thorpej
251 1.2 thorpej /* XXX XXX BEGIN XXX XXX */
252 1.2 thorpej { /* XXX */
253 1.2 thorpej extern vm_offset_t alpha_XXX_dmamap_or; /* XXX */
254 1.2 thorpej alpha_XXX_dmamap_or = DWLPx_DIRECT_MAPPED_BASE; /* XXX */
255 1.2 thorpej } /* XXX */
256 1.2 thorpej /* XXX XXX END XXX XXX */
257 1.2 thorpej }
258 1.2 thorpej
259 1.2 thorpej /*
260 1.2 thorpej * Return the bus dma tag to be used for the specified bus type.
261 1.2 thorpej * INTERNAL USE ONLY!
262 1.2 thorpej */
263 1.2 thorpej bus_dma_tag_t
264 1.2 thorpej dwlpx_dma_get_tag(t, bustype)
265 1.2 thorpej bus_dma_tag_t t;
266 1.2 thorpej alpha_bus_t bustype;
267 1.2 thorpej {
268 1.2 thorpej struct dwlpx_config *ccp = t->_cookie;
269 1.7 mjacob extern int physmem;
270 1.2 thorpej
271 1.2 thorpej switch (bustype) {
272 1.2 thorpej case ALPHA_BUS_PCI:
273 1.2 thorpej case ALPHA_BUS_EISA:
274 1.9 thorpej if (dwlpx_always_use_sgmap) {
275 1.9 thorpej /*
276 1.9 thorpej * Always use SGMAPs (for testing purposes?)
277 1.9 thorpej */
278 1.9 thorpej return (&ccp->cc_dmat_sgmap);
279 1.9 thorpej }
280 1.2 thorpej /*
281 1.9 thorpej * Give these busses the direct-mapped window; if the
282 1.9 thorpej * address crosses the threshold, it will fall back
283 1.9 thorpej * onto the SGMAP window.
284 1.2 thorpej */
285 1.9 thorpej return (&ccp->cc_dmat_direct);
286 1.2 thorpej
287 1.2 thorpej case ALPHA_BUS_ISA:
288 1.2 thorpej /*
289 1.9 thorpej * Don't even bother; it's not easy, given how the
290 1.9 thorpej * page table is arranged, and it's not really worth
291 1.9 thorpej * the trouble.
292 1.2 thorpej */
293 1.9 thorpej panic("dwlpx_dma_get_tag: ISA DMA? Forget it...");
294 1.9 thorpej /* NOTREACHED */
295 1.2 thorpej
296 1.2 thorpej default:
297 1.2 thorpej panic("dwlpx_dma_get_tag: shouldn't be here, really...");
298 1.2 thorpej }
299 1.2 thorpej }
300 1.2 thorpej
301 1.2 thorpej /*
302 1.2 thorpej * Create a DWLPx SGMAP-mapped DMA map.
303 1.2 thorpej */
304 1.2 thorpej int
305 1.2 thorpej dwlpx_bus_dmamap_create_sgmap(t, size, nsegments, maxsegsz, boundary,
306 1.2 thorpej flags, dmamp)
307 1.2 thorpej bus_dma_tag_t t;
308 1.2 thorpej bus_size_t size;
309 1.2 thorpej int nsegments;
310 1.2 thorpej bus_size_t maxsegsz;
311 1.2 thorpej bus_size_t boundary;
312 1.2 thorpej int flags;
313 1.2 thorpej bus_dmamap_t *dmamp;
314 1.2 thorpej {
315 1.2 thorpej bus_dmamap_t map;
316 1.2 thorpej int error;
317 1.2 thorpej
318 1.2 thorpej error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
319 1.2 thorpej boundary, flags, dmamp);
320 1.2 thorpej if (error)
321 1.2 thorpej return (error);
322 1.2 thorpej
323 1.2 thorpej map = *dmamp;
324 1.2 thorpej
325 1.2 thorpej if (flags & BUS_DMA_ALLOCNOW) {
326 1.2 thorpej error = alpha_sgmap_alloc(map, round_page(size),
327 1.9 thorpej t->_sgmap, flags);
328 1.2 thorpej if (error)
329 1.2 thorpej dwlpx_bus_dmamap_destroy_sgmap(t, map);
330 1.2 thorpej }
331 1.2 thorpej
332 1.2 thorpej return (error);
333 1.2 thorpej }
334 1.2 thorpej
335 1.2 thorpej /*
336 1.2 thorpej * Destroy a DWLPx SGMAP-mapped DMA map.
337 1.2 thorpej */
338 1.2 thorpej void
339 1.2 thorpej dwlpx_bus_dmamap_destroy_sgmap(t, map)
340 1.2 thorpej bus_dma_tag_t t;
341 1.2 thorpej bus_dmamap_t map;
342 1.2 thorpej {
343 1.2 thorpej
344 1.5 thorpej if (map->_dm_flags & DMAMAP_HAS_SGMAP)
345 1.9 thorpej alpha_sgmap_free(map, t->_sgmap);
346 1.2 thorpej
347 1.2 thorpej _bus_dmamap_destroy(t, map);
348 1.2 thorpej }
349 1.2 thorpej
350 1.2 thorpej /*
351 1.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with a linear buffer.
352 1.2 thorpej */
353 1.2 thorpej int
354 1.2 thorpej dwlpx_bus_dmamap_load_sgmap(t, map, buf, buflen, p, flags)
355 1.2 thorpej bus_dma_tag_t t;
356 1.2 thorpej bus_dmamap_t map;
357 1.2 thorpej void *buf;
358 1.2 thorpej bus_size_t buflen;
359 1.2 thorpej struct proc *p;
360 1.2 thorpej int flags;
361 1.2 thorpej {
362 1.2 thorpej
363 1.2 thorpej return (pci_sgmap_pte32_load(t, map, buf, buflen, p, flags,
364 1.9 thorpej t->_sgmap));
365 1.2 thorpej }
366 1.2 thorpej
367 1.2 thorpej /*
368 1.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with an mbuf chain.
369 1.2 thorpej */
370 1.2 thorpej int
371 1.2 thorpej dwlpx_bus_dmamap_load_mbuf_sgmap(t, map, m, flags)
372 1.2 thorpej bus_dma_tag_t t;
373 1.2 thorpej bus_dmamap_t map;
374 1.2 thorpej struct mbuf *m;
375 1.2 thorpej int flags;
376 1.2 thorpej {
377 1.2 thorpej
378 1.9 thorpej return (pci_sgmap_pte32_load_mbuf(t, map, m, flags, t->_sgmap));
379 1.2 thorpej }
380 1.2 thorpej
381 1.2 thorpej /*
382 1.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with a uio.
383 1.2 thorpej */
384 1.2 thorpej int
385 1.2 thorpej dwlpx_bus_dmamap_load_uio_sgmap(t, map, uio, flags)
386 1.2 thorpej bus_dma_tag_t t;
387 1.2 thorpej bus_dmamap_t map;
388 1.2 thorpej struct uio *uio;
389 1.2 thorpej int flags;
390 1.2 thorpej {
391 1.2 thorpej
392 1.9 thorpej return (pci_sgmap_pte32_load_uio(t, map, uio, flags, t->_sgmap));
393 1.2 thorpej }
394 1.2 thorpej
395 1.2 thorpej /*
396 1.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with raw memory.
397 1.2 thorpej */
398 1.2 thorpej int
399 1.2 thorpej dwlpx_bus_dmamap_load_raw_sgmap(t, map, segs, nsegs, size, flags)
400 1.2 thorpej bus_dma_tag_t t;
401 1.2 thorpej bus_dmamap_t map;
402 1.2 thorpej bus_dma_segment_t *segs;
403 1.2 thorpej int nsegs;
404 1.2 thorpej bus_size_t size;
405 1.2 thorpej int flags;
406 1.2 thorpej {
407 1.2 thorpej
408 1.2 thorpej return (pci_sgmap_pte32_load_raw(t, map, segs, nsegs, size, flags,
409 1.9 thorpej t->_sgmap));
410 1.2 thorpej }
411 1.2 thorpej
412 1.2 thorpej /*
413 1.2 thorpej * Unload a DWLPx DMA map.
414 1.2 thorpej */
415 1.2 thorpej void
416 1.2 thorpej dwlpx_bus_dmamap_unload_sgmap(t, map)
417 1.2 thorpej bus_dma_tag_t t;
418 1.2 thorpej bus_dmamap_t map;
419 1.2 thorpej {
420 1.2 thorpej
421 1.2 thorpej /*
422 1.2 thorpej * Invalidate any SGMAP page table entries used by this
423 1.2 thorpej * mapping.
424 1.2 thorpej */
425 1.9 thorpej pci_sgmap_pte32_unload(t, map, t->_sgmap);
426 1.2 thorpej
427 1.2 thorpej /*
428 1.2 thorpej * Do the generic bits of the unload.
429 1.2 thorpej */
430 1.2 thorpej _bus_dmamap_unload(t, map);
431 1.2 thorpej }
432