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