lca_dma.c revision 1.19 1 1.19 dsl /* $NetBSD: lca_dma.c,v 1.19 2009/03/14 14:45:53 dsl Exp $ */
2 1.2 thorpej
3 1.2 thorpej /*-
4 1.5 thorpej * Copyright (c) 1997, 1998 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 *
20 1.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.2 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.2 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.2 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.2 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.2 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.2 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.2 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.2 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.2 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.2 thorpej * POSSIBILITY OF SUCH DAMAGE.
31 1.2 thorpej */
32 1.2 thorpej
33 1.2 thorpej #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
34 1.2 thorpej
35 1.19 dsl __KERNEL_RCSID(0, "$NetBSD: lca_dma.c,v 1.19 2009/03/14 14:45:53 dsl Exp $");
36 1.2 thorpej
37 1.2 thorpej #include <sys/param.h>
38 1.2 thorpej #include <sys/systm.h>
39 1.2 thorpej #include <sys/kernel.h>
40 1.2 thorpej #include <sys/device.h>
41 1.2 thorpej #include <sys/malloc.h>
42 1.13 mrg
43 1.13 mrg #include <uvm/uvm_extern.h>
44 1.2 thorpej
45 1.2 thorpej #define _ALPHA_BUS_DMA_PRIVATE
46 1.2 thorpej #include <machine/bus.h>
47 1.2 thorpej
48 1.2 thorpej #include <dev/pci/pcireg.h>
49 1.2 thorpej #include <dev/pci/pcivar.h>
50 1.2 thorpej #include <alpha/pci/lcareg.h>
51 1.2 thorpej #include <alpha/pci/lcavar.h>
52 1.2 thorpej
53 1.19 dsl bus_dma_tag_t lca_dma_get_tag(bus_dma_tag_t, alpha_bus_t);
54 1.2 thorpej
55 1.19 dsl int lca_bus_dmamap_load_sgmap(bus_dma_tag_t, bus_dmamap_t, void *,
56 1.19 dsl bus_size_t, struct proc *, int);
57 1.2 thorpej
58 1.19 dsl int lca_bus_dmamap_load_mbuf_sgmap(bus_dma_tag_t, bus_dmamap_t,
59 1.19 dsl struct mbuf *, int);
60 1.2 thorpej
61 1.19 dsl int lca_bus_dmamap_load_uio_sgmap(bus_dma_tag_t, bus_dmamap_t,
62 1.19 dsl struct uio *, int);
63 1.2 thorpej
64 1.19 dsl int lca_bus_dmamap_load_raw_sgmap(bus_dma_tag_t, bus_dmamap_t,
65 1.19 dsl bus_dma_segment_t *, int, bus_size_t, int);
66 1.2 thorpej
67 1.19 dsl void lca_bus_dmamap_unload_sgmap(bus_dma_tag_t, bus_dmamap_t);
68 1.2 thorpej
69 1.2 thorpej /*
70 1.9 thorpej * Direct-mapped window: 1G at 1G
71 1.2 thorpej */
72 1.9 thorpej #define LCA_DIRECT_MAPPED_BASE (1*1024*1024*1024)
73 1.9 thorpej #define LCA_DIRECT_MAPPED_SIZE (1*1024*1024*1024)
74 1.2 thorpej
75 1.2 thorpej /*
76 1.9 thorpej * SGMAP window: 8M at 8M
77 1.2 thorpej */
78 1.2 thorpej #define LCA_SGMAP_MAPPED_BASE (8*1024*1024)
79 1.9 thorpej #define LCA_SGMAP_MAPPED_SIZE (8*1024*1024)
80 1.2 thorpej
81 1.2 thorpej /*
82 1.15 thorpej * The LCA doesn't have a DMA prefetch threshold. However, it is known
83 1.15 thorpej * to lose if we don't allocate a spill page. So initialize it to 256.
84 1.15 thorpej */
85 1.15 thorpej #define LCA_SGMAP_PFTHRESH 256
86 1.15 thorpej
87 1.15 thorpej /*
88 1.2 thorpej * Macro to flush LCA scatter/gather TLB.
89 1.2 thorpej */
90 1.2 thorpej #define LCA_TLB_INVALIDATE() \
91 1.2 thorpej do { \
92 1.2 thorpej alpha_mb(); \
93 1.2 thorpej REGVAL64(LCA_IOC_TBIA) = 0; \
94 1.2 thorpej alpha_mb(); \
95 1.2 thorpej } while (0)
96 1.2 thorpej
97 1.2 thorpej void
98 1.2 thorpej lca_dma_init(lcp)
99 1.2 thorpej struct lca_config *lcp;
100 1.2 thorpej {
101 1.2 thorpej bus_dma_tag_t t;
102 1.2 thorpej
103 1.2 thorpej /*
104 1.2 thorpej * Initialize the DMA tag used for direct-mapped DMA.
105 1.2 thorpej */
106 1.2 thorpej t = &lcp->lc_dmat_direct;
107 1.2 thorpej t->_cookie = lcp;
108 1.8 thorpej t->_wbase = LCA_DIRECT_MAPPED_BASE;
109 1.9 thorpej t->_wsize = LCA_DIRECT_MAPPED_SIZE;
110 1.9 thorpej t->_next_window = NULL;
111 1.10 thorpej t->_boundary = 0;
112 1.9 thorpej t->_sgmap = NULL;
113 1.2 thorpej t->_get_tag = lca_dma_get_tag;
114 1.2 thorpej t->_dmamap_create = _bus_dmamap_create;
115 1.2 thorpej t->_dmamap_destroy = _bus_dmamap_destroy;
116 1.8 thorpej t->_dmamap_load = _bus_dmamap_load_direct;
117 1.8 thorpej t->_dmamap_load_mbuf = _bus_dmamap_load_mbuf_direct;
118 1.8 thorpej t->_dmamap_load_uio = _bus_dmamap_load_uio_direct;
119 1.8 thorpej t->_dmamap_load_raw = _bus_dmamap_load_raw_direct;
120 1.2 thorpej t->_dmamap_unload = _bus_dmamap_unload;
121 1.7 thorpej t->_dmamap_sync = _bus_dmamap_sync;
122 1.2 thorpej
123 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
124 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
125 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
126 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
127 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
128 1.2 thorpej
129 1.2 thorpej /*
130 1.2 thorpej * Initialize the DMA tag used for sgmap-mapped DMA.
131 1.2 thorpej */
132 1.2 thorpej t = &lcp->lc_dmat_sgmap;
133 1.2 thorpej t->_cookie = lcp;
134 1.8 thorpej t->_wbase = LCA_SGMAP_MAPPED_BASE;
135 1.9 thorpej t->_wsize = LCA_SGMAP_MAPPED_SIZE;
136 1.9 thorpej t->_next_window = NULL;
137 1.10 thorpej t->_boundary = 0;
138 1.9 thorpej t->_sgmap = &lcp->lc_sgmap;
139 1.15 thorpej t->_pfthresh = LCA_SGMAP_PFTHRESH;
140 1.2 thorpej t->_get_tag = lca_dma_get_tag;
141 1.14 thorpej t->_dmamap_create = alpha_sgmap_dmamap_create;
142 1.14 thorpej t->_dmamap_destroy = alpha_sgmap_dmamap_destroy;
143 1.2 thorpej t->_dmamap_load = lca_bus_dmamap_load_sgmap;
144 1.2 thorpej t->_dmamap_load_mbuf = lca_bus_dmamap_load_mbuf_sgmap;
145 1.2 thorpej t->_dmamap_load_uio = lca_bus_dmamap_load_uio_sgmap;
146 1.2 thorpej t->_dmamap_load_raw = lca_bus_dmamap_load_raw_sgmap;
147 1.2 thorpej t->_dmamap_unload = lca_bus_dmamap_unload_sgmap;
148 1.7 thorpej t->_dmamap_sync = _bus_dmamap_sync;
149 1.2 thorpej
150 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
151 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
152 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
153 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
154 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
155 1.2 thorpej
156 1.16 mycroft /* Initialize window 1 as a direct-mapped window. */
157 1.16 mycroft REGVAL64(LCA_IOC_W_BASE1) = LCA_DIRECT_MAPPED_BASE | IOC_W_BASE_WEN;
158 1.16 mycroft REGVAL64(LCA_IOC_W_MASK1) = IOC_W_MASK_1G;
159 1.16 mycroft alpha_mb();
160 1.16 mycroft
161 1.16 mycroft /* Disable window 0 while we set it up. */
162 1.2 thorpej REGVAL64(LCA_IOC_W_BASE0) = 0;
163 1.2 thorpej alpha_mb();
164 1.2 thorpej
165 1.2 thorpej /*
166 1.11 thorpej * Initialize the SGMAP.
167 1.2 thorpej */
168 1.11 thorpej alpha_sgmap_init(t, &lcp->lc_sgmap, "lca_sgmap",
169 1.11 thorpej LCA_SGMAP_MAPPED_BASE, 0, LCA_SGMAP_MAPPED_SIZE,
170 1.11 thorpej sizeof(u_int64_t), NULL, 0);
171 1.2 thorpej
172 1.11 thorpej /*
173 1.11 thorpej * Set up window 0 as an 8MB SGMAP-mapped window
174 1.11 thorpej * starting at 8MB.
175 1.11 thorpej */
176 1.11 thorpej REGVAL64(LCA_IOC_W_BASE0) = LCA_SGMAP_MAPPED_BASE |
177 1.11 thorpej IOC_W_BASE_SG | IOC_W_BASE_WEN;
178 1.11 thorpej REGVAL64(LCA_IOC_W_MASK0) = IOC_W_MASK_8M;
179 1.11 thorpej alpha_mb();
180 1.11 thorpej
181 1.11 thorpej if ((lcp->lc_sgmap.aps_ptpa & IOC_W_T_BASE) !=
182 1.11 thorpej lcp->lc_sgmap.aps_ptpa)
183 1.11 thorpej panic("lca_dma_init: bad page table address");
184 1.11 thorpej REGVAL64(LCA_IOC_W_T_BASE0) = lcp->lc_sgmap.aps_ptpa;
185 1.11 thorpej alpha_mb();
186 1.11 thorpej
187 1.11 thorpej /* Enble the scatter/gather TLB. */
188 1.11 thorpej REGVAL64(LCA_IOC_TB_ENA) = IOC_TB_ENA_TEN;
189 1.11 thorpej alpha_mb();
190 1.11 thorpej
191 1.11 thorpej LCA_TLB_INVALIDATE();
192 1.2 thorpej
193 1.2 thorpej /* XXX XXX BEGIN XXX XXX */
194 1.2 thorpej { /* XXX */
195 1.12 thorpej extern paddr_t alpha_XXX_dmamap_or; /* XXX */
196 1.2 thorpej alpha_XXX_dmamap_or = LCA_DIRECT_MAPPED_BASE; /* XXX */
197 1.2 thorpej } /* XXX */
198 1.2 thorpej /* XXX XXX END XXX XXX */
199 1.2 thorpej }
200 1.2 thorpej
201 1.2 thorpej /*
202 1.2 thorpej * Return the bus dma tag to be used for the specified bus type.
203 1.2 thorpej * INTERNAL USE ONLY!
204 1.2 thorpej */
205 1.2 thorpej bus_dma_tag_t
206 1.2 thorpej lca_dma_get_tag(t, bustype)
207 1.2 thorpej bus_dma_tag_t t;
208 1.2 thorpej alpha_bus_t bustype;
209 1.2 thorpej {
210 1.2 thorpej struct lca_config *lcp = t->_cookie;
211 1.2 thorpej
212 1.2 thorpej switch (bustype) {
213 1.2 thorpej case ALPHA_BUS_PCI:
214 1.2 thorpej case ALPHA_BUS_EISA:
215 1.2 thorpej /*
216 1.2 thorpej * Systems with an LCA can only support 1G
217 1.2 thorpej * of memory, so we use the direct-mapped window
218 1.2 thorpej * on busses that have 32-bit DMA.
219 1.2 thorpej */
220 1.2 thorpej return (&lcp->lc_dmat_direct);
221 1.2 thorpej
222 1.2 thorpej case ALPHA_BUS_ISA:
223 1.2 thorpej /*
224 1.2 thorpej * ISA doesn't have enough address bits to use
225 1.2 thorpej * the direct-mapped DMA window, so we must use
226 1.2 thorpej * SGMAPs.
227 1.2 thorpej */
228 1.2 thorpej return (&lcp->lc_dmat_sgmap);
229 1.2 thorpej
230 1.2 thorpej default:
231 1.2 thorpej panic("lca_dma_get_tag: shouldn't be here, really...");
232 1.2 thorpej }
233 1.2 thorpej }
234 1.2 thorpej
235 1.2 thorpej /*
236 1.2 thorpej * Load an LCA SGMAP-mapped DMA map with a linear buffer.
237 1.2 thorpej */
238 1.2 thorpej int
239 1.2 thorpej lca_bus_dmamap_load_sgmap(t, map, buf, buflen, p, flags)
240 1.2 thorpej bus_dma_tag_t t;
241 1.2 thorpej bus_dmamap_t map;
242 1.2 thorpej void *buf;
243 1.2 thorpej bus_size_t buflen;
244 1.2 thorpej struct proc *p;
245 1.2 thorpej int flags;
246 1.2 thorpej {
247 1.2 thorpej int error;
248 1.2 thorpej
249 1.2 thorpej error = pci_sgmap_pte64_load(t, map, buf, buflen, p, flags,
250 1.9 thorpej t->_sgmap);
251 1.2 thorpej if (error == 0)
252 1.2 thorpej LCA_TLB_INVALIDATE();
253 1.2 thorpej
254 1.2 thorpej return (error);
255 1.2 thorpej }
256 1.2 thorpej
257 1.2 thorpej /*
258 1.2 thorpej * Load an LCA SGMAP-mapped DMA map with an mbuf chain.
259 1.2 thorpej */
260 1.2 thorpej int
261 1.2 thorpej lca_bus_dmamap_load_mbuf_sgmap(t, map, m, flags)
262 1.2 thorpej bus_dma_tag_t t;
263 1.2 thorpej bus_dmamap_t map;
264 1.2 thorpej struct mbuf *m;
265 1.2 thorpej int flags;
266 1.2 thorpej {
267 1.2 thorpej int error;
268 1.2 thorpej
269 1.9 thorpej error = pci_sgmap_pte64_load_mbuf(t, map, m, flags, t->_sgmap);
270 1.2 thorpej if (error == 0)
271 1.2 thorpej LCA_TLB_INVALIDATE();
272 1.2 thorpej
273 1.2 thorpej return (error);
274 1.2 thorpej }
275 1.2 thorpej
276 1.2 thorpej /*
277 1.2 thorpej * Load an LCA SGMAP-mapped DMA map with a uio.
278 1.2 thorpej */
279 1.2 thorpej int
280 1.2 thorpej lca_bus_dmamap_load_uio_sgmap(t, map, uio, flags)
281 1.2 thorpej bus_dma_tag_t t;
282 1.2 thorpej bus_dmamap_t map;
283 1.2 thorpej struct uio *uio;
284 1.2 thorpej int flags;
285 1.2 thorpej {
286 1.2 thorpej int error;
287 1.2 thorpej
288 1.9 thorpej error = pci_sgmap_pte64_load_uio(t, map, uio, flags, t->_sgmap);
289 1.2 thorpej if (error == 0)
290 1.2 thorpej LCA_TLB_INVALIDATE();
291 1.2 thorpej
292 1.2 thorpej return (error);
293 1.2 thorpej }
294 1.2 thorpej
295 1.2 thorpej /*
296 1.2 thorpej * Load an LCA SGMAP-mapped DMA map with raw memory.
297 1.2 thorpej */
298 1.2 thorpej int
299 1.2 thorpej lca_bus_dmamap_load_raw_sgmap(t, map, segs, nsegs, size, flags)
300 1.2 thorpej bus_dma_tag_t t;
301 1.2 thorpej bus_dmamap_t map;
302 1.2 thorpej bus_dma_segment_t *segs;
303 1.2 thorpej int nsegs;
304 1.2 thorpej bus_size_t size;
305 1.2 thorpej int flags;
306 1.2 thorpej {
307 1.2 thorpej int error;
308 1.2 thorpej
309 1.2 thorpej error = pci_sgmap_pte64_load_raw(t, map, segs, nsegs, size, flags,
310 1.9 thorpej t->_sgmap);
311 1.2 thorpej if (error == 0)
312 1.2 thorpej LCA_TLB_INVALIDATE();
313 1.2 thorpej
314 1.2 thorpej return (error);
315 1.2 thorpej }
316 1.2 thorpej
317 1.2 thorpej /*
318 1.2 thorpej * Unload an LCA DMA map.
319 1.2 thorpej */
320 1.2 thorpej void
321 1.2 thorpej lca_bus_dmamap_unload_sgmap(t, map)
322 1.2 thorpej bus_dma_tag_t t;
323 1.2 thorpej bus_dmamap_t map;
324 1.2 thorpej {
325 1.2 thorpej
326 1.2 thorpej /*
327 1.2 thorpej * Invalidate any SGMAP page table entries used by this
328 1.2 thorpej * mapping.
329 1.2 thorpej */
330 1.9 thorpej pci_sgmap_pte64_unload(t, map, t->_sgmap);
331 1.2 thorpej LCA_TLB_INVALIDATE();
332 1.2 thorpej
333 1.2 thorpej /*
334 1.2 thorpej * Do the generic bits of the unload.
335 1.2 thorpej */
336 1.2 thorpej _bus_dmamap_unload(t, map);
337 1.2 thorpej }
338