cia_dma.c revision 1.33 1 1.33 thorpej /* $NetBSD: cia_dma.c,v 1.33 2021/06/18 22:18:10 thorpej 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.33 thorpej __KERNEL_RCSID(0, "$NetBSD: cia_dma.c,v 1.33 2021/06/18 22:18:10 thorpej 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.16 mrg
43 1.2 thorpej #define _ALPHA_BUS_DMA_PRIVATE
44 1.27 dyoung #include <sys/bus.h>
45 1.2 thorpej
46 1.2 thorpej #include <dev/pci/pcireg.h>
47 1.2 thorpej #include <dev/pci/pcivar.h>
48 1.2 thorpej #include <alpha/pci/ciareg.h>
49 1.2 thorpej #include <alpha/pci/ciavar.h>
50 1.2 thorpej
51 1.32 thorpej static bus_dma_tag_t cia_dma_get_tag(bus_dma_tag_t, alpha_bus_t);
52 1.2 thorpej
53 1.32 thorpej static int cia_bus_dmamap_create_direct(bus_dma_tag_t, bus_size_t, int,
54 1.32 thorpej bus_size_t, bus_size_t, int, bus_dmamap_t *);
55 1.15 thorpej
56 1.32 thorpej static int cia_bus_dmamap_load_sgmap(bus_dma_tag_t, bus_dmamap_t, void *,
57 1.32 thorpej bus_size_t, struct proc *, int);
58 1.2 thorpej
59 1.32 thorpej static int cia_bus_dmamap_load_mbuf_sgmap(bus_dma_tag_t, bus_dmamap_t,
60 1.32 thorpej struct mbuf *, int);
61 1.2 thorpej
62 1.32 thorpej static int cia_bus_dmamap_load_uio_sgmap(bus_dma_tag_t, bus_dmamap_t,
63 1.32 thorpej struct uio *, int);
64 1.2 thorpej
65 1.32 thorpej static int cia_bus_dmamap_load_raw_sgmap(bus_dma_tag_t, bus_dmamap_t,
66 1.32 thorpej bus_dma_segment_t *, int, bus_size_t, int);
67 1.2 thorpej
68 1.32 thorpej static void cia_bus_dmamap_unload_sgmap(bus_dma_tag_t, bus_dmamap_t);
69 1.2 thorpej
70 1.2 thorpej /*
71 1.8 thorpej * Direct-mapped window: 1G at 1G
72 1.2 thorpej */
73 1.8 thorpej #define CIA_DIRECT_MAPPED_BASE (1*1024*1024*1024)
74 1.8 thorpej #define CIA_DIRECT_MAPPED_SIZE (1*1024*1024*1024)
75 1.2 thorpej
76 1.2 thorpej /*
77 1.8 thorpej * SGMAP window: 8M at 8M
78 1.2 thorpej */
79 1.2 thorpej #define CIA_SGMAP_MAPPED_BASE (8*1024*1024)
80 1.8 thorpej #define CIA_SGMAP_MAPPED_SIZE (8*1024*1024)
81 1.2 thorpej
82 1.18 thorpej /* ALCOR/ALGOR2/PYXIS have a 256-byte out-bound DMA prefetch threshold. */
83 1.18 thorpej #define CIA_SGMAP_PFTHRESH 256
84 1.18 thorpej
85 1.32 thorpej static void cia_tlb_invalidate(void);
86 1.32 thorpej static void cia_broken_pyxis_tlb_invalidate(void);
87 1.10 thorpej
88 1.32 thorpej static void (*cia_tlb_invalidate_fn)(void);
89 1.10 thorpej
90 1.10 thorpej #define CIA_TLB_INVALIDATE() (*cia_tlb_invalidate_fn)()
91 1.10 thorpej
92 1.10 thorpej struct alpha_sgmap cia_pyxis_bug_sgmap;
93 1.14 thorpej #define CIA_PYXIS_BUG_BASE (128*1024*1024)
94 1.10 thorpej #define CIA_PYXIS_BUG_SIZE (2*1024*1024)
95 1.2 thorpej
96 1.2 thorpej void
97 1.24 dsl cia_dma_init(struct cia_config *ccp)
98 1.2 thorpej {
99 1.2 thorpej bus_addr_t tbase;
100 1.2 thorpej bus_dma_tag_t t;
101 1.2 thorpej
102 1.2 thorpej /*
103 1.2 thorpej * Initialize the DMA tag used for direct-mapped DMA.
104 1.2 thorpej */
105 1.2 thorpej t = &ccp->cc_dmat_direct;
106 1.2 thorpej t->_cookie = ccp;
107 1.7 thorpej t->_wbase = CIA_DIRECT_MAPPED_BASE;
108 1.8 thorpej t->_wsize = CIA_DIRECT_MAPPED_SIZE;
109 1.21 mhitch t->_next_window = &ccp->cc_dmat_sgmap;
110 1.9 thorpej t->_boundary = 0;
111 1.8 thorpej t->_sgmap = NULL;
112 1.2 thorpej t->_get_tag = cia_dma_get_tag;
113 1.15 thorpej t->_dmamap_create = cia_bus_dmamap_create_direct;
114 1.2 thorpej t->_dmamap_destroy = _bus_dmamap_destroy;
115 1.7 thorpej t->_dmamap_load = _bus_dmamap_load_direct;
116 1.7 thorpej t->_dmamap_load_mbuf = _bus_dmamap_load_mbuf_direct;
117 1.7 thorpej t->_dmamap_load_uio = _bus_dmamap_load_uio_direct;
118 1.7 thorpej t->_dmamap_load_raw = _bus_dmamap_load_raw_direct;
119 1.2 thorpej t->_dmamap_unload = _bus_dmamap_unload;
120 1.6 thorpej t->_dmamap_sync = _bus_dmamap_sync;
121 1.2 thorpej
122 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
123 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
124 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
125 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
126 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
127 1.2 thorpej
128 1.2 thorpej /*
129 1.2 thorpej * Initialize the DMA tag used for sgmap-mapped DMA.
130 1.2 thorpej */
131 1.2 thorpej t = &ccp->cc_dmat_sgmap;
132 1.2 thorpej t->_cookie = ccp;
133 1.7 thorpej t->_wbase = CIA_SGMAP_MAPPED_BASE;
134 1.8 thorpej t->_wsize = CIA_SGMAP_MAPPED_SIZE;
135 1.8 thorpej t->_next_window = NULL;
136 1.9 thorpej t->_boundary = 0;
137 1.8 thorpej t->_sgmap = &ccp->cc_sgmap;
138 1.18 thorpej t->_pfthresh = CIA_SGMAP_PFTHRESH;
139 1.2 thorpej t->_get_tag = cia_dma_get_tag;
140 1.17 thorpej t->_dmamap_create = alpha_sgmap_dmamap_create;
141 1.17 thorpej t->_dmamap_destroy = alpha_sgmap_dmamap_destroy;
142 1.2 thorpej t->_dmamap_load = cia_bus_dmamap_load_sgmap;
143 1.2 thorpej t->_dmamap_load_mbuf = cia_bus_dmamap_load_mbuf_sgmap;
144 1.2 thorpej t->_dmamap_load_uio = cia_bus_dmamap_load_uio_sgmap;
145 1.2 thorpej t->_dmamap_load_raw = cia_bus_dmamap_load_raw_sgmap;
146 1.2 thorpej t->_dmamap_unload = cia_bus_dmamap_unload_sgmap;
147 1.6 thorpej t->_dmamap_sync = _bus_dmamap_sync;
148 1.2 thorpej
149 1.2 thorpej t->_dmamem_alloc = _bus_dmamem_alloc;
150 1.2 thorpej t->_dmamem_free = _bus_dmamem_free;
151 1.2 thorpej t->_dmamem_map = _bus_dmamem_map;
152 1.2 thorpej t->_dmamem_unmap = _bus_dmamem_unmap;
153 1.2 thorpej t->_dmamem_mmap = _bus_dmamem_mmap;
154 1.2 thorpej
155 1.2 thorpej /*
156 1.2 thorpej * The firmware has set up window 1 as a 1G direct-mapped DMA
157 1.2 thorpej * window beginning at 1G. We leave it alone. Leave window
158 1.2 thorpej * 0 alone until we reconfigure it for SGMAP-mapped DMA.
159 1.2 thorpej * Windows 2 and 3 are already disabled.
160 1.2 thorpej */
161 1.2 thorpej
162 1.2 thorpej /*
163 1.11 thorpej * Initialize the SGMAP. Must align page table to 32k
164 1.11 thorpej * (hardware bug?).
165 1.2 thorpej */
166 1.11 thorpej alpha_sgmap_init(t, &ccp->cc_sgmap, "cia_sgmap",
167 1.11 thorpej CIA_SGMAP_MAPPED_BASE, 0, CIA_SGMAP_MAPPED_SIZE,
168 1.28 matt sizeof(uint64_t), NULL, (32*1024));
169 1.2 thorpej
170 1.11 thorpej /*
171 1.11 thorpej * Set up window 0 as an 8MB SGMAP-mapped window
172 1.11 thorpej * starting at 8MB.
173 1.11 thorpej */
174 1.11 thorpej REGVAL(CIA_PCI_W0BASE) = CIA_SGMAP_MAPPED_BASE |
175 1.11 thorpej CIA_PCI_WnBASE_SG_EN | CIA_PCI_WnBASE_W_EN;
176 1.11 thorpej alpha_mb();
177 1.11 thorpej
178 1.11 thorpej REGVAL(CIA_PCI_W0MASK) = CIA_PCI_WnMASK_8M;
179 1.11 thorpej alpha_mb();
180 1.11 thorpej
181 1.11 thorpej tbase = ccp->cc_sgmap.aps_ptpa >> CIA_PCI_TnBASE_SHIFT;
182 1.11 thorpej if ((tbase & CIA_PCI_TnBASE_MASK) != tbase)
183 1.11 thorpej panic("cia_dma_init: bad page table address");
184 1.11 thorpej REGVAL(CIA_PCI_T0BASE) = tbase;
185 1.11 thorpej alpha_mb();
186 1.11 thorpej
187 1.11 thorpej /*
188 1.11 thorpej * Pass 1 and 2 (i.e. revision <= 1) of the Pyxis have a
189 1.11 thorpej * broken scatter/gather TLB; it cannot be invalidated. To
190 1.11 thorpej * work around this problem, we configure window 2 as an SG
191 1.11 thorpej * 2M window at 128M, which we use in DMA loopback mode to
192 1.11 thorpej * read a spill page. This works by causing TLB misses,
193 1.11 thorpej * causing the old entries to be purged to make room for
194 1.11 thorpej * the new entries coming in for the spill page.
195 1.11 thorpej */
196 1.11 thorpej if ((ccp->cc_flags & CCF_ISPYXIS) != 0 && ccp->cc_rev <= 1) {
197 1.28 matt uint64_t *page_table;
198 1.11 thorpej int i;
199 1.11 thorpej
200 1.11 thorpej cia_tlb_invalidate_fn =
201 1.11 thorpej cia_broken_pyxis_tlb_invalidate;
202 1.11 thorpej
203 1.11 thorpej alpha_sgmap_init(t, &cia_pyxis_bug_sgmap,
204 1.11 thorpej "pyxis_bug_sgmap", CIA_PYXIS_BUG_BASE, 0,
205 1.28 matt CIA_PYXIS_BUG_SIZE, sizeof(uint64_t), NULL,
206 1.12 thorpej (32*1024));
207 1.11 thorpej
208 1.11 thorpej REGVAL(CIA_PCI_W2BASE) = CIA_PYXIS_BUG_BASE |
209 1.4 thorpej CIA_PCI_WnBASE_SG_EN | CIA_PCI_WnBASE_W_EN;
210 1.2 thorpej alpha_mb();
211 1.2 thorpej
212 1.11 thorpej REGVAL(CIA_PCI_W2MASK) = CIA_PCI_WnMASK_2M;
213 1.2 thorpej alpha_mb();
214 1.2 thorpej
215 1.11 thorpej tbase = cia_pyxis_bug_sgmap.aps_ptpa >>
216 1.11 thorpej CIA_PCI_TnBASE_SHIFT;
217 1.2 thorpej if ((tbase & CIA_PCI_TnBASE_MASK) != tbase)
218 1.2 thorpej panic("cia_dma_init: bad page table address");
219 1.11 thorpej REGVAL(CIA_PCI_T2BASE) = tbase;
220 1.2 thorpej alpha_mb();
221 1.2 thorpej
222 1.10 thorpej /*
223 1.11 thorpej * Initialize the page table to point at the spill
224 1.11 thorpej * page. Leave the last entry invalid.
225 1.10 thorpej */
226 1.11 thorpej pci_sgmap_pte64_init_spill_page_pte();
227 1.11 thorpej for (i = 0, page_table = cia_pyxis_bug_sgmap.aps_pt;
228 1.11 thorpej i < (CIA_PYXIS_BUG_SIZE / PAGE_SIZE) - 1; i++) {
229 1.11 thorpej page_table[i] =
230 1.11 thorpej pci_sgmap_pte64_prefetch_spill_page_pte;
231 1.11 thorpej }
232 1.11 thorpej alpha_mb();
233 1.11 thorpej } else
234 1.11 thorpej cia_tlb_invalidate_fn = cia_tlb_invalidate;
235 1.10 thorpej
236 1.11 thorpej CIA_TLB_INVALIDATE();
237 1.2 thorpej }
238 1.2 thorpej
239 1.2 thorpej /*
240 1.2 thorpej * Return the bus dma tag to be used for the specified bus type.
241 1.2 thorpej * INTERNAL USE ONLY!
242 1.2 thorpej */
243 1.32 thorpej static bus_dma_tag_t
244 1.24 dsl cia_dma_get_tag(bus_dma_tag_t t, alpha_bus_t bustype)
245 1.2 thorpej {
246 1.2 thorpej struct cia_config *ccp = t->_cookie;
247 1.2 thorpej
248 1.2 thorpej switch (bustype) {
249 1.2 thorpej case ALPHA_BUS_PCI:
250 1.2 thorpej case ALPHA_BUS_EISA:
251 1.2 thorpej /*
252 1.2 thorpej * Systems with a CIA can only support 1G
253 1.2 thorpej * of memory, so we use the direct-mapped window
254 1.2 thorpej * on busses that have 32-bit DMA.
255 1.21 mhitch *
256 1.21 mhitch * Ahem: I have a PWS 500au with 1.5G of memory, and it
257 1.21 mhitch * had problems doing DMA because it was not falling back
258 1.21 mhitch * to using SGMAPs. I've fixed that and my PWS now works with
259 1.21 mhitch * 1.5G. There have been other reports about failures with
260 1.21 mhitch * more than 1.0G of memory. Michael Hitch
261 1.2 thorpej */
262 1.2 thorpej return (&ccp->cc_dmat_direct);
263 1.2 thorpej
264 1.2 thorpej case ALPHA_BUS_ISA:
265 1.2 thorpej /*
266 1.2 thorpej * ISA doesn't have enough address bits to use
267 1.2 thorpej * the direct-mapped DMA window, so we must use
268 1.2 thorpej * SGMAPs.
269 1.2 thorpej */
270 1.2 thorpej return (&ccp->cc_dmat_sgmap);
271 1.2 thorpej
272 1.2 thorpej default:
273 1.2 thorpej panic("cia_dma_get_tag: shouldn't be here, really...");
274 1.2 thorpej }
275 1.15 thorpej }
276 1.15 thorpej
277 1.15 thorpej /*
278 1.15 thorpej * Create a CIA direct-mapped DMA map.
279 1.15 thorpej */
280 1.32 thorpej static int
281 1.28 matt cia_bus_dmamap_create_direct(
282 1.28 matt bus_dma_tag_t t,
283 1.28 matt bus_size_t size,
284 1.28 matt int nsegments,
285 1.28 matt bus_size_t maxsegsz,
286 1.28 matt bus_size_t boundary,
287 1.28 matt int flags,
288 1.28 matt bus_dmamap_t *dmamp)
289 1.15 thorpej {
290 1.15 thorpej struct cia_config *ccp = t->_cookie;
291 1.15 thorpej bus_dmamap_t map;
292 1.15 thorpej int error;
293 1.15 thorpej
294 1.15 thorpej error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
295 1.15 thorpej boundary, flags, dmamp);
296 1.15 thorpej if (error)
297 1.15 thorpej return (error);
298 1.15 thorpej
299 1.15 thorpej map = *dmamp;
300 1.15 thorpej
301 1.15 thorpej if ((ccp->cc_flags & CCF_PYXISBUG) != 0 &&
302 1.15 thorpej map->_dm_segcnt > 1) {
303 1.15 thorpej /*
304 1.15 thorpej * We have a Pyxis with the DMA page crossing bug, make
305 1.15 thorpej * sure we don't coalesce adjacent DMA segments.
306 1.15 thorpej *
307 1.15 thorpej * NOTE: We can only do this if the max segment count
308 1.15 thorpej * is greater than 1. This is because many network
309 1.15 thorpej * drivers allocate large contiguous blocks of memory
310 1.15 thorpej * for control data structures, even though they won't
311 1.15 thorpej * do any single DMA that crosses a page coundary.
312 1.19 keihan * -- thorpej (at) NetBSD.org, 2/5/2000
313 1.15 thorpej */
314 1.15 thorpej map->_dm_flags |= DMAMAP_NO_COALESCE;
315 1.15 thorpej }
316 1.15 thorpej
317 1.15 thorpej return (0);
318 1.2 thorpej }
319 1.2 thorpej
320 1.2 thorpej /*
321 1.2 thorpej * Load a CIA SGMAP-mapped DMA map with a linear buffer.
322 1.2 thorpej */
323 1.32 thorpej static int
324 1.33 thorpej cia_bus_dmamap_load_sgmap(bus_dma_tag_t t, bus_dmamap_t map, void *buf,
325 1.33 thorpej bus_size_t buflen, struct proc *p, int flags)
326 1.2 thorpej {
327 1.2 thorpej int error;
328 1.2 thorpej
329 1.2 thorpej error = pci_sgmap_pte64_load(t, map, buf, buflen, p, flags,
330 1.8 thorpej t->_sgmap);
331 1.2 thorpej if (error == 0)
332 1.2 thorpej CIA_TLB_INVALIDATE();
333 1.2 thorpej
334 1.2 thorpej return (error);
335 1.2 thorpej }
336 1.2 thorpej
337 1.2 thorpej /*
338 1.2 thorpej * Load a CIA SGMAP-mapped DMA map with an mbuf chain.
339 1.2 thorpej */
340 1.32 thorpej static int
341 1.33 thorpej cia_bus_dmamap_load_mbuf_sgmap(bus_dma_tag_t t, bus_dmamap_t map,
342 1.33 thorpej struct mbuf *m, int flags)
343 1.2 thorpej {
344 1.2 thorpej int error;
345 1.2 thorpej
346 1.8 thorpej error = pci_sgmap_pte64_load_mbuf(t, map, m, flags, t->_sgmap);
347 1.2 thorpej if (error == 0)
348 1.2 thorpej CIA_TLB_INVALIDATE();
349 1.2 thorpej
350 1.2 thorpej return (error);
351 1.2 thorpej }
352 1.2 thorpej
353 1.2 thorpej /*
354 1.2 thorpej * Load a CIA SGMAP-mapped DMA map with a uio.
355 1.2 thorpej */
356 1.32 thorpej static int
357 1.33 thorpej cia_bus_dmamap_load_uio_sgmap(bus_dma_tag_t t, bus_dmamap_t map,
358 1.33 thorpej struct uio *uio, int flags)
359 1.2 thorpej {
360 1.2 thorpej int error;
361 1.2 thorpej
362 1.8 thorpej error = pci_sgmap_pte64_load_uio(t, map, uio, flags, t->_sgmap);
363 1.2 thorpej if (error == 0)
364 1.2 thorpej CIA_TLB_INVALIDATE();
365 1.2 thorpej
366 1.2 thorpej return (error);
367 1.2 thorpej }
368 1.2 thorpej
369 1.2 thorpej /*
370 1.2 thorpej * Load a CIA SGMAP-mapped DMA map with raw memory.
371 1.2 thorpej */
372 1.32 thorpej static int
373 1.33 thorpej cia_bus_dmamap_load_raw_sgmap(bus_dma_tag_t t, bus_dmamap_t map,
374 1.33 thorpej bus_dma_segment_t *segs, int nsegs, bus_size_t size, int flags)
375 1.2 thorpej {
376 1.2 thorpej int error;
377 1.2 thorpej
378 1.2 thorpej error = pci_sgmap_pte64_load_raw(t, map, segs, nsegs, size, flags,
379 1.8 thorpej t->_sgmap);
380 1.2 thorpej if (error == 0)
381 1.2 thorpej CIA_TLB_INVALIDATE();
382 1.2 thorpej
383 1.2 thorpej return (error);
384 1.2 thorpej }
385 1.2 thorpej
386 1.2 thorpej /*
387 1.2 thorpej * Unload a CIA DMA map.
388 1.2 thorpej */
389 1.32 thorpej static void
390 1.24 dsl cia_bus_dmamap_unload_sgmap(bus_dma_tag_t t, bus_dmamap_t map)
391 1.2 thorpej {
392 1.2 thorpej
393 1.2 thorpej /*
394 1.2 thorpej * Invalidate any SGMAP page table entries used by this
395 1.2 thorpej * mapping.
396 1.2 thorpej */
397 1.8 thorpej pci_sgmap_pte64_unload(t, map, t->_sgmap);
398 1.2 thorpej CIA_TLB_INVALIDATE();
399 1.2 thorpej
400 1.2 thorpej /*
401 1.2 thorpej * Do the generic bits of the unload.
402 1.2 thorpej */
403 1.31 thorpej _bus_dmamap_unload_common(t, map);
404 1.10 thorpej }
405 1.10 thorpej
406 1.10 thorpej /*
407 1.10 thorpej * Flush the CIA scatter/gather TLB.
408 1.10 thorpej */
409 1.32 thorpej static void
410 1.25 cegger cia_tlb_invalidate(void)
411 1.10 thorpej {
412 1.10 thorpej
413 1.10 thorpej alpha_mb();
414 1.10 thorpej REGVAL(CIA_PCI_TBIA) = CIA_PCI_TBIA_ALL;
415 1.10 thorpej alpha_mb();
416 1.10 thorpej }
417 1.10 thorpej
418 1.10 thorpej /*
419 1.10 thorpej * Flush the scatter/gather TLB on broken Pyxis chips.
420 1.10 thorpej */
421 1.32 thorpej static void
422 1.25 cegger cia_broken_pyxis_tlb_invalidate(void)
423 1.10 thorpej {
424 1.28 matt uint32_t ctrl;
425 1.10 thorpej int i, s;
426 1.10 thorpej
427 1.10 thorpej s = splhigh();
428 1.10 thorpej
429 1.10 thorpej /*
430 1.10 thorpej * Put the Pyxis into PCI loopback mode.
431 1.10 thorpej */
432 1.10 thorpej alpha_mb();
433 1.10 thorpej ctrl = REGVAL(CIA_CSR_CTRL);
434 1.10 thorpej REGVAL(CIA_CSR_CTRL) = ctrl | CTRL_PCI_LOOP_EN;
435 1.10 thorpej alpha_mb();
436 1.10 thorpej
437 1.10 thorpej /*
438 1.10 thorpej * Now, read from PCI dense memory space at offset 128M (our
439 1.10 thorpej * target window base), skipping 64k on each read. This forces
440 1.10 thorpej * S/G TLB misses.
441 1.10 thorpej *
442 1.10 thorpej * XXX Looks like the TLB entries are `not quite LRU'. We need
443 1.10 thorpej * XXX to read more times than there are actual tags!
444 1.10 thorpej */
445 1.10 thorpej for (i = 0; i < CIA_TLB_NTAGS + 4; i++) {
446 1.29 christos volatile uint64_t dummy;
447 1.28 matt dummy = *((volatile uint64_t *)
448 1.10 thorpej ALPHA_PHYS_TO_K0SEG(CIA_PCI_DENSE + CIA_PYXIS_BUG_BASE +
449 1.10 thorpej (i * 65536)));
450 1.29 christos __USE(dummy);
451 1.10 thorpej }
452 1.10 thorpej
453 1.10 thorpej /*
454 1.10 thorpej * Restore normal PCI operation.
455 1.10 thorpej */
456 1.10 thorpej alpha_mb();
457 1.10 thorpej REGVAL(CIA_CSR_CTRL) = ctrl;
458 1.10 thorpej alpha_mb();
459 1.10 thorpej
460 1.10 thorpej splx(s);
461 1.2 thorpej }
462