Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Device tree helpers for DMA request / controller |
| 4 | * |
| 5 | * Based on of_gpio.c |
| 6 | * |
| 7 | * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/device.h> |
| 11 | #include <linux/err.h> |
| 12 | #include <linux/module.h> |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 13 | #include <linux/mutex.h> |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 14 | #include <linux/slab.h> |
| 15 | #include <linux/of.h> |
| 16 | #include <linux/of_dma.h> |
| 17 | |
Geert Uytterhoeven | c3c431d | 2020-01-21 10:33:11 +0100 | [diff] [blame] | 18 | #include "dmaengine.h" |
| 19 | |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 20 | static LIST_HEAD(of_dma_list); |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 21 | static DEFINE_MUTEX(of_dma_lock); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 22 | |
| 23 | /** |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 24 | * of_dma_find_controller - Get a DMA controller in DT DMA helpers list |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 25 | * @dma_spec: pointer to DMA specifier as found in the device tree |
| 26 | * |
| 27 | * Finds a DMA controller with matching device node and number for dma cells |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 28 | * in a list of registered DMA controllers. If a match is found a valid pointer |
| 29 | * to the DMA data stored is retuned. A NULL pointer is returned if no match is |
| 30 | * found. |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 31 | */ |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 32 | static struct of_dma *of_dma_find_controller(struct of_phandle_args *dma_spec) |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 33 | { |
| 34 | struct of_dma *ofdma; |
| 35 | |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 36 | list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers) |
Lars-Peter Clausen | 8552bb4 | 2013-04-22 10:33:33 +0200 | [diff] [blame] | 37 | if (ofdma->of_node == dma_spec->np) |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 38 | return ofdma; |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 39 | |
Rob Herring | c6c9304 | 2017-07-18 16:42:58 -0500 | [diff] [blame] | 40 | pr_debug("%s: can't find DMA controller %pOF\n", __func__, |
| 41 | dma_spec->np); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 42 | |
| 43 | return NULL; |
| 44 | } |
| 45 | |
| 46 | /** |
Peter Ujfalusi | 56f13c0 | 2015-04-09 12:35:47 +0300 | [diff] [blame] | 47 | * of_dma_router_xlate - translation function for router devices |
| 48 | * @dma_spec: pointer to DMA specifier as found in the device tree |
Lee Jones | 7d8c914 | 2020-07-14 12:15:31 +0100 | [diff] [blame] | 49 | * @ofdma: pointer to DMA controller data (router information) |
Peter Ujfalusi | 56f13c0 | 2015-04-09 12:35:47 +0300 | [diff] [blame] | 50 | * |
| 51 | * The function creates new dma_spec to be passed to the router driver's |
| 52 | * of_dma_route_allocate() function to prepare a dma_spec which will be used |
| 53 | * to request channel from the real DMA controller. |
| 54 | */ |
| 55 | static struct dma_chan *of_dma_router_xlate(struct of_phandle_args *dma_spec, |
| 56 | struct of_dma *ofdma) |
| 57 | { |
| 58 | struct dma_chan *chan; |
| 59 | struct of_dma *ofdma_target; |
| 60 | struct of_phandle_args dma_spec_target; |
| 61 | void *route_data; |
| 62 | |
| 63 | /* translate the request for the real DMA controller */ |
| 64 | memcpy(&dma_spec_target, dma_spec, sizeof(dma_spec_target)); |
| 65 | route_data = ofdma->of_dma_route_allocate(&dma_spec_target, ofdma); |
| 66 | if (IS_ERR(route_data)) |
| 67 | return NULL; |
| 68 | |
| 69 | ofdma_target = of_dma_find_controller(&dma_spec_target); |
Peter Ujfalusi | eda97cb | 2021-07-17 22:00:21 +0300 | [diff] [blame] | 70 | if (!ofdma_target) { |
| 71 | ofdma->dma_router->route_free(ofdma->dma_router->dev, |
| 72 | route_data); |
| 73 | chan = ERR_PTR(-EPROBE_DEFER); |
| 74 | goto err; |
| 75 | } |
Peter Ujfalusi | 56f13c0 | 2015-04-09 12:35:47 +0300 | [diff] [blame] | 76 | |
| 77 | chan = ofdma_target->of_dma_xlate(&dma_spec_target, ofdma_target); |
Peter Ujfalusi | 5b2aa9f | 2020-08-06 13:49:28 +0300 | [diff] [blame] | 78 | if (IS_ERR_OR_NULL(chan)) { |
Peter Ujfalusi | 56f13c0 | 2015-04-09 12:35:47 +0300 | [diff] [blame] | 79 | ofdma->dma_router->route_free(ofdma->dma_router->dev, |
| 80 | route_data); |
Peter Ujfalusi | 5b2aa9f | 2020-08-06 13:49:28 +0300 | [diff] [blame] | 81 | } else { |
Peter Ujfalusi | 4f910c0 | 2020-12-08 11:04:27 +0200 | [diff] [blame] | 82 | int ret = 0; |
| 83 | |
Peter Ujfalusi | 5b2aa9f | 2020-08-06 13:49:28 +0300 | [diff] [blame] | 84 | chan->router = ofdma->dma_router; |
| 85 | chan->route_data = route_data; |
Peter Ujfalusi | 4f910c0 | 2020-12-08 11:04:27 +0200 | [diff] [blame] | 86 | |
| 87 | if (chan->device->device_router_config) |
| 88 | ret = chan->device->device_router_config(chan); |
| 89 | |
| 90 | if (ret) { |
| 91 | dma_release_channel(chan); |
| 92 | chan = ERR_PTR(ret); |
| 93 | } |
Peter Ujfalusi | 56f13c0 | 2015-04-09 12:35:47 +0300 | [diff] [blame] | 94 | } |
| 95 | |
Peter Ujfalusi | eda97cb | 2021-07-17 22:00:21 +0300 | [diff] [blame] | 96 | err: |
Peter Ujfalusi | 56f13c0 | 2015-04-09 12:35:47 +0300 | [diff] [blame] | 97 | /* |
| 98 | * Need to put the node back since the ofdma->of_dma_route_allocate |
| 99 | * has taken it for generating the new, translated dma_spec |
| 100 | */ |
| 101 | of_node_put(dma_spec_target.np); |
| 102 | return chan; |
| 103 | } |
| 104 | |
| 105 | /** |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 106 | * of_dma_controller_register - Register a DMA controller to DT DMA helpers |
| 107 | * @np: device node of DMA controller |
| 108 | * @of_dma_xlate: translation function which converts a phandle |
| 109 | * arguments list into a dma_chan structure |
Lee Jones | 7d8c914 | 2020-07-14 12:15:31 +0100 | [diff] [blame] | 110 | * @data: pointer to controller specific data to be used by |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 111 | * translation function |
| 112 | * |
| 113 | * Returns 0 on success or appropriate errno value on error. |
| 114 | * |
| 115 | * Allocated memory should be freed with appropriate of_dma_controller_free() |
| 116 | * call. |
| 117 | */ |
| 118 | int of_dma_controller_register(struct device_node *np, |
| 119 | struct dma_chan *(*of_dma_xlate) |
| 120 | (struct of_phandle_args *, struct of_dma *), |
| 121 | void *data) |
| 122 | { |
| 123 | struct of_dma *ofdma; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 124 | |
| 125 | if (!np || !of_dma_xlate) { |
| 126 | pr_err("%s: not enough information provided\n", __func__); |
| 127 | return -EINVAL; |
| 128 | } |
| 129 | |
| 130 | ofdma = kzalloc(sizeof(*ofdma), GFP_KERNEL); |
| 131 | if (!ofdma) |
| 132 | return -ENOMEM; |
| 133 | |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 134 | ofdma->of_node = np; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 135 | ofdma->of_dma_xlate = of_dma_xlate; |
| 136 | ofdma->of_dma_data = data; |
| 137 | |
| 138 | /* Now queue of_dma controller structure in list */ |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 139 | mutex_lock(&of_dma_lock); |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 140 | list_add_tail(&ofdma->of_dma_controllers, &of_dma_list); |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 141 | mutex_unlock(&of_dma_lock); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | EXPORT_SYMBOL_GPL(of_dma_controller_register); |
| 146 | |
| 147 | /** |
| 148 | * of_dma_controller_free - Remove a DMA controller from DT DMA helpers list |
| 149 | * @np: device node of DMA controller |
| 150 | * |
| 151 | * Memory allocated by of_dma_controller_register() is freed here. |
| 152 | */ |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 153 | void of_dma_controller_free(struct device_node *np) |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 154 | { |
| 155 | struct of_dma *ofdma; |
| 156 | |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 157 | mutex_lock(&of_dma_lock); |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 158 | |
| 159 | list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers) |
| 160 | if (ofdma->of_node == np) { |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 161 | list_del(&ofdma->of_dma_controllers); |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 162 | kfree(ofdma); |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 163 | break; |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 164 | } |
| 165 | |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 166 | mutex_unlock(&of_dma_lock); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 167 | } |
| 168 | EXPORT_SYMBOL_GPL(of_dma_controller_free); |
| 169 | |
| 170 | /** |
Peter Ujfalusi | 56f13c0 | 2015-04-09 12:35:47 +0300 | [diff] [blame] | 171 | * of_dma_router_register - Register a DMA router to DT DMA helpers as a |
| 172 | * controller |
| 173 | * @np: device node of DMA router |
| 174 | * @of_dma_route_allocate: setup function for the router which need to |
| 175 | * modify the dma_spec for the DMA controller to |
| 176 | * use and to set up the requested route. |
| 177 | * @dma_router: pointer to dma_router structure to be used when |
| 178 | * the route need to be free up. |
| 179 | * |
| 180 | * Returns 0 on success or appropriate errno value on error. |
| 181 | * |
| 182 | * Allocated memory should be freed with appropriate of_dma_controller_free() |
| 183 | * call. |
| 184 | */ |
| 185 | int of_dma_router_register(struct device_node *np, |
| 186 | void *(*of_dma_route_allocate) |
| 187 | (struct of_phandle_args *, struct of_dma *), |
| 188 | struct dma_router *dma_router) |
| 189 | { |
| 190 | struct of_dma *ofdma; |
| 191 | |
| 192 | if (!np || !of_dma_route_allocate || !dma_router) { |
| 193 | pr_err("%s: not enough information provided\n", __func__); |
| 194 | return -EINVAL; |
| 195 | } |
| 196 | |
| 197 | ofdma = kzalloc(sizeof(*ofdma), GFP_KERNEL); |
| 198 | if (!ofdma) |
| 199 | return -ENOMEM; |
| 200 | |
| 201 | ofdma->of_node = np; |
| 202 | ofdma->of_dma_xlate = of_dma_router_xlate; |
| 203 | ofdma->of_dma_route_allocate = of_dma_route_allocate; |
| 204 | ofdma->dma_router = dma_router; |
| 205 | |
| 206 | /* Now queue of_dma controller structure in list */ |
| 207 | mutex_lock(&of_dma_lock); |
| 208 | list_add_tail(&ofdma->of_dma_controllers, &of_dma_list); |
| 209 | mutex_unlock(&of_dma_lock); |
| 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | EXPORT_SYMBOL_GPL(of_dma_router_register); |
| 214 | |
| 215 | /** |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 216 | * of_dma_match_channel - Check if a DMA specifier matches name |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 217 | * @np: device node to look for DMA channels |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 218 | * @name: channel name to be matched |
| 219 | * @index: index of DMA specifier in list of DMA specifiers |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 220 | * @dma_spec: pointer to DMA specifier as found in the device tree |
| 221 | * |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 222 | * Check if the DMA specifier pointed to by the index in a list of DMA |
| 223 | * specifiers, matches the name provided. Returns 0 if the name matches and |
| 224 | * a valid pointer to the DMA specifier is found. Otherwise returns -ENODEV. |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 225 | */ |
Markus Pargmann | bef29ec | 2013-02-24 16:36:09 +0100 | [diff] [blame] | 226 | static int of_dma_match_channel(struct device_node *np, const char *name, |
| 227 | int index, struct of_phandle_args *dma_spec) |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 228 | { |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 229 | const char *s; |
| 230 | |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 231 | if (of_property_read_string_index(np, "dma-names", index, &s)) |
| 232 | return -ENODEV; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 233 | |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 234 | if (strcmp(name, s)) |
| 235 | return -ENODEV; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 236 | |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 237 | if (of_parse_phandle_with_args(np, "dmas", "#dma-cells", index, |
| 238 | dma_spec)) |
| 239 | return -ENODEV; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 240 | |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 241 | return 0; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | /** |
| 245 | * of_dma_request_slave_channel - Get the DMA slave channel |
| 246 | * @np: device node to get DMA request from |
| 247 | * @name: name of desired channel |
| 248 | * |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 249 | * Returns pointer to appropriate DMA channel on success or an error pointer. |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 250 | */ |
| 251 | struct dma_chan *of_dma_request_slave_channel(struct device_node *np, |
Markus Pargmann | bef29ec | 2013-02-24 16:36:09 +0100 | [diff] [blame] | 252 | const char *name) |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 253 | { |
| 254 | struct of_phandle_args dma_spec; |
| 255 | struct of_dma *ofdma; |
| 256 | struct dma_chan *chan; |
Niklas Söderlund | 20ea6be | 2016-05-11 15:15:11 +0200 | [diff] [blame] | 257 | int count, i, start; |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 258 | int ret_no_channel = -ENODEV; |
Niklas Söderlund | 20ea6be | 2016-05-11 15:15:11 +0200 | [diff] [blame] | 259 | static atomic_t last_index; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 260 | |
| 261 | if (!np || !name) { |
| 262 | pr_err("%s: not enough information provided\n", __func__); |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 263 | return ERR_PTR(-ENODEV); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 264 | } |
| 265 | |
Wolfram Sang | c914570 | 2015-01-14 15:16:28 +0100 | [diff] [blame] | 266 | /* Silently fail if there is not even the "dmas" property */ |
| 267 | if (!of_find_property(np, "dmas", NULL)) |
| 268 | return ERR_PTR(-ENODEV); |
| 269 | |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 270 | count = of_property_count_strings(np, "dma-names"); |
| 271 | if (count < 0) { |
Rob Herring | c6c9304 | 2017-07-18 16:42:58 -0500 | [diff] [blame] | 272 | pr_err("%s: dma-names property of node '%pOF' missing or empty\n", |
| 273 | __func__, np); |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 274 | return ERR_PTR(-ENODEV); |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 275 | } |
| 276 | |
Niklas Söderlund | 20ea6be | 2016-05-11 15:15:11 +0200 | [diff] [blame] | 277 | /* |
| 278 | * approximate an average distribution across multiple |
| 279 | * entries with the same name |
| 280 | */ |
| 281 | start = atomic_inc_return(&last_index); |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 282 | for (i = 0; i < count; i++) { |
Niklas Söderlund | 20ea6be | 2016-05-11 15:15:11 +0200 | [diff] [blame] | 283 | if (of_dma_match_channel(np, name, |
| 284 | (i + start) % count, |
| 285 | &dma_spec)) |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 286 | continue; |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 287 | |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 288 | mutex_lock(&of_dma_lock); |
| 289 | ofdma = of_dma_find_controller(&dma_spec); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 290 | |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 291 | if (ofdma) { |
Lars-Peter Clausen | f22eb14 | 2013-04-19 11:42:13 +0200 | [diff] [blame] | 292 | chan = ofdma->of_dma_xlate(&dma_spec, ofdma); |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 293 | } else { |
| 294 | ret_no_channel = -EPROBE_DEFER; |
Lars-Peter Clausen | f22eb14 | 2013-04-19 11:42:13 +0200 | [diff] [blame] | 295 | chan = NULL; |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 296 | } |
Lars-Peter Clausen | de61608 | 2013-04-19 11:42:14 +0200 | [diff] [blame] | 297 | |
| 298 | mutex_unlock(&of_dma_lock); |
Jon Hunter | 9743a3b | 2012-10-11 14:43:01 -0500 | [diff] [blame] | 299 | |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 300 | of_node_put(dma_spec.np); |
| 301 | |
Jon Hunter | 5ca7c10 | 2012-09-25 13:59:31 -0500 | [diff] [blame] | 302 | if (chan) |
| 303 | return chan; |
| 304 | } |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 305 | |
Stephen Warren | 0ad7c00 | 2013-11-26 10:04:22 -0700 | [diff] [blame] | 306 | return ERR_PTR(ret_no_channel); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 307 | } |
Kuninori Morimoto | 0aed112 | 2015-02-24 00:54:16 +0000 | [diff] [blame] | 308 | EXPORT_SYMBOL_GPL(of_dma_request_slave_channel); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 309 | |
| 310 | /** |
| 311 | * of_dma_simple_xlate - Simple DMA engine translation function |
| 312 | * @dma_spec: pointer to DMA specifier as found in the device tree |
Lee Jones | 7d8c914 | 2020-07-14 12:15:31 +0100 | [diff] [blame] | 313 | * @ofdma: pointer to DMA controller data |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 314 | * |
| 315 | * A simple translation function for devices that use a 32-bit value for the |
| 316 | * filter_param when calling the DMA engine dma_request_channel() function. |
| 317 | * Note that this translation function requires that #dma-cells is equal to 1 |
| 318 | * and the argument of the dma specifier is the 32-bit filter_param. Returns |
| 319 | * pointer to appropriate dma channel on success or NULL on error. |
| 320 | */ |
| 321 | struct dma_chan *of_dma_simple_xlate(struct of_phandle_args *dma_spec, |
| 322 | struct of_dma *ofdma) |
| 323 | { |
| 324 | int count = dma_spec->args_count; |
| 325 | struct of_dma_filter_info *info = ofdma->of_dma_data; |
| 326 | |
| 327 | if (!info || !info->filter_fn) |
| 328 | return NULL; |
| 329 | |
| 330 | if (count != 1) |
| 331 | return NULL; |
| 332 | |
Baolin Wang | f515131 | 2019-05-20 19:32:14 +0800 | [diff] [blame] | 333 | return __dma_request_channel(&info->dma_cap, info->filter_fn, |
| 334 | &dma_spec->args[0], dma_spec->np); |
Jon Hunter | aa3da64 | 2012-09-14 17:41:56 -0500 | [diff] [blame] | 335 | } |
| 336 | EXPORT_SYMBOL_GPL(of_dma_simple_xlate); |
Alexander Popov | 16369ef | 2014-06-25 14:52:59 +0400 | [diff] [blame] | 337 | |
| 338 | /** |
| 339 | * of_dma_xlate_by_chan_id - Translate dt property to DMA channel by channel id |
| 340 | * @dma_spec: pointer to DMA specifier as found in the device tree |
Lee Jones | 7d8c914 | 2020-07-14 12:15:31 +0100 | [diff] [blame] | 341 | * @ofdma: pointer to DMA controller data |
Alexander Popov | 16369ef | 2014-06-25 14:52:59 +0400 | [diff] [blame] | 342 | * |
| 343 | * This function can be used as the of xlate callback for DMA driver which wants |
| 344 | * to match the channel based on the channel id. When using this xlate function |
| 345 | * the #dma-cells propety of the DMA controller dt node needs to be set to 1. |
| 346 | * The data parameter of of_dma_controller_register must be a pointer to the |
| 347 | * dma_device struct the function should match upon. |
| 348 | * |
| 349 | * Returns pointer to appropriate dma channel on success or NULL on error. |
| 350 | */ |
| 351 | struct dma_chan *of_dma_xlate_by_chan_id(struct of_phandle_args *dma_spec, |
| 352 | struct of_dma *ofdma) |
| 353 | { |
| 354 | struct dma_device *dev = ofdma->of_dma_data; |
| 355 | struct dma_chan *chan, *candidate = NULL; |
| 356 | |
| 357 | if (!dev || dma_spec->args_count != 1) |
| 358 | return NULL; |
| 359 | |
| 360 | list_for_each_entry(chan, &dev->channels, device_node) |
| 361 | if (chan->chan_id == dma_spec->args[0]) { |
| 362 | candidate = chan; |
| 363 | break; |
| 364 | } |
| 365 | |
| 366 | if (!candidate) |
| 367 | return NULL; |
| 368 | |
| 369 | return dma_get_slave_channel(candidate); |
| 370 | } |
| 371 | EXPORT_SYMBOL_GPL(of_dma_xlate_by_chan_id); |