blob: b984d00bc05587240961198f38efb26e86d72d65 [file] [log] [blame]
Florian Meier96286b52014-01-06 20:18:24 +01001/*
2 * BCM2835 DMA engine support
3 *
4 * This driver only supports cyclic DMA transfers
5 * as needed for the I2S module.
6 *
7 * Author: Florian Meier <florian.meier@koalo.de>
8 * Copyright 2013
9 *
10 * Based on
11 * OMAP DMAengine support by Russell King
12 *
13 * BCM2708 DMA Driver
14 * Copyright (C) 2010 Broadcom
15 *
16 * Raspberry Pi PCM I2S ALSA Driver
17 * Copyright (c) by Phil Poole 2013
18 *
19 * MARVELL MMP Peripheral DMA Driver
20 * Copyright 2012 Marvell International Ltd.
21 *
22 * This program is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License as published by
24 * the Free Software Foundation; either version 2 of the License, or
25 * (at your option) any later version.
26 *
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
31 */
32#include <linux/dmaengine.h>
33#include <linux/dma-mapping.h>
Peter Ujfalusi27bc9442015-11-16 13:09:03 +020034#include <linux/dmapool.h>
Florian Meier96286b52014-01-06 20:18:24 +010035#include <linux/err.h>
36#include <linux/init.h>
37#include <linux/interrupt.h>
38#include <linux/list.h>
39#include <linux/module.h>
40#include <linux/platform_device.h>
41#include <linux/slab.h>
42#include <linux/io.h>
43#include <linux/spinlock.h>
44#include <linux/of.h>
45#include <linux/of_dma.h>
46
47#include "virt-dma.h"
48
Martin Sperle2eca632016-04-11 13:29:08 +000049#define BCM2835_DMA_MAX_DMA_CHAN_SUPPORTED 14
50#define BCM2835_DMA_CHAN_NAME_SIZE 8
51
Florian Meier96286b52014-01-06 20:18:24 +010052struct bcm2835_dmadev {
53 struct dma_device ddev;
54 spinlock_t lock;
55 void __iomem *base;
56 struct device_dma_parameters dma_parms;
57};
58
59struct bcm2835_dma_cb {
60 uint32_t info;
61 uint32_t src;
62 uint32_t dst;
63 uint32_t length;
64 uint32_t stride;
65 uint32_t next;
66 uint32_t pad[2];
67};
68
Peter Ujfalusi27bc9442015-11-16 13:09:03 +020069struct bcm2835_cb_entry {
70 struct bcm2835_dma_cb *cb;
71 dma_addr_t paddr;
72};
73
Florian Meier96286b52014-01-06 20:18:24 +010074struct bcm2835_chan {
75 struct virt_dma_chan vc;
76 struct list_head node;
77
78 struct dma_slave_config cfg;
Florian Meier96286b52014-01-06 20:18:24 +010079 unsigned int dreq;
80
81 int ch;
82 struct bcm2835_desc *desc;
Peter Ujfalusi27bc9442015-11-16 13:09:03 +020083 struct dma_pool *cb_pool;
Florian Meier96286b52014-01-06 20:18:24 +010084
85 void __iomem *chan_base;
86 int irq_number;
Martin Sperle2eca632016-04-11 13:29:08 +000087 unsigned int irq_flags;
Martin Sperl40874122016-03-16 12:25:00 -070088
89 bool is_lite_channel;
Florian Meier96286b52014-01-06 20:18:24 +010090};
91
92struct bcm2835_desc {
Peter Ujfalusi27bc9442015-11-16 13:09:03 +020093 struct bcm2835_chan *c;
Florian Meier96286b52014-01-06 20:18:24 +010094 struct virt_dma_desc vd;
95 enum dma_transfer_direction dir;
96
Florian Meier96286b52014-01-06 20:18:24 +010097 unsigned int frames;
98 size_t size;
Martin Sperla4dcdd82016-03-16 12:24:58 -070099
100 bool cyclic;
Martin Sperl92153bb2016-03-16 12:24:59 -0700101
102 struct bcm2835_cb_entry cb_list[];
Florian Meier96286b52014-01-06 20:18:24 +0100103};
104
105#define BCM2835_DMA_CS 0x00
106#define BCM2835_DMA_ADDR 0x04
Martin Sperle42685d2016-03-16 12:24:57 -0700107#define BCM2835_DMA_TI 0x08
Florian Meier96286b52014-01-06 20:18:24 +0100108#define BCM2835_DMA_SOURCE_AD 0x0c
109#define BCM2835_DMA_DEST_AD 0x10
Martin Sperle42685d2016-03-16 12:24:57 -0700110#define BCM2835_DMA_LEN 0x14
111#define BCM2835_DMA_STRIDE 0x18
112#define BCM2835_DMA_NEXTCB 0x1c
113#define BCM2835_DMA_DEBUG 0x20
Florian Meier96286b52014-01-06 20:18:24 +0100114
115/* DMA CS Control and Status bits */
Martin Sperle42685d2016-03-16 12:24:57 -0700116#define BCM2835_DMA_ACTIVE BIT(0) /* activate the DMA */
117#define BCM2835_DMA_END BIT(1) /* current CB has ended */
118#define BCM2835_DMA_INT BIT(2) /* interrupt status */
119#define BCM2835_DMA_DREQ BIT(3) /* DREQ state */
Florian Meier96286b52014-01-06 20:18:24 +0100120#define BCM2835_DMA_ISPAUSED BIT(4) /* Pause requested or not active */
121#define BCM2835_DMA_ISHELD BIT(5) /* Is held by DREQ flow control */
Martin Sperle42685d2016-03-16 12:24:57 -0700122#define BCM2835_DMA_WAITING_FOR_WRITES BIT(6) /* waiting for last
123 * AXI-write to ack
124 */
125#define BCM2835_DMA_ERR BIT(8)
126#define BCM2835_DMA_PRIORITY(x) ((x & 15) << 16) /* AXI priority */
127#define BCM2835_DMA_PANIC_PRIORITY(x) ((x & 15) << 20) /* panic priority */
128/* current value of TI.BCM2835_DMA_WAIT_RESP */
129#define BCM2835_DMA_WAIT_FOR_WRITES BIT(28)
130#define BCM2835_DMA_DIS_DEBUG BIT(29) /* disable debug pause signal */
Florian Meier96286b52014-01-06 20:18:24 +0100131#define BCM2835_DMA_ABORT BIT(30) /* Stop current CB, go to next, WO */
132#define BCM2835_DMA_RESET BIT(31) /* WO, self clearing */
133
Martin Sperle42685d2016-03-16 12:24:57 -0700134/* Transfer information bits - also bcm2835_cb.info field */
Florian Meier96286b52014-01-06 20:18:24 +0100135#define BCM2835_DMA_INT_EN BIT(0)
Martin Sperle42685d2016-03-16 12:24:57 -0700136#define BCM2835_DMA_TDMODE BIT(1) /* 2D-Mode */
137#define BCM2835_DMA_WAIT_RESP BIT(3) /* wait for AXI-write to be acked */
Florian Meier96286b52014-01-06 20:18:24 +0100138#define BCM2835_DMA_D_INC BIT(4)
Martin Sperle42685d2016-03-16 12:24:57 -0700139#define BCM2835_DMA_D_WIDTH BIT(5) /* 128bit writes if set */
140#define BCM2835_DMA_D_DREQ BIT(6) /* enable DREQ for destination */
141#define BCM2835_DMA_D_IGNORE BIT(7) /* ignore destination writes */
Florian Meier96286b52014-01-06 20:18:24 +0100142#define BCM2835_DMA_S_INC BIT(8)
Martin Sperle42685d2016-03-16 12:24:57 -0700143#define BCM2835_DMA_S_WIDTH BIT(9) /* 128bit writes if set */
144#define BCM2835_DMA_S_DREQ BIT(10) /* enable SREQ for source */
145#define BCM2835_DMA_S_IGNORE BIT(11) /* ignore source reads - read 0 */
146#define BCM2835_DMA_BURST_LENGTH(x) ((x & 15) << 12)
147#define BCM2835_DMA_PER_MAP(x) ((x & 31) << 16) /* REQ source */
148#define BCM2835_DMA_WAIT(x) ((x & 31) << 21) /* add DMA-wait cycles */
149#define BCM2835_DMA_NO_WIDE_BURSTS BIT(26) /* no 2 beat write bursts */
Florian Meier96286b52014-01-06 20:18:24 +0100150
Martin Sperle42685d2016-03-16 12:24:57 -0700151/* debug register bits */
152#define BCM2835_DMA_DEBUG_LAST_NOT_SET_ERR BIT(0)
153#define BCM2835_DMA_DEBUG_FIFO_ERR BIT(1)
154#define BCM2835_DMA_DEBUG_READ_ERR BIT(2)
155#define BCM2835_DMA_DEBUG_OUTSTANDING_WRITES_SHIFT 4
156#define BCM2835_DMA_DEBUG_OUTSTANDING_WRITES_BITS 4
157#define BCM2835_DMA_DEBUG_ID_SHIFT 16
158#define BCM2835_DMA_DEBUG_ID_BITS 9
159#define BCM2835_DMA_DEBUG_STATE_SHIFT 16
160#define BCM2835_DMA_DEBUG_STATE_BITS 9
161#define BCM2835_DMA_DEBUG_VERSION_SHIFT 25
162#define BCM2835_DMA_DEBUG_VERSION_BITS 3
163#define BCM2835_DMA_DEBUG_LITE BIT(28)
164
165/* shared registers for all dma channels */
166#define BCM2835_DMA_INT_STATUS 0xfe0
167#define BCM2835_DMA_ENABLE 0xff0
Florian Meier96286b52014-01-06 20:18:24 +0100168
169#define BCM2835_DMA_DATA_TYPE_S8 1
170#define BCM2835_DMA_DATA_TYPE_S16 2
171#define BCM2835_DMA_DATA_TYPE_S32 4
172#define BCM2835_DMA_DATA_TYPE_S128 16
173
Florian Meier96286b52014-01-06 20:18:24 +0100174/* Valid only for channels 0 - 14, 15 has its own base address */
175#define BCM2835_DMA_CHAN(n) ((n) << 8) /* Base address */
176#define BCM2835_DMA_CHANIO(base, n) ((base) + BCM2835_DMA_CHAN(n))
177
Martin Sperl40874122016-03-16 12:25:00 -0700178/* the max dma length for different channels */
179#define MAX_DMA_LEN SZ_1G
180#define MAX_LITE_DMA_LEN (SZ_64K - 4)
181
182static inline size_t bcm2835_dma_max_frame_length(struct bcm2835_chan *c)
183{
184 /* lite and normal channels have different max frame length */
185 return c->is_lite_channel ? MAX_LITE_DMA_LEN : MAX_DMA_LEN;
186}
187
Martin Sperl92153bb2016-03-16 12:24:59 -0700188/* how many frames of max_len size do we need to transfer len bytes */
189static inline size_t bcm2835_dma_frames_for_length(size_t len,
190 size_t max_len)
191{
192 return DIV_ROUND_UP(len, max_len);
193}
194
Florian Meier96286b52014-01-06 20:18:24 +0100195static inline struct bcm2835_dmadev *to_bcm2835_dma_dev(struct dma_device *d)
196{
197 return container_of(d, struct bcm2835_dmadev, ddev);
198}
199
200static inline struct bcm2835_chan *to_bcm2835_dma_chan(struct dma_chan *c)
201{
202 return container_of(c, struct bcm2835_chan, vc.chan);
203}
204
205static inline struct bcm2835_desc *to_bcm2835_dma_desc(
206 struct dma_async_tx_descriptor *t)
207{
208 return container_of(t, struct bcm2835_desc, vd.tx);
209}
210
Martin Sperl92153bb2016-03-16 12:24:59 -0700211static void bcm2835_dma_free_cb_chain(struct bcm2835_desc *desc)
Florian Meier96286b52014-01-06 20:18:24 +0100212{
Martin Sperl92153bb2016-03-16 12:24:59 -0700213 size_t i;
Peter Ujfalusi27bc9442015-11-16 13:09:03 +0200214
215 for (i = 0; i < desc->frames; i++)
216 dma_pool_free(desc->c->cb_pool, desc->cb_list[i].cb,
217 desc->cb_list[i].paddr);
218
Florian Meier96286b52014-01-06 20:18:24 +0100219 kfree(desc);
220}
221
Martin Sperl92153bb2016-03-16 12:24:59 -0700222static void bcm2835_dma_desc_free(struct virt_dma_desc *vd)
223{
224 bcm2835_dma_free_cb_chain(
225 container_of(vd, struct bcm2835_desc, vd));
226}
227
228static void bcm2835_dma_create_cb_set_length(
229 struct bcm2835_chan *chan,
230 struct bcm2835_dma_cb *control_block,
231 size_t len,
232 size_t period_len,
233 size_t *total_len,
234 u32 finalextrainfo)
235{
Martin Sperl40874122016-03-16 12:25:00 -0700236 size_t max_len = bcm2835_dma_max_frame_length(chan);
237
238 /* set the length taking lite-channel limitations into account */
239 control_block->length = min_t(u32, len, max_len);
Martin Sperl92153bb2016-03-16 12:24:59 -0700240
241 /* finished if we have no period_length */
242 if (!period_len)
243 return;
244
245 /*
246 * period_len means: that we need to generate
247 * transfers that are terminating at every
248 * multiple of period_len - this is typically
249 * used to set the interrupt flag in info
250 * which is required during cyclic transfers
251 */
252
253 /* have we filled in period_length yet? */
Matthias Reichl25c77942017-02-20 20:01:16 +0100254 if (*total_len + control_block->length < period_len) {
255 /* update number of bytes in this period so far */
256 *total_len += control_block->length;
Martin Sperl92153bb2016-03-16 12:24:59 -0700257 return;
Matthias Reichl25c77942017-02-20 20:01:16 +0100258 }
Martin Sperl92153bb2016-03-16 12:24:59 -0700259
260 /* calculate the length that remains to reach period_length */
261 control_block->length = period_len - *total_len;
262
263 /* reset total_length for next period */
264 *total_len = 0;
265
266 /* add extrainfo bits in info */
267 control_block->info |= finalextrainfo;
268}
269
Martin Sperl388cc7a2016-03-16 12:25:01 -0700270static inline size_t bcm2835_dma_count_frames_for_sg(
271 struct bcm2835_chan *c,
272 struct scatterlist *sgl,
273 unsigned int sg_len)
274{
275 size_t frames = 0;
276 struct scatterlist *sgent;
277 unsigned int i;
278 size_t plength = bcm2835_dma_max_frame_length(c);
279
280 for_each_sg(sgl, sgent, sg_len, i)
281 frames += bcm2835_dma_frames_for_length(
282 sg_dma_len(sgent), plength);
283
284 return frames;
285}
286
Martin Sperl92153bb2016-03-16 12:24:59 -0700287/**
288 * bcm2835_dma_create_cb_chain - create a control block and fills data in
289 *
290 * @chan: the @dma_chan for which we run this
291 * @direction: the direction in which we transfer
292 * @cyclic: it is a cyclic transfer
293 * @info: the default info bits to apply per controlblock
294 * @frames: number of controlblocks to allocate
295 * @src: the src address to assign (if the S_INC bit is set
296 * in @info, then it gets incremented)
297 * @dst: the dst address to assign (if the D_INC bit is set
298 * in @info, then it gets incremented)
299 * @buf_len: the full buffer length (may also be 0)
300 * @period_len: the period length when to apply @finalextrainfo
301 * in addition to the last transfer
302 * this will also break some control-blocks early
303 * @finalextrainfo: additional bits in last controlblock
304 * (or when period_len is reached in case of cyclic)
305 * @gfp: the GFP flag to use for allocation
306 */
307static struct bcm2835_desc *bcm2835_dma_create_cb_chain(
308 struct dma_chan *chan, enum dma_transfer_direction direction,
309 bool cyclic, u32 info, u32 finalextrainfo, size_t frames,
310 dma_addr_t src, dma_addr_t dst, size_t buf_len,
311 size_t period_len, gfp_t gfp)
312{
313 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
314 size_t len = buf_len, total_len;
315 size_t frame;
316 struct bcm2835_desc *d;
317 struct bcm2835_cb_entry *cb_entry;
318 struct bcm2835_dma_cb *control_block;
319
Martin Sperld9f094a2016-03-16 12:25:02 -0700320 if (!frames)
321 return NULL;
322
Martin Sperl92153bb2016-03-16 12:24:59 -0700323 /* allocate and setup the descriptor. */
324 d = kzalloc(sizeof(*d) + frames * sizeof(struct bcm2835_cb_entry),
325 gfp);
326 if (!d)
327 return NULL;
328
329 d->c = c;
330 d->dir = direction;
331 d->cyclic = cyclic;
332
333 /*
334 * Iterate over all frames, create a control block
335 * for each frame and link them together.
336 */
337 for (frame = 0, total_len = 0; frame < frames; d->frames++, frame++) {
338 cb_entry = &d->cb_list[frame];
339 cb_entry->cb = dma_pool_alloc(c->cb_pool, gfp,
340 &cb_entry->paddr);
341 if (!cb_entry->cb)
342 goto error_cb;
343
344 /* fill in the control block */
345 control_block = cb_entry->cb;
346 control_block->info = info;
347 control_block->src = src;
348 control_block->dst = dst;
349 control_block->stride = 0;
350 control_block->next = 0;
351 /* set up length in control_block if requested */
352 if (buf_len) {
353 /* calculate length honoring period_length */
354 bcm2835_dma_create_cb_set_length(
355 c, control_block,
356 len, period_len, &total_len,
357 cyclic ? finalextrainfo : 0);
358
359 /* calculate new remaining length */
360 len -= control_block->length;
361 }
362
363 /* link this the last controlblock */
364 if (frame)
365 d->cb_list[frame - 1].cb->next = cb_entry->paddr;
366
367 /* update src and dst and length */
368 if (src && (info & BCM2835_DMA_S_INC))
369 src += control_block->length;
370 if (dst && (info & BCM2835_DMA_D_INC))
371 dst += control_block->length;
372
373 /* Length of total transfer */
374 d->size += control_block->length;
375 }
376
377 /* the last frame requires extra flags */
378 d->cb_list[d->frames - 1].cb->info |= finalextrainfo;
379
380 /* detect a size missmatch */
381 if (buf_len && (d->size != buf_len))
382 goto error_cb;
383
384 return d;
385error_cb:
386 bcm2835_dma_free_cb_chain(d);
387
388 return NULL;
389}
390
Martin Sperl388cc7a2016-03-16 12:25:01 -0700391static void bcm2835_dma_fill_cb_chain_with_sg(
392 struct dma_chan *chan,
393 enum dma_transfer_direction direction,
394 struct bcm2835_cb_entry *cb,
395 struct scatterlist *sgl,
396 unsigned int sg_len)
397{
398 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
Arnd Bergmann4aa819c2016-06-30 14:47:10 +0200399 size_t len, max_len;
400 unsigned int i;
Martin Sperl388cc7a2016-03-16 12:25:01 -0700401 dma_addr_t addr;
402 struct scatterlist *sgent;
403
Arnd Bergmann4aa819c2016-06-30 14:47:10 +0200404 max_len = bcm2835_dma_max_frame_length(c);
Martin Sperl388cc7a2016-03-16 12:25:01 -0700405 for_each_sg(sgl, sgent, sg_len, i) {
406 for (addr = sg_dma_address(sgent), len = sg_dma_len(sgent);
407 len > 0;
408 addr += cb->cb->length, len -= cb->cb->length, cb++) {
409 if (direction == DMA_DEV_TO_MEM)
410 cb->cb->dst = addr;
411 else
412 cb->cb->src = addr;
413 cb->cb->length = min(len, max_len);
414 }
415 }
416}
417
Lukas Wunner3c830792019-01-23 09:26:00 +0100418static int bcm2835_dma_abort(struct bcm2835_chan *c)
Florian Meier96286b52014-01-06 20:18:24 +0100419{
Lukas Wunner3c830792019-01-23 09:26:00 +0100420 void __iomem *chan_base = c->chan_base;
Florian Meier96286b52014-01-06 20:18:24 +0100421 long int timeout = 10000;
422
Lukas Wunner277242c2019-01-23 09:26:00 +0100423 /*
424 * A zero control block address means the channel is idle.
425 * (The ACTIVE flag in the CS register is not a reliable indicator.)
426 */
427 if (!readl(chan_base + BCM2835_DMA_ADDR))
Florian Meier96286b52014-01-06 20:18:24 +0100428 return 0;
429
430 /* Write 0 to the active bit - Pause the DMA */
431 writel(0, chan_base + BCM2835_DMA_CS);
432
433 /* Wait for any current AXI transfer to complete */
Lukas Wunner3c830792019-01-23 09:26:00 +0100434 while ((readl(chan_base + BCM2835_DMA_CS) &
435 BCM2835_DMA_WAITING_FOR_WRITES) && --timeout)
Florian Meier96286b52014-01-06 20:18:24 +0100436 cpu_relax();
Florian Meier96286b52014-01-06 20:18:24 +0100437
Lukas Wunner3c830792019-01-23 09:26:00 +0100438 /* Peripheral might be stuck and fail to signal AXI write responses */
Florian Meier96286b52014-01-06 20:18:24 +0100439 if (!timeout)
Lukas Wunner3c830792019-01-23 09:26:00 +0100440 dev_err(c->vc.chan.device->dev,
441 "failed to complete outstanding writes\n");
Florian Meier96286b52014-01-06 20:18:24 +0100442
Lukas Wunner3c830792019-01-23 09:26:00 +0100443 writel(BCM2835_DMA_RESET, chan_base + BCM2835_DMA_CS);
Florian Meier96286b52014-01-06 20:18:24 +0100444 return 0;
445}
446
447static void bcm2835_dma_start_desc(struct bcm2835_chan *c)
448{
449 struct virt_dma_desc *vd = vchan_next_desc(&c->vc);
450 struct bcm2835_desc *d;
451
452 if (!vd) {
453 c->desc = NULL;
454 return;
455 }
456
457 list_del(&vd->node);
458
459 c->desc = d = to_bcm2835_dma_desc(&vd->tx);
460
Peter Ujfalusi27bc9442015-11-16 13:09:03 +0200461 writel(d->cb_list[0].paddr, c->chan_base + BCM2835_DMA_ADDR);
Florian Meier96286b52014-01-06 20:18:24 +0100462 writel(BCM2835_DMA_ACTIVE, c->chan_base + BCM2835_DMA_CS);
463}
464
465static irqreturn_t bcm2835_dma_callback(int irq, void *data)
466{
467 struct bcm2835_chan *c = data;
468 struct bcm2835_desc *d;
469 unsigned long flags;
470
Martin Sperle2eca632016-04-11 13:29:08 +0000471 /* check the shared interrupt */
472 if (c->irq_flags & IRQF_SHARED) {
473 /* check if the interrupt is enabled */
474 flags = readl(c->chan_base + BCM2835_DMA_CS);
475 /* if not set then we are not the reason for the irq */
476 if (!(flags & BCM2835_DMA_INT))
477 return IRQ_NONE;
478 }
479
Florian Meier96286b52014-01-06 20:18:24 +0100480 spin_lock_irqsave(&c->vc.lock, flags);
481
Lukas Wunner277242c2019-01-23 09:26:00 +0100482 /*
483 * Clear the INT flag to receive further interrupts. Keep the channel
484 * active in case the descriptor is cyclic or in case the client has
485 * already terminated the descriptor and issued a new one. (May happen
486 * if this IRQ handler is threaded.) If the channel is finished, it
487 * will remain idle despite the ACTIVE flag being set.
488 */
489 writel(BCM2835_DMA_INT | BCM2835_DMA_ACTIVE,
490 c->chan_base + BCM2835_DMA_CS);
Florian Meier96286b52014-01-06 20:18:24 +0100491
492 d = c->desc;
493
494 if (d) {
Martin Sperl388cc7a2016-03-16 12:25:01 -0700495 if (d->cyclic) {
496 /* call the cyclic callback */
497 vchan_cyclic_callback(&d->vd);
Lukas Wunner277242c2019-01-23 09:26:00 +0100498 } else if (!readl(c->chan_base + BCM2835_DMA_ADDR)) {
Martin Sperl388cc7a2016-03-16 12:25:01 -0700499 vchan_cookie_complete(&c->desc->vd);
500 bcm2835_dma_start_desc(c);
501 }
502 }
Florian Meier96286b52014-01-06 20:18:24 +0100503
504 spin_unlock_irqrestore(&c->vc.lock, flags);
505
506 return IRQ_HANDLED;
507}
508
509static int bcm2835_dma_alloc_chan_resources(struct dma_chan *chan)
510{
511 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
Peter Ujfalusi27bc9442015-11-16 13:09:03 +0200512 struct device *dev = c->vc.chan.device->dev;
Florian Meier96286b52014-01-06 20:18:24 +0100513
Peter Ujfalusi27bc9442015-11-16 13:09:03 +0200514 dev_dbg(dev, "Allocating DMA channel %d\n", c->ch);
515
516 c->cb_pool = dma_pool_create(dev_name(dev), dev,
517 sizeof(struct bcm2835_dma_cb), 0, 0);
518 if (!c->cb_pool) {
519 dev_err(dev, "unable to allocate descriptor pool\n");
520 return -ENOMEM;
521 }
Florian Meier96286b52014-01-06 20:18:24 +0100522
Martin Sperle2eca632016-04-11 13:29:08 +0000523 return request_irq(c->irq_number, bcm2835_dma_callback,
524 c->irq_flags, "DMA IRQ", c);
Florian Meier96286b52014-01-06 20:18:24 +0100525}
526
527static void bcm2835_dma_free_chan_resources(struct dma_chan *chan)
528{
529 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
530
531 vchan_free_chan_resources(&c->vc);
532 free_irq(c->irq_number, c);
Peter Ujfalusi27bc9442015-11-16 13:09:03 +0200533 dma_pool_destroy(c->cb_pool);
Florian Meier96286b52014-01-06 20:18:24 +0100534
535 dev_dbg(c->vc.chan.device->dev, "Freeing DMA channel %u\n", c->ch);
536}
537
538static size_t bcm2835_dma_desc_size(struct bcm2835_desc *d)
539{
540 return d->size;
541}
542
543static size_t bcm2835_dma_desc_size_pos(struct bcm2835_desc *d, dma_addr_t addr)
544{
545 unsigned int i;
546 size_t size;
547
548 for (size = i = 0; i < d->frames; i++) {
Peter Ujfalusi27bc9442015-11-16 13:09:03 +0200549 struct bcm2835_dma_cb *control_block = d->cb_list[i].cb;
Florian Meier96286b52014-01-06 20:18:24 +0100550 size_t this_size = control_block->length;
551 dma_addr_t dma;
552
553 if (d->dir == DMA_DEV_TO_MEM)
554 dma = control_block->dst;
555 else
556 dma = control_block->src;
557
558 if (size)
559 size += this_size;
560 else if (addr >= dma && addr < dma + this_size)
561 size += dma + this_size - addr;
562 }
563
564 return size;
565}
566
567static enum dma_status bcm2835_dma_tx_status(struct dma_chan *chan,
568 dma_cookie_t cookie, struct dma_tx_state *txstate)
569{
570 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
571 struct virt_dma_desc *vd;
572 enum dma_status ret;
573 unsigned long flags;
574
575 ret = dma_cookie_status(chan, cookie, txstate);
576 if (ret == DMA_COMPLETE || !txstate)
577 return ret;
578
579 spin_lock_irqsave(&c->vc.lock, flags);
580 vd = vchan_find_desc(&c->vc, cookie);
581 if (vd) {
582 txstate->residue =
583 bcm2835_dma_desc_size(to_bcm2835_dma_desc(&vd->tx));
584 } else if (c->desc && c->desc->vd.tx.cookie == cookie) {
585 struct bcm2835_desc *d = c->desc;
586 dma_addr_t pos;
587
588 if (d->dir == DMA_MEM_TO_DEV)
589 pos = readl(c->chan_base + BCM2835_DMA_SOURCE_AD);
590 else if (d->dir == DMA_DEV_TO_MEM)
591 pos = readl(c->chan_base + BCM2835_DMA_DEST_AD);
592 else
593 pos = 0;
594
595 txstate->residue = bcm2835_dma_desc_size_pos(d, pos);
596 } else {
597 txstate->residue = 0;
598 }
599
600 spin_unlock_irqrestore(&c->vc.lock, flags);
601
602 return ret;
603}
604
605static void bcm2835_dma_issue_pending(struct dma_chan *chan)
606{
607 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
608 unsigned long flags;
609
Florian Meier96286b52014-01-06 20:18:24 +0100610 spin_lock_irqsave(&c->vc.lock, flags);
611 if (vchan_issue_pending(&c->vc) && !c->desc)
612 bcm2835_dma_start_desc(c);
613
614 spin_unlock_irqrestore(&c->vc.lock, flags);
615}
616
Ben Dooks63637222016-06-07 17:14:56 +0100617static struct dma_async_tx_descriptor *bcm2835_dma_prep_dma_memcpy(
Martin Sperld9f094a2016-03-16 12:25:02 -0700618 struct dma_chan *chan, dma_addr_t dst, dma_addr_t src,
619 size_t len, unsigned long flags)
620{
621 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
622 struct bcm2835_desc *d;
623 u32 info = BCM2835_DMA_D_INC | BCM2835_DMA_S_INC;
624 u32 extra = BCM2835_DMA_INT_EN | BCM2835_DMA_WAIT_RESP;
625 size_t max_len = bcm2835_dma_max_frame_length(c);
626 size_t frames;
627
628 /* if src, dst or len is not given return with an error */
629 if (!src || !dst || !len)
630 return NULL;
631
632 /* calculate number of frames */
633 frames = bcm2835_dma_frames_for_length(len, max_len);
634
635 /* allocate the CB chain - this also fills in the pointers */
636 d = bcm2835_dma_create_cb_chain(chan, DMA_MEM_TO_MEM, false,
637 info, extra, frames,
638 src, dst, len, 0, GFP_KERNEL);
639 if (!d)
640 return NULL;
641
642 return vchan_tx_prep(&c->vc, &d->vd, flags);
643}
644
Martin Sperl388cc7a2016-03-16 12:25:01 -0700645static struct dma_async_tx_descriptor *bcm2835_dma_prep_slave_sg(
646 struct dma_chan *chan,
647 struct scatterlist *sgl, unsigned int sg_len,
648 enum dma_transfer_direction direction,
649 unsigned long flags, void *context)
650{
651 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
652 struct bcm2835_desc *d;
653 dma_addr_t src = 0, dst = 0;
654 u32 info = BCM2835_DMA_WAIT_RESP;
655 u32 extra = BCM2835_DMA_INT_EN;
656 size_t frames;
657
658 if (!is_slave_direction(direction)) {
659 dev_err(chan->device->dev,
660 "%s: bad direction?\n", __func__);
661 return NULL;
662 }
663
664 if (c->dreq != 0)
665 info |= BCM2835_DMA_PER_MAP(c->dreq);
666
667 if (direction == DMA_DEV_TO_MEM) {
668 if (c->cfg.src_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES)
669 return NULL;
670 src = c->cfg.src_addr;
671 info |= BCM2835_DMA_S_DREQ | BCM2835_DMA_D_INC;
672 } else {
673 if (c->cfg.dst_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES)
674 return NULL;
675 dst = c->cfg.dst_addr;
676 info |= BCM2835_DMA_D_DREQ | BCM2835_DMA_S_INC;
677 }
678
679 /* count frames in sg list */
680 frames = bcm2835_dma_count_frames_for_sg(c, sgl, sg_len);
681
682 /* allocate the CB chain */
683 d = bcm2835_dma_create_cb_chain(chan, direction, false,
684 info, extra,
685 frames, src, dst, 0, 0,
686 GFP_KERNEL);
687 if (!d)
688 return NULL;
689
690 /* fill in frames with scatterlist pointers */
691 bcm2835_dma_fill_cb_chain_with_sg(chan, direction, d->cb_list,
692 sgl, sg_len);
693
694 return vchan_tx_prep(&c->vc, &d->vd, flags);
695}
696
Florian Meier96286b52014-01-06 20:18:24 +0100697static struct dma_async_tx_descriptor *bcm2835_dma_prep_dma_cyclic(
698 struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
699 size_t period_len, enum dma_transfer_direction direction,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +0200700 unsigned long flags)
Florian Meier96286b52014-01-06 20:18:24 +0100701{
702 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
Florian Meier96286b52014-01-06 20:18:24 +0100703 struct bcm2835_desc *d;
Martin Sperl92153bb2016-03-16 12:24:59 -0700704 dma_addr_t src, dst;
705 u32 info = BCM2835_DMA_WAIT_RESP;
706 u32 extra = BCM2835_DMA_INT_EN;
Martin Sperl40874122016-03-16 12:25:00 -0700707 size_t max_len = bcm2835_dma_max_frame_length(c);
Martin Sperl92153bb2016-03-16 12:24:59 -0700708 size_t frames;
Florian Meier96286b52014-01-06 20:18:24 +0100709
710 /* Grab configuration */
711 if (!is_slave_direction(direction)) {
712 dev_err(chan->device->dev, "%s: bad direction?\n", __func__);
713 return NULL;
714 }
715
Martin Sperl92153bb2016-03-16 12:24:59 -0700716 if (!buf_len) {
717 dev_err(chan->device->dev,
718 "%s: bad buffer length (= 0)\n", __func__);
Florian Meier96286b52014-01-06 20:18:24 +0100719 return NULL;
720 }
721
Florian Meier96286b52014-01-06 20:18:24 +0100722 /*
Martin Sperl92153bb2016-03-16 12:24:59 -0700723 * warn if buf_len is not a multiple of period_len - this may leed
724 * to unexpected latencies for interrupts and thus audiable clicks
Florian Meier96286b52014-01-06 20:18:24 +0100725 */
Martin Sperl92153bb2016-03-16 12:24:59 -0700726 if (buf_len % period_len)
727 dev_warn_once(chan->device->dev,
728 "%s: buffer_length (%zd) is not a multiple of period_len (%zd)\n",
729 __func__, buf_len, period_len);
Florian Meier96286b52014-01-06 20:18:24 +0100730
Martin Sperl92153bb2016-03-16 12:24:59 -0700731 /* Setup DREQ channel */
732 if (c->dreq != 0)
733 info |= BCM2835_DMA_PER_MAP(c->dreq);
Florian Meier96286b52014-01-06 20:18:24 +0100734
Martin Sperl92153bb2016-03-16 12:24:59 -0700735 if (direction == DMA_DEV_TO_MEM) {
736 if (c->cfg.src_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES)
737 return NULL;
738 src = c->cfg.src_addr;
739 dst = buf_addr;
740 info |= BCM2835_DMA_S_DREQ | BCM2835_DMA_D_INC;
741 } else {
742 if (c->cfg.dst_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES)
743 return NULL;
744 dst = c->cfg.dst_addr;
745 src = buf_addr;
746 info |= BCM2835_DMA_D_DREQ | BCM2835_DMA_S_INC;
Florian Meier96286b52014-01-06 20:18:24 +0100747 }
748
Martin Sperl92153bb2016-03-16 12:24:59 -0700749 /* calculate number of frames */
Martin Sperl40874122016-03-16 12:25:00 -0700750 frames = /* number of periods */
751 DIV_ROUND_UP(buf_len, period_len) *
752 /* number of frames per period */
753 bcm2835_dma_frames_for_length(period_len, max_len);
Martin Sperl92153bb2016-03-16 12:24:59 -0700754
755 /*
756 * allocate the CB chain
757 * note that we need to use GFP_NOWAIT, as the ALSA i2s dmaengine
758 * implementation calls prep_dma_cyclic with interrupts disabled.
759 */
760 d = bcm2835_dma_create_cb_chain(chan, direction, true,
761 info, extra,
762 frames, src, dst, buf_len,
763 period_len, GFP_NOWAIT);
764 if (!d)
765 return NULL;
766
767 /* wrap around into a loop */
768 d->cb_list[d->frames - 1].cb->next = d->cb_list[0].paddr;
769
Florian Meier96286b52014-01-06 20:18:24 +0100770 return vchan_tx_prep(&c->vc, &d->vd, flags);
771}
772
Maxime Ripard39159be2014-11-17 14:42:08 +0100773static int bcm2835_dma_slave_config(struct dma_chan *chan,
774 struct dma_slave_config *cfg)
Florian Meier96286b52014-01-06 20:18:24 +0100775{
Maxime Ripard39159be2014-11-17 14:42:08 +0100776 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
777
Florian Meier96286b52014-01-06 20:18:24 +0100778 if ((cfg->direction == DMA_DEV_TO_MEM &&
779 cfg->src_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES) ||
780 (cfg->direction == DMA_MEM_TO_DEV &&
781 cfg->dst_addr_width != DMA_SLAVE_BUSWIDTH_4_BYTES) ||
782 !is_slave_direction(cfg->direction)) {
783 return -EINVAL;
784 }
785
786 c->cfg = *cfg;
787
788 return 0;
789}
790
Maxime Ripard39159be2014-11-17 14:42:08 +0100791static int bcm2835_dma_terminate_all(struct dma_chan *chan)
Florian Meier96286b52014-01-06 20:18:24 +0100792{
Maxime Ripard39159be2014-11-17 14:42:08 +0100793 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
Florian Meier96286b52014-01-06 20:18:24 +0100794 struct bcm2835_dmadev *d = to_bcm2835_dma_dev(c->vc.chan.device);
795 unsigned long flags;
Florian Meier96286b52014-01-06 20:18:24 +0100796 LIST_HEAD(head);
797
798 spin_lock_irqsave(&c->vc.lock, flags);
799
800 /* Prevent this channel being scheduled */
801 spin_lock(&d->lock);
802 list_del_init(&c->node);
803 spin_unlock(&d->lock);
804
Lukas Wunner277242c2019-01-23 09:26:00 +0100805 /* stop DMA activity */
Florian Meier96286b52014-01-06 20:18:24 +0100806 if (c->desc) {
Peter Ujfalusif9317822015-03-27 13:35:53 +0200807 bcm2835_dma_desc_free(&c->desc->vd);
Florian Meier96286b52014-01-06 20:18:24 +0100808 c->desc = NULL;
Lukas Wunner3c830792019-01-23 09:26:00 +0100809 bcm2835_dma_abort(c);
Florian Meier96286b52014-01-06 20:18:24 +0100810 }
811
812 vchan_get_all_descriptors(&c->vc, &head);
813 spin_unlock_irqrestore(&c->vc.lock, flags);
814 vchan_dma_desc_free_list(&c->vc, &head);
815
816 return 0;
817}
818
Martin Sperle2eca632016-04-11 13:29:08 +0000819static int bcm2835_dma_chan_init(struct bcm2835_dmadev *d, int chan_id,
820 int irq, unsigned int irq_flags)
Florian Meier96286b52014-01-06 20:18:24 +0100821{
822 struct bcm2835_chan *c;
823
824 c = devm_kzalloc(d->ddev.dev, sizeof(*c), GFP_KERNEL);
825 if (!c)
826 return -ENOMEM;
827
828 c->vc.desc_free = bcm2835_dma_desc_free;
829 vchan_init(&c->vc, &d->ddev);
830 INIT_LIST_HEAD(&c->node);
831
Florian Meier96286b52014-01-06 20:18:24 +0100832 c->chan_base = BCM2835_DMA_CHANIO(d->base, chan_id);
833 c->ch = chan_id;
834 c->irq_number = irq;
Martin Sperle2eca632016-04-11 13:29:08 +0000835 c->irq_flags = irq_flags;
Florian Meier96286b52014-01-06 20:18:24 +0100836
Martin Sperl40874122016-03-16 12:25:00 -0700837 /* check in DEBUG register if this is a LITE channel */
838 if (readl(c->chan_base + BCM2835_DMA_DEBUG) &
839 BCM2835_DMA_DEBUG_LITE)
840 c->is_lite_channel = true;
841
Florian Meier96286b52014-01-06 20:18:24 +0100842 return 0;
843}
844
845static void bcm2835_dma_free(struct bcm2835_dmadev *od)
846{
847 struct bcm2835_chan *c, *next;
848
849 list_for_each_entry_safe(c, next, &od->ddev.channels,
850 vc.chan.device_node) {
851 list_del(&c->vc.chan.device_node);
852 tasklet_kill(&c->vc.task);
853 }
854}
855
856static const struct of_device_id bcm2835_dma_of_match[] = {
857 { .compatible = "brcm,bcm2835-dma", },
858 {},
859};
860MODULE_DEVICE_TABLE(of, bcm2835_dma_of_match);
861
862static struct dma_chan *bcm2835_dma_xlate(struct of_phandle_args *spec,
863 struct of_dma *ofdma)
864{
865 struct bcm2835_dmadev *d = ofdma->of_dma_data;
866 struct dma_chan *chan;
867
868 chan = dma_get_any_slave_channel(&d->ddev);
869 if (!chan)
870 return NULL;
871
872 /* Set DREQ from param */
873 to_bcm2835_dma_chan(chan)->dreq = spec->args[0];
874
875 return chan;
876}
877
Florian Meier96286b52014-01-06 20:18:24 +0100878static int bcm2835_dma_probe(struct platform_device *pdev)
879{
880 struct bcm2835_dmadev *od;
881 struct resource *res;
882 void __iomem *base;
883 int rc;
Martin Sperle2eca632016-04-11 13:29:08 +0000884 int i, j;
885 int irq[BCM2835_DMA_MAX_DMA_CHAN_SUPPORTED + 1];
886 int irq_flags;
Florian Meier96286b52014-01-06 20:18:24 +0100887 uint32_t chans_available;
Martin Sperle2eca632016-04-11 13:29:08 +0000888 char chan_name[BCM2835_DMA_CHAN_NAME_SIZE];
Florian Meier96286b52014-01-06 20:18:24 +0100889
890 if (!pdev->dev.dma_mask)
891 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
892
893 rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Stefan Wahren51a1ca82019-07-16 19:15:18 +0200894 if (rc) {
895 dev_err(&pdev->dev, "Unable to set DMA mask\n");
Florian Meier96286b52014-01-06 20:18:24 +0100896 return rc;
Stefan Wahren51a1ca82019-07-16 19:15:18 +0200897 }
Florian Meier96286b52014-01-06 20:18:24 +0100898
899 od = devm_kzalloc(&pdev->dev, sizeof(*od), GFP_KERNEL);
900 if (!od)
901 return -ENOMEM;
902
903 pdev->dev.dma_parms = &od->dma_parms;
904 dma_set_max_seg_size(&pdev->dev, 0x3FFFFFFF);
905
906 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
907 base = devm_ioremap_resource(&pdev->dev, res);
908 if (IS_ERR(base))
909 return PTR_ERR(base);
910
911 od->base = base;
912
913 dma_cap_set(DMA_SLAVE, od->ddev.cap_mask);
Florian Meier7f5ae352014-01-17 18:06:29 +0100914 dma_cap_set(DMA_PRIVATE, od->ddev.cap_mask);
Florian Meier96286b52014-01-06 20:18:24 +0100915 dma_cap_set(DMA_CYCLIC, od->ddev.cap_mask);
Martin Sperl388cc7a2016-03-16 12:25:01 -0700916 dma_cap_set(DMA_SLAVE, od->ddev.cap_mask);
Martin Sperld9f094a2016-03-16 12:25:02 -0700917 dma_cap_set(DMA_MEMCPY, od->ddev.cap_mask);
Florian Meier96286b52014-01-06 20:18:24 +0100918 od->ddev.device_alloc_chan_resources = bcm2835_dma_alloc_chan_resources;
919 od->ddev.device_free_chan_resources = bcm2835_dma_free_chan_resources;
920 od->ddev.device_tx_status = bcm2835_dma_tx_status;
921 od->ddev.device_issue_pending = bcm2835_dma_issue_pending;
Florian Meier96286b52014-01-06 20:18:24 +0100922 od->ddev.device_prep_dma_cyclic = bcm2835_dma_prep_dma_cyclic;
Martin Sperl388cc7a2016-03-16 12:25:01 -0700923 od->ddev.device_prep_slave_sg = bcm2835_dma_prep_slave_sg;
Martin Sperld9f094a2016-03-16 12:25:02 -0700924 od->ddev.device_prep_dma_memcpy = bcm2835_dma_prep_dma_memcpy;
Maxime Ripard39159be2014-11-17 14:42:08 +0100925 od->ddev.device_config = bcm2835_dma_slave_config;
926 od->ddev.device_terminate_all = bcm2835_dma_terminate_all;
Maxime Ripardb5743682014-11-17 14:42:45 +0100927 od->ddev.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
928 od->ddev.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
Martin Sperld9f094a2016-03-16 12:25:02 -0700929 od->ddev.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV) |
930 BIT(DMA_MEM_TO_MEM);
Martin Sperl0fa58672016-03-16 12:24:55 -0700931 od->ddev.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
Florian Meier96286b52014-01-06 20:18:24 +0100932 od->ddev.dev = &pdev->dev;
933 INIT_LIST_HEAD(&od->ddev.channels);
934 spin_lock_init(&od->lock);
935
936 platform_set_drvdata(pdev, od);
937
938 /* Request DMA channel mask from device tree */
939 if (of_property_read_u32(pdev->dev.of_node,
940 "brcm,dma-channel-mask",
941 &chans_available)) {
942 dev_err(&pdev->dev, "Failed to get channel mask\n");
943 rc = -EINVAL;
944 goto err_no_dma;
945 }
946
Martin Sperle2eca632016-04-11 13:29:08 +0000947 /* get irqs for each channel that we support */
948 for (i = 0; i <= BCM2835_DMA_MAX_DMA_CHAN_SUPPORTED; i++) {
949 /* skip masked out channels */
950 if (!(chans_available & (1 << i))) {
951 irq[i] = -1;
952 continue;
Florian Meier96286b52014-01-06 20:18:24 +0100953 }
Martin Sperle2eca632016-04-11 13:29:08 +0000954
955 /* get the named irq */
956 snprintf(chan_name, sizeof(chan_name), "dma%i", i);
957 irq[i] = platform_get_irq_byname(pdev, chan_name);
958 if (irq[i] >= 0)
959 continue;
960
961 /* legacy device tree case handling */
962 dev_warn_once(&pdev->dev,
Martin Sperl0eef7272016-04-22 07:12:48 +0000963 "missing interrupt-names property in device tree - legacy interpretation is used\n");
Martin Sperle2eca632016-04-11 13:29:08 +0000964 /*
965 * in case of channel >= 11
966 * use the 11th interrupt and that is shared
967 */
968 irq[i] = platform_get_irq(pdev, i < 11 ? i : 11);
969 }
970
971 /* get irqs for each channel */
972 for (i = 0; i <= BCM2835_DMA_MAX_DMA_CHAN_SUPPORTED; i++) {
973 /* skip channels without irq */
974 if (irq[i] < 0)
975 continue;
976
977 /* check if there are other channels that also use this irq */
978 irq_flags = 0;
979 for (j = 0; j <= BCM2835_DMA_MAX_DMA_CHAN_SUPPORTED; j++)
980 if ((i != j) && (irq[j] == irq[i])) {
981 irq_flags = IRQF_SHARED;
982 break;
983 }
984
985 /* initialize the channel */
986 rc = bcm2835_dma_chan_init(od, i, irq[i], irq_flags);
987 if (rc)
988 goto err_no_dma;
Florian Meier96286b52014-01-06 20:18:24 +0100989 }
990
991 dev_dbg(&pdev->dev, "Initialized %i DMA channels\n", i);
992
993 /* Device-tree DMA controller registration */
994 rc = of_dma_controller_register(pdev->dev.of_node,
995 bcm2835_dma_xlate, od);
996 if (rc) {
997 dev_err(&pdev->dev, "Failed to register DMA controller\n");
998 goto err_no_dma;
999 }
1000
1001 rc = dma_async_device_register(&od->ddev);
1002 if (rc) {
1003 dev_err(&pdev->dev,
1004 "Failed to register slave DMA engine device: %d\n", rc);
1005 goto err_no_dma;
1006 }
1007
1008 dev_dbg(&pdev->dev, "Load BCM2835 DMA engine driver\n");
1009
1010 return 0;
1011
1012err_no_dma:
1013 bcm2835_dma_free(od);
1014 return rc;
1015}
1016
1017static int bcm2835_dma_remove(struct platform_device *pdev)
1018{
1019 struct bcm2835_dmadev *od = platform_get_drvdata(pdev);
1020
1021 dma_async_device_unregister(&od->ddev);
1022 bcm2835_dma_free(od);
1023
1024 return 0;
1025}
1026
1027static struct platform_driver bcm2835_dma_driver = {
1028 .probe = bcm2835_dma_probe,
1029 .remove = bcm2835_dma_remove,
1030 .driver = {
1031 .name = "bcm2835-dma",
Florian Meier96286b52014-01-06 20:18:24 +01001032 .of_match_table = of_match_ptr(bcm2835_dma_of_match),
1033 },
1034};
1035
1036module_platform_driver(bcm2835_dma_driver);
1037
1038MODULE_ALIAS("platform:bcm2835-dma");
1039MODULE_DESCRIPTION("BCM2835 DMA engine driver");
1040MODULE_AUTHOR("Florian Meier <florian.meier@koalo.de>");
1041MODULE_LICENSE("GPL v2");