apecs_dma.c revision 1.4 1 1.4 thorpej /* $NetBSD: apecs_dma.c,v 1.4 1998/01/17 03:40:32 thorpej Exp $ */
2 1.2 thorpej
3 1.2 thorpej /*-
4 1.2 thorpej * Copyright (c) 1997 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, SPECIAL, 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.4 thorpej __KERNEL_RCSID(0, "$NetBSD: apecs_dma.c,v 1.4 1998/01/17 03:40:32 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/pci/apecsreg.h>
57 1.2 thorpej #include <alpha/pci/apecsvar.h>
58 1.2 thorpej
59 1.2 thorpej bus_dma_tag_t apecs_dma_get_tag __P((bus_dma_tag_t, alpha_bus_t));
60 1.2 thorpej
61 1.2 thorpej int apecs_bus_dmamap_create_sgmap __P((bus_dma_tag_t, bus_size_t, int,
62 1.2 thorpej bus_size_t, bus_size_t, int, bus_dmamap_t *));
63 1.2 thorpej
64 1.2 thorpej void apecs_bus_dmamap_destroy_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
65 1.2 thorpej
66 1.2 thorpej int apecs_bus_dmamap_load_direct __P((bus_dma_tag_t, bus_dmamap_t, void *,
67 1.2 thorpej bus_size_t, struct proc *, int));
68 1.2 thorpej int apecs_bus_dmamap_load_sgmap __P((bus_dma_tag_t, bus_dmamap_t, void *,
69 1.2 thorpej bus_size_t, struct proc *, int));
70 1.2 thorpej
71 1.2 thorpej int apecs_bus_dmamap_load_mbuf_direct __P((bus_dma_tag_t, bus_dmamap_t,
72 1.2 thorpej struct mbuf *, int));
73 1.2 thorpej int apecs_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 apecs_bus_dmamap_load_uio_direct __P((bus_dma_tag_t, bus_dmamap_t,
77 1.2 thorpej struct uio *, int));
78 1.2 thorpej int apecs_bus_dmamap_load_uio_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
79 1.2 thorpej struct uio *, int));
80 1.2 thorpej
81 1.2 thorpej int apecs_bus_dmamap_load_raw_direct __P((bus_dma_tag_t, bus_dmamap_t,
82 1.2 thorpej bus_dma_segment_t *, int, bus_size_t, int));
83 1.2 thorpej int apecs_bus_dmamap_load_raw_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
84 1.2 thorpej bus_dma_segment_t *, int, bus_size_t, int));
85 1.2 thorpej
86 1.2 thorpej void apecs_bus_dmamap_unload_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
87 1.2 thorpej
88 1.2 thorpej /*
89 1.2 thorpej * The 1G direct-mapped DMA window begins at this PCI address.
90 1.2 thorpej */
91 1.2 thorpej #define APECS_DIRECT_MAPPED_BASE 0x40000000
92 1.2 thorpej
93 1.2 thorpej /*
94 1.2 thorpej * The 8M SGMAP-mapped DMA window begins at this PCI address.
95 1.2 thorpej */
96 1.2 thorpej #define APECS_SGMAP_MAPPED_BASE (8*1024*1024)
97 1.2 thorpej
98 1.2 thorpej /*
99 1.2 thorpej * Macro to flush APECS scatter/gather TLB.
100 1.2 thorpej */
101 1.2 thorpej #define APECS_TLB_INVALIDATE() \
102 1.2 thorpej do { \
103 1.2 thorpej alpha_mb(); \
104 1.2 thorpej REGVAL(EPIC_TBIA) = 0; \
105 1.2 thorpej alpha_mb(); \
106 1.2 thorpej } while (0)
107 1.2 thorpej
108 1.2 thorpej void
109 1.2 thorpej apecs_dma_init(acp)
110 1.2 thorpej struct apecs_config *acp;
111 1.2 thorpej {
112 1.2 thorpej bus_addr_t tbase;
113 1.2 thorpej bus_dma_tag_t t;
114 1.2 thorpej
115 1.2 thorpej /*
116 1.2 thorpej * Initialize the DMA tag used for direct-mapped DMA.
117 1.2 thorpej */
118 1.2 thorpej t = &acp->ac_dmat_direct;
119 1.2 thorpej t->_cookie = acp;
120 1.2 thorpej t->_get_tag = apecs_dma_get_tag;
121 1.2 thorpej t->_dmamap_create = _bus_dmamap_create;
122 1.2 thorpej t->_dmamap_destroy = _bus_dmamap_destroy;
123 1.2 thorpej t->_dmamap_load = apecs_bus_dmamap_load_direct;
124 1.2 thorpej t->_dmamap_load_mbuf = apecs_bus_dmamap_load_mbuf_direct;
125 1.2 thorpej t->_dmamap_load_uio = apecs_bus_dmamap_load_uio_direct;
126 1.2 thorpej t->_dmamap_load_raw = apecs_bus_dmamap_load_raw_direct;
127 1.2 thorpej t->_dmamap_unload = _bus_dmamap_unload;
128 1.2 thorpej t->_dmamap_sync = NULL; /* Nothing to do. */
129 1.2 thorpej
130 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
131 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
132 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
133 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
134 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
135 1.2 thorpej
136 1.2 thorpej /*
137 1.2 thorpej * Initialize the DMA tag used for sgmap-mapped DMA.
138 1.2 thorpej */
139 1.2 thorpej t = &acp->ac_dmat_sgmap;
140 1.2 thorpej t->_cookie = acp;
141 1.2 thorpej t->_get_tag = apecs_dma_get_tag;
142 1.2 thorpej t->_dmamap_create = apecs_bus_dmamap_create_sgmap;
143 1.2 thorpej t->_dmamap_destroy = apecs_bus_dmamap_destroy_sgmap;
144 1.2 thorpej t->_dmamap_load = apecs_bus_dmamap_load_sgmap;
145 1.2 thorpej t->_dmamap_load_mbuf = apecs_bus_dmamap_load_mbuf_sgmap;
146 1.2 thorpej t->_dmamap_load_uio = apecs_bus_dmamap_load_uio_sgmap;
147 1.2 thorpej t->_dmamap_load_raw = apecs_bus_dmamap_load_raw_sgmap;
148 1.2 thorpej t->_dmamap_unload = apecs_bus_dmamap_unload_sgmap;
149 1.2 thorpej t->_dmamap_sync = NULL; /* Nothing to do. */
150 1.2 thorpej
151 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
152 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
153 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
154 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
155 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
156 1.2 thorpej
157 1.2 thorpej /*
158 1.2 thorpej * The firmware has set up window 2 as a 1G direct-mapped DMA
159 1.2 thorpej * window beginning at 1G. We leave it alone. Disable
160 1.2 thorpej * window 1.
161 1.2 thorpej */
162 1.2 thorpej REGVAL(EPIC_PCI_BASE_1) = 0;
163 1.2 thorpej alpha_mb();
164 1.2 thorpej
165 1.2 thorpej /*
166 1.2 thorpej * Initialize the SGMAP if safe to do so.
167 1.2 thorpej */
168 1.2 thorpej if (acp->ac_mallocsafe) {
169 1.2 thorpej alpha_sgmap_init(t, &acp->ac_sgmap, "apecs_sgmap",
170 1.2 thorpej APECS_SGMAP_MAPPED_BASE, 0, (8*1024*1024),
171 1.4 thorpej sizeof(u_int64_t), NULL, 0);
172 1.2 thorpej
173 1.2 thorpej /*
174 1.2 thorpej * Set up window 1 as an 8MB SGMAP-mapped window
175 1.2 thorpej * starting at 8MB.
176 1.2 thorpej */
177 1.2 thorpej tbase = acp->ac_sgmap.aps_ptpa >> EPIC_TBASE_SHIFT;
178 1.2 thorpej if ((tbase & EPIC_TBASE_T_BASE) != tbase)
179 1.2 thorpej panic("apecs_dma_init: bad page table address");
180 1.2 thorpej REGVAL(EPIC_TBASE_1) = tbase;
181 1.2 thorpej REGVAL(EPIC_PCI_MASK_1) = EPIC_PCI_MASK_8M;
182 1.2 thorpej alpha_mb();
183 1.2 thorpej
184 1.2 thorpej REGVAL(EPIC_PCI_BASE_1) = APECS_SGMAP_MAPPED_BASE |
185 1.2 thorpej EPIC_PCI_BASE_SGEN | EPIC_PCI_BASE_WENB;
186 1.2 thorpej alpha_mb();
187 1.2 thorpej
188 1.2 thorpej APECS_TLB_INVALIDATE();
189 1.2 thorpej }
190 1.2 thorpej
191 1.2 thorpej /* XXX XXX BEGIN XXX XXX */
192 1.2 thorpej { /* XXX */
193 1.2 thorpej extern vm_offset_t alpha_XXX_dmamap_or; /* XXX */
194 1.2 thorpej alpha_XXX_dmamap_or = APECS_DIRECT_MAPPED_BASE; /* XXX */
195 1.2 thorpej } /* XXX */
196 1.2 thorpej /* XXX XXX END XXX XXX */
197 1.2 thorpej }
198 1.2 thorpej
199 1.2 thorpej /*
200 1.2 thorpej * Return the bus dma tag to be used for the specified bus type.
201 1.2 thorpej * INTERNAL USE ONLY!
202 1.2 thorpej */
203 1.2 thorpej bus_dma_tag_t
204 1.2 thorpej apecs_dma_get_tag(t, bustype)
205 1.2 thorpej bus_dma_tag_t t;
206 1.2 thorpej alpha_bus_t bustype;
207 1.2 thorpej {
208 1.2 thorpej struct apecs_config *acp = t->_cookie;
209 1.2 thorpej
210 1.2 thorpej switch (bustype) {
211 1.2 thorpej case ALPHA_BUS_PCI:
212 1.2 thorpej case ALPHA_BUS_EISA:
213 1.2 thorpej /*
214 1.2 thorpej * Systems with an APECS can only support 1G
215 1.2 thorpej * of memory, so we use the direct-mapped window
216 1.2 thorpej * on busses that have 32-bit DMA.
217 1.2 thorpej */
218 1.2 thorpej return (&acp->ac_dmat_direct);
219 1.2 thorpej
220 1.2 thorpej case ALPHA_BUS_ISA:
221 1.2 thorpej /*
222 1.2 thorpej * ISA doesn't have enough address bits to use
223 1.2 thorpej * the direct-mapped DMA window, so we must use
224 1.2 thorpej * SGMAPs.
225 1.2 thorpej */
226 1.2 thorpej return (&acp->ac_dmat_sgmap);
227 1.2 thorpej
228 1.2 thorpej default:
229 1.2 thorpej panic("apecs_dma_get_tag: shouldn't be here, really...");
230 1.2 thorpej }
231 1.2 thorpej }
232 1.2 thorpej
233 1.2 thorpej /*
234 1.2 thorpej * Create an APECS SGMAP-mapped DMA map.
235 1.2 thorpej */
236 1.2 thorpej int
237 1.2 thorpej apecs_bus_dmamap_create_sgmap(t, size, nsegments, maxsegsz, boundary,
238 1.2 thorpej flags, dmamp)
239 1.2 thorpej bus_dma_tag_t t;
240 1.2 thorpej bus_size_t size;
241 1.2 thorpej int nsegments;
242 1.2 thorpej bus_size_t maxsegsz;
243 1.2 thorpej bus_size_t boundary;
244 1.2 thorpej int flags;
245 1.2 thorpej bus_dmamap_t *dmamp;
246 1.2 thorpej {
247 1.2 thorpej struct apecs_config *acp = t->_cookie;
248 1.2 thorpej struct alpha_sgmap_cookie *a;
249 1.2 thorpej bus_dmamap_t map;
250 1.2 thorpej int error;
251 1.2 thorpej
252 1.2 thorpej error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
253 1.2 thorpej boundary, flags, dmamp);
254 1.2 thorpej if (error)
255 1.2 thorpej return (error);
256 1.2 thorpej
257 1.2 thorpej map = *dmamp;
258 1.2 thorpej
259 1.2 thorpej a = malloc(sizeof(struct alpha_sgmap_cookie), M_DEVBUF,
260 1.2 thorpej (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK);
261 1.2 thorpej if (a == NULL) {
262 1.2 thorpej _bus_dmamap_destroy(t, map);
263 1.2 thorpej return (ENOMEM);
264 1.2 thorpej }
265 1.2 thorpej bzero(a, sizeof(struct alpha_sgmap_cookie));
266 1.2 thorpej map->_dm_sgcookie = a;
267 1.2 thorpej
268 1.2 thorpej if (flags & BUS_DMA_ALLOCNOW) {
269 1.2 thorpej error = alpha_sgmap_alloc(map, round_page(size),
270 1.2 thorpej &acp->ac_sgmap, flags);
271 1.2 thorpej if (error)
272 1.2 thorpej apecs_bus_dmamap_destroy_sgmap(t, map);
273 1.2 thorpej }
274 1.2 thorpej
275 1.2 thorpej return (error);
276 1.2 thorpej }
277 1.2 thorpej
278 1.2 thorpej /*
279 1.2 thorpej * Destroy an APECS SGMAP-mapped DMA map.
280 1.2 thorpej */
281 1.2 thorpej void
282 1.2 thorpej apecs_bus_dmamap_destroy_sgmap(t, map)
283 1.2 thorpej bus_dma_tag_t t;
284 1.2 thorpej bus_dmamap_t map;
285 1.2 thorpej {
286 1.2 thorpej struct apecs_config *acp = t->_cookie;
287 1.2 thorpej struct alpha_sgmap_cookie *a = map->_dm_sgcookie;
288 1.2 thorpej
289 1.2 thorpej if (a->apdc_flags & APDC_HAS_SGMAP)
290 1.2 thorpej alpha_sgmap_free(&acp->ac_sgmap, a);
291 1.2 thorpej
292 1.2 thorpej free(a, M_DEVBUF);
293 1.2 thorpej _bus_dmamap_destroy(t, map);
294 1.2 thorpej }
295 1.2 thorpej
296 1.2 thorpej /*
297 1.2 thorpej * Load an APECS direct-mapped DMA map with a linear buffer.
298 1.2 thorpej */
299 1.2 thorpej int
300 1.2 thorpej apecs_bus_dmamap_load_direct(t, map, buf, buflen, p, flags)
301 1.2 thorpej bus_dma_tag_t t;
302 1.2 thorpej bus_dmamap_t map;
303 1.2 thorpej void *buf;
304 1.2 thorpej bus_size_t buflen;
305 1.2 thorpej struct proc *p;
306 1.2 thorpej int flags;
307 1.2 thorpej {
308 1.2 thorpej
309 1.2 thorpej return (_bus_dmamap_load_direct_common(t, map, buf, buflen, p,
310 1.2 thorpej flags, APECS_DIRECT_MAPPED_BASE));
311 1.2 thorpej }
312 1.2 thorpej
313 1.2 thorpej /*
314 1.2 thorpej * Load an APECS SGMAP-mapped DMA map with a linear buffer.
315 1.2 thorpej */
316 1.2 thorpej int
317 1.2 thorpej apecs_bus_dmamap_load_sgmap(t, map, buf, buflen, p, flags)
318 1.2 thorpej bus_dma_tag_t t;
319 1.2 thorpej bus_dmamap_t map;
320 1.2 thorpej void *buf;
321 1.2 thorpej bus_size_t buflen;
322 1.2 thorpej struct proc *p;
323 1.2 thorpej int flags;
324 1.2 thorpej {
325 1.2 thorpej struct apecs_config *acp = t->_cookie;
326 1.2 thorpej int error;
327 1.2 thorpej
328 1.2 thorpej error = pci_sgmap_pte64_load(t, map, buf, buflen, p, flags,
329 1.2 thorpej &acp->ac_sgmap);
330 1.2 thorpej if (error == 0)
331 1.2 thorpej APECS_TLB_INVALIDATE();
332 1.2 thorpej
333 1.2 thorpej return (error);
334 1.2 thorpej }
335 1.2 thorpej
336 1.2 thorpej /*
337 1.2 thorpej * Load an APECS direct-mapped DMA map with an mbuf chain.
338 1.2 thorpej */
339 1.2 thorpej int
340 1.2 thorpej apecs_bus_dmamap_load_mbuf_direct(t, map, m, flags)
341 1.2 thorpej bus_dma_tag_t t;
342 1.2 thorpej bus_dmamap_t map;
343 1.2 thorpej struct mbuf *m;
344 1.2 thorpej int flags;
345 1.2 thorpej {
346 1.2 thorpej
347 1.2 thorpej return (_bus_dmamap_load_mbuf_direct_common(t, map, m,
348 1.2 thorpej flags, APECS_DIRECT_MAPPED_BASE));
349 1.2 thorpej }
350 1.2 thorpej
351 1.2 thorpej /*
352 1.2 thorpej * Load an APECS SGMAP-mapped DMA map with an mbuf chain.
353 1.2 thorpej */
354 1.2 thorpej int
355 1.2 thorpej apecs_bus_dmamap_load_mbuf_sgmap(t, map, m, flags)
356 1.2 thorpej bus_dma_tag_t t;
357 1.2 thorpej bus_dmamap_t map;
358 1.2 thorpej struct mbuf *m;
359 1.2 thorpej int flags;
360 1.2 thorpej {
361 1.2 thorpej struct apecs_config *acp = t->_cookie;
362 1.2 thorpej int error;
363 1.2 thorpej
364 1.2 thorpej error = pci_sgmap_pte64_load_mbuf(t, map, m, flags, &acp->ac_sgmap);
365 1.2 thorpej if (error == 0)
366 1.2 thorpej APECS_TLB_INVALIDATE();
367 1.2 thorpej
368 1.2 thorpej return (error);
369 1.2 thorpej }
370 1.2 thorpej
371 1.2 thorpej /*
372 1.2 thorpej * Load an APECS direct-mapped DMA map with a uio.
373 1.2 thorpej */
374 1.2 thorpej int
375 1.2 thorpej apecs_bus_dmamap_load_uio_direct(t, map, uio, flags)
376 1.2 thorpej bus_dma_tag_t t;
377 1.2 thorpej bus_dmamap_t map;
378 1.2 thorpej struct uio *uio;
379 1.2 thorpej int flags;
380 1.2 thorpej {
381 1.2 thorpej
382 1.2 thorpej return (_bus_dmamap_load_uio_direct_common(t, map, uio,
383 1.2 thorpej flags, APECS_DIRECT_MAPPED_BASE));
384 1.2 thorpej }
385 1.2 thorpej
386 1.2 thorpej /*
387 1.2 thorpej * Load an APECS SGMAP-mapped DMA map with a uio.
388 1.2 thorpej */
389 1.2 thorpej int
390 1.2 thorpej apecs_bus_dmamap_load_uio_sgmap(t, map, uio, flags)
391 1.2 thorpej bus_dma_tag_t t;
392 1.2 thorpej bus_dmamap_t map;
393 1.2 thorpej struct uio *uio;
394 1.2 thorpej int flags;
395 1.2 thorpej {
396 1.2 thorpej struct apecs_config *acp = t->_cookie;
397 1.2 thorpej int error;
398 1.2 thorpej
399 1.2 thorpej error = pci_sgmap_pte64_load_uio(t, map, uio, flags, &acp->ac_sgmap);
400 1.2 thorpej if (error == 0)
401 1.2 thorpej APECS_TLB_INVALIDATE();
402 1.2 thorpej
403 1.2 thorpej return (error);
404 1.2 thorpej }
405 1.2 thorpej
406 1.2 thorpej /*
407 1.2 thorpej * Load an APECS direct-mapped DMA map with raw memory.
408 1.2 thorpej */
409 1.2 thorpej int
410 1.2 thorpej apecs_bus_dmamap_load_raw_direct(t, map, segs, nsegs, size, flags)
411 1.2 thorpej bus_dma_tag_t t;
412 1.2 thorpej bus_dmamap_t map;
413 1.2 thorpej bus_dma_segment_t *segs;
414 1.2 thorpej int nsegs;
415 1.2 thorpej bus_size_t size;
416 1.2 thorpej int flags;
417 1.2 thorpej {
418 1.2 thorpej
419 1.2 thorpej return (_bus_dmamap_load_raw_direct_common(t, map, segs, nsegs,
420 1.2 thorpej size, flags, APECS_DIRECT_MAPPED_BASE));
421 1.2 thorpej }
422 1.2 thorpej
423 1.2 thorpej /*
424 1.2 thorpej * Load an APECS SGMAP-mapped DMA map with raw memory.
425 1.2 thorpej */
426 1.2 thorpej int
427 1.2 thorpej apecs_bus_dmamap_load_raw_sgmap(t, map, segs, nsegs, size, flags)
428 1.2 thorpej bus_dma_tag_t t;
429 1.2 thorpej bus_dmamap_t map;
430 1.2 thorpej bus_dma_segment_t *segs;
431 1.2 thorpej int nsegs;
432 1.2 thorpej bus_size_t size;
433 1.2 thorpej int flags;
434 1.2 thorpej {
435 1.2 thorpej struct apecs_config *acp = t->_cookie;
436 1.2 thorpej int error;
437 1.2 thorpej
438 1.2 thorpej error = pci_sgmap_pte64_load_raw(t, map, segs, nsegs, size, flags,
439 1.2 thorpej &acp->ac_sgmap);
440 1.2 thorpej if (error == 0)
441 1.2 thorpej APECS_TLB_INVALIDATE();
442 1.2 thorpej
443 1.2 thorpej return (error);
444 1.2 thorpej }
445 1.2 thorpej
446 1.2 thorpej /*
447 1.2 thorpej * Unload an APECS DMA map.
448 1.2 thorpej */
449 1.2 thorpej void
450 1.2 thorpej apecs_bus_dmamap_unload_sgmap(t, map)
451 1.2 thorpej bus_dma_tag_t t;
452 1.2 thorpej bus_dmamap_t map;
453 1.2 thorpej {
454 1.2 thorpej struct apecs_config *acp = t->_cookie;
455 1.2 thorpej
456 1.2 thorpej /*
457 1.2 thorpej * Invalidate any SGMAP page table entries used by this
458 1.2 thorpej * mapping.
459 1.2 thorpej */
460 1.2 thorpej pci_sgmap_pte64_unload(t, map, &acp->ac_sgmap);
461 1.2 thorpej APECS_TLB_INVALIDATE();
462 1.2 thorpej
463 1.2 thorpej /*
464 1.2 thorpej * Do the generic bits of the unload.
465 1.2 thorpej */
466 1.2 thorpej _bus_dmamap_unload(t, map);
467 1.2 thorpej }
468