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