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