usb_mem.c revision 1.82 1 /* $NetBSD: usb_mem.c,v 1.82 2021/12/21 09:23:41 skrll Exp $ */
2
3 /*
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Lennart Augustsson (lennart (at) augustsson.net) at
9 * Carlstedt Research & Technology.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 /*
34 * USB DMA memory allocation.
35 * We need to allocate a lot of small (many 8 byte, some larger)
36 * memory blocks that can be used for DMA. Using the bus_dma
37 * routines directly would incur large overheads in space and time.
38 */
39
40 #include <sys/cdefs.h>
41 __KERNEL_RCSID(0, "$NetBSD: usb_mem.c,v 1.82 2021/12/21 09:23:41 skrll Exp $");
42
43 #ifdef _KERNEL_OPT
44 #include "opt_usb.h"
45 #endif
46
47 #include <sys/param.h>
48 #include <sys/bus.h>
49 #include <sys/cpu.h>
50 #include <sys/device.h> /* for usbdivar.h */
51 #include <sys/kernel.h>
52 #include <sys/kmem.h>
53 #include <sys/once.h>
54 #include <sys/queue.h>
55 #include <sys/systm.h>
56
57 #include <dev/usb/usb.h>
58 #include <dev/usb/usbdi.h>
59 #include <dev/usb/usbdivar.h> /* just for usb_dma_t */
60 #include <dev/usb/usbhist.h>
61 #include <dev/usb/usb_mem.h>
62
63 #define DPRINTF(FMT,A,B,C,D) USBHIST_LOG(usbdebug,FMT,A,B,C,D)
64 #define DPRINTFN(N,FMT,A,B,C,D) USBHIST_LOGN(usbdebug,N,FMT,A,B,C,D)
65
66 #define USB_MEM_SMALL roundup(64, CACHE_LINE_SIZE)
67 #define USB_MEM_CHUNKS 64
68 #define USB_MEM_BLOCK (USB_MEM_SMALL * USB_MEM_CHUNKS)
69
70 /* This struct is overlayed on free fragments. */
71 struct usb_frag_dma {
72 usb_dma_block_t *ufd_block;
73 u_int ufd_offs;
74 LIST_ENTRY(usb_frag_dma) ufd_next;
75 };
76
77 Static int usb_block_allocmem(bus_dma_tag_t, size_t, size_t,
78 u_int, usb_dma_block_t **);
79 Static void usb_block_freemem(usb_dma_block_t *);
80
81 LIST_HEAD(usb_dma_block_qh, usb_dma_block);
82 Static struct usb_dma_block_qh usb_blk_freelist =
83 LIST_HEAD_INITIALIZER(usb_blk_freelist);
84 kmutex_t usb_blk_lock;
85
86 #ifdef DEBUG
87 Static struct usb_dma_block_qh usb_blk_fraglist =
88 LIST_HEAD_INITIALIZER(usb_blk_fraglist);
89 Static struct usb_dma_block_qh usb_blk_fulllist =
90 LIST_HEAD_INITIALIZER(usb_blk_fulllist);
91 #endif
92 Static u_int usb_blk_nfree = 0;
93 /* XXX should have different free list for different tags (for speed) */
94 Static LIST_HEAD(, usb_frag_dma) usb_frag_freelist =
95 LIST_HEAD_INITIALIZER(usb_frag_freelist);
96
97 Static int usb_mem_init(void);
98
99 Static int
100 usb_mem_init(void)
101 {
102
103 mutex_init(&usb_blk_lock, MUTEX_DEFAULT, IPL_NONE);
104 return 0;
105 }
106
107 Static int
108 usb_block_allocmem(bus_dma_tag_t tag, size_t size, size_t align,
109 u_int flags, usb_dma_block_t **dmap)
110 {
111 usb_dma_block_t *b;
112 int error;
113
114 USBHIST_FUNC();
115 USBHIST_CALLARGS(usbdebug, "size=%ju align=%ju flags=%#jx", size, align, flags, 0);
116
117 ASSERT_SLEEPABLE();
118 KASSERT(size != 0);
119 KASSERT(mutex_owned(&usb_blk_lock));
120
121 #ifdef USB_FRAG_DMA_WORKAROUND
122 flags |= USBMALLOC_ZERO;
123 #endif
124
125 bool multiseg = (flags & USBMALLOC_MULTISEG) != 0;
126 bool coherent = (flags & USBMALLOC_COHERENT) != 0;
127 bool zero = (flags & USBMALLOC_ZERO) != 0;
128 u_int dmaflags = coherent ? USB_DMA_COHERENT : 0;
129
130 /* First check the free list. */
131 LIST_FOREACH(b, &usb_blk_freelist, next) {
132 /* Don't allocate multiple segments to unwilling callers */
133 if (b->nsegs != 1 && !multiseg)
134 continue;
135 if (b->tag == tag &&
136 b->size >= size &&
137 b->align >= align &&
138 (b->flags & USB_DMA_COHERENT) == dmaflags) {
139 LIST_REMOVE(b, next);
140 usb_blk_nfree--;
141 *dmap = b;
142 if (zero) {
143 memset(b->kaddr, 0, b->size);
144 bus_dmamap_sync(b->tag, b->map, 0, b->size,
145 BUS_DMASYNC_PREWRITE);
146 }
147 DPRINTFN(6, "free list size=%ju", b->size, 0, 0, 0);
148 return 0;
149 }
150 }
151
152 DPRINTFN(6, "no freelist entry", 0, 0, 0, 0);
153 mutex_exit(&usb_blk_lock);
154
155 b = kmem_zalloc(sizeof(*b), KM_SLEEP);
156 b->tag = tag;
157 b->size = size;
158 b->align = align;
159 b->flags = dmaflags;
160
161 if (!multiseg)
162 /* Caller wants one segment */
163 b->nsegs = 1;
164 else
165 b->nsegs = howmany(size, PAGE_SIZE);
166
167 b->segs = kmem_alloc(b->nsegs * sizeof(*b->segs), KM_SLEEP);
168 b->nsegs_alloc = b->nsegs;
169
170 error = bus_dmamem_alloc(tag, b->size, align, 0, b->segs, b->nsegs,
171 &b->nsegs, BUS_DMA_WAITOK);
172 if (error)
173 goto free0;
174
175 error = bus_dmamem_map(tag, b->segs, b->nsegs, b->size, &b->kaddr,
176 BUS_DMA_WAITOK | (coherent ? BUS_DMA_COHERENT : 0));
177 if (error)
178 goto free1;
179
180 error = bus_dmamap_create(tag, b->size, b->nsegs, b->size, 0,
181 BUS_DMA_WAITOK, &b->map);
182 if (error)
183 goto unmap;
184
185 error = bus_dmamap_load(tag, b->map, b->kaddr, b->size, NULL,
186 BUS_DMA_WAITOK);
187 if (error)
188 goto destroy;
189
190 *dmap = b;
191
192 if (zero) {
193 memset(b->kaddr, 0, b->size);
194 bus_dmamap_sync(b->tag, b->map, 0, b->size,
195 BUS_DMASYNC_PREWRITE);
196 }
197
198 mutex_enter(&usb_blk_lock);
199
200 return 0;
201
202 destroy:
203 bus_dmamap_destroy(tag, b->map);
204 unmap:
205 bus_dmamem_unmap(tag, b->kaddr, b->size);
206 free1:
207 bus_dmamem_free(tag, b->segs, b->nsegs);
208 free0:
209 kmem_free(b->segs, b->nsegs_alloc * sizeof(*b->segs));
210 kmem_free(b, sizeof(*b));
211 mutex_enter(&usb_blk_lock);
212
213 return USBD_NOMEM;
214 }
215
216 #if 0
217 void
218 usb_block_real_freemem(usb_dma_block_t *b)
219 {
220 ASSERT_SLEEPABLE();
221
222 bus_dmamap_unload(b->tag, b->map);
223 bus_dmamap_destroy(b->tag, b->map);
224 bus_dmamem_unmap(b->tag, b->kaddr, b->size);
225 bus_dmamem_free(b->tag, b->segs, b->nsegs);
226 kmem_free(b->segs, b->nsegs_alloc * sizeof(*b->segs));
227 kmem_free(b, sizeof(*b));
228 }
229 #endif
230
231 #ifdef DEBUG
232 static bool
233 usb_valid_block_p(usb_dma_block_t *b, struct usb_dma_block_qh *qh)
234 {
235 usb_dma_block_t *xb;
236 LIST_FOREACH(xb, qh, next) {
237 if (xb == b)
238 return true;
239 }
240 return false;
241 }
242 #endif
243
244 /*
245 * Do not free the memory unconditionally since we might be called
246 * from an interrupt context and that is BAD.
247 * XXX when should we really free?
248 */
249 Static void
250 usb_block_freemem(usb_dma_block_t *b)
251 {
252 USBHIST_FUNC();
253 USBHIST_CALLARGS(usbdebug, "size=%ju", b->size, 0, 0, 0);
254
255 KASSERT(mutex_owned(&usb_blk_lock));
256
257 #ifdef DEBUG
258 LIST_REMOVE(b, next);
259 #endif
260 LIST_INSERT_HEAD(&usb_blk_freelist, b, next);
261 usb_blk_nfree++;
262 }
263
264 int
265 usb_allocmem(struct usbd_bus *bus, size_t size, size_t align, u_int flags,
266 usb_dma_t *p)
267 {
268 bus_dma_tag_t tag = bus->ub_dmatag;
269 usbd_status err;
270 struct usb_frag_dma *f;
271 usb_dma_block_t *b;
272 int i;
273 static ONCE_DECL(init_control);
274
275 USBHIST_FUNC(); USBHIST_CALLED(usbdebug);
276
277 ASSERT_SLEEPABLE();
278
279 RUN_ONCE(&init_control, usb_mem_init);
280
281 u_int dmaflags = (flags & USBMALLOC_COHERENT) ? USB_DMA_COHERENT : 0;
282
283 /* If the request is large then just use a full block. */
284 if (size > USB_MEM_SMALL || align > USB_MEM_SMALL) {
285 DPRINTFN(1, "large alloc %jd", size, 0, 0, 0);
286 size = (size + USB_MEM_BLOCK - 1) & ~(USB_MEM_BLOCK - 1);
287 mutex_enter(&usb_blk_lock);
288 err = usb_block_allocmem(tag, size, align, flags,
289 &p->udma_block);
290 if (!err) {
291 #ifdef DEBUG
292 LIST_INSERT_HEAD(&usb_blk_fulllist, p->udma_block, next);
293 #endif
294 p->udma_block->flags = USB_DMA_FULLBLOCK | dmaflags;
295 p->udma_offs = 0;
296 }
297 mutex_exit(&usb_blk_lock);
298 return err;
299 }
300
301 mutex_enter(&usb_blk_lock);
302 /* Check for free fragments. */
303 LIST_FOREACH(f, &usb_frag_freelist, ufd_next) {
304 KDASSERTMSG(usb_valid_block_p(f->ufd_block, &usb_blk_fraglist),
305 "%s: usb frag %p: unknown block pointer %p",
306 __func__, f, f->ufd_block);
307 if (f->ufd_block->tag == tag &&
308 (f->ufd_block->flags & USB_DMA_COHERENT) == dmaflags)
309 break;
310 }
311 if (f == NULL) {
312 DPRINTFN(1, "adding fragments", 0, 0, 0, 0);
313
314 err = usb_block_allocmem(tag, USB_MEM_BLOCK, USB_MEM_SMALL,
315 flags, &b);
316 if (err) {
317 mutex_exit(&usb_blk_lock);
318 return err;
319 }
320 #ifdef DEBUG
321 LIST_INSERT_HEAD(&usb_blk_fraglist, b, next);
322 #endif
323 b->flags = 0;
324 for (i = 0; i < USB_MEM_BLOCK; i += USB_MEM_SMALL) {
325 f = (struct usb_frag_dma *)((char *)b->kaddr + i);
326 f->ufd_block = b;
327 f->ufd_offs = i;
328 LIST_INSERT_HEAD(&usb_frag_freelist, f, ufd_next);
329 #ifdef USB_FRAG_DMA_WORKAROUND
330 i += 1 * USB_MEM_SMALL;
331 #endif
332 }
333 f = LIST_FIRST(&usb_frag_freelist);
334 }
335 p->udma_block = f->ufd_block;
336 p->udma_offs = f->ufd_offs;
337 #ifdef USB_FRAG_DMA_WORKAROUND
338 p->udma_offs += USB_MEM_SMALL;
339 #endif
340 LIST_REMOVE(f, ufd_next);
341 mutex_exit(&usb_blk_lock);
342 DPRINTFN(5, "use frag=%#jx size=%jd", (uintptr_t)f, size, 0, 0);
343
344 return 0;
345 }
346
347 void
348 usb_freemem(struct usbd_bus *bus, usb_dma_t *p)
349 {
350 struct usb_frag_dma *f;
351
352 USBHIST_FUNC(); USBHIST_CALLED(usbdebug);
353
354 mutex_enter(&usb_blk_lock);
355 if (p->udma_block->flags & USB_DMA_FULLBLOCK) {
356 KDASSERTMSG(usb_valid_block_p(p->udma_block, &usb_blk_fulllist),
357 "%s: dma %p: invalid block pointer %p",
358 __func__, p, p->udma_block);
359 DPRINTFN(1, "large free", 0, 0, 0, 0);
360 usb_block_freemem(p->udma_block);
361 mutex_exit(&usb_blk_lock);
362 return;
363 }
364 KDASSERTMSG(usb_valid_block_p(p->udma_block, &usb_blk_fraglist),
365 "%s: dma %p: invalid block pointer %p",
366 __func__, p, p->udma_block);
367 //usb_syncmem(p, 0, USB_MEM_SMALL, BUS_DMASYNC_POSTREAD);
368 f = KERNADDR(p, 0);
369 #ifdef USB_FRAG_DMA_WORKAROUND
370 f = (void *)((uintptr_t)f - USB_MEM_SMALL);
371 #endif
372 f->ufd_block = p->udma_block;
373 f->ufd_offs = p->udma_offs;
374 #ifdef USB_FRAG_DMA_WORKAROUND
375 f->ufd_offs -= USB_MEM_SMALL;
376 #endif
377 LIST_INSERT_HEAD(&usb_frag_freelist, f, ufd_next);
378 mutex_exit(&usb_blk_lock);
379 DPRINTFN(5, "frag=%#jx", (uintptr_t)f, 0, 0, 0);
380 }
381
382 bus_addr_t
383 usb_dmaaddr(usb_dma_t *dma, unsigned int offset)
384 {
385 unsigned int i;
386 bus_size_t seg_offs;
387
388 offset += dma->udma_offs;
389
390 KASSERTMSG(offset < dma->udma_block->size, "offset %d vs %zu", offset,
391 dma->udma_block->size);
392
393 if (dma->udma_block->nsegs == 1) {
394 KASSERT(dma->udma_block->map->dm_segs[0].ds_len > offset);
395 return dma->udma_block->map->dm_segs[0].ds_addr + offset;
396 }
397
398 /*
399 * Search for a bus_segment_t corresponding to this offset. With no
400 * record of the offset in the map to a particular dma_segment_t, we
401 * have to iterate from the start of the list each time. Could be
402 * improved
403 */
404 seg_offs = 0;
405 for (i = 0; i < dma->udma_block->nsegs; i++) {
406 if (seg_offs + dma->udma_block->map->dm_segs[i].ds_len > offset)
407 break;
408
409 seg_offs += dma->udma_block->map->dm_segs[i].ds_len;
410 }
411
412 KASSERT(i != dma->udma_block->nsegs);
413 offset -= seg_offs;
414 return dma->udma_block->map->dm_segs[i].ds_addr + offset;
415 }
416
417 void
418 usb_syncmem(usb_dma_t *p, bus_addr_t offset, bus_size_t len, int ops)
419 {
420
421 bus_dmamap_sync(p->udma_block->tag, p->udma_block->map,
422 p->udma_offs + offset, len, ops);
423 }
424