Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * DMA memory management for framework level HCD code (hc_driver) |
| 3 | * |
| 4 | * This implementation plugs in through generic "usb_bus" level methods, |
Rahul Bedarkar | 025d443 | 2014-01-04 11:24:41 +0530 | [diff] [blame] | 5 | * and should work with all USB controllers, regardless of bus type. |
Greg Kroah-Hartman | b65fba3 | 2016-10-28 17:16:36 -0400 | [diff] [blame] | 6 | * |
| 7 | * Released under the GPLv2 only. |
| 8 | * SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/device.h> |
| 15 | #include <linux/mm.h> |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 16 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/dma-mapping.h> |
| 18 | #include <linux/dmapool.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/usb.h> |
Eric Lescouet | 27729aa | 2010-04-24 23:21:52 +0200 | [diff] [blame] | 20 | #include <linux/usb/hcd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | |
| 23 | /* |
| 24 | * DMA-Coherent Buffers |
| 25 | */ |
| 26 | |
| 27 | /* FIXME tune these based on pool statistics ... */ |
Sebastian Andrzej Siewior | 5efd2ea | 2014-12-05 15:13:54 +0100 | [diff] [blame] | 28 | static size_t pool_max[HCD_BUFFER_POOLS] = { |
| 29 | 32, 128, 512, 2048, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | }; |
| 31 | |
Sebastian Andrzej Siewior | 5efd2ea | 2014-12-05 15:13:54 +0100 | [diff] [blame] | 32 | void __init usb_init_pool_max(void) |
| 33 | { |
| 34 | /* |
| 35 | * The pool_max values must never be smaller than |
| 36 | * ARCH_KMALLOC_MINALIGN. |
| 37 | */ |
| 38 | if (ARCH_KMALLOC_MINALIGN <= 32) |
| 39 | ; /* Original value is okay */ |
| 40 | else if (ARCH_KMALLOC_MINALIGN <= 64) |
| 41 | pool_max[0] = 64; |
| 42 | else if (ARCH_KMALLOC_MINALIGN <= 128) |
| 43 | pool_max[0] = 0; /* Don't use this pool */ |
| 44 | else |
| 45 | BUILD_BUG(); /* We don't allow this */ |
| 46 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* SETUP primitives */ |
| 49 | |
| 50 | /** |
| 51 | * hcd_buffer_create - initialize buffer pools |
| 52 | * @hcd: the bus whose buffer pools are to be initialized |
| 53 | * Context: !in_interrupt() |
| 54 | * |
| 55 | * Call this as part of initializing a host controller that uses the dma |
| 56 | * memory allocators. It initializes some pools of dma-coherent memory that |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 57 | * will be shared by all drivers using that controller. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | * |
| 59 | * Call hcd_buffer_destroy() to clean up after using those pools. |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 60 | * |
| 61 | * Return: 0 if successful. A negative errno value otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | */ |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 63 | int hcd_buffer_create(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 65 | char name[16]; |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 66 | int i, size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Geert Uytterhoeven | 58f2266 | 2016-02-16 16:10:57 +0100 | [diff] [blame] | 68 | if (!IS_ENABLED(CONFIG_HAS_DMA) || |
| 69 | (!hcd->self.controller->dma_mask && |
| 70 | !(hcd->driver->flags & HCD_LOCAL_MEM))) |
Chris Humbert | bd39b7f | 2005-11-28 09:29:23 -0800 | [diff] [blame] | 71 | return 0; |
| 72 | |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 73 | for (i = 0; i < HCD_BUFFER_POOLS; i++) { |
| 74 | size = pool_max[i]; |
| 75 | if (!size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | continue; |
Nizam Haider | 424dd7d | 2015-04-29 16:19:33 +0530 | [diff] [blame] | 77 | snprintf(name, sizeof(name), "buffer-%d", size); |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 78 | hcd->pool[i] = dma_pool_create(name, hcd->self.controller, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | size, size, 0); |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 80 | if (!hcd->pool[i]) { |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 81 | hcd_buffer_destroy(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | return -ENOMEM; |
| 83 | } |
| 84 | } |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | |
| 89 | /** |
| 90 | * hcd_buffer_destroy - deallocate buffer pools |
| 91 | * @hcd: the bus whose buffer pools are to be destroyed |
| 92 | * Context: !in_interrupt() |
| 93 | * |
| 94 | * This frees the buffer pools created by hcd_buffer_create(). |
| 95 | */ |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 96 | void hcd_buffer_destroy(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 98 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Geert Uytterhoeven | 58f2266 | 2016-02-16 16:10:57 +0100 | [diff] [blame] | 100 | if (!IS_ENABLED(CONFIG_HAS_DMA)) |
| 101 | return; |
| 102 | |
Greg Kroah-Hartman | 2c044a4 | 2008-01-30 15:21:33 -0800 | [diff] [blame] | 103 | for (i = 0; i < HCD_BUFFER_POOLS; i++) { |
| 104 | struct dma_pool *pool = hcd->pool[i]; |
Nizam Haider | 424dd7d | 2015-04-29 16:19:33 +0530 | [diff] [blame] | 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | if (pool) { |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 107 | dma_pool_destroy(pool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | hcd->pool[i] = NULL; |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | |
Christoph Lameter | 441e143 | 2006-12-06 20:33:19 -0800 | [diff] [blame] | 114 | /* sometimes alloc/free could use kmalloc with GFP_DMA, for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | * better sharing and to leverage mm/slab.c intelligence. |
| 116 | */ |
| 117 | |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 118 | void *hcd_buffer_alloc( |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 119 | struct usb_bus *bus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | size_t size, |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 121 | gfp_t mem_flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | dma_addr_t *dma |
| 123 | ) |
| 124 | { |
Alan Stern | 1720058 | 2006-08-30 11:32:52 -0400 | [diff] [blame] | 125 | struct usb_hcd *hcd = bus_to_hcd(bus); |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 126 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Chunfeng Yun | f5e6253 | 2016-04-28 11:42:20 +0800 | [diff] [blame] | 128 | if (size == 0) |
| 129 | return NULL; |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | /* some USB hosts just use PIO */ |
Geert Uytterhoeven | 58f2266 | 2016-02-16 16:10:57 +0100 | [diff] [blame] | 132 | if (!IS_ENABLED(CONFIG_HAS_DMA) || |
| 133 | (!bus->controller->dma_mask && |
| 134 | !(hcd->driver->flags & HCD_LOCAL_MEM))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | *dma = ~(dma_addr_t) 0; |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 136 | return kmalloc(size, mem_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | for (i = 0; i < HCD_BUFFER_POOLS; i++) { |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 140 | if (size <= pool_max[i]) |
| 141 | return dma_pool_alloc(hcd->pool[i], mem_flags, dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
Johannes Berg | a8aa401 | 2009-04-18 11:00:39 +0200 | [diff] [blame] | 143 | return dma_alloc_coherent(hcd->self.controller, size, dma, mem_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 146 | void hcd_buffer_free( |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 147 | struct usb_bus *bus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | size_t size, |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 149 | void *addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | dma_addr_t dma |
| 151 | ) |
| 152 | { |
Alan Stern | 1720058 | 2006-08-30 11:32:52 -0400 | [diff] [blame] | 153 | struct usb_hcd *hcd = bus_to_hcd(bus); |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 154 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | if (!addr) |
| 157 | return; |
| 158 | |
Geert Uytterhoeven | 58f2266 | 2016-02-16 16:10:57 +0100 | [diff] [blame] | 159 | if (!IS_ENABLED(CONFIG_HAS_DMA) || |
| 160 | (!bus->controller->dma_mask && |
| 161 | !(hcd->driver->flags & HCD_LOCAL_MEM))) { |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 162 | kfree(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | return; |
| 164 | } |
| 165 | |
| 166 | for (i = 0; i < HCD_BUFFER_POOLS; i++) { |
Tobias Ollmann | 0828376 | 2010-12-25 11:17:01 +0100 | [diff] [blame] | 167 | if (size <= pool_max[i]) { |
| 168 | dma_pool_free(hcd->pool[i], addr, dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | return; |
| 170 | } |
| 171 | } |
Oliver Neukum | 1a68f71 | 2007-01-25 11:17:41 +0100 | [diff] [blame] | 172 | dma_free_coherent(hcd->self.controller, size, addr, dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |