blob: 00db454f70d348e7fe1d38433a1f106938d506de [file] [log] [blame]
Jon Hunteraa3da642012-09-14 17:41:56 -05001/*
2 * Device tree helpers for DMA request / controller
3 *
4 * Based on of_gpio.c
5 *
6 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/device.h>
14#include <linux/err.h>
15#include <linux/module.h>
16#include <linux/rculist.h>
17#include <linux/slab.h>
18#include <linux/of.h>
19#include <linux/of_dma.h>
20
21static LIST_HEAD(of_dma_list);
Jon Hunter9743a3b2012-10-11 14:43:01 -050022static DEFINE_SPINLOCK(of_dma_lock);
Jon Hunteraa3da642012-09-14 17:41:56 -050023
24/**
Jon Hunter9743a3b2012-10-11 14:43:01 -050025 * of_dma_get_controller - Get a DMA controller in DT DMA helpers list
26 * @dma_spec: pointer to DMA specifier as found in the device tree
27 *
28 * Finds a DMA controller with matching device node and number for dma cells
29 * in a list of registered DMA controllers. If a match is found the use_count
30 * variable is increased and a valid pointer to the DMA data stored is retuned.
31 * A NULL pointer is returned if no match is found.
Jon Hunteraa3da642012-09-14 17:41:56 -050032 */
Jon Hunter9743a3b2012-10-11 14:43:01 -050033static struct of_dma *of_dma_get_controller(struct of_phandle_args *dma_spec)
Jon Hunteraa3da642012-09-14 17:41:56 -050034{
35 struct of_dma *ofdma;
36
Jon Hunter9743a3b2012-10-11 14:43:01 -050037 spin_lock(&of_dma_lock);
38
Jon Hunteraa3da642012-09-14 17:41:56 -050039 if (list_empty(&of_dma_list)) {
Jon Hunter9743a3b2012-10-11 14:43:01 -050040 spin_unlock(&of_dma_lock);
Jon Hunteraa3da642012-09-14 17:41:56 -050041 return NULL;
42 }
43
Jon Hunter9743a3b2012-10-11 14:43:01 -050044 list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers)
45 if ((ofdma->of_node == dma_spec->np) &&
46 (ofdma->of_dma_nbcells == dma_spec->args_count)) {
47 ofdma->use_count++;
48 spin_unlock(&of_dma_lock);
Jon Hunteraa3da642012-09-14 17:41:56 -050049 return ofdma;
Jon Hunter9743a3b2012-10-11 14:43:01 -050050 }
51
52 spin_unlock(&of_dma_lock);
53
54 pr_debug("%s: can't find DMA controller %s\n", __func__,
55 dma_spec->np->full_name);
Jon Hunteraa3da642012-09-14 17:41:56 -050056
57 return NULL;
58}
59
60/**
Jon Hunter9743a3b2012-10-11 14:43:01 -050061 * of_dma_put_controller - Decrement use count for a registered DMA controller
62 * @of_dma: pointer to DMA controller data
63 *
64 * Decrements the use_count variable in the DMA data structure. This function
65 * should be called only when a valid pointer is returned from
66 * of_dma_get_controller() and no further accesses to data referenced by that
67 * pointer are needed.
68 */
69static void of_dma_put_controller(struct of_dma *ofdma)
70{
71 spin_lock(&of_dma_lock);
72 ofdma->use_count--;
73 spin_unlock(&of_dma_lock);
74}
75
76/**
Jon Hunteraa3da642012-09-14 17:41:56 -050077 * of_dma_controller_register - Register a DMA controller to DT DMA helpers
78 * @np: device node of DMA controller
79 * @of_dma_xlate: translation function which converts a phandle
80 * arguments list into a dma_chan structure
81 * @data pointer to controller specific data to be used by
82 * translation function
83 *
84 * Returns 0 on success or appropriate errno value on error.
85 *
86 * Allocated memory should be freed with appropriate of_dma_controller_free()
87 * call.
88 */
89int of_dma_controller_register(struct device_node *np,
90 struct dma_chan *(*of_dma_xlate)
91 (struct of_phandle_args *, struct of_dma *),
92 void *data)
93{
94 struct of_dma *ofdma;
95 int nbcells;
Viresh Kumar9a188eb2013-03-15 14:18:20 +053096 const __be32 *prop;
Jon Hunteraa3da642012-09-14 17:41:56 -050097
98 if (!np || !of_dma_xlate) {
99 pr_err("%s: not enough information provided\n", __func__);
100 return -EINVAL;
101 }
102
103 ofdma = kzalloc(sizeof(*ofdma), GFP_KERNEL);
104 if (!ofdma)
105 return -ENOMEM;
106
Viresh Kumar9a188eb2013-03-15 14:18:20 +0530107 prop = of_get_property(np, "#dma-cells", NULL);
108 if (prop)
109 nbcells = be32_to_cpup(prop);
110
111 if (!prop || !nbcells) {
Jon Hunteraa3da642012-09-14 17:41:56 -0500112 pr_err("%s: #dma-cells property is missing or invalid\n",
113 __func__);
Cong Dinge68b1132013-02-14 11:16:10 +0100114 kfree(ofdma);
Jon Hunteraa3da642012-09-14 17:41:56 -0500115 return -EINVAL;
116 }
117
118 ofdma->of_node = np;
119 ofdma->of_dma_nbcells = nbcells;
120 ofdma->of_dma_xlate = of_dma_xlate;
121 ofdma->of_dma_data = data;
Jon Hunter9743a3b2012-10-11 14:43:01 -0500122 ofdma->use_count = 0;
Jon Hunteraa3da642012-09-14 17:41:56 -0500123
124 /* Now queue of_dma controller structure in list */
Andy Shevchenko88b386c2013-02-14 11:00:15 +0200125 spin_lock(&of_dma_lock);
Jon Hunter9743a3b2012-10-11 14:43:01 -0500126 list_add_tail(&ofdma->of_dma_controllers, &of_dma_list);
Andy Shevchenko88b386c2013-02-14 11:00:15 +0200127 spin_unlock(&of_dma_lock);
Jon Hunteraa3da642012-09-14 17:41:56 -0500128
129 return 0;
130}
131EXPORT_SYMBOL_GPL(of_dma_controller_register);
132
133/**
134 * of_dma_controller_free - Remove a DMA controller from DT DMA helpers list
135 * @np: device node of DMA controller
136 *
137 * Memory allocated by of_dma_controller_register() is freed here.
138 */
Jon Hunter9743a3b2012-10-11 14:43:01 -0500139int of_dma_controller_free(struct device_node *np)
Jon Hunteraa3da642012-09-14 17:41:56 -0500140{
141 struct of_dma *ofdma;
142
Jon Hunter9743a3b2012-10-11 14:43:01 -0500143 spin_lock(&of_dma_lock);
144
145 if (list_empty(&of_dma_list)) {
146 spin_unlock(&of_dma_lock);
147 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500148 }
Jon Hunter9743a3b2012-10-11 14:43:01 -0500149
150 list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers)
151 if (ofdma->of_node == np) {
152 if (ofdma->use_count) {
153 spin_unlock(&of_dma_lock);
154 return -EBUSY;
155 }
156
157 list_del(&ofdma->of_dma_controllers);
158 spin_unlock(&of_dma_lock);
159 kfree(ofdma);
160 return 0;
161 }
162
163 spin_unlock(&of_dma_lock);
164 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500165}
166EXPORT_SYMBOL_GPL(of_dma_controller_free);
167
168/**
Jon Hunter5ca7c102012-09-25 13:59:31 -0500169 * of_dma_match_channel - Check if a DMA specifier matches name
Jon Hunteraa3da642012-09-14 17:41:56 -0500170 * @np: device node to look for DMA channels
Jon Hunter5ca7c102012-09-25 13:59:31 -0500171 * @name: channel name to be matched
172 * @index: index of DMA specifier in list of DMA specifiers
Jon Hunteraa3da642012-09-14 17:41:56 -0500173 * @dma_spec: pointer to DMA specifier as found in the device tree
174 *
Jon Hunter5ca7c102012-09-25 13:59:31 -0500175 * Check if the DMA specifier pointed to by the index in a list of DMA
176 * specifiers, matches the name provided. Returns 0 if the name matches and
177 * a valid pointer to the DMA specifier is found. Otherwise returns -ENODEV.
Jon Hunteraa3da642012-09-14 17:41:56 -0500178 */
Markus Pargmannbef29ec2013-02-24 16:36:09 +0100179static int of_dma_match_channel(struct device_node *np, const char *name,
180 int index, struct of_phandle_args *dma_spec)
Jon Hunteraa3da642012-09-14 17:41:56 -0500181{
Jon Hunteraa3da642012-09-14 17:41:56 -0500182 const char *s;
183
Jon Hunter5ca7c102012-09-25 13:59:31 -0500184 if (of_property_read_string_index(np, "dma-names", index, &s))
185 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500186
Jon Hunter5ca7c102012-09-25 13:59:31 -0500187 if (strcmp(name, s))
188 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500189
Jon Hunter5ca7c102012-09-25 13:59:31 -0500190 if (of_parse_phandle_with_args(np, "dmas", "#dma-cells", index,
191 dma_spec))
192 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500193
Jon Hunter5ca7c102012-09-25 13:59:31 -0500194 return 0;
Jon Hunteraa3da642012-09-14 17:41:56 -0500195}
196
197/**
198 * of_dma_request_slave_channel - Get the DMA slave channel
199 * @np: device node to get DMA request from
200 * @name: name of desired channel
201 *
202 * Returns pointer to appropriate dma channel on success or NULL on error.
203 */
204struct dma_chan *of_dma_request_slave_channel(struct device_node *np,
Markus Pargmannbef29ec2013-02-24 16:36:09 +0100205 const char *name)
Jon Hunteraa3da642012-09-14 17:41:56 -0500206{
207 struct of_phandle_args dma_spec;
208 struct of_dma *ofdma;
209 struct dma_chan *chan;
Jon Hunter5ca7c102012-09-25 13:59:31 -0500210 int count, i;
Jon Hunteraa3da642012-09-14 17:41:56 -0500211
212 if (!np || !name) {
213 pr_err("%s: not enough information provided\n", __func__);
214 return NULL;
215 }
216
Jon Hunter5ca7c102012-09-25 13:59:31 -0500217 count = of_property_count_strings(np, "dma-names");
218 if (count < 0) {
219 pr_err("%s: dma-names property missing or empty\n", __func__);
220 return NULL;
221 }
222
223 for (i = 0; i < count; i++) {
224 if (of_dma_match_channel(np, name, i, &dma_spec))
225 continue;
Jon Hunteraa3da642012-09-14 17:41:56 -0500226
Jon Hunter9743a3b2012-10-11 14:43:01 -0500227 ofdma = of_dma_get_controller(&dma_spec);
Jon Hunteraa3da642012-09-14 17:41:56 -0500228
Jon Hunter9743a3b2012-10-11 14:43:01 -0500229 if (!ofdma)
Jon Hunteraa3da642012-09-14 17:41:56 -0500230 continue;
Jon Hunteraa3da642012-09-14 17:41:56 -0500231
232 chan = ofdma->of_dma_xlate(&dma_spec, ofdma);
233
Jon Hunter9743a3b2012-10-11 14:43:01 -0500234 of_dma_put_controller(ofdma);
235
Jon Hunteraa3da642012-09-14 17:41:56 -0500236 of_node_put(dma_spec.np);
237
Jon Hunter5ca7c102012-09-25 13:59:31 -0500238 if (chan)
239 return chan;
240 }
Jon Hunteraa3da642012-09-14 17:41:56 -0500241
Jon Hunter5ca7c102012-09-25 13:59:31 -0500242 return NULL;
Jon Hunteraa3da642012-09-14 17:41:56 -0500243}
244
245/**
246 * of_dma_simple_xlate - Simple DMA engine translation function
247 * @dma_spec: pointer to DMA specifier as found in the device tree
248 * @of_dma: pointer to DMA controller data
249 *
250 * A simple translation function for devices that use a 32-bit value for the
251 * filter_param when calling the DMA engine dma_request_channel() function.
252 * Note that this translation function requires that #dma-cells is equal to 1
253 * and the argument of the dma specifier is the 32-bit filter_param. Returns
254 * pointer to appropriate dma channel on success or NULL on error.
255 */
256struct dma_chan *of_dma_simple_xlate(struct of_phandle_args *dma_spec,
257 struct of_dma *ofdma)
258{
259 int count = dma_spec->args_count;
260 struct of_dma_filter_info *info = ofdma->of_dma_data;
261
262 if (!info || !info->filter_fn)
263 return NULL;
264
265 if (count != 1)
266 return NULL;
267
268 return dma_request_channel(info->dma_cap, info->filter_fn,
269 &dma_spec->args[0]);
270}
271EXPORT_SYMBOL_GPL(of_dma_simple_xlate);