blob: 77eef8acff94e89311d9d549f046029bd4659a9b [file] [log] [blame]
Greg Kroah-Hartmanaa1f3bb2017-11-03 09:18:41 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * DMA memory management for framework level HCD code (hc_driver)
4 *
5 * This implementation plugs in through generic "usb_bus" level methods,
Rahul Bedarkar025d4432014-01-04 11:24:41 +05306 * and should work with all USB controllers, regardless of bus type.
Greg Kroah-Hartmanb65fba32016-10-28 17:16:36 -04007 *
8 * Released under the GPLv2 only.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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 Ollmann08283762010-12-25 11:17:01 +010016#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/dma-mapping.h>
18#include <linux/dmapool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/usb.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020020#include <linux/usb/hcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22
23/*
24 * DMA-Coherent Buffers
25 */
26
27/* FIXME tune these based on pool statistics ... */
Sebastian Andrzej Siewior5efd2ea2014-12-05 15:13:54 +010028static size_t pool_max[HCD_BUFFER_POOLS] = {
29 32, 128, 512, 2048,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
Sebastian Andrzej Siewior5efd2ea2014-12-05 15:13:54 +010032void __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 Torvalds1da177e2005-04-16 15:20:36 -070047
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 Belkadi626f0902013-08-02 20:10:04 +020057 * will be shared by all drivers using that controller.
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 *
59 * Call hcd_buffer_destroy() to clean up after using those pools.
Yacine Belkadi626f0902013-08-02 20:10:04 +020060 *
61 * Return: 0 if successful. A negative errno value otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 */
Oliver Neukum1a68f712007-01-25 11:17:41 +010063int hcd_buffer_create(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Oliver Neukum1a68f712007-01-25 11:17:41 +010065 char name[16];
Tobias Ollmann08283762010-12-25 11:17:01 +010066 int i, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Geert Uytterhoeven58f22662016-02-16 16:10:57 +010068 if (!IS_ENABLED(CONFIG_HAS_DMA) ||
Arnd Bergmanna8c06e42017-03-13 10:18:41 +080069 (!is_device_dma_capable(hcd->self.sysdev) &&
Geert Uytterhoeven58f22662016-02-16 16:10:57 +010070 !(hcd->driver->flags & HCD_LOCAL_MEM)))
Chris Humbertbd39b7f2005-11-28 09:29:23 -080071 return 0;
72
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -080073 for (i = 0; i < HCD_BUFFER_POOLS; i++) {
74 size = pool_max[i];
75 if (!size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 continue;
Nizam Haider424dd7d2015-04-29 16:19:33 +053077 snprintf(name, sizeof(name), "buffer-%d", size);
Arnd Bergmanna8c06e42017-03-13 10:18:41 +080078 hcd->pool[i] = dma_pool_create(name, hcd->self.sysdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 size, size, 0);
Tobias Ollmann08283762010-12-25 11:17:01 +010080 if (!hcd->pool[i]) {
Oliver Neukum1a68f712007-01-25 11:17:41 +010081 hcd_buffer_destroy(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 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 Neukum1a68f712007-01-25 11:17:41 +010096void hcd_buffer_destroy(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -080098 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Geert Uytterhoeven58f22662016-02-16 16:10:57 +0100100 if (!IS_ENABLED(CONFIG_HAS_DMA))
101 return;
102
Greg Kroah-Hartman2c044a42008-01-30 15:21:33 -0800103 for (i = 0; i < HCD_BUFFER_POOLS; i++) {
104 struct dma_pool *pool = hcd->pool[i];
Nizam Haider424dd7d2015-04-29 16:19:33 +0530105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (pool) {
Oliver Neukum1a68f712007-01-25 11:17:41 +0100107 dma_pool_destroy(pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 hcd->pool[i] = NULL;
109 }
110 }
111}
112
113
Christoph Lameter441e1432006-12-06 20:33:19 -0800114/* sometimes alloc/free could use kmalloc with GFP_DMA, for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * better sharing and to leverage mm/slab.c intelligence.
116 */
117
Oliver Neukum1a68f712007-01-25 11:17:41 +0100118void *hcd_buffer_alloc(
Tobias Ollmann08283762010-12-25 11:17:01 +0100119 struct usb_bus *bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 size_t size,
Al Viro55016f12005-10-21 03:21:58 -0400121 gfp_t mem_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 dma_addr_t *dma
123)
124{
Alan Stern17200582006-08-30 11:32:52 -0400125 struct usb_hcd *hcd = bus_to_hcd(bus);
Tobias Ollmann08283762010-12-25 11:17:01 +0100126 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Chunfeng Yunf5e62532016-04-28 11:42:20 +0800128 if (size == 0)
129 return NULL;
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* some USB hosts just use PIO */
Geert Uytterhoeven58f22662016-02-16 16:10:57 +0100132 if (!IS_ENABLED(CONFIG_HAS_DMA) ||
Arnd Bergmanna8c06e42017-03-13 10:18:41 +0800133 (!is_device_dma_capable(bus->sysdev) &&
Geert Uytterhoeven58f22662016-02-16 16:10:57 +0100134 !(hcd->driver->flags & HCD_LOCAL_MEM))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 *dma = ~(dma_addr_t) 0;
Oliver Neukum1a68f712007-01-25 11:17:41 +0100136 return kmalloc(size, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138
139 for (i = 0; i < HCD_BUFFER_POOLS; i++) {
Tobias Ollmann08283762010-12-25 11:17:01 +0100140 if (size <= pool_max[i])
141 return dma_pool_alloc(hcd->pool[i], mem_flags, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Arnd Bergmanna8c06e42017-03-13 10:18:41 +0800143 return dma_alloc_coherent(hcd->self.sysdev, size, dma, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Oliver Neukum1a68f712007-01-25 11:17:41 +0100146void hcd_buffer_free(
Tobias Ollmann08283762010-12-25 11:17:01 +0100147 struct usb_bus *bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 size_t size,
Tobias Ollmann08283762010-12-25 11:17:01 +0100149 void *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 dma_addr_t dma
151)
152{
Alan Stern17200582006-08-30 11:32:52 -0400153 struct usb_hcd *hcd = bus_to_hcd(bus);
Tobias Ollmann08283762010-12-25 11:17:01 +0100154 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if (!addr)
157 return;
158
Geert Uytterhoeven58f22662016-02-16 16:10:57 +0100159 if (!IS_ENABLED(CONFIG_HAS_DMA) ||
Arnd Bergmanna8c06e42017-03-13 10:18:41 +0800160 (!is_device_dma_capable(bus->sysdev) &&
Geert Uytterhoeven58f22662016-02-16 16:10:57 +0100161 !(hcd->driver->flags & HCD_LOCAL_MEM))) {
Oliver Neukum1a68f712007-01-25 11:17:41 +0100162 kfree(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return;
164 }
165
166 for (i = 0; i < HCD_BUFFER_POOLS; i++) {
Tobias Ollmann08283762010-12-25 11:17:01 +0100167 if (size <= pool_max[i]) {
168 dma_pool_free(hcd->pool[i], addr, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return;
170 }
171 }
Arnd Bergmanna8c06e42017-03-13 10:18:41 +0800172 dma_free_coherent(hcd->self.sysdev, size, addr, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}