of-dma.c 6.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Device tree helpers for DMA request / controller
 *
 * Based on of_gpio.c
 *
 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/device.h>
#include <linux/err.h>
#include <linux/module.h>
16
#include <linux/mutex.h>
17 18 19 20 21
#include <linux/slab.h>
#include <linux/of.h>
#include <linux/of_dma.h>

static LIST_HEAD(of_dma_list);
22
static DEFINE_MUTEX(of_dma_lock);
23 24

/**
25
 * of_dma_find_controller - Get a DMA controller in DT DMA helpers list
26 27 28
 * @dma_spec:	pointer to DMA specifier as found in the device tree
 *
 * Finds a DMA controller with matching device node and number for dma cells
29 30 31
 * in a list of registered DMA controllers. If a match is found a valid pointer
 * to the DMA data stored is retuned. A NULL pointer is returned if no match is
 * found.
32
 */
33
static struct of_dma *of_dma_find_controller(struct of_phandle_args *dma_spec)
34 35 36
{
	struct of_dma *ofdma;

37 38
	list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers)
		if ((ofdma->of_node == dma_spec->np) &&
39
		    (ofdma->of_dma_nbcells == dma_spec->args_count))
40
			return ofdma;
41 42 43

	pr_debug("%s: can't find DMA controller %s\n", __func__,
		 dma_spec->np->full_name);
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

	return NULL;
}

/**
 * of_dma_controller_register - Register a DMA controller to DT DMA helpers
 * @np:			device node of DMA controller
 * @of_dma_xlate:	translation function which converts a phandle
 *			arguments list into a dma_chan structure
 * @data		pointer to controller specific data to be used by
 *			translation function
 *
 * Returns 0 on success or appropriate errno value on error.
 *
 * Allocated memory should be freed with appropriate of_dma_controller_free()
 * call.
 */
int of_dma_controller_register(struct device_node *np,
				struct dma_chan *(*of_dma_xlate)
				(struct of_phandle_args *, struct of_dma *),
				void *data)
{
	struct of_dma	*ofdma;
67
	const __be32	*prop;
68 69 70 71 72 73 74 75 76 77

	if (!np || !of_dma_xlate) {
		pr_err("%s: not enough information provided\n", __func__);
		return -EINVAL;
	}

	ofdma = kzalloc(sizeof(*ofdma), GFP_KERNEL);
	if (!ofdma)
		return -ENOMEM;

78
	prop = of_get_property(np, "#dma-cells", NULL);
79 80
	if (!prop) {
		pr_err("%s: #dma-cells property is missing\n",
81
		       __func__);
C
Cong Ding 已提交
82
		kfree(ofdma);
83 84 85
		return -EINVAL;
	}

86

87
	ofdma->of_node = np;
88
	ofdma->of_dma_nbcells = be32_to_cpup(prop);
89 90 91 92
	ofdma->of_dma_xlate = of_dma_xlate;
	ofdma->of_dma_data = data;

	/* Now queue of_dma controller structure in list */
93
	mutex_lock(&of_dma_lock);
94
	list_add_tail(&ofdma->of_dma_controllers, &of_dma_list);
95
	mutex_unlock(&of_dma_lock);
96 97 98 99 100 101 102 103 104 105 106

	return 0;
}
EXPORT_SYMBOL_GPL(of_dma_controller_register);

/**
 * of_dma_controller_free - Remove a DMA controller from DT DMA helpers list
 * @np:		device node of DMA controller
 *
 * Memory allocated by of_dma_controller_register() is freed here.
 */
107
void of_dma_controller_free(struct device_node *np)
108 109 110
{
	struct of_dma *ofdma;

111
	mutex_lock(&of_dma_lock);
112 113 114 115 116

	list_for_each_entry(ofdma, &of_dma_list, of_dma_controllers)
		if (ofdma->of_node == np) {
			list_del(&ofdma->of_dma_controllers);
			kfree(ofdma);
117
			break;
118 119
		}

120
	mutex_unlock(&of_dma_lock);
121 122 123 124
}
EXPORT_SYMBOL_GPL(of_dma_controller_free);

/**
125
 * of_dma_match_channel - Check if a DMA specifier matches name
126
 * @np:		device node to look for DMA channels
127 128
 * @name:	channel name to be matched
 * @index:	index of DMA specifier in list of DMA specifiers
129 130
 * @dma_spec:	pointer to DMA specifier as found in the device tree
 *
131 132 133
 * Check if the DMA specifier pointed to by the index in a list of DMA
 * specifiers, matches the name provided. Returns 0 if the name matches and
 * a valid pointer to the DMA specifier is found. Otherwise returns -ENODEV.
134
 */
M
Markus Pargmann 已提交
135 136
static int of_dma_match_channel(struct device_node *np, const char *name,
				int index, struct of_phandle_args *dma_spec)
137 138 139
{
	const char *s;

140 141
	if (of_property_read_string_index(np, "dma-names", index, &s))
		return -ENODEV;
142

143 144
	if (strcmp(name, s))
		return -ENODEV;
145

146 147 148
	if (of_parse_phandle_with_args(np, "dmas", "#dma-cells", index,
				       dma_spec))
		return -ENODEV;
149

150
	return 0;
151 152 153 154 155 156 157 158 159 160
}

/**
 * of_dma_request_slave_channel - Get the DMA slave channel
 * @np:		device node to get DMA request from
 * @name:	name of desired channel
 *
 * Returns pointer to appropriate dma channel on success or NULL on error.
 */
struct dma_chan *of_dma_request_slave_channel(struct device_node *np,
M
Markus Pargmann 已提交
161
					      const char *name)
162 163 164 165
{
	struct of_phandle_args	dma_spec;
	struct of_dma		*ofdma;
	struct dma_chan		*chan;
166
	int			count, i;
167 168 169 170 171 172

	if (!np || !name) {
		pr_err("%s: not enough information provided\n", __func__);
		return NULL;
	}

173 174 175 176 177 178 179 180 181
	count = of_property_count_strings(np, "dma-names");
	if (count < 0) {
		pr_err("%s: dma-names property missing or empty\n", __func__);
		return NULL;
	}

	for (i = 0; i < count; i++) {
		if (of_dma_match_channel(np, name, i, &dma_spec))
			continue;
182

183 184
		mutex_lock(&of_dma_lock);
		ofdma = of_dma_find_controller(&dma_spec);
185

186
		if (ofdma)
187
			chan = ofdma->of_dma_xlate(&dma_spec, ofdma);
188
		else
189
			chan = NULL;
190 191

		mutex_unlock(&of_dma_lock);
192

193 194
		of_node_put(dma_spec.np);

195 196 197
		if (chan)
			return chan;
	}
198

199
	return NULL;
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
}

/**
 * of_dma_simple_xlate - Simple DMA engine translation function
 * @dma_spec:	pointer to DMA specifier as found in the device tree
 * @of_dma:	pointer to DMA controller data
 *
 * A simple translation function for devices that use a 32-bit value for the
 * filter_param when calling the DMA engine dma_request_channel() function.
 * Note that this translation function requires that #dma-cells is equal to 1
 * and the argument of the dma specifier is the 32-bit filter_param. Returns
 * pointer to appropriate dma channel on success or NULL on error.
 */
struct dma_chan *of_dma_simple_xlate(struct of_phandle_args *dma_spec,
						struct of_dma *ofdma)
{
	int count = dma_spec->args_count;
	struct of_dma_filter_info *info = ofdma->of_dma_data;

	if (!info || !info->filter_fn)
		return NULL;

	if (count != 1)
		return NULL;

	return dma_request_channel(info->dma_cap, info->filter_fn,
			&dma_spec->args[0]);
}
EXPORT_SYMBOL_GPL(of_dma_simple_xlate);