1 // SPDX-License-Identifier: GPL-2.0-only
3 * Device tree helpers for DMA request / controller
7 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
10 #include <linux/device.h>
11 #include <linux/err.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
14 #include <linux/slab.h>
16 #include <linux/of_dma.h>
18 #include "dmaengine.h"
20 static LIST_HEAD(of_dma_list
);
21 static DEFINE_MUTEX(of_dma_lock
);
24 * of_dma_find_controller - Get a DMA controller in DT DMA helpers list
25 * @dma_spec: pointer to DMA specifier as found in the device tree
27 * Finds a DMA controller with matching device node and number for dma cells
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
32 static struct of_dma
*of_dma_find_controller(struct of_phandle_args
*dma_spec
)
36 list_for_each_entry(ofdma
, &of_dma_list
, of_dma_controllers
)
37 if (ofdma
->of_node
== dma_spec
->np
)
40 pr_debug("%s: can't find DMA controller %pOF\n", __func__
,
47 * of_dma_router_xlate - translation function for router devices
48 * @dma_spec: pointer to DMA specifier as found in the device tree
49 * @ofdma: pointer to DMA controller data (router information)
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.
55 static struct dma_chan
*of_dma_router_xlate(struct of_phandle_args
*dma_spec
,
58 struct dma_chan
*chan
;
59 struct of_dma
*ofdma_target
;
60 struct of_phandle_args dma_spec_target
;
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
))
69 ofdma_target
= of_dma_find_controller(&dma_spec_target
);
73 chan
= ofdma_target
->of_dma_xlate(&dma_spec_target
, ofdma_target
);
74 if (IS_ERR_OR_NULL(chan
)) {
75 ofdma
->dma_router
->route_free(ofdma
->dma_router
->dev
,
80 chan
->router
= ofdma
->dma_router
;
81 chan
->route_data
= route_data
;
83 if (chan
->device
->device_router_config
)
84 ret
= chan
->device
->device_router_config(chan
);
87 dma_release_channel(chan
);
93 * Need to put the node back since the ofdma->of_dma_route_allocate
94 * has taken it for generating the new, translated dma_spec
96 of_node_put(dma_spec_target
.np
);
101 * of_dma_controller_register - Register a DMA controller to DT DMA helpers
102 * @np: device node of DMA controller
103 * @of_dma_xlate: translation function which converts a phandle
104 * arguments list into a dma_chan structure
105 * @data: pointer to controller specific data to be used by
106 * translation function
108 * Returns 0 on success or appropriate errno value on error.
110 * Allocated memory should be freed with appropriate of_dma_controller_free()
113 int of_dma_controller_register(struct device_node
*np
,
114 struct dma_chan
*(*of_dma_xlate
)
115 (struct of_phandle_args
*, struct of_dma
*),
118 struct of_dma
*ofdma
;
120 if (!np
|| !of_dma_xlate
) {
121 pr_err("%s: not enough information provided\n", __func__
);
125 ofdma
= kzalloc(sizeof(*ofdma
), GFP_KERNEL
);
130 ofdma
->of_dma_xlate
= of_dma_xlate
;
131 ofdma
->of_dma_data
= data
;
133 /* Now queue of_dma controller structure in list */
134 mutex_lock(&of_dma_lock
);
135 list_add_tail(&ofdma
->of_dma_controllers
, &of_dma_list
);
136 mutex_unlock(&of_dma_lock
);
140 EXPORT_SYMBOL_GPL(of_dma_controller_register
);
143 * of_dma_controller_free - Remove a DMA controller from DT DMA helpers list
144 * @np: device node of DMA controller
146 * Memory allocated by of_dma_controller_register() is freed here.
148 void of_dma_controller_free(struct device_node
*np
)
150 struct of_dma
*ofdma
;
152 mutex_lock(&of_dma_lock
);
154 list_for_each_entry(ofdma
, &of_dma_list
, of_dma_controllers
)
155 if (ofdma
->of_node
== np
) {
156 list_del(&ofdma
->of_dma_controllers
);
161 mutex_unlock(&of_dma_lock
);
163 EXPORT_SYMBOL_GPL(of_dma_controller_free
);
166 * of_dma_router_register - Register a DMA router to DT DMA helpers as a
168 * @np: device node of DMA router
169 * @of_dma_route_allocate: setup function for the router which need to
170 * modify the dma_spec for the DMA controller to
171 * use and to set up the requested route.
172 * @dma_router: pointer to dma_router structure to be used when
173 * the route need to be free up.
175 * Returns 0 on success or appropriate errno value on error.
177 * Allocated memory should be freed with appropriate of_dma_controller_free()
180 int of_dma_router_register(struct device_node
*np
,
181 void *(*of_dma_route_allocate
)
182 (struct of_phandle_args
*, struct of_dma
*),
183 struct dma_router
*dma_router
)
185 struct of_dma
*ofdma
;
187 if (!np
|| !of_dma_route_allocate
|| !dma_router
) {
188 pr_err("%s: not enough information provided\n", __func__
);
192 ofdma
= kzalloc(sizeof(*ofdma
), GFP_KERNEL
);
197 ofdma
->of_dma_xlate
= of_dma_router_xlate
;
198 ofdma
->of_dma_route_allocate
= of_dma_route_allocate
;
199 ofdma
->dma_router
= dma_router
;
201 /* Now queue of_dma controller structure in list */
202 mutex_lock(&of_dma_lock
);
203 list_add_tail(&ofdma
->of_dma_controllers
, &of_dma_list
);
204 mutex_unlock(&of_dma_lock
);
208 EXPORT_SYMBOL_GPL(of_dma_router_register
);
211 * of_dma_match_channel - Check if a DMA specifier matches name
212 * @np: device node to look for DMA channels
213 * @name: channel name to be matched
214 * @index: index of DMA specifier in list of DMA specifiers
215 * @dma_spec: pointer to DMA specifier as found in the device tree
217 * Check if the DMA specifier pointed to by the index in a list of DMA
218 * specifiers, matches the name provided. Returns 0 if the name matches and
219 * a valid pointer to the DMA specifier is found. Otherwise returns -ENODEV.
221 static int of_dma_match_channel(struct device_node
*np
, const char *name
,
222 int index
, struct of_phandle_args
*dma_spec
)
226 if (of_property_read_string_index(np
, "dma-names", index
, &s
))
232 if (of_parse_phandle_with_args(np
, "dmas", "#dma-cells", index
,
240 * of_dma_request_slave_channel - Get the DMA slave channel
241 * @np: device node to get DMA request from
242 * @name: name of desired channel
244 * Returns pointer to appropriate DMA channel on success or an error pointer.
246 struct dma_chan
*of_dma_request_slave_channel(struct device_node
*np
,
249 struct of_phandle_args dma_spec
;
250 struct of_dma
*ofdma
;
251 struct dma_chan
*chan
;
253 int ret_no_channel
= -ENODEV
;
254 static atomic_t last_index
;
257 pr_err("%s: not enough information provided\n", __func__
);
258 return ERR_PTR(-ENODEV
);
261 /* Silently fail if there is not even the "dmas" property */
262 if (!of_find_property(np
, "dmas", NULL
))
263 return ERR_PTR(-ENODEV
);
265 count
= of_property_count_strings(np
, "dma-names");
267 pr_err("%s: dma-names property of node '%pOF' missing or empty\n",
269 return ERR_PTR(-ENODEV
);
273 * approximate an average distribution across multiple
274 * entries with the same name
276 start
= atomic_inc_return(&last_index
);
277 for (i
= 0; i
< count
; i
++) {
278 if (of_dma_match_channel(np
, name
,
283 mutex_lock(&of_dma_lock
);
284 ofdma
= of_dma_find_controller(&dma_spec
);
287 chan
= ofdma
->of_dma_xlate(&dma_spec
, ofdma
);
289 ret_no_channel
= -EPROBE_DEFER
;
293 mutex_unlock(&of_dma_lock
);
295 of_node_put(dma_spec
.np
);
301 return ERR_PTR(ret_no_channel
);
303 EXPORT_SYMBOL_GPL(of_dma_request_slave_channel
);
306 * of_dma_simple_xlate - Simple DMA engine translation function
307 * @dma_spec: pointer to DMA specifier as found in the device tree
308 * @ofdma: pointer to DMA controller data
310 * A simple translation function for devices that use a 32-bit value for the
311 * filter_param when calling the DMA engine dma_request_channel() function.
312 * Note that this translation function requires that #dma-cells is equal to 1
313 * and the argument of the dma specifier is the 32-bit filter_param. Returns
314 * pointer to appropriate dma channel on success or NULL on error.
316 struct dma_chan
*of_dma_simple_xlate(struct of_phandle_args
*dma_spec
,
317 struct of_dma
*ofdma
)
319 int count
= dma_spec
->args_count
;
320 struct of_dma_filter_info
*info
= ofdma
->of_dma_data
;
322 if (!info
|| !info
->filter_fn
)
328 return __dma_request_channel(&info
->dma_cap
, info
->filter_fn
,
329 &dma_spec
->args
[0], dma_spec
->np
);
331 EXPORT_SYMBOL_GPL(of_dma_simple_xlate
);
334 * of_dma_xlate_by_chan_id - Translate dt property to DMA channel by channel id
335 * @dma_spec: pointer to DMA specifier as found in the device tree
336 * @ofdma: pointer to DMA controller data
338 * This function can be used as the of xlate callback for DMA driver which wants
339 * to match the channel based on the channel id. When using this xlate function
340 * the #dma-cells propety of the DMA controller dt node needs to be set to 1.
341 * The data parameter of of_dma_controller_register must be a pointer to the
342 * dma_device struct the function should match upon.
344 * Returns pointer to appropriate dma channel on success or NULL on error.
346 struct dma_chan
*of_dma_xlate_by_chan_id(struct of_phandle_args
*dma_spec
,
347 struct of_dma
*ofdma
)
349 struct dma_device
*dev
= ofdma
->of_dma_data
;
350 struct dma_chan
*chan
, *candidate
= NULL
;
352 if (!dev
|| dma_spec
->args_count
!= 1)
355 list_for_each_entry(chan
, &dev
->channels
, device_node
)
356 if (chan
->chan_id
== dma_spec
->args
[0]) {
364 return dma_get_slave_channel(candidate
);
366 EXPORT_SYMBOL_GPL(of_dma_xlate_by_chan_id
);