]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/dma/ti-dma-crossbar.c
x86/msr-index: Cleanup bit defines
[mirror_ubuntu-bionic-kernel.git] / drivers / dma / ti-dma-crossbar.c
CommitLineData
a074ae38
PU
1/*
2 * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com
3 * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 */
10#include <linux/slab.h>
11#include <linux/err.h>
12#include <linux/init.h>
13#include <linux/list.h>
14#include <linux/io.h>
a074ae38
PU
15#include <linux/of_address.h>
16#include <linux/of_device.h>
17#include <linux/of_dma.h>
18
42dbdcc6
PU
19#define TI_XBAR_DRA7 0
20#define TI_XBAR_AM335X 1
5f9367a8
PU
21static const u32 ti_xbar_type[] = {
22 [TI_XBAR_DRA7] = TI_XBAR_DRA7,
23 [TI_XBAR_AM335X] = TI_XBAR_AM335X,
24};
42dbdcc6
PU
25
26static const struct of_device_id ti_dma_xbar_match[] = {
27 {
28 .compatible = "ti,dra7-dma-crossbar",
5f9367a8 29 .data = &ti_xbar_type[TI_XBAR_DRA7],
42dbdcc6
PU
30 },
31 {
32 .compatible = "ti,am335x-edma-crossbar",
5f9367a8 33 .data = &ti_xbar_type[TI_XBAR_AM335X],
42dbdcc6
PU
34 },
35 {},
36};
37
38/* Crossbar on AM335x/AM437x family */
39#define TI_AM335X_XBAR_LINES 64
40
41struct ti_am335x_xbar_data {
42 void __iomem *iomem;
43
44 struct dma_router dmarouter;
45
46 u32 xbar_events; /* maximum number of events to select in xbar */
47 u32 dma_requests; /* number of DMA requests on eDMA */
48};
49
50struct ti_am335x_xbar_map {
51 u16 dma_line;
288e7560 52 u8 mux_val;
42dbdcc6
PU
53};
54
288e7560 55static inline void ti_am335x_xbar_write(void __iomem *iomem, int event, u8 val)
42dbdcc6 56{
c628b658
V
57 /*
58 * TPCC_EVT_MUX_60_63 register layout is different than the
59 * rest, in the sense, that event 63 is mapped to lowest byte
60 * and event 60 is mapped to highest, handle it separately.
61 */
62 if (event >= 60 && event <= 63)
63 writeb_relaxed(val, iomem + (63 - event % 4));
64 else
65 writeb_relaxed(val, iomem + event);
42dbdcc6
PU
66}
67
68static void ti_am335x_xbar_free(struct device *dev, void *route_data)
69{
70 struct ti_am335x_xbar_data *xbar = dev_get_drvdata(dev);
71 struct ti_am335x_xbar_map *map = route_data;
72
73 dev_dbg(dev, "Unmapping XBAR event %u on channel %u\n",
74 map->mux_val, map->dma_line);
75
76 ti_am335x_xbar_write(xbar->iomem, map->dma_line, 0);
77 kfree(map);
78}
79
80static void *ti_am335x_xbar_route_allocate(struct of_phandle_args *dma_spec,
81 struct of_dma *ofdma)
82{
83 struct platform_device *pdev = of_find_device_by_node(ofdma->of_node);
84 struct ti_am335x_xbar_data *xbar = platform_get_drvdata(pdev);
85 struct ti_am335x_xbar_map *map;
86
87 if (dma_spec->args_count != 3)
88 return ERR_PTR(-EINVAL);
89
90 if (dma_spec->args[2] >= xbar->xbar_events) {
91 dev_err(&pdev->dev, "Invalid XBAR event number: %d\n",
92 dma_spec->args[2]);
93 return ERR_PTR(-EINVAL);
94 }
95
96 if (dma_spec->args[0] >= xbar->dma_requests) {
97 dev_err(&pdev->dev, "Invalid DMA request line number: %d\n",
98 dma_spec->args[0]);
99 return ERR_PTR(-EINVAL);
100 }
101
102 /* The of_node_put() will be done in the core for the node */
103 dma_spec->np = of_parse_phandle(ofdma->of_node, "dma-masters", 0);
104 if (!dma_spec->np) {
105 dev_err(&pdev->dev, "Can't get DMA master\n");
106 return ERR_PTR(-EINVAL);
107 }
108
109 map = kzalloc(sizeof(*map), GFP_KERNEL);
110 if (!map) {
111 of_node_put(dma_spec->np);
112 return ERR_PTR(-ENOMEM);
113 }
114
115 map->dma_line = (u16)dma_spec->args[0];
288e7560 116 map->mux_val = (u8)dma_spec->args[2];
42dbdcc6
PU
117
118 dma_spec->args[2] = 0;
119 dma_spec->args_count = 2;
120
121 dev_dbg(&pdev->dev, "Mapping XBAR event%u to DMA%u\n",
122 map->mux_val, map->dma_line);
123
124 ti_am335x_xbar_write(xbar->iomem, map->dma_line, map->mux_val);
125
126 return map;
127}
128
129static const struct of_device_id ti_am335x_master_match[] = {
130 { .compatible = "ti,edma3-tpcc", },
131 {},
132};
133
134static int ti_am335x_xbar_probe(struct platform_device *pdev)
135{
136 struct device_node *node = pdev->dev.of_node;
137 const struct of_device_id *match;
138 struct device_node *dma_node;
139 struct ti_am335x_xbar_data *xbar;
140 struct resource *res;
141 void __iomem *iomem;
142 int i, ret;
143
144 if (!node)
145 return -ENODEV;
146
147 xbar = devm_kzalloc(&pdev->dev, sizeof(*xbar), GFP_KERNEL);
148 if (!xbar)
149 return -ENOMEM;
150
151 dma_node = of_parse_phandle(node, "dma-masters", 0);
152 if (!dma_node) {
153 dev_err(&pdev->dev, "Can't get DMA master node\n");
154 return -ENODEV;
155 }
156
157 match = of_match_node(ti_am335x_master_match, dma_node);
158 if (!match) {
159 dev_err(&pdev->dev, "DMA master is not supported\n");
75bdc7f3 160 of_node_put(dma_node);
42dbdcc6
PU
161 return -EINVAL;
162 }
163
164 if (of_property_read_u32(dma_node, "dma-requests",
165 &xbar->dma_requests)) {
166 dev_info(&pdev->dev,
167 "Missing XBAR output information, using %u.\n",
168 TI_AM335X_XBAR_LINES);
169 xbar->dma_requests = TI_AM335X_XBAR_LINES;
170 }
171 of_node_put(dma_node);
172
173 if (of_property_read_u32(node, "dma-requests", &xbar->xbar_events)) {
174 dev_info(&pdev->dev,
175 "Missing XBAR input information, using %u.\n",
176 TI_AM335X_XBAR_LINES);
177 xbar->xbar_events = TI_AM335X_XBAR_LINES;
178 }
179
180 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
181 iomem = devm_ioremap_resource(&pdev->dev, res);
182 if (IS_ERR(iomem))
183 return PTR_ERR(iomem);
184
185 xbar->iomem = iomem;
186
187 xbar->dmarouter.dev = &pdev->dev;
188 xbar->dmarouter.route_free = ti_am335x_xbar_free;
189
190 platform_set_drvdata(pdev, xbar);
191
192 /* Reset the crossbar */
193 for (i = 0; i < xbar->dma_requests; i++)
194 ti_am335x_xbar_write(xbar->iomem, i, 0);
195
196 ret = of_dma_router_register(node, ti_am335x_xbar_route_allocate,
197 &xbar->dmarouter);
198
199 return ret;
200}
201
202/* Crossbar on DRA7xx family */
203#define TI_DRA7_XBAR_OUTPUTS 127
204#define TI_DRA7_XBAR_INPUTS 256
a074ae38 205
42dbdcc6 206struct ti_dra7_xbar_data {
a074ae38
PU
207 void __iomem *iomem;
208
209 struct dma_router dmarouter;
ec9bfa1e
PU
210 struct mutex mutex;
211 unsigned long *dma_inuse;
a074ae38
PU
212
213 u16 safe_val; /* Value to rest the crossbar lines */
214 u32 xbar_requests; /* number of DMA requests connected to XBAR */
215 u32 dma_requests; /* number of DMA requests forwarded to DMA */
1eb995bb 216 u32 dma_offset;
a074ae38
PU
217};
218
42dbdcc6 219struct ti_dra7_xbar_map {
a074ae38
PU
220 u16 xbar_in;
221 int xbar_out;
222};
223
42dbdcc6 224static inline void ti_dra7_xbar_write(void __iomem *iomem, int xbar, u16 val)
a074ae38
PU
225{
226 writew_relaxed(val, iomem + (xbar * 2));
227}
228
42dbdcc6 229static void ti_dra7_xbar_free(struct device *dev, void *route_data)
a074ae38 230{
42dbdcc6
PU
231 struct ti_dra7_xbar_data *xbar = dev_get_drvdata(dev);
232 struct ti_dra7_xbar_map *map = route_data;
a074ae38
PU
233
234 dev_dbg(dev, "Unmapping XBAR%u (was routed to %d)\n",
235 map->xbar_in, map->xbar_out);
236
42dbdcc6 237 ti_dra7_xbar_write(xbar->iomem, map->xbar_out, xbar->safe_val);
ec9bfa1e
PU
238 mutex_lock(&xbar->mutex);
239 clear_bit(map->xbar_out, xbar->dma_inuse);
240 mutex_unlock(&xbar->mutex);
a074ae38
PU
241 kfree(map);
242}
243
42dbdcc6
PU
244static void *ti_dra7_xbar_route_allocate(struct of_phandle_args *dma_spec,
245 struct of_dma *ofdma)
a074ae38
PU
246{
247 struct platform_device *pdev = of_find_device_by_node(ofdma->of_node);
42dbdcc6
PU
248 struct ti_dra7_xbar_data *xbar = platform_get_drvdata(pdev);
249 struct ti_dra7_xbar_map *map;
a074ae38
PU
250
251 if (dma_spec->args[0] >= xbar->xbar_requests) {
252 dev_err(&pdev->dev, "Invalid XBAR request number: %d\n",
253 dma_spec->args[0]);
254 return ERR_PTR(-EINVAL);
255 }
256
257 /* The of_node_put() will be done in the core for the node */
258 dma_spec->np = of_parse_phandle(ofdma->of_node, "dma-masters", 0);
259 if (!dma_spec->np) {
260 dev_err(&pdev->dev, "Can't get DMA master\n");
261 return ERR_PTR(-EINVAL);
262 }
263
264 map = kzalloc(sizeof(*map), GFP_KERNEL);
265 if (!map) {
266 of_node_put(dma_spec->np);
267 return ERR_PTR(-ENOMEM);
268 }
269
ec9bfa1e
PU
270 mutex_lock(&xbar->mutex);
271 map->xbar_out = find_first_zero_bit(xbar->dma_inuse,
272 xbar->dma_requests);
ec9bfa1e 273 if (map->xbar_out == xbar->dma_requests) {
2ccb4837 274 mutex_unlock(&xbar->mutex);
ec9bfa1e
PU
275 dev_err(&pdev->dev, "Run out of free DMA requests\n");
276 kfree(map);
277 return ERR_PTR(-ENOMEM);
278 }
279 set_bit(map->xbar_out, xbar->dma_inuse);
2ccb4837 280 mutex_unlock(&xbar->mutex);
ec9bfa1e 281
a074ae38
PU
282 map->xbar_in = (u16)dma_spec->args[0];
283
1eb995bb 284 dma_spec->args[0] = map->xbar_out + xbar->dma_offset;
a074ae38
PU
285
286 dev_dbg(&pdev->dev, "Mapping XBAR%u to DMA%d\n",
287 map->xbar_in, map->xbar_out);
288
42dbdcc6 289 ti_dra7_xbar_write(xbar->iomem, map->xbar_out, map->xbar_in);
a074ae38
PU
290
291 return map;
292}
293
5f9367a8
PU
294#define TI_XBAR_EDMA_OFFSET 0
295#define TI_XBAR_SDMA_OFFSET 1
296static const u32 ti_dma_offset[] = {
297 [TI_XBAR_EDMA_OFFSET] = 0,
298 [TI_XBAR_SDMA_OFFSET] = 1,
299};
300
42dbdcc6 301static const struct of_device_id ti_dra7_master_match[] = {
1eb995bb
PU
302 {
303 .compatible = "ti,omap4430-sdma",
5f9367a8 304 .data = &ti_dma_offset[TI_XBAR_SDMA_OFFSET],
1eb995bb
PU
305 },
306 {
307 .compatible = "ti,edma3",
5f9367a8 308 .data = &ti_dma_offset[TI_XBAR_EDMA_OFFSET],
1eb995bb 309 },
2adb2743
PU
310 {
311 .compatible = "ti,edma3-tpcc",
5f9367a8 312 .data = &ti_dma_offset[TI_XBAR_EDMA_OFFSET],
2adb2743 313 },
1eb995bb
PU
314 {},
315};
316
0f73f3e8
PU
317static inline void ti_dra7_xbar_reserve(int offset, int len, unsigned long *p)
318{
319 for (; len > 0; len--)
a2f6721b 320 set_bit(offset + (len - 1), p);
0f73f3e8
PU
321}
322
42dbdcc6 323static int ti_dra7_xbar_probe(struct platform_device *pdev)
a074ae38
PU
324{
325 struct device_node *node = pdev->dev.of_node;
1eb995bb 326 const struct of_device_id *match;
a074ae38 327 struct device_node *dma_node;
42dbdcc6 328 struct ti_dra7_xbar_data *xbar;
0f73f3e8 329 struct property *prop;
a074ae38
PU
330 struct resource *res;
331 u32 safe_val;
e7282b66 332 int sz;
a074ae38
PU
333 void __iomem *iomem;
334 int i, ret;
335
336 if (!node)
337 return -ENODEV;
338
339 xbar = devm_kzalloc(&pdev->dev, sizeof(*xbar), GFP_KERNEL);
340 if (!xbar)
341 return -ENOMEM;
342
343 dma_node = of_parse_phandle(node, "dma-masters", 0);
344 if (!dma_node) {
345 dev_err(&pdev->dev, "Can't get DMA master node\n");
346 return -ENODEV;
347 }
348
42dbdcc6 349 match = of_match_node(ti_dra7_master_match, dma_node);
1eb995bb
PU
350 if (!match) {
351 dev_err(&pdev->dev, "DMA master is not supported\n");
75bdc7f3 352 of_node_put(dma_node);
1eb995bb
PU
353 return -EINVAL;
354 }
355
a074ae38
PU
356 if (of_property_read_u32(dma_node, "dma-requests",
357 &xbar->dma_requests)) {
358 dev_info(&pdev->dev,
359 "Missing XBAR output information, using %u.\n",
42dbdcc6
PU
360 TI_DRA7_XBAR_OUTPUTS);
361 xbar->dma_requests = TI_DRA7_XBAR_OUTPUTS;
a074ae38
PU
362 }
363 of_node_put(dma_node);
364
ec9bfa1e
PU
365 xbar->dma_inuse = devm_kcalloc(&pdev->dev,
366 BITS_TO_LONGS(xbar->dma_requests),
367 sizeof(unsigned long), GFP_KERNEL);
368 if (!xbar->dma_inuse)
369 return -ENOMEM;
370
a074ae38
PU
371 if (of_property_read_u32(node, "dma-requests", &xbar->xbar_requests)) {
372 dev_info(&pdev->dev,
373 "Missing XBAR input information, using %u.\n",
42dbdcc6
PU
374 TI_DRA7_XBAR_INPUTS);
375 xbar->xbar_requests = TI_DRA7_XBAR_INPUTS;
a074ae38
PU
376 }
377
378 if (!of_property_read_u32(node, "ti,dma-safe-map", &safe_val))
379 xbar->safe_val = (u16)safe_val;
380
0f73f3e8
PU
381
382 prop = of_find_property(node, "ti,reserved-dma-request-ranges", &sz);
383 if (prop) {
384 const char pname[] = "ti,reserved-dma-request-ranges";
385 u32 (*rsv_events)[2];
386 size_t nelm = sz / sizeof(*rsv_events);
387 int i;
388
389 if (!nelm)
390 return -EINVAL;
391
392 rsv_events = kcalloc(nelm, sizeof(*rsv_events), GFP_KERNEL);
393 if (!rsv_events)
394 return -ENOMEM;
395
396 ret = of_property_read_u32_array(node, pname, (u32 *)rsv_events,
397 nelm * 2);
398 if (ret)
399 return ret;
400
401 for (i = 0; i < nelm; i++) {
402 ti_dra7_xbar_reserve(rsv_events[i][0], rsv_events[i][1],
403 xbar->dma_inuse);
404 }
405 kfree(rsv_events);
406 }
407
a074ae38 408 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
a074ae38 409 iomem = devm_ioremap_resource(&pdev->dev, res);
28eb232f
AL
410 if (IS_ERR(iomem))
411 return PTR_ERR(iomem);
a074ae38
PU
412
413 xbar->iomem = iomem;
414
415 xbar->dmarouter.dev = &pdev->dev;
42dbdcc6 416 xbar->dmarouter.route_free = ti_dra7_xbar_free;
5f9367a8 417 xbar->dma_offset = *(u32 *)match->data;
a074ae38 418
ec9bfa1e 419 mutex_init(&xbar->mutex);
a074ae38
PU
420 platform_set_drvdata(pdev, xbar);
421
422 /* Reset the crossbar */
0f73f3e8
PU
423 for (i = 0; i < xbar->dma_requests; i++) {
424 if (!test_bit(i, xbar->dma_inuse))
425 ti_dra7_xbar_write(xbar->iomem, i, xbar->safe_val);
426 }
a074ae38 427
42dbdcc6 428 ret = of_dma_router_register(node, ti_dra7_xbar_route_allocate,
a074ae38
PU
429 &xbar->dmarouter);
430 if (ret) {
431 /* Restore the defaults for the crossbar */
0f73f3e8
PU
432 for (i = 0; i < xbar->dma_requests; i++) {
433 if (!test_bit(i, xbar->dma_inuse))
434 ti_dra7_xbar_write(xbar->iomem, i, i);
435 }
a074ae38
PU
436 }
437
438 return ret;
439}
440
42dbdcc6
PU
441static int ti_dma_xbar_probe(struct platform_device *pdev)
442{
443 const struct of_device_id *match;
444 int ret;
445
446 match = of_match_node(ti_dma_xbar_match, pdev->dev.of_node);
447 if (unlikely(!match))
448 return -EINVAL;
449
5f9367a8 450 switch (*(u32 *)match->data) {
42dbdcc6
PU
451 case TI_XBAR_DRA7:
452 ret = ti_dra7_xbar_probe(pdev);
453 break;
454 case TI_XBAR_AM335X:
455 ret = ti_am335x_xbar_probe(pdev);
456 break;
457 default:
458 dev_err(&pdev->dev, "Unsupported crossbar\n");
459 ret = -ENODEV;
460 break;
461 }
462
463 return ret;
464}
a074ae38
PU
465
466static struct platform_driver ti_dma_xbar_driver = {
467 .driver = {
468 .name = "ti-dma-crossbar",
469 .of_match_table = of_match_ptr(ti_dma_xbar_match),
470 },
471 .probe = ti_dma_xbar_probe,
472};
473
d646162b 474static int omap_dmaxbar_init(void)
a074ae38
PU
475{
476 return platform_driver_register(&ti_dma_xbar_driver);
477}
478arch_initcall(omap_dmaxbar_init);