dwlpx_dma.c revision 1.1.2.3 1 1.1.2.3 thorpej /* $NetBSD: dwlpx_dma.c,v 1.1.2.3 1997/06/05 23:57:05 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.2 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPEDWLPxL, 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.3 thorpej __KERNEL_RCSID(0, "$NetBSD: dwlpx_dma.c,v 1.1.2.3 1997/06/05 23:57:05 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/tlsb/tlsbreg.h>
58 1.1.2.1 thorpej #include <alpha/tlsb/kftxxvar.h>
59 1.1.2.1 thorpej #include <alpha/tlsb/kftxxreg.h>
60 1.1.2.1 thorpej #include <alpha/pci/dwlpxreg.h>
61 1.1.2.1 thorpej #include <alpha/pci/dwlpxvar.h>
62 1.1.2.1 thorpej #include <alpha/pci/pci_kn8ae.h>
63 1.1.2.1 thorpej
64 1.1.2.1 thorpej bus_dma_tag_t dwlpx_dma_get_tag __P((bus_dma_tag_t, alpha_bus_t));
65 1.1.2.1 thorpej
66 1.1.2.1 thorpej int dwlpx_bus_dmamap_create_sgmap __P((bus_dma_tag_t, bus_size_t, int,
67 1.1.2.1 thorpej bus_size_t, bus_size_t, int, bus_dmamap_t *));
68 1.1.2.1 thorpej
69 1.1.2.2 thorpej void dwlpx_bus_dmamap_destroy_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
70 1.1.2.1 thorpej
71 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_direct __P((bus_dma_tag_t, bus_dmamap_t, void *,
72 1.1.2.1 thorpej bus_size_t, struct proc *, int));
73 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_sgmap __P((bus_dma_tag_t, bus_dmamap_t, void *,
74 1.1.2.1 thorpej bus_size_t, struct proc *, int));
75 1.1.2.1 thorpej
76 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_mbuf_direct __P((bus_dma_tag_t, bus_dmamap_t,
77 1.1.2.1 thorpej struct mbuf *, int));
78 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_mbuf_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
79 1.1.2.1 thorpej struct mbuf *, int));
80 1.1.2.1 thorpej
81 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_uio_direct __P((bus_dma_tag_t, bus_dmamap_t,
82 1.1.2.1 thorpej struct uio *, int));
83 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_uio_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
84 1.1.2.1 thorpej struct uio *, int));
85 1.1.2.1 thorpej
86 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_raw_direct __P((bus_dma_tag_t, bus_dmamap_t,
87 1.1.2.1 thorpej bus_dma_segment_t *, int, bus_size_t, int));
88 1.1.2.1 thorpej int dwlpx_bus_dmamap_load_raw_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
89 1.1.2.1 thorpej bus_dma_segment_t *, int, bus_size_t, int));
90 1.1.2.1 thorpej
91 1.1.2.2 thorpej void dwlpx_bus_dmamap_unload_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
92 1.1.2.1 thorpej
93 1.1.2.1 thorpej /*
94 1.1.2.1 thorpej * The direct-mapped DMA window begins at this PCI address.
95 1.1.2.1 thorpej */
96 1.1.2.2 thorpej #define DWLPx_DIRECT_MAPPED_BASE 0x40000000
97 1.1.2.1 thorpej
98 1.1.2.1 thorpej void
99 1.1.2.1 thorpej dwlpx_dma_init(ccp)
100 1.1.2.1 thorpej struct dwlpx_config *ccp;
101 1.1.2.1 thorpej {
102 1.1.2.1 thorpej char *exname;
103 1.1.2.1 thorpej bus_dma_tag_t t;
104 1.1.2.2 thorpej u_int32_t *page_table;
105 1.1.2.1 thorpej int i;
106 1.1.2.1 thorpej
107 1.1.2.1 thorpej /*
108 1.1.2.1 thorpej * Initialize the DMA tag used for direct-mapped DMA.
109 1.1.2.1 thorpej */
110 1.1.2.1 thorpej t = &ccp->cc_dmat_direct;
111 1.1.2.1 thorpej t->_cookie = ccp;
112 1.1.2.1 thorpej t->_get_tag = dwlpx_dma_get_tag;
113 1.1.2.2 thorpej t->_dmamap_create = _bus_dmamap_create;
114 1.1.2.2 thorpej t->_dmamap_destroy = _bus_dmamap_destroy;
115 1.1.2.1 thorpej t->_dmamap_load = dwlpx_bus_dmamap_load_direct;
116 1.1.2.1 thorpej t->_dmamap_load_mbuf = dwlpx_bus_dmamap_load_mbuf_direct;
117 1.1.2.1 thorpej t->_dmamap_load_uio = dwlpx_bus_dmamap_load_uio_direct;
118 1.1.2.1 thorpej t->_dmamap_load_raw = dwlpx_bus_dmamap_load_raw_direct;
119 1.1.2.2 thorpej t->_dmamap_unload = _bus_dmamap_unload;
120 1.1.2.1 thorpej t->_dmamap_sync = NULL; /* Nothing to do. */
121 1.1.2.1 thorpej
122 1.1.2.1 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
123 1.1.2.1 thorpej t->_dmamem_free = _bus_dmamem_free;
124 1.1.2.1 thorpej t->_dmamem_map = _bus_dmamem_map;
125 1.1.2.1 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
126 1.1.2.1 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
127 1.1.2.1 thorpej
128 1.1.2.1 thorpej /*
129 1.1.2.1 thorpej * Initialize the DMA tag used for sgmap-mapped DMA.
130 1.1.2.1 thorpej */
131 1.1.2.1 thorpej t = &ccp->cc_dmat_sgmap;
132 1.1.2.1 thorpej t->_cookie = ccp;
133 1.1.2.1 thorpej t->_get_tag = dwlpx_dma_get_tag;
134 1.1.2.1 thorpej t->_dmamap_create = dwlpx_bus_dmamap_create_sgmap;
135 1.1.2.2 thorpej t->_dmamap_destroy = dwlpx_bus_dmamap_destroy_sgmap;
136 1.1.2.1 thorpej t->_dmamap_load = dwlpx_bus_dmamap_load_sgmap;
137 1.1.2.1 thorpej t->_dmamap_load_mbuf = dwlpx_bus_dmamap_load_mbuf_sgmap;
138 1.1.2.1 thorpej t->_dmamap_load_uio = dwlpx_bus_dmamap_load_uio_sgmap;
139 1.1.2.1 thorpej t->_dmamap_load_raw = dwlpx_bus_dmamap_load_raw_sgmap;
140 1.1.2.2 thorpej t->_dmamap_unload = dwlpx_bus_dmamap_unload_sgmap;
141 1.1.2.1 thorpej t->_dmamap_sync = NULL; /* Nothing to do. */
142 1.1.2.1 thorpej
143 1.1.2.1 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
144 1.1.2.1 thorpej t->_dmamem_free = _bus_dmamem_free;
145 1.1.2.1 thorpej t->_dmamem_map = _bus_dmamem_map;
146 1.1.2.1 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
147 1.1.2.1 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
148 1.1.2.1 thorpej
149 1.1.2.1 thorpej /*
150 1.1.2.2 thorpej * A few notes about SGMAP-mapped DMA on the DWLPx:
151 1.1.2.2 thorpej *
152 1.1.2.2 thorpej * The DWLPx has PCIA-resident SRAM that is used for
153 1.1.2.2 thorpej * the SGMAP page table; there is no TLB. The DWLPA
154 1.1.2.2 thorpej * has room for 32K entries, yielding a total of 256M
155 1.1.2.2 thorpej * of sgva space. The DWLPB has 32K entries or 128K
156 1.1.2.2 thorpej * entries, depending on TBIT, yielding wither 256M or
157 1.1.2.2 thorpej * 1G of sgva space.
158 1.1.2.2 thorpej *
159 1.1.2.2 thorpej * This sgva space must be shared across all windows
160 1.1.2.2 thorpej * that wish to use SGMAP-mapped DMA; make sure to
161 1.1.2.2 thorpej * adjust the "sgvabase" argument to alpha_sgmap_init()
162 1.1.2.2 thorpej * accordingly if you create more than one SGMAP-mapped
163 1.1.2.2 thorpej * window. Note that sgvabase != window base. The former
164 1.1.2.2 thorpej * is used to compute indexes into the page table only.
165 1.1.2.2 thorpej *
166 1.1.2.2 thorpej * In the current implementation, we follow the lead of
167 1.1.2.2 thorpej * the workstation chipsets; the first window is an 8M
168 1.1.2.2 thorpej * window SGMAP-mapped mapped at 8M, and the second window
169 1.1.2.2 thorpej * is a 1G window direct-mapped mapped at 1G.
170 1.1.2.2 thorpej */
171 1.1.2.2 thorpej
172 1.1.2.2 thorpej /*
173 1.1.2.3 thorpej * Initialize the page table.
174 1.1.2.3 thorpej */
175 1.1.2.3 thorpej page_table =
176 1.1.2.3 thorpej (u_int32_t *)ALPHA_PHYS_TO_K0SEG(PCIA_SGMAP_PT + ccp->cc_sysbase);
177 1.1.2.3 thorpej for (i = 0; i < (32*1024); i++)
178 1.1.2.3 thorpej page_table[i] = 0;
179 1.1.2.3 thorpej alpha_mb();
180 1.1.2.3 thorpej
181 1.1.2.3 thorpej /*
182 1.1.2.2 thorpej * Initialize the SGMAP for window A:
183 1.1.2.2 thorpej *
184 1.1.2.2 thorpej * Size: 8M
185 1.1.2.2 thorpej * Window base: 8M
186 1.1.2.2 thorpej * SGVA base: 0
187 1.1.2.1 thorpej */
188 1.1.2.1 thorpej exname = malloc(16, M_DEVBUF, M_NOWAIT);
189 1.1.2.1 thorpej if (exname == NULL)
190 1.1.2.1 thorpej panic("dwlpx_dma_init");
191 1.1.2.2 thorpej sprintf(exname, "%s_sgmap_a", ccp->cc_sc->dwlpx_dev.dv_xname);
192 1.1.2.2 thorpej alpha_sgmap_init(t, &ccp->cc_sgmap, exname,
193 1.1.2.2 thorpej (8*1024*1024), 0, (8*1024*1024), sizeof(u_int32_t),
194 1.1.2.3 thorpej (void *)page_table);
195 1.1.2.2 thorpej
196 1.1.2.2 thorpej /*
197 1.1.2.2 thorpej * Set up DMA windows for this DWLPx.
198 1.1.2.1 thorpej *
199 1.1.2.1 thorpej * Do this even for all HPCs- even for the nonexistent
200 1.1.2.1 thorpej * one on hose zero of a KFTIA.
201 1.1.2.1 thorpej */
202 1.1.2.1 thorpej for (i = 0; i < NHPC; i++) {
203 1.1.2.2 thorpej REGVAL(PCIA_WMASK_A(i) + ccp->cc_sysbase) = PCIA_WMASK_8M;
204 1.1.2.1 thorpej REGVAL(PCIA_TBASE_A(i) + ccp->cc_sysbase) = 0;
205 1.1.2.2 thorpej alpha_mb();
206 1.1.2.2 thorpej REGVAL(PCIA_WBASE_A(i) + ccp->cc_sysbase) =
207 1.1.2.2 thorpej (8*1024*1024) | PCIA_WBASE_W_EN | PCIA_WBASE_SG_EN;
208 1.1.2.2 thorpej alpha_mb();
209 1.1.2.2 thorpej
210 1.1.2.2 thorpej REGVAL(PCIA_WMASK_B(i) + ccp->cc_sysbase) = PCIA_WMASK_1G;
211 1.1.2.1 thorpej REGVAL(PCIA_TBASE_B(i) + ccp->cc_sysbase) = 0;
212 1.1.2.2 thorpej alpha_mb();
213 1.1.2.2 thorpej REGVAL(PCIA_WBASE_B(i) + ccp->cc_sysbase) =
214 1.1.2.2 thorpej DWLPx_DIRECT_MAPPED_BASE | PCIA_WBASE_W_EN;
215 1.1.2.2 thorpej alpha_mb();
216 1.1.2.2 thorpej
217 1.1.2.1 thorpej REGVAL(PCIA_WMASK_C(i) + ccp->cc_sysbase) = 0;
218 1.1.2.1 thorpej REGVAL(PCIA_TBASE_C(i) + ccp->cc_sysbase) = 0;
219 1.1.2.2 thorpej alpha_mb();
220 1.1.2.1 thorpej REGVAL(PCIA_WBASE_C(i) + ccp->cc_sysbase) = 0;
221 1.1.2.2 thorpej alpha_mb();
222 1.1.2.1 thorpej }
223 1.1.2.1 thorpej
224 1.1.2.1 thorpej /* XXX XXX BEGIN XXX XXX */
225 1.1.2.1 thorpej { /* XXX */
226 1.1.2.1 thorpej extern vm_offset_t alpha_XXX_dmamap_or; /* XXX */
227 1.1.2.2 thorpej alpha_XXX_dmamap_or = DWLPx_DIRECT_MAPPED_BASE; /* XXX */
228 1.1.2.1 thorpej } /* XXX */
229 1.1.2.1 thorpej /* XXX XXX END XXX XXX */
230 1.1.2.1 thorpej }
231 1.1.2.1 thorpej
232 1.1.2.1 thorpej /*
233 1.1.2.1 thorpej * Return the bus dma tag to be used for the specified bus type.
234 1.1.2.1 thorpej * INTERNAL USE ONLY!
235 1.1.2.1 thorpej */
236 1.1.2.1 thorpej bus_dma_tag_t
237 1.1.2.1 thorpej dwlpx_dma_get_tag(t, bustype)
238 1.1.2.1 thorpej bus_dma_tag_t t;
239 1.1.2.1 thorpej alpha_bus_t bustype;
240 1.1.2.1 thorpej {
241 1.1.2.1 thorpej struct dwlpx_config *ccp = t->_cookie;
242 1.1.2.1 thorpej
243 1.1.2.1 thorpej switch (bustype) {
244 1.1.2.1 thorpej case ALPHA_BUS_PCI:
245 1.1.2.1 thorpej case ALPHA_BUS_EISA:
246 1.1.2.1 thorpej /*
247 1.1.2.1 thorpej * XXX FIXME!
248 1.1.2.1 thorpej * XXX If the system has more than 1G of RAM,
249 1.1.2.1 thorpej * XXX we need to use SGMAPs, or some combination
250 1.1.2.1 thorpej * XXX of direct-mapped and SGMAP-mapped DMA.
251 1.1.2.1 thorpej */
252 1.1.2.1 thorpej return (&ccp->cc_dmat_direct);
253 1.1.2.1 thorpej
254 1.1.2.1 thorpej case ALPHA_BUS_ISA:
255 1.1.2.1 thorpej /*
256 1.1.2.1 thorpej * ISA doesn't have enough address bits to use
257 1.1.2.1 thorpej * the direct-mapped DMA window, so we must use
258 1.1.2.1 thorpej * SGMAPs.
259 1.1.2.1 thorpej */
260 1.1.2.1 thorpej return (&ccp->cc_dmat_sgmap);
261 1.1.2.1 thorpej
262 1.1.2.1 thorpej default:
263 1.1.2.1 thorpej panic("dwlpx_dma_get_tag: shouldn't be here, really...");
264 1.1.2.1 thorpej }
265 1.1.2.1 thorpej }
266 1.1.2.1 thorpej
267 1.1.2.1 thorpej /*
268 1.1.2.2 thorpej * Create a DWLPx SGMAP-mapped DMA map.
269 1.1.2.1 thorpej */
270 1.1.2.1 thorpej int
271 1.1.2.2 thorpej dwlpx_bus_dmamap_create_sgmap(t, size, nsegments, maxsegsz, boundary,
272 1.1.2.2 thorpej flags, dmamp)
273 1.1.2.1 thorpej bus_dma_tag_t t;
274 1.1.2.1 thorpej bus_size_t size;
275 1.1.2.1 thorpej int nsegments;
276 1.1.2.1 thorpej bus_size_t maxsegsz;
277 1.1.2.1 thorpej bus_size_t boundary;
278 1.1.2.1 thorpej int flags;
279 1.1.2.1 thorpej bus_dmamap_t *dmamp;
280 1.1.2.1 thorpej {
281 1.1.2.2 thorpej struct dwlpx_config *ccp = t->_cookie;
282 1.1.2.2 thorpej struct alpha_sgmap_cookie *a;
283 1.1.2.1 thorpej bus_dmamap_t map;
284 1.1.2.1 thorpej int error;
285 1.1.2.1 thorpej
286 1.1.2.2 thorpej error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
287 1.1.2.2 thorpej boundary, flags, dmamp);
288 1.1.2.1 thorpej if (error)
289 1.1.2.1 thorpej return (error);
290 1.1.2.1 thorpej
291 1.1.2.1 thorpej map = *dmamp;
292 1.1.2.1 thorpej
293 1.1.2.2 thorpej a = malloc(sizeof(struct alpha_sgmap_cookie), M_DEVBUF,
294 1.1.2.1 thorpej (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK);
295 1.1.2.1 thorpej if (a == NULL) {
296 1.1.2.1 thorpej _bus_dmamap_destroy(t, map);
297 1.1.2.1 thorpej return (ENOMEM);
298 1.1.2.1 thorpej }
299 1.1.2.2 thorpej bzero(a, sizeof(struct alpha_sgmap_cookie));
300 1.1.2.2 thorpej map->_dm_sgcookie = a;
301 1.1.2.1 thorpej
302 1.1.2.2 thorpej if (flags & BUS_DMA_ALLOCNOW) {
303 1.1.2.2 thorpej error = alpha_sgmap_alloc(map, round_page(size),
304 1.1.2.2 thorpej &ccp->cc_sgmap, flags);
305 1.1.2.2 thorpej if (error)
306 1.1.2.2 thorpej dwlpx_bus_dmamap_destroy_sgmap(t, map);
307 1.1.2.2 thorpej }
308 1.1.2.1 thorpej
309 1.1.2.1 thorpej return (error);
310 1.1.2.1 thorpej }
311 1.1.2.1 thorpej
312 1.1.2.1 thorpej /*
313 1.1.2.2 thorpej * Destroy a DWLPx SGMAP-mapped DMA map.
314 1.1.2.1 thorpej */
315 1.1.2.1 thorpej void
316 1.1.2.2 thorpej dwlpx_bus_dmamap_destroy_sgmap(t, map)
317 1.1.2.1 thorpej bus_dma_tag_t t;
318 1.1.2.1 thorpej bus_dmamap_t map;
319 1.1.2.1 thorpej {
320 1.1.2.1 thorpej struct dwlpx_config *ccp = t->_cookie;
321 1.1.2.2 thorpej struct alpha_sgmap_cookie *a = map->_dm_sgcookie;
322 1.1.2.1 thorpej
323 1.1.2.1 thorpej if (a->apdc_flags & APDC_HAS_SGMAP)
324 1.1.2.2 thorpej alpha_sgmap_free(&ccp->cc_sgmap, a);
325 1.1.2.1 thorpej
326 1.1.2.2 thorpej free(a, M_DEVBUF);
327 1.1.2.1 thorpej _bus_dmamap_destroy(t, map);
328 1.1.2.1 thorpej }
329 1.1.2.1 thorpej
330 1.1.2.1 thorpej /*
331 1.1.2.2 thorpej * Load a DWLPx direct-mapped DMA map with a linear buffer.
332 1.1.2.1 thorpej */
333 1.1.2.1 thorpej int
334 1.1.2.1 thorpej dwlpx_bus_dmamap_load_direct(t, map, buf, buflen, p, flags)
335 1.1.2.1 thorpej bus_dma_tag_t t;
336 1.1.2.1 thorpej bus_dmamap_t map;
337 1.1.2.1 thorpej void *buf;
338 1.1.2.1 thorpej bus_size_t buflen;
339 1.1.2.1 thorpej struct proc *p;
340 1.1.2.1 thorpej int flags;
341 1.1.2.1 thorpej {
342 1.1.2.1 thorpej
343 1.1.2.1 thorpej return (_bus_dmamap_load_direct_common(t, map, buf, buflen, p,
344 1.1.2.2 thorpej flags, DWLPx_DIRECT_MAPPED_BASE));
345 1.1.2.1 thorpej }
346 1.1.2.1 thorpej
347 1.1.2.1 thorpej /*
348 1.1.2.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with a linear buffer.
349 1.1.2.1 thorpej */
350 1.1.2.1 thorpej int
351 1.1.2.1 thorpej dwlpx_bus_dmamap_load_sgmap(t, map, buf, buflen, p, flags)
352 1.1.2.1 thorpej bus_dma_tag_t t;
353 1.1.2.1 thorpej bus_dmamap_t map;
354 1.1.2.1 thorpej void *buf;
355 1.1.2.1 thorpej bus_size_t buflen;
356 1.1.2.1 thorpej struct proc *p;
357 1.1.2.1 thorpej int flags;
358 1.1.2.1 thorpej {
359 1.1.2.1 thorpej struct dwlpx_config *ccp = t->_cookie;
360 1.1.2.1 thorpej
361 1.1.2.2 thorpej return (pci_pte32_sgmap_load(t, map, buf, buflen, p, flags,
362 1.1.2.2 thorpej &ccp->cc_sgmap));
363 1.1.2.1 thorpej }
364 1.1.2.1 thorpej
365 1.1.2.1 thorpej /*
366 1.1.2.2 thorpej * Load a DWLPx direct-mapped DMA map with an mbuf chain.
367 1.1.2.1 thorpej */
368 1.1.2.1 thorpej int
369 1.1.2.1 thorpej dwlpx_bus_dmamap_load_mbuf_direct(t, map, m, flags)
370 1.1.2.1 thorpej bus_dma_tag_t t;
371 1.1.2.1 thorpej bus_dmamap_t map;
372 1.1.2.1 thorpej struct mbuf *m;
373 1.1.2.1 thorpej int flags;
374 1.1.2.1 thorpej {
375 1.1.2.1 thorpej
376 1.1.2.1 thorpej return (_bus_dmamap_load_mbuf_direct_common(t, map, m,
377 1.1.2.2 thorpej flags, DWLPx_DIRECT_MAPPED_BASE));
378 1.1.2.1 thorpej }
379 1.1.2.1 thorpej
380 1.1.2.1 thorpej /*
381 1.1.2.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with an mbuf chain.
382 1.1.2.1 thorpej */
383 1.1.2.1 thorpej int
384 1.1.2.1 thorpej dwlpx_bus_dmamap_load_mbuf_sgmap(t, map, m, flags)
385 1.1.2.1 thorpej bus_dma_tag_t t;
386 1.1.2.1 thorpej bus_dmamap_t map;
387 1.1.2.1 thorpej struct mbuf *m;
388 1.1.2.1 thorpej int flags;
389 1.1.2.1 thorpej {
390 1.1.2.1 thorpej struct dwlpx_config *ccp = t->_cookie;
391 1.1.2.1 thorpej
392 1.1.2.2 thorpej return (pci_pte32_sgmap_load_mbuf(t, map, m, flags, &ccp->cc_sgmap));
393 1.1.2.1 thorpej }
394 1.1.2.1 thorpej
395 1.1.2.1 thorpej /*
396 1.1.2.2 thorpej * Load a DWLPx direct-mapped DMA map with a uio.
397 1.1.2.1 thorpej */
398 1.1.2.1 thorpej int
399 1.1.2.1 thorpej dwlpx_bus_dmamap_load_uio_direct(t, map, uio, flags)
400 1.1.2.1 thorpej bus_dma_tag_t t;
401 1.1.2.1 thorpej bus_dmamap_t map;
402 1.1.2.1 thorpej struct uio *uio;
403 1.1.2.1 thorpej int flags;
404 1.1.2.1 thorpej {
405 1.1.2.1 thorpej
406 1.1.2.1 thorpej return (_bus_dmamap_load_uio_direct_common(t, map, uio,
407 1.1.2.2 thorpej flags, DWLPx_DIRECT_MAPPED_BASE));
408 1.1.2.1 thorpej }
409 1.1.2.1 thorpej
410 1.1.2.1 thorpej /*
411 1.1.2.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with a uio.
412 1.1.2.1 thorpej */
413 1.1.2.1 thorpej int
414 1.1.2.1 thorpej dwlpx_bus_dmamap_load_uio_sgmap(t, map, uio, flags)
415 1.1.2.1 thorpej bus_dma_tag_t t;
416 1.1.2.1 thorpej bus_dmamap_t map;
417 1.1.2.1 thorpej struct uio *uio;
418 1.1.2.1 thorpej int flags;
419 1.1.2.1 thorpej {
420 1.1.2.1 thorpej struct dwlpx_config *ccp = t->_cookie;
421 1.1.2.1 thorpej
422 1.1.2.2 thorpej return (pci_pte32_sgmap_load_uio(t, map, uio, flags, &ccp->cc_sgmap));
423 1.1.2.1 thorpej }
424 1.1.2.1 thorpej
425 1.1.2.1 thorpej /*
426 1.1.2.2 thorpej * Load a DWLPx direct-mapped DMA map with raw memory.
427 1.1.2.1 thorpej */
428 1.1.2.1 thorpej int
429 1.1.2.1 thorpej dwlpx_bus_dmamap_load_raw_direct(t, map, segs, nsegs, size, flags)
430 1.1.2.1 thorpej bus_dma_tag_t t;
431 1.1.2.1 thorpej bus_dmamap_t map;
432 1.1.2.1 thorpej bus_dma_segment_t *segs;
433 1.1.2.1 thorpej int nsegs;
434 1.1.2.1 thorpej bus_size_t size;
435 1.1.2.1 thorpej int flags;
436 1.1.2.1 thorpej {
437 1.1.2.1 thorpej
438 1.1.2.1 thorpej return (_bus_dmamap_load_raw_direct_common(t, map, segs, nsegs,
439 1.1.2.2 thorpej size, flags, DWLPx_DIRECT_MAPPED_BASE));
440 1.1.2.1 thorpej }
441 1.1.2.1 thorpej
442 1.1.2.1 thorpej /*
443 1.1.2.2 thorpej * Load a DWLPx SGMAP-mapped DMA map with raw memory.
444 1.1.2.1 thorpej */
445 1.1.2.1 thorpej int
446 1.1.2.1 thorpej dwlpx_bus_dmamap_load_raw_sgmap(t, map, segs, nsegs, size, flags)
447 1.1.2.1 thorpej bus_dma_tag_t t;
448 1.1.2.1 thorpej bus_dmamap_t map;
449 1.1.2.1 thorpej bus_dma_segment_t *segs;
450 1.1.2.1 thorpej int nsegs;
451 1.1.2.1 thorpej bus_size_t size;
452 1.1.2.1 thorpej int flags;
453 1.1.2.1 thorpej {
454 1.1.2.1 thorpej struct dwlpx_config *ccp = t->_cookie;
455 1.1.2.1 thorpej
456 1.1.2.2 thorpej return (pci_pte32_sgmap_load_raw(t, map, segs, nsegs, size, flags,
457 1.1.2.2 thorpej &ccp->cc_sgmap));
458 1.1.2.1 thorpej }
459 1.1.2.1 thorpej
460 1.1.2.1 thorpej /*
461 1.1.2.2 thorpej * Unload a DWLPx DMA map.
462 1.1.2.1 thorpej */
463 1.1.2.1 thorpej void
464 1.1.2.2 thorpej dwlpx_bus_dmamap_unload_sgmap(t, map)
465 1.1.2.1 thorpej bus_dma_tag_t t;
466 1.1.2.1 thorpej bus_dmamap_t map;
467 1.1.2.1 thorpej {
468 1.1.2.1 thorpej struct dwlpx_config *ccp = t->_cookie;
469 1.1.2.1 thorpej
470 1.1.2.1 thorpej /*
471 1.1.2.1 thorpej * Invalidate any SGMAP page table entries used by this
472 1.1.2.1 thorpej * mapping.
473 1.1.2.1 thorpej */
474 1.1.2.2 thorpej pci_pte32_sgmap_unload(t, map, &ccp->cc_sgmap);
475 1.1.2.1 thorpej
476 1.1.2.1 thorpej /*
477 1.1.2.1 thorpej * Do the generic bits of the unload.
478 1.1.2.1 thorpej */
479 1.1.2.1 thorpej _bus_dmamap_unload(t, map);
480 1.1.2.1 thorpej }
481