cia_dma.c revision 1.1.2.2 1 1.1.2.1 thorpej /* $NetBSD: cia_dma.c,v 1.1.2.2 1997/06/03 07:07:37 thorpej Exp $ */
2 1.1.2.1 thorpej
3 1.1.2.1 thorpej /*-
4 1.1.2.1 thorpej * Copyright (c) 1997 The NetBSD Foundation, Inc.
5 1.1.2.1 thorpej * All rights reserved.
6 1.1.2.1 thorpej *
7 1.1.2.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1.2.1 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1.2.1 thorpej * NASA Ames Research Center.
10 1.1.2.1 thorpej *
11 1.1.2.1 thorpej * Redistribution and use in source and binary forms, with or without
12 1.1.2.1 thorpej * modification, are permitted provided that the following conditions
13 1.1.2.1 thorpej * are met:
14 1.1.2.1 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.1.2.1 thorpej * notice, this list of conditions and the following disclaimer.
16 1.1.2.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.1.2.1 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.1.2.1 thorpej * documentation and/or other materials provided with the distribution.
19 1.1.2.1 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.1.2.1 thorpej * must display the following acknowledgement:
21 1.1.2.1 thorpej * This product includes software developed by the NetBSD
22 1.1.2.1 thorpej * Foundation, Inc. and its contributors.
23 1.1.2.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1.2.1 thorpej * contributors may be used to endorse or promote products derived
25 1.1.2.1 thorpej * from this software without specific prior written permission.
26 1.1.2.1 thorpej *
27 1.1.2.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1.2.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1.2.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1.2.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1.2.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1.2.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1.2.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1.2.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1.2.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1.2.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1.2.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.1.2.1 thorpej */
39 1.1.2.1 thorpej
40 1.1.2.1 thorpej #include <machine/options.h> /* Config options headers */
41 1.1.2.1 thorpej #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
42 1.1.2.1 thorpej
43 1.1.2.1 thorpej __KERNEL_RCSID(0, "$NetBSD: cia_dma.c,v 1.1.2.2 1997/06/03 07:07:37 thorpej Exp $");
44 1.1.2.1 thorpej
45 1.1.2.1 thorpej #include <sys/param.h>
46 1.1.2.1 thorpej #include <sys/systm.h>
47 1.1.2.1 thorpej #include <sys/kernel.h>
48 1.1.2.1 thorpej #include <sys/device.h>
49 1.1.2.1 thorpej #include <sys/malloc.h>
50 1.1.2.1 thorpej #include <vm/vm.h>
51 1.1.2.1 thorpej
52 1.1.2.1 thorpej #define _ALPHA_BUS_DMA_PRIVATE
53 1.1.2.1 thorpej #include <machine/bus.h>
54 1.1.2.1 thorpej
55 1.1.2.1 thorpej #include <dev/pci/pcireg.h>
56 1.1.2.1 thorpej #include <dev/pci/pcivar.h>
57 1.1.2.1 thorpej #include <alpha/pci/ciareg.h>
58 1.1.2.1 thorpej #include <alpha/pci/ciavar.h>
59 1.1.2.1 thorpej
60 1.1.2.1 thorpej bus_dma_tag_t cia_dma_get_tag __P((bus_dma_tag_t, alpha_bus_t));
61 1.1.2.1 thorpej
62 1.1.2.1 thorpej int cia_bus_dmamap_create_sgmap __P((bus_dma_tag_t, bus_size_t, int,
63 1.1.2.1 thorpej bus_size_t, bus_size_t, int, bus_dmamap_t *));
64 1.1.2.1 thorpej
65 1.1.2.2 thorpej void cia_bus_dmamap_destroy_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
66 1.1.2.1 thorpej
67 1.1.2.1 thorpej int cia_bus_dmamap_load_direct __P((bus_dma_tag_t, bus_dmamap_t, void *,
68 1.1.2.1 thorpej bus_size_t, struct proc *, int));
69 1.1.2.1 thorpej int cia_bus_dmamap_load_sgmap __P((bus_dma_tag_t, bus_dmamap_t, void *,
70 1.1.2.1 thorpej bus_size_t, struct proc *, int));
71 1.1.2.1 thorpej
72 1.1.2.1 thorpej int cia_bus_dmamap_load_mbuf_direct __P((bus_dma_tag_t, bus_dmamap_t,
73 1.1.2.1 thorpej struct mbuf *, int));
74 1.1.2.1 thorpej int cia_bus_dmamap_load_mbuf_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
75 1.1.2.1 thorpej struct mbuf *, int));
76 1.1.2.1 thorpej
77 1.1.2.1 thorpej int cia_bus_dmamap_load_uio_direct __P((bus_dma_tag_t, bus_dmamap_t,
78 1.1.2.1 thorpej struct uio *, int));
79 1.1.2.1 thorpej int cia_bus_dmamap_load_uio_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
80 1.1.2.1 thorpej struct uio *, int));
81 1.1.2.1 thorpej
82 1.1.2.1 thorpej int cia_bus_dmamap_load_raw_direct __P((bus_dma_tag_t, bus_dmamap_t,
83 1.1.2.1 thorpej bus_dma_segment_t *, int, bus_size_t, int));
84 1.1.2.1 thorpej int cia_bus_dmamap_load_raw_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
85 1.1.2.1 thorpej bus_dma_segment_t *, int, bus_size_t, int));
86 1.1.2.1 thorpej
87 1.1.2.2 thorpej void cia_bus_dmamap_unload_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
88 1.1.2.1 thorpej
89 1.1.2.1 thorpej /*
90 1.1.2.1 thorpej * The direct-mapped DMA window begins at this PCI address.
91 1.1.2.1 thorpej */
92 1.1.2.1 thorpej #define CIA_DIRECT_MAPPED_BASE 0x40000000
93 1.1.2.1 thorpej
94 1.1.2.1 thorpej /*
95 1.1.2.1 thorpej * The 8M SGMAP-mapped DMA window begins at this PCI address.
96 1.1.2.1 thorpej */
97 1.1.2.1 thorpej #define CIA_SGMAP_MAPPED_BASE (8*1024*1024)
98 1.1.2.1 thorpej
99 1.1.2.1 thorpej /*
100 1.1.2.1 thorpej * Macro to flush CIA scatter/gather TLB.
101 1.1.2.1 thorpej */
102 1.1.2.1 thorpej #define CIA_TLB_INVALIDATE() \
103 1.1.2.1 thorpej do { \
104 1.1.2.1 thorpej REGVAL(CIA_PCI_TBIA) = CIA_PCI_TBIA_ALL; \
105 1.1.2.1 thorpej alpha_mb(); \
106 1.1.2.1 thorpej } while (0)
107 1.1.2.1 thorpej
108 1.1.2.1 thorpej void
109 1.1.2.1 thorpej cia_dma_init(ccp)
110 1.1.2.1 thorpej struct cia_config *ccp;
111 1.1.2.1 thorpej {
112 1.1.2.1 thorpej bus_addr_t tbase;
113 1.1.2.1 thorpej u_int32_t memcs_en;
114 1.1.2.1 thorpej bus_dma_tag_t t;
115 1.1.2.1 thorpej
116 1.1.2.1 thorpej /*
117 1.1.2.1 thorpej * Initialize the DMA tag used for direct-mapped DMA.
118 1.1.2.1 thorpej */
119 1.1.2.1 thorpej t = &ccp->cc_dmat_direct;
120 1.1.2.1 thorpej t->_cookie = ccp;
121 1.1.2.1 thorpej t->_get_tag = cia_dma_get_tag;
122 1.1.2.2 thorpej t->_dmamap_create = _bus_dmamap_create;
123 1.1.2.2 thorpej t->_dmamap_destroy = _bus_dmamap_destroy;
124 1.1.2.1 thorpej t->_dmamap_load = cia_bus_dmamap_load_direct;
125 1.1.2.1 thorpej t->_dmamap_load_mbuf = cia_bus_dmamap_load_mbuf_direct;
126 1.1.2.1 thorpej t->_dmamap_load_uio = cia_bus_dmamap_load_uio_direct;
127 1.1.2.1 thorpej t->_dmamap_load_raw = cia_bus_dmamap_load_raw_direct;
128 1.1.2.2 thorpej t->_dmamap_unload = _bus_dmamap_unload;
129 1.1.2.1 thorpej t->_dmamap_sync = NULL; /* Nothing to do. */
130 1.1.2.1 thorpej
131 1.1.2.1 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
132 1.1.2.1 thorpej t->_dmamem_free = _bus_dmamem_free;
133 1.1.2.1 thorpej t->_dmamem_map = _bus_dmamem_map;
134 1.1.2.1 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
135 1.1.2.1 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
136 1.1.2.1 thorpej
137 1.1.2.1 thorpej /*
138 1.1.2.1 thorpej * Initialize the DMA tag used for sgmap-mapped DMA.
139 1.1.2.1 thorpej */
140 1.1.2.1 thorpej t = &ccp->cc_dmat_sgmap;
141 1.1.2.1 thorpej t->_cookie = ccp;
142 1.1.2.1 thorpej t->_get_tag = cia_dma_get_tag;
143 1.1.2.1 thorpej t->_dmamap_create = cia_bus_dmamap_create_sgmap;
144 1.1.2.2 thorpej t->_dmamap_destroy = cia_bus_dmamap_destroy_sgmap;
145 1.1.2.1 thorpej t->_dmamap_load = cia_bus_dmamap_load_sgmap;
146 1.1.2.1 thorpej t->_dmamap_load_mbuf = cia_bus_dmamap_load_mbuf_sgmap;
147 1.1.2.1 thorpej t->_dmamap_load_uio = cia_bus_dmamap_load_uio_sgmap;
148 1.1.2.1 thorpej t->_dmamap_load_raw = cia_bus_dmamap_load_raw_sgmap;
149 1.1.2.2 thorpej t->_dmamap_unload = cia_bus_dmamap_unload_sgmap;
150 1.1.2.1 thorpej t->_dmamap_sync = NULL; /* Nothing to do. */
151 1.1.2.1 thorpej
152 1.1.2.1 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
153 1.1.2.1 thorpej t->_dmamem_free = _bus_dmamem_free;
154 1.1.2.1 thorpej t->_dmamem_map = _bus_dmamem_map;
155 1.1.2.1 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
156 1.1.2.1 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
157 1.1.2.1 thorpej
158 1.1.2.1 thorpej /*
159 1.1.2.1 thorpej * The firmware has set up window 1 as a 1G direct-mapped DMA
160 1.1.2.1 thorpej * window beginning at 1G. We leave it alone. Leave window
161 1.1.2.1 thorpej * 0 alone until we reconfigure it for SGMAP-mapped DMA.
162 1.1.2.1 thorpej * Windows 2 and 3 are already disabled.
163 1.1.2.1 thorpej */
164 1.1.2.1 thorpej
165 1.1.2.1 thorpej /*
166 1.1.2.1 thorpej * Initialize the SGMAP if safe to do so.
167 1.1.2.1 thorpej */
168 1.1.2.1 thorpej if (ccp->cc_mallocsafe) {
169 1.1.2.2 thorpej alpha_sgmap_init(t, &ccp->cc_sgmap, "cia_sgmap",
170 1.1.2.2 thorpej CIA_SGMAP_MAPPED_BASE, 0, (8*1024*1024),
171 1.1.2.2 thorpej sizeof(u_int64_t), NULL);
172 1.1.2.1 thorpej
173 1.1.2.1 thorpej /* Remember the MEMCS value. */
174 1.1.2.1 thorpej alpha_mb();
175 1.1.2.1 thorpej memcs_en = REGVAL(CIA_PCI_W0BASE) & CIA_PCI_WnBASE_MEMCS_EN;
176 1.1.2.1 thorpej
177 1.1.2.1 thorpej /* Now disable window 0. */
178 1.1.2.1 thorpej REGVAL(CIA_PCI_W0BASE) = 0;
179 1.1.2.1 thorpej alpha_mb();
180 1.1.2.1 thorpej
181 1.1.2.1 thorpej /*
182 1.1.2.1 thorpej * Set up window 0 as an 8MB SGMAP-mapped window
183 1.1.2.1 thorpej * starting at 8MB.
184 1.1.2.1 thorpej */
185 1.1.2.1 thorpej tbase = ccp->cc_sgmap.aps_ptpa >> CIA_PCI_TnBASE_SHIFT;
186 1.1.2.1 thorpej if ((tbase & CIA_PCI_TnBASE_MASK) != tbase)
187 1.1.2.1 thorpej panic("cia_dma_init: bad page table address");
188 1.1.2.1 thorpej REGVAL(CIA_PCI_T0BASE) = tbase;
189 1.1.2.1 thorpej REGVAL(CIA_PCI_W0MASK) = CIA_PCI_WnMASK_8M;
190 1.1.2.1 thorpej alpha_mb();
191 1.1.2.1 thorpej
192 1.1.2.1 thorpej REGVAL(CIA_PCI_W0BASE) = CIA_SGMAP_MAPPED_BASE |
193 1.1.2.1 thorpej CIA_PCI_WnBASE_SG_EN | CIA_PCI_WnBASE_W_EN | memcs_en;
194 1.1.2.1 thorpej alpha_mb();
195 1.1.2.1 thorpej
196 1.1.2.1 thorpej CIA_TLB_INVALIDATE();
197 1.1.2.1 thorpej }
198 1.1.2.1 thorpej
199 1.1.2.1 thorpej /* XXX XXX BEGIN XXX XXX */
200 1.1.2.1 thorpej { /* XXX */
201 1.1.2.1 thorpej extern vm_offset_t alpha_XXX_dmamap_or; /* XXX */
202 1.1.2.1 thorpej alpha_XXX_dmamap_or = CIA_DIRECT_MAPPED_BASE; /* XXX */
203 1.1.2.1 thorpej } /* XXX */
204 1.1.2.1 thorpej /* XXX XXX END XXX XXX */
205 1.1.2.1 thorpej }
206 1.1.2.1 thorpej
207 1.1.2.1 thorpej /*
208 1.1.2.1 thorpej * Return the bus dma tag to be used for the specified bus type.
209 1.1.2.1 thorpej * INTERNAL USE ONLY!
210 1.1.2.1 thorpej */
211 1.1.2.1 thorpej bus_dma_tag_t
212 1.1.2.1 thorpej cia_dma_get_tag(t, bustype)
213 1.1.2.1 thorpej bus_dma_tag_t t;
214 1.1.2.1 thorpej alpha_bus_t bustype;
215 1.1.2.1 thorpej {
216 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
217 1.1.2.1 thorpej
218 1.1.2.1 thorpej switch (bustype) {
219 1.1.2.1 thorpej case ALPHA_BUS_PCI:
220 1.1.2.1 thorpej case ALPHA_BUS_EISA:
221 1.1.2.1 thorpej /*
222 1.1.2.1 thorpej * Systems with a CIA can only support 1G
223 1.1.2.1 thorpej * of memory, so we use the direct-mapped window
224 1.1.2.1 thorpej * on busses that have 32-bit DMA.
225 1.1.2.1 thorpej */
226 1.1.2.1 thorpej return (&ccp->cc_dmat_direct);
227 1.1.2.1 thorpej
228 1.1.2.1 thorpej case ALPHA_BUS_ISA:
229 1.1.2.1 thorpej /*
230 1.1.2.1 thorpej * ISA doesn't have enough address bits to use
231 1.1.2.1 thorpej * the direct-mapped DMA window, so we must use
232 1.1.2.1 thorpej * SGMAPs.
233 1.1.2.1 thorpej */
234 1.1.2.1 thorpej return (&ccp->cc_dmat_sgmap);
235 1.1.2.1 thorpej
236 1.1.2.1 thorpej default:
237 1.1.2.1 thorpej panic("cia_dma_get_tag: shouldn't be here, really...");
238 1.1.2.1 thorpej }
239 1.1.2.1 thorpej }
240 1.1.2.1 thorpej
241 1.1.2.1 thorpej /*
242 1.1.2.2 thorpej * Create a CIA SGMAP-mapped DMA map.
243 1.1.2.1 thorpej */
244 1.1.2.1 thorpej int
245 1.1.2.1 thorpej cia_bus_dmamap_create_sgmap(t, size, nsegments, maxsegsz, boundary,
246 1.1.2.1 thorpej flags, dmamp)
247 1.1.2.1 thorpej bus_dma_tag_t t;
248 1.1.2.1 thorpej bus_size_t size;
249 1.1.2.1 thorpej int nsegments;
250 1.1.2.1 thorpej bus_size_t maxsegsz;
251 1.1.2.1 thorpej bus_size_t boundary;
252 1.1.2.1 thorpej int flags;
253 1.1.2.1 thorpej bus_dmamap_t *dmamp;
254 1.1.2.1 thorpej {
255 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
256 1.1.2.2 thorpej struct alpha_sgmap_cookie *a;
257 1.1.2.1 thorpej bus_dmamap_t map;
258 1.1.2.1 thorpej int error;
259 1.1.2.1 thorpej
260 1.1.2.2 thorpej error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
261 1.1.2.1 thorpej boundary, flags, dmamp);
262 1.1.2.1 thorpej if (error)
263 1.1.2.1 thorpej return (error);
264 1.1.2.1 thorpej
265 1.1.2.1 thorpej map = *dmamp;
266 1.1.2.1 thorpej
267 1.1.2.2 thorpej a = malloc(sizeof(struct alpha_sgmap_cookie), M_DEVBUF,
268 1.1.2.2 thorpej (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK);
269 1.1.2.2 thorpej if (a == NULL) {
270 1.1.2.2 thorpej _bus_dmamap_destroy(t, map);
271 1.1.2.2 thorpej return (ENOMEM);
272 1.1.2.2 thorpej }
273 1.1.2.2 thorpej bzero(a, sizeof(struct alpha_sgmap_cookie));
274 1.1.2.2 thorpej map->_dm_sgcookie = a;
275 1.1.2.2 thorpej
276 1.1.2.2 thorpej if (flags & BUS_DMA_ALLOCNOW) {
277 1.1.2.2 thorpej error = alpha_sgmap_alloc(map, round_page(size),
278 1.1.2.2 thorpej &ccp->cc_sgmap, flags);
279 1.1.2.2 thorpej if (error)
280 1.1.2.2 thorpej cia_bus_dmamap_destroy_sgmap(t, map);
281 1.1.2.2 thorpej }
282 1.1.2.1 thorpej
283 1.1.2.1 thorpej return (error);
284 1.1.2.1 thorpej }
285 1.1.2.1 thorpej
286 1.1.2.1 thorpej /*
287 1.1.2.2 thorpej * Destroy a CIA SGMAP-mapped DMA map.
288 1.1.2.1 thorpej */
289 1.1.2.1 thorpej void
290 1.1.2.2 thorpej cia_bus_dmamap_destroy_sgmap(t, map)
291 1.1.2.1 thorpej bus_dma_tag_t t;
292 1.1.2.1 thorpej bus_dmamap_t map;
293 1.1.2.1 thorpej {
294 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
295 1.1.2.2 thorpej struct alpha_sgmap_cookie *a = map->_dm_sgcookie;
296 1.1.2.1 thorpej
297 1.1.2.1 thorpej if (a->apdc_flags & APDC_HAS_SGMAP)
298 1.1.2.2 thorpej alpha_sgmap_free(&ccp->cc_sgmap, a);
299 1.1.2.1 thorpej
300 1.1.2.2 thorpej free(a, M_DEVBUF);
301 1.1.2.1 thorpej _bus_dmamap_destroy(t, map);
302 1.1.2.1 thorpej }
303 1.1.2.1 thorpej
304 1.1.2.1 thorpej /*
305 1.1.2.1 thorpej * Load a CIA direct-mapped DMA map with a linear buffer.
306 1.1.2.1 thorpej */
307 1.1.2.1 thorpej int
308 1.1.2.1 thorpej cia_bus_dmamap_load_direct(t, map, buf, buflen, p, flags)
309 1.1.2.1 thorpej bus_dma_tag_t t;
310 1.1.2.1 thorpej bus_dmamap_t map;
311 1.1.2.1 thorpej void *buf;
312 1.1.2.1 thorpej bus_size_t buflen;
313 1.1.2.1 thorpej struct proc *p;
314 1.1.2.1 thorpej int flags;
315 1.1.2.1 thorpej {
316 1.1.2.1 thorpej
317 1.1.2.1 thorpej return (_bus_dmamap_load_direct_common(t, map, buf, buflen, p,
318 1.1.2.1 thorpej flags, CIA_DIRECT_MAPPED_BASE));
319 1.1.2.1 thorpej }
320 1.1.2.1 thorpej
321 1.1.2.1 thorpej /*
322 1.1.2.1 thorpej * Load a CIA SGMAP-mapped DMA map with a linear buffer.
323 1.1.2.1 thorpej */
324 1.1.2.1 thorpej int
325 1.1.2.1 thorpej cia_bus_dmamap_load_sgmap(t, map, buf, buflen, p, flags)
326 1.1.2.1 thorpej bus_dma_tag_t t;
327 1.1.2.1 thorpej bus_dmamap_t map;
328 1.1.2.1 thorpej void *buf;
329 1.1.2.1 thorpej bus_size_t buflen;
330 1.1.2.1 thorpej struct proc *p;
331 1.1.2.1 thorpej int flags;
332 1.1.2.1 thorpej {
333 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
334 1.1.2.1 thorpej int error;
335 1.1.2.1 thorpej
336 1.1.2.2 thorpej error = pci_pte64_sgmap_load(t, map, buf, buflen, p, flags,
337 1.1.2.2 thorpej &ccp->cc_sgmap);
338 1.1.2.1 thorpej if (error == 0)
339 1.1.2.1 thorpej CIA_TLB_INVALIDATE();
340 1.1.2.1 thorpej
341 1.1.2.1 thorpej return (error);
342 1.1.2.1 thorpej }
343 1.1.2.1 thorpej
344 1.1.2.1 thorpej /*
345 1.1.2.1 thorpej * Load a CIA direct-mapped DMA map with an mbuf chain.
346 1.1.2.1 thorpej */
347 1.1.2.1 thorpej int
348 1.1.2.1 thorpej cia_bus_dmamap_load_mbuf_direct(t, map, m, flags)
349 1.1.2.1 thorpej bus_dma_tag_t t;
350 1.1.2.1 thorpej bus_dmamap_t map;
351 1.1.2.1 thorpej struct mbuf *m;
352 1.1.2.1 thorpej int flags;
353 1.1.2.1 thorpej {
354 1.1.2.1 thorpej
355 1.1.2.1 thorpej return (_bus_dmamap_load_mbuf_direct_common(t, map, m,
356 1.1.2.1 thorpej flags, CIA_DIRECT_MAPPED_BASE));
357 1.1.2.1 thorpej }
358 1.1.2.1 thorpej
359 1.1.2.1 thorpej /*
360 1.1.2.1 thorpej * Load a CIA SGMAP-mapped DMA map with an mbuf chain.
361 1.1.2.1 thorpej */
362 1.1.2.1 thorpej int
363 1.1.2.1 thorpej cia_bus_dmamap_load_mbuf_sgmap(t, map, m, flags)
364 1.1.2.1 thorpej bus_dma_tag_t t;
365 1.1.2.1 thorpej bus_dmamap_t map;
366 1.1.2.1 thorpej struct mbuf *m;
367 1.1.2.1 thorpej int flags;
368 1.1.2.1 thorpej {
369 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
370 1.1.2.1 thorpej int error;
371 1.1.2.1 thorpej
372 1.1.2.2 thorpej error = pci_pte64_sgmap_load_mbuf(t, map, m, flags, &ccp->cc_sgmap);
373 1.1.2.1 thorpej if (error == 0)
374 1.1.2.1 thorpej CIA_TLB_INVALIDATE();
375 1.1.2.1 thorpej
376 1.1.2.1 thorpej return (error);
377 1.1.2.1 thorpej }
378 1.1.2.1 thorpej
379 1.1.2.1 thorpej /*
380 1.1.2.1 thorpej * Load a CIA direct-mapped DMA map with a uio.
381 1.1.2.1 thorpej */
382 1.1.2.1 thorpej int
383 1.1.2.1 thorpej cia_bus_dmamap_load_uio_direct(t, map, uio, flags)
384 1.1.2.1 thorpej bus_dma_tag_t t;
385 1.1.2.1 thorpej bus_dmamap_t map;
386 1.1.2.1 thorpej struct uio *uio;
387 1.1.2.1 thorpej int flags;
388 1.1.2.1 thorpej {
389 1.1.2.1 thorpej
390 1.1.2.1 thorpej return (_bus_dmamap_load_uio_direct_common(t, map, uio,
391 1.1.2.1 thorpej flags, CIA_DIRECT_MAPPED_BASE));
392 1.1.2.1 thorpej }
393 1.1.2.1 thorpej
394 1.1.2.1 thorpej /*
395 1.1.2.1 thorpej * Load a CIA SGMAP-mapped DMA map with a uio.
396 1.1.2.1 thorpej */
397 1.1.2.1 thorpej int
398 1.1.2.1 thorpej cia_bus_dmamap_load_uio_sgmap(t, map, uio, flags)
399 1.1.2.1 thorpej bus_dma_tag_t t;
400 1.1.2.1 thorpej bus_dmamap_t map;
401 1.1.2.1 thorpej struct uio *uio;
402 1.1.2.1 thorpej int flags;
403 1.1.2.1 thorpej {
404 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
405 1.1.2.1 thorpej int error;
406 1.1.2.1 thorpej
407 1.1.2.2 thorpej error = pci_pte64_sgmap_load_uio(t, map, uio, flags, &ccp->cc_sgmap);
408 1.1.2.1 thorpej if (error == 0)
409 1.1.2.1 thorpej CIA_TLB_INVALIDATE();
410 1.1.2.1 thorpej
411 1.1.2.1 thorpej return (error);
412 1.1.2.1 thorpej }
413 1.1.2.1 thorpej
414 1.1.2.1 thorpej /*
415 1.1.2.1 thorpej * Load a CIA direct-mapped DMA map with raw memory.
416 1.1.2.1 thorpej */
417 1.1.2.1 thorpej int
418 1.1.2.1 thorpej cia_bus_dmamap_load_raw_direct(t, map, segs, nsegs, size, flags)
419 1.1.2.1 thorpej bus_dma_tag_t t;
420 1.1.2.1 thorpej bus_dmamap_t map;
421 1.1.2.1 thorpej bus_dma_segment_t *segs;
422 1.1.2.1 thorpej int nsegs;
423 1.1.2.1 thorpej bus_size_t size;
424 1.1.2.1 thorpej int flags;
425 1.1.2.1 thorpej {
426 1.1.2.1 thorpej
427 1.1.2.1 thorpej return (_bus_dmamap_load_raw_direct_common(t, map, segs, nsegs,
428 1.1.2.1 thorpej size, flags, CIA_DIRECT_MAPPED_BASE));
429 1.1.2.1 thorpej }
430 1.1.2.1 thorpej
431 1.1.2.1 thorpej /*
432 1.1.2.1 thorpej * Load a CIA SGMAP-mapped DMA map with raw memory.
433 1.1.2.1 thorpej */
434 1.1.2.1 thorpej int
435 1.1.2.1 thorpej cia_bus_dmamap_load_raw_sgmap(t, map, segs, nsegs, size, flags)
436 1.1.2.1 thorpej bus_dma_tag_t t;
437 1.1.2.1 thorpej bus_dmamap_t map;
438 1.1.2.1 thorpej bus_dma_segment_t *segs;
439 1.1.2.1 thorpej int nsegs;
440 1.1.2.1 thorpej bus_size_t size;
441 1.1.2.1 thorpej int flags;
442 1.1.2.1 thorpej {
443 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
444 1.1.2.1 thorpej int error;
445 1.1.2.1 thorpej
446 1.1.2.2 thorpej error = pci_pte64_sgmap_load_raw(t, map, segs, nsegs, size, flags,
447 1.1.2.2 thorpej &ccp->cc_sgmap);
448 1.1.2.1 thorpej if (error == 0)
449 1.1.2.1 thorpej CIA_TLB_INVALIDATE();
450 1.1.2.1 thorpej
451 1.1.2.1 thorpej return (error);
452 1.1.2.1 thorpej }
453 1.1.2.1 thorpej
454 1.1.2.1 thorpej /*
455 1.1.2.1 thorpej * Unload a CIA DMA map.
456 1.1.2.1 thorpej */
457 1.1.2.1 thorpej void
458 1.1.2.2 thorpej cia_bus_dmamap_unload_sgmap(t, map)
459 1.1.2.1 thorpej bus_dma_tag_t t;
460 1.1.2.1 thorpej bus_dmamap_t map;
461 1.1.2.1 thorpej {
462 1.1.2.1 thorpej struct cia_config *ccp = t->_cookie;
463 1.1.2.1 thorpej
464 1.1.2.1 thorpej /*
465 1.1.2.1 thorpej * Invalidate any SGMAP page table entries used by this
466 1.1.2.1 thorpej * mapping.
467 1.1.2.1 thorpej */
468 1.1.2.2 thorpej pci_pte64_sgmap_unload(t, map, &ccp->cc_sgmap);
469 1.1.2.2 thorpej CIA_TLB_INVALIDATE();
470 1.1.2.1 thorpej
471 1.1.2.1 thorpej /*
472 1.1.2.1 thorpej * Do the generic bits of the unload.
473 1.1.2.1 thorpej */
474 1.1.2.1 thorpej _bus_dmamap_unload(t, map);
475 1.1.2.1 thorpej }
476