blob: 7aa0864cd487a4a084dcf3b326f9ef6ba91d3d86 [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>
Lars-Peter Clausende616082013-04-19 11:42:14 +020016#include <linux/mutex.h>
Jon Hunteraa3da642012-09-14 17:41:56 -050017#include <linux/slab.h>
18#include <linux/of.h>
19#include <linux/of_dma.h>
20
21static LIST_HEAD(of_dma_list);
Lars-Peter Clausende616082013-04-19 11:42:14 +020022static DEFINE_MUTEX(of_dma_lock);
Jon Hunteraa3da642012-09-14 17:41:56 -050023
24/**
Lars-Peter Clausende616082013-04-19 11:42:14 +020025 * of_dma_find_controller - Get a DMA controller in DT DMA helpers list
Jon Hunter9743a3b2012-10-11 14:43:01 -050026 * @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
Lars-Peter Clausende616082013-04-19 11:42:14 +020029 * in a list of registered DMA controllers. If a match is found a valid pointer
30 * to the DMA data stored is retuned. A NULL pointer is returned if no match is
31 * found.
Jon Hunteraa3da642012-09-14 17:41:56 -050032 */
Lars-Peter Clausende616082013-04-19 11:42:14 +020033static struct of_dma *of_dma_find_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 list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers)
38 if ((ofdma->of_node == dma_spec->np) &&
Lars-Peter Clausende616082013-04-19 11:42:14 +020039 (ofdma->of_dma_nbcells == dma_spec->args_count))
Jon Hunteraa3da642012-09-14 17:41:56 -050040 return ofdma;
Jon Hunter9743a3b2012-10-11 14:43:01 -050041
42 pr_debug("%s: can't find DMA controller %s\n", __func__,
43 dma_spec->np->full_name);
Jon Hunteraa3da642012-09-14 17:41:56 -050044
45 return NULL;
46}
47
48/**
49 * of_dma_controller_register - Register a DMA controller to DT DMA helpers
50 * @np: device node of DMA controller
51 * @of_dma_xlate: translation function which converts a phandle
52 * arguments list into a dma_chan structure
53 * @data pointer to controller specific data to be used by
54 * translation function
55 *
56 * Returns 0 on success or appropriate errno value on error.
57 *
58 * Allocated memory should be freed with appropriate of_dma_controller_free()
59 * call.
60 */
61int of_dma_controller_register(struct device_node *np,
62 struct dma_chan *(*of_dma_xlate)
63 (struct of_phandle_args *, struct of_dma *),
64 void *data)
65{
66 struct of_dma *ofdma;
67 int nbcells;
Viresh Kumar9a188eb2013-03-15 14:18:20 +053068 const __be32 *prop;
Jon Hunteraa3da642012-09-14 17:41:56 -050069
70 if (!np || !of_dma_xlate) {
71 pr_err("%s: not enough information provided\n", __func__);
72 return -EINVAL;
73 }
74
75 ofdma = kzalloc(sizeof(*ofdma), GFP_KERNEL);
76 if (!ofdma)
77 return -ENOMEM;
78
Viresh Kumar9a188eb2013-03-15 14:18:20 +053079 prop = of_get_property(np, "#dma-cells", NULL);
80 if (prop)
81 nbcells = be32_to_cpup(prop);
82
83 if (!prop || !nbcells) {
Jon Hunteraa3da642012-09-14 17:41:56 -050084 pr_err("%s: #dma-cells property is missing or invalid\n",
85 __func__);
Cong Dinge68b1132013-02-14 11:16:10 +010086 kfree(ofdma);
Jon Hunteraa3da642012-09-14 17:41:56 -050087 return -EINVAL;
88 }
89
90 ofdma->of_node = np;
91 ofdma->of_dma_nbcells = nbcells;
92 ofdma->of_dma_xlate = of_dma_xlate;
93 ofdma->of_dma_data = data;
94
95 /* Now queue of_dma controller structure in list */
Lars-Peter Clausende616082013-04-19 11:42:14 +020096 mutex_lock(&of_dma_lock);
Jon Hunter9743a3b2012-10-11 14:43:01 -050097 list_add_tail(&ofdma->of_dma_controllers, &of_dma_list);
Lars-Peter Clausende616082013-04-19 11:42:14 +020098 mutex_unlock(&of_dma_lock);
Jon Hunteraa3da642012-09-14 17:41:56 -050099
100 return 0;
101}
102EXPORT_SYMBOL_GPL(of_dma_controller_register);
103
104/**
105 * of_dma_controller_free - Remove a DMA controller from DT DMA helpers list
106 * @np: device node of DMA controller
107 *
108 * Memory allocated by of_dma_controller_register() is freed here.
109 */
Lars-Peter Clausende616082013-04-19 11:42:14 +0200110void of_dma_controller_free(struct device_node *np)
Jon Hunteraa3da642012-09-14 17:41:56 -0500111{
112 struct of_dma *ofdma;
113
Lars-Peter Clausende616082013-04-19 11:42:14 +0200114 mutex_lock(&of_dma_lock);
Jon Hunter9743a3b2012-10-11 14:43:01 -0500115
116 list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers)
117 if (ofdma->of_node == np) {
Jon Hunter9743a3b2012-10-11 14:43:01 -0500118 list_del(&ofdma->of_dma_controllers);
Jon Hunter9743a3b2012-10-11 14:43:01 -0500119 kfree(ofdma);
Lars-Peter Clausende616082013-04-19 11:42:14 +0200120 break;
Jon Hunter9743a3b2012-10-11 14:43:01 -0500121 }
122
Lars-Peter Clausende616082013-04-19 11:42:14 +0200123 mutex_unlock(&of_dma_lock);
Jon Hunteraa3da642012-09-14 17:41:56 -0500124}
125EXPORT_SYMBOL_GPL(of_dma_controller_free);
126
127/**
Jon Hunter5ca7c102012-09-25 13:59:31 -0500128 * of_dma_match_channel - Check if a DMA specifier matches name
Jon Hunteraa3da642012-09-14 17:41:56 -0500129 * @np: device node to look for DMA channels
Jon Hunter5ca7c102012-09-25 13:59:31 -0500130 * @name: channel name to be matched
131 * @index: index of DMA specifier in list of DMA specifiers
Jon Hunteraa3da642012-09-14 17:41:56 -0500132 * @dma_spec: pointer to DMA specifier as found in the device tree
133 *
Jon Hunter5ca7c102012-09-25 13:59:31 -0500134 * Check if the DMA specifier pointed to by the index in a list of DMA
135 * specifiers, matches the name provided. Returns 0 if the name matches and
136 * a valid pointer to the DMA specifier is found. Otherwise returns -ENODEV.
Jon Hunteraa3da642012-09-14 17:41:56 -0500137 */
Markus Pargmannbef29ec2013-02-24 16:36:09 +0100138static int of_dma_match_channel(struct device_node *np, const char *name,
139 int index, struct of_phandle_args *dma_spec)
Jon Hunteraa3da642012-09-14 17:41:56 -0500140{
Jon Hunteraa3da642012-09-14 17:41:56 -0500141 const char *s;
142
Jon Hunter5ca7c102012-09-25 13:59:31 -0500143 if (of_property_read_string_index(np, "dma-names", index, &s))
144 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500145
Jon Hunter5ca7c102012-09-25 13:59:31 -0500146 if (strcmp(name, s))
147 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500148
Jon Hunter5ca7c102012-09-25 13:59:31 -0500149 if (of_parse_phandle_with_args(np, "dmas", "#dma-cells", index,
150 dma_spec))
151 return -ENODEV;
Jon Hunteraa3da642012-09-14 17:41:56 -0500152
Jon Hunter5ca7c102012-09-25 13:59:31 -0500153 return 0;
Jon Hunteraa3da642012-09-14 17:41:56 -0500154}
155
156/**
157 * of_dma_request_slave_channel - Get the DMA slave channel
158 * @np: device node to get DMA request from
159 * @name: name of desired channel
160 *
161 * Returns pointer to appropriate dma channel on success or NULL on error.
162 */
163struct dma_chan *of_dma_request_slave_channel(struct device_node *np,
Markus Pargmannbef29ec2013-02-24 16:36:09 +0100164 const char *name)
Jon Hunteraa3da642012-09-14 17:41:56 -0500165{
166 struct of_phandle_args dma_spec;
167 struct of_dma *ofdma;
168 struct dma_chan *chan;
Jon Hunter5ca7c102012-09-25 13:59:31 -0500169 int count, i;
Jon Hunteraa3da642012-09-14 17:41:56 -0500170
171 if (!np || !name) {
172 pr_err("%s: not enough information provided\n", __func__);
173 return NULL;
174 }
175
Jon Hunter5ca7c102012-09-25 13:59:31 -0500176 count = of_property_count_strings(np, "dma-names");
177 if (count < 0) {
178 pr_err("%s: dma-names property missing or empty\n", __func__);
179 return NULL;
180 }
181
182 for (i = 0; i < count; i++) {
183 if (of_dma_match_channel(np, name, i, &dma_spec))
184 continue;
Jon Hunteraa3da642012-09-14 17:41:56 -0500185
Lars-Peter Clausende616082013-04-19 11:42:14 +0200186 mutex_lock(&of_dma_lock);
187 ofdma = of_dma_find_controller(&dma_spec);
Jon Hunteraa3da642012-09-14 17:41:56 -0500188
Lars-Peter Clausende616082013-04-19 11:42:14 +0200189 if (ofdma)
Lars-Peter Clausenf22eb142013-04-19 11:42:13 +0200190 chan = ofdma->of_dma_xlate(&dma_spec, ofdma);
Lars-Peter Clausende616082013-04-19 11:42:14 +0200191 else
Lars-Peter Clausenf22eb142013-04-19 11:42:13 +0200192 chan = NULL;
Lars-Peter Clausende616082013-04-19 11:42:14 +0200193
194 mutex_unlock(&of_dma_lock);
Jon Hunter9743a3b2012-10-11 14:43:01 -0500195
Jon Hunteraa3da642012-09-14 17:41:56 -0500196 of_node_put(dma_spec.np);
197
Jon Hunter5ca7c102012-09-25 13:59:31 -0500198 if (chan)
199 return chan;
200 }
Jon Hunteraa3da642012-09-14 17:41:56 -0500201
Jon Hunter5ca7c102012-09-25 13:59:31 -0500202 return NULL;
Jon Hunteraa3da642012-09-14 17:41:56 -0500203}
204
205/**
206 * of_dma_simple_xlate - Simple DMA engine translation function
207 * @dma_spec: pointer to DMA specifier as found in the device tree
208 * @of_dma: pointer to DMA controller data
209 *
210 * A simple translation function for devices that use a 32-bit value for the
211 * filter_param when calling the DMA engine dma_request_channel() function.
212 * Note that this translation function requires that #dma-cells is equal to 1
213 * and the argument of the dma specifier is the 32-bit filter_param. Returns
214 * pointer to appropriate dma channel on success or NULL on error.
215 */
216struct dma_chan *of_dma_simple_xlate(struct of_phandle_args *dma_spec,
217 struct of_dma *ofdma)
218{
219 int count = dma_spec->args_count;
220 struct of_dma_filter_info *info = ofdma->of_dma_data;
221
222 if (!info || !info->filter_fn)
223 return NULL;
224
225 if (count != 1)
226 return NULL;
227
228 return dma_request_channel(info->dma_cap, info->filter_fn,
229 &dma_spec->args[0]);
230}
231EXPORT_SYMBOL_GPL(of_dma_simple_xlate);