Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013-2014 Allwinner Tech Co., Ltd |
| 3 | * Author: Sugar <shuge@allwinnertech.com> |
| 4 | * |
| 5 | * Copyright (C) 2014 Maxime Ripard |
| 6 | * Maxime Ripard <maxime.ripard@free-electrons.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 as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #include <linux/clk.h> |
| 15 | #include <linux/delay.h> |
| 16 | #include <linux/dmaengine.h> |
| 17 | #include <linux/dmapool.h> |
| 18 | #include <linux/interrupt.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/of_dma.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/reset.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/types.h> |
| 25 | |
| 26 | #include "virt-dma.h" |
| 27 | |
| 28 | /* |
| 29 | * There's 16 physical channels that can work in parallel. |
| 30 | * |
| 31 | * However we have 30 different endpoints for our requests. |
| 32 | * |
| 33 | * Since the channels are able to handle only an unidirectional |
| 34 | * transfer, we need to allocate more virtual channels so that |
| 35 | * everyone can grab one channel. |
| 36 | * |
| 37 | * Some devices can't work in both direction (mostly because it |
| 38 | * wouldn't make sense), so we have a bit fewer virtual channels than |
| 39 | * 2 channels per endpoints. |
| 40 | */ |
| 41 | |
| 42 | #define NR_MAX_CHANNELS 16 |
| 43 | #define NR_MAX_REQUESTS 30 |
| 44 | #define NR_MAX_VCHANS 53 |
| 45 | |
| 46 | /* |
| 47 | * Common registers |
| 48 | */ |
| 49 | #define DMA_IRQ_EN(x) ((x) * 0x04) |
| 50 | #define DMA_IRQ_HALF BIT(0) |
| 51 | #define DMA_IRQ_PKG BIT(1) |
| 52 | #define DMA_IRQ_QUEUE BIT(2) |
| 53 | |
| 54 | #define DMA_IRQ_CHAN_NR 8 |
| 55 | #define DMA_IRQ_CHAN_WIDTH 4 |
| 56 | |
| 57 | |
| 58 | #define DMA_IRQ_STAT(x) ((x) * 0x04 + 0x10) |
| 59 | |
| 60 | #define DMA_STAT 0x30 |
| 61 | |
| 62 | /* |
| 63 | * Channels specific registers |
| 64 | */ |
| 65 | #define DMA_CHAN_ENABLE 0x00 |
| 66 | #define DMA_CHAN_ENABLE_START BIT(0) |
| 67 | #define DMA_CHAN_ENABLE_STOP 0 |
| 68 | |
| 69 | #define DMA_CHAN_PAUSE 0x04 |
| 70 | #define DMA_CHAN_PAUSE_PAUSE BIT(1) |
| 71 | #define DMA_CHAN_PAUSE_RESUME 0 |
| 72 | |
| 73 | #define DMA_CHAN_LLI_ADDR 0x08 |
| 74 | |
| 75 | #define DMA_CHAN_CUR_CFG 0x0c |
| 76 | #define DMA_CHAN_CFG_SRC_DRQ(x) ((x) & 0x1f) |
| 77 | #define DMA_CHAN_CFG_SRC_IO_MODE BIT(5) |
| 78 | #define DMA_CHAN_CFG_SRC_LINEAR_MODE (0 << 5) |
| 79 | #define DMA_CHAN_CFG_SRC_BURST(x) (((x) & 0x3) << 7) |
| 80 | #define DMA_CHAN_CFG_SRC_WIDTH(x) (((x) & 0x3) << 9) |
| 81 | |
| 82 | #define DMA_CHAN_CFG_DST_DRQ(x) (DMA_CHAN_CFG_SRC_DRQ(x) << 16) |
| 83 | #define DMA_CHAN_CFG_DST_IO_MODE (DMA_CHAN_CFG_SRC_IO_MODE << 16) |
| 84 | #define DMA_CHAN_CFG_DST_LINEAR_MODE (DMA_CHAN_CFG_SRC_LINEAR_MODE << 16) |
| 85 | #define DMA_CHAN_CFG_DST_BURST(x) (DMA_CHAN_CFG_SRC_BURST(x) << 16) |
| 86 | #define DMA_CHAN_CFG_DST_WIDTH(x) (DMA_CHAN_CFG_SRC_WIDTH(x) << 16) |
| 87 | |
| 88 | #define DMA_CHAN_CUR_SRC 0x10 |
| 89 | |
| 90 | #define DMA_CHAN_CUR_DST 0x14 |
| 91 | |
| 92 | #define DMA_CHAN_CUR_CNT 0x18 |
| 93 | |
| 94 | #define DMA_CHAN_CUR_PARA 0x1c |
| 95 | |
| 96 | |
| 97 | /* |
| 98 | * Various hardware related defines |
| 99 | */ |
| 100 | #define LLI_LAST_ITEM 0xfffff800 |
| 101 | #define NORMAL_WAIT 8 |
| 102 | #define DRQ_SDRAM 1 |
| 103 | |
| 104 | /* |
| 105 | * Hardware representation of the LLI |
| 106 | * |
| 107 | * The hardware will be fed the physical address of this structure, |
| 108 | * and read its content in order to start the transfer. |
| 109 | */ |
| 110 | struct sun6i_dma_lli { |
| 111 | u32 cfg; |
| 112 | u32 src; |
| 113 | u32 dst; |
| 114 | u32 len; |
| 115 | u32 para; |
| 116 | u32 p_lli_next; |
| 117 | |
| 118 | /* |
| 119 | * This field is not used by the DMA controller, but will be |
| 120 | * used by the CPU to go through the list (mostly for dumping |
| 121 | * or freeing it). |
| 122 | */ |
| 123 | struct sun6i_dma_lli *v_lli_next; |
| 124 | }; |
| 125 | |
| 126 | |
| 127 | struct sun6i_desc { |
| 128 | struct virt_dma_desc vd; |
| 129 | dma_addr_t p_lli; |
| 130 | struct sun6i_dma_lli *v_lli; |
| 131 | }; |
| 132 | |
| 133 | struct sun6i_pchan { |
| 134 | u32 idx; |
| 135 | void __iomem *base; |
| 136 | struct sun6i_vchan *vchan; |
| 137 | struct sun6i_desc *desc; |
| 138 | struct sun6i_desc *done; |
| 139 | }; |
| 140 | |
| 141 | struct sun6i_vchan { |
| 142 | struct virt_dma_chan vc; |
| 143 | struct list_head node; |
| 144 | struct dma_slave_config cfg; |
| 145 | struct sun6i_pchan *phy; |
| 146 | u8 port; |
| 147 | }; |
| 148 | |
| 149 | struct sun6i_dma_dev { |
| 150 | struct dma_device slave; |
| 151 | void __iomem *base; |
| 152 | struct clk *clk; |
| 153 | int irq; |
| 154 | spinlock_t lock; |
| 155 | struct reset_control *rstc; |
| 156 | struct tasklet_struct task; |
| 157 | atomic_t tasklet_shutdown; |
| 158 | struct list_head pending; |
| 159 | struct dma_pool *pool; |
| 160 | struct sun6i_pchan *pchans; |
| 161 | struct sun6i_vchan *vchans; |
| 162 | }; |
| 163 | |
| 164 | static struct device *chan2dev(struct dma_chan *chan) |
| 165 | { |
| 166 | return &chan->dev->device; |
| 167 | } |
| 168 | |
| 169 | static inline struct sun6i_dma_dev *to_sun6i_dma_dev(struct dma_device *d) |
| 170 | { |
| 171 | return container_of(d, struct sun6i_dma_dev, slave); |
| 172 | } |
| 173 | |
| 174 | static inline struct sun6i_vchan *to_sun6i_vchan(struct dma_chan *chan) |
| 175 | { |
| 176 | return container_of(chan, struct sun6i_vchan, vc.chan); |
| 177 | } |
| 178 | |
| 179 | static inline struct sun6i_desc * |
| 180 | to_sun6i_desc(struct dma_async_tx_descriptor *tx) |
| 181 | { |
| 182 | return container_of(tx, struct sun6i_desc, vd.tx); |
| 183 | } |
| 184 | |
| 185 | static inline void sun6i_dma_dump_com_regs(struct sun6i_dma_dev *sdev) |
| 186 | { |
| 187 | dev_dbg(sdev->slave.dev, "Common register:\n" |
| 188 | "\tmask0(%04x): 0x%08x\n" |
| 189 | "\tmask1(%04x): 0x%08x\n" |
| 190 | "\tpend0(%04x): 0x%08x\n" |
| 191 | "\tpend1(%04x): 0x%08x\n" |
| 192 | "\tstats(%04x): 0x%08x\n", |
| 193 | DMA_IRQ_EN(0), readl(sdev->base + DMA_IRQ_EN(0)), |
| 194 | DMA_IRQ_EN(1), readl(sdev->base + DMA_IRQ_EN(1)), |
| 195 | DMA_IRQ_STAT(0), readl(sdev->base + DMA_IRQ_STAT(0)), |
| 196 | DMA_IRQ_STAT(1), readl(sdev->base + DMA_IRQ_STAT(1)), |
| 197 | DMA_STAT, readl(sdev->base + DMA_STAT)); |
| 198 | } |
| 199 | |
| 200 | static inline void sun6i_dma_dump_chan_regs(struct sun6i_dma_dev *sdev, |
| 201 | struct sun6i_pchan *pchan) |
| 202 | { |
Vinod Koul | 42c0d54 | 2014-07-28 11:57:25 +0530 | [diff] [blame] | 203 | phys_addr_t reg = virt_to_phys(pchan->base); |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 204 | |
| 205 | dev_dbg(sdev->slave.dev, "Chan %d reg: %pa\n" |
| 206 | "\t___en(%04x): \t0x%08x\n" |
| 207 | "\tpause(%04x): \t0x%08x\n" |
| 208 | "\tstart(%04x): \t0x%08x\n" |
| 209 | "\t__cfg(%04x): \t0x%08x\n" |
| 210 | "\t__src(%04x): \t0x%08x\n" |
| 211 | "\t__dst(%04x): \t0x%08x\n" |
| 212 | "\tcount(%04x): \t0x%08x\n" |
| 213 | "\t_para(%04x): \t0x%08x\n\n", |
| 214 | pchan->idx, ®, |
| 215 | DMA_CHAN_ENABLE, |
| 216 | readl(pchan->base + DMA_CHAN_ENABLE), |
| 217 | DMA_CHAN_PAUSE, |
| 218 | readl(pchan->base + DMA_CHAN_PAUSE), |
| 219 | DMA_CHAN_LLI_ADDR, |
| 220 | readl(pchan->base + DMA_CHAN_LLI_ADDR), |
| 221 | DMA_CHAN_CUR_CFG, |
| 222 | readl(pchan->base + DMA_CHAN_CUR_CFG), |
| 223 | DMA_CHAN_CUR_SRC, |
| 224 | readl(pchan->base + DMA_CHAN_CUR_SRC), |
| 225 | DMA_CHAN_CUR_DST, |
| 226 | readl(pchan->base + DMA_CHAN_CUR_DST), |
| 227 | DMA_CHAN_CUR_CNT, |
| 228 | readl(pchan->base + DMA_CHAN_CUR_CNT), |
| 229 | DMA_CHAN_CUR_PARA, |
| 230 | readl(pchan->base + DMA_CHAN_CUR_PARA)); |
| 231 | } |
| 232 | |
| 233 | static inline int convert_burst(u32 maxburst, u8 *burst) |
| 234 | { |
| 235 | switch (maxburst) { |
| 236 | case 1: |
| 237 | *burst = 0; |
| 238 | break; |
| 239 | case 8: |
| 240 | *burst = 2; |
| 241 | break; |
| 242 | default: |
| 243 | return -EINVAL; |
| 244 | } |
| 245 | |
| 246 | return 0; |
| 247 | } |
| 248 | |
| 249 | static inline int convert_buswidth(enum dma_slave_buswidth addr_width, u8 *width) |
| 250 | { |
Maxime Ripard | 92e4a3b | 2014-07-30 10:30:21 +0200 | [diff] [blame] | 251 | if ((addr_width < DMA_SLAVE_BUSWIDTH_1_BYTE) || |
| 252 | (addr_width > DMA_SLAVE_BUSWIDTH_4_BYTES)) |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 253 | return -EINVAL; |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 254 | |
Maxime Ripard | 92e4a3b | 2014-07-30 10:30:21 +0200 | [diff] [blame] | 255 | *width = addr_width >> 1; |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 256 | return 0; |
| 257 | } |
| 258 | |
| 259 | static void *sun6i_dma_lli_add(struct sun6i_dma_lli *prev, |
| 260 | struct sun6i_dma_lli *next, |
| 261 | dma_addr_t next_phy, |
| 262 | struct sun6i_desc *txd) |
| 263 | { |
| 264 | if ((!prev && !txd) || !next) |
| 265 | return NULL; |
| 266 | |
| 267 | if (!prev) { |
| 268 | txd->p_lli = next_phy; |
| 269 | txd->v_lli = next; |
| 270 | } else { |
| 271 | prev->p_lli_next = next_phy; |
| 272 | prev->v_lli_next = next; |
| 273 | } |
| 274 | |
| 275 | next->p_lli_next = LLI_LAST_ITEM; |
| 276 | next->v_lli_next = NULL; |
| 277 | |
| 278 | return next; |
| 279 | } |
| 280 | |
| 281 | static inline int sun6i_dma_cfg_lli(struct sun6i_dma_lli *lli, |
| 282 | dma_addr_t src, |
| 283 | dma_addr_t dst, u32 len, |
| 284 | struct dma_slave_config *config) |
| 285 | { |
| 286 | u8 src_width, dst_width, src_burst, dst_burst; |
| 287 | int ret; |
| 288 | |
| 289 | if (!config) |
| 290 | return -EINVAL; |
| 291 | |
| 292 | ret = convert_burst(config->src_maxburst, &src_burst); |
| 293 | if (ret) |
| 294 | return ret; |
| 295 | |
| 296 | ret = convert_burst(config->dst_maxburst, &dst_burst); |
| 297 | if (ret) |
| 298 | return ret; |
| 299 | |
| 300 | ret = convert_buswidth(config->src_addr_width, &src_width); |
| 301 | if (ret) |
| 302 | return ret; |
| 303 | |
| 304 | ret = convert_buswidth(config->dst_addr_width, &dst_width); |
| 305 | if (ret) |
| 306 | return ret; |
| 307 | |
| 308 | lli->cfg = DMA_CHAN_CFG_SRC_BURST(src_burst) | |
| 309 | DMA_CHAN_CFG_SRC_WIDTH(src_width) | |
| 310 | DMA_CHAN_CFG_DST_BURST(dst_burst) | |
| 311 | DMA_CHAN_CFG_DST_WIDTH(dst_width); |
| 312 | |
| 313 | lli->src = src; |
| 314 | lli->dst = dst; |
| 315 | lli->len = len; |
| 316 | lli->para = NORMAL_WAIT; |
| 317 | |
| 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | static inline void sun6i_dma_dump_lli(struct sun6i_vchan *vchan, |
| 322 | struct sun6i_dma_lli *lli) |
| 323 | { |
Vinod Koul | 42c0d54 | 2014-07-28 11:57:25 +0530 | [diff] [blame] | 324 | phys_addr_t p_lli = virt_to_phys(lli); |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 325 | |
| 326 | dev_dbg(chan2dev(&vchan->vc.chan), |
| 327 | "\n\tdesc: p - %pa v - 0x%p\n" |
| 328 | "\t\tc - 0x%08x s - 0x%08x d - 0x%08x\n" |
| 329 | "\t\tl - 0x%08x p - 0x%08x n - 0x%08x\n", |
| 330 | &p_lli, lli, |
| 331 | lli->cfg, lli->src, lli->dst, |
| 332 | lli->len, lli->para, lli->p_lli_next); |
| 333 | } |
| 334 | |
| 335 | static void sun6i_dma_free_desc(struct virt_dma_desc *vd) |
| 336 | { |
| 337 | struct sun6i_desc *txd = to_sun6i_desc(&vd->tx); |
| 338 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(vd->tx.chan->device); |
| 339 | struct sun6i_dma_lli *v_lli, *v_next; |
| 340 | dma_addr_t p_lli, p_next; |
| 341 | |
| 342 | if (unlikely(!txd)) |
| 343 | return; |
| 344 | |
| 345 | p_lli = txd->p_lli; |
| 346 | v_lli = txd->v_lli; |
| 347 | |
| 348 | while (v_lli) { |
| 349 | v_next = v_lli->v_lli_next; |
| 350 | p_next = v_lli->p_lli_next; |
| 351 | |
| 352 | dma_pool_free(sdev->pool, v_lli, p_lli); |
| 353 | |
| 354 | v_lli = v_next; |
| 355 | p_lli = p_next; |
| 356 | } |
| 357 | |
| 358 | kfree(txd); |
| 359 | } |
| 360 | |
| 361 | static int sun6i_dma_terminate_all(struct sun6i_vchan *vchan) |
| 362 | { |
| 363 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(vchan->vc.chan.device); |
| 364 | struct sun6i_pchan *pchan = vchan->phy; |
| 365 | unsigned long flags; |
| 366 | LIST_HEAD(head); |
| 367 | |
| 368 | spin_lock(&sdev->lock); |
| 369 | list_del_init(&vchan->node); |
| 370 | spin_unlock(&sdev->lock); |
| 371 | |
| 372 | spin_lock_irqsave(&vchan->vc.lock, flags); |
| 373 | |
| 374 | vchan_get_all_descriptors(&vchan->vc, &head); |
| 375 | |
| 376 | if (pchan) { |
| 377 | writel(DMA_CHAN_ENABLE_STOP, pchan->base + DMA_CHAN_ENABLE); |
| 378 | writel(DMA_CHAN_PAUSE_RESUME, pchan->base + DMA_CHAN_PAUSE); |
| 379 | |
| 380 | vchan->phy = NULL; |
| 381 | pchan->vchan = NULL; |
| 382 | pchan->desc = NULL; |
| 383 | pchan->done = NULL; |
| 384 | } |
| 385 | |
| 386 | spin_unlock_irqrestore(&vchan->vc.lock, flags); |
| 387 | |
| 388 | vchan_dma_desc_free_list(&vchan->vc, &head); |
| 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
| 393 | static int sun6i_dma_start_desc(struct sun6i_vchan *vchan) |
| 394 | { |
| 395 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(vchan->vc.chan.device); |
| 396 | struct virt_dma_desc *desc = vchan_next_desc(&vchan->vc); |
| 397 | struct sun6i_pchan *pchan = vchan->phy; |
| 398 | u32 irq_val, irq_reg, irq_offset; |
| 399 | |
| 400 | if (!pchan) |
| 401 | return -EAGAIN; |
| 402 | |
| 403 | if (!desc) { |
| 404 | pchan->desc = NULL; |
| 405 | pchan->done = NULL; |
| 406 | return -EAGAIN; |
| 407 | } |
| 408 | |
| 409 | list_del(&desc->node); |
| 410 | |
| 411 | pchan->desc = to_sun6i_desc(&desc->tx); |
| 412 | pchan->done = NULL; |
| 413 | |
| 414 | sun6i_dma_dump_lli(vchan, pchan->desc->v_lli); |
| 415 | |
| 416 | irq_reg = pchan->idx / DMA_IRQ_CHAN_NR; |
| 417 | irq_offset = pchan->idx % DMA_IRQ_CHAN_NR; |
| 418 | |
| 419 | irq_val = readl(sdev->base + DMA_IRQ_EN(irq_offset)); |
| 420 | irq_val |= DMA_IRQ_QUEUE << (irq_offset * DMA_IRQ_CHAN_WIDTH); |
| 421 | writel(irq_val, sdev->base + DMA_IRQ_EN(irq_offset)); |
| 422 | |
| 423 | writel(pchan->desc->p_lli, pchan->base + DMA_CHAN_LLI_ADDR); |
| 424 | writel(DMA_CHAN_ENABLE_START, pchan->base + DMA_CHAN_ENABLE); |
| 425 | |
| 426 | sun6i_dma_dump_com_regs(sdev); |
| 427 | sun6i_dma_dump_chan_regs(sdev, pchan); |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
| 432 | static void sun6i_dma_tasklet(unsigned long data) |
| 433 | { |
| 434 | struct sun6i_dma_dev *sdev = (struct sun6i_dma_dev *)data; |
| 435 | struct sun6i_vchan *vchan; |
| 436 | struct sun6i_pchan *pchan; |
| 437 | unsigned int pchan_alloc = 0; |
| 438 | unsigned int pchan_idx; |
| 439 | |
| 440 | list_for_each_entry(vchan, &sdev->slave.channels, vc.chan.device_node) { |
| 441 | spin_lock_irq(&vchan->vc.lock); |
| 442 | |
| 443 | pchan = vchan->phy; |
| 444 | |
| 445 | if (pchan && pchan->done) { |
| 446 | if (sun6i_dma_start_desc(vchan)) { |
| 447 | /* |
| 448 | * No current txd associated with this channel |
| 449 | */ |
| 450 | dev_dbg(sdev->slave.dev, "pchan %u: free\n", |
| 451 | pchan->idx); |
| 452 | |
| 453 | /* Mark this channel free */ |
| 454 | vchan->phy = NULL; |
| 455 | pchan->vchan = NULL; |
| 456 | } |
| 457 | } |
| 458 | spin_unlock_irq(&vchan->vc.lock); |
| 459 | } |
| 460 | |
| 461 | spin_lock_irq(&sdev->lock); |
| 462 | for (pchan_idx = 0; pchan_idx < NR_MAX_CHANNELS; pchan_idx++) { |
| 463 | pchan = &sdev->pchans[pchan_idx]; |
| 464 | |
| 465 | if (pchan->vchan || list_empty(&sdev->pending)) |
| 466 | continue; |
| 467 | |
| 468 | vchan = list_first_entry(&sdev->pending, |
| 469 | struct sun6i_vchan, node); |
| 470 | |
| 471 | /* Remove from pending channels */ |
| 472 | list_del_init(&vchan->node); |
| 473 | pchan_alloc |= BIT(pchan_idx); |
| 474 | |
| 475 | /* Mark this channel allocated */ |
| 476 | pchan->vchan = vchan; |
| 477 | vchan->phy = pchan; |
| 478 | dev_dbg(sdev->slave.dev, "pchan %u: alloc vchan %p\n", |
| 479 | pchan->idx, &vchan->vc); |
| 480 | } |
| 481 | spin_unlock_irq(&sdev->lock); |
| 482 | |
| 483 | for (pchan_idx = 0; pchan_idx < NR_MAX_CHANNELS; pchan_idx++) { |
| 484 | if (!(pchan_alloc & BIT(pchan_idx))) |
| 485 | continue; |
| 486 | |
| 487 | pchan = sdev->pchans + pchan_idx; |
| 488 | vchan = pchan->vchan; |
| 489 | if (vchan) { |
| 490 | spin_lock_irq(&vchan->vc.lock); |
| 491 | sun6i_dma_start_desc(vchan); |
| 492 | spin_unlock_irq(&vchan->vc.lock); |
| 493 | } |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | static irqreturn_t sun6i_dma_interrupt(int irq, void *dev_id) |
| 498 | { |
| 499 | struct sun6i_dma_dev *sdev = dev_id; |
| 500 | struct sun6i_vchan *vchan; |
| 501 | struct sun6i_pchan *pchan; |
| 502 | int i, j, ret = IRQ_NONE; |
| 503 | u32 status; |
| 504 | |
| 505 | for (i = 0; i < 2; i++) { |
| 506 | status = readl(sdev->base + DMA_IRQ_STAT(i)); |
| 507 | if (!status) |
| 508 | continue; |
| 509 | |
| 510 | dev_dbg(sdev->slave.dev, "DMA irq status %s: 0x%x\n", |
| 511 | i ? "high" : "low", status); |
| 512 | |
| 513 | writel(status, sdev->base + DMA_IRQ_STAT(i)); |
| 514 | |
| 515 | for (j = 0; (j < 8) && status; j++) { |
| 516 | if (status & DMA_IRQ_QUEUE) { |
| 517 | pchan = sdev->pchans + j; |
| 518 | vchan = pchan->vchan; |
| 519 | |
| 520 | if (vchan) { |
| 521 | spin_lock(&vchan->vc.lock); |
| 522 | vchan_cookie_complete(&pchan->desc->vd); |
| 523 | pchan->done = pchan->desc; |
| 524 | spin_unlock(&vchan->vc.lock); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | status = status >> 4; |
| 529 | } |
| 530 | |
| 531 | if (!atomic_read(&sdev->tasklet_shutdown)) |
| 532 | tasklet_schedule(&sdev->task); |
| 533 | ret = IRQ_HANDLED; |
| 534 | } |
| 535 | |
| 536 | return ret; |
| 537 | } |
| 538 | |
| 539 | static struct dma_async_tx_descriptor *sun6i_dma_prep_dma_memcpy( |
| 540 | struct dma_chan *chan, dma_addr_t dest, dma_addr_t src, |
| 541 | size_t len, unsigned long flags) |
| 542 | { |
| 543 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device); |
| 544 | struct sun6i_vchan *vchan = to_sun6i_vchan(chan); |
| 545 | struct dma_slave_config *sconfig = &vchan->cfg; |
| 546 | struct sun6i_dma_lli *v_lli; |
| 547 | struct sun6i_desc *txd; |
| 548 | dma_addr_t p_lli; |
| 549 | int ret; |
| 550 | |
| 551 | dev_dbg(chan2dev(chan), |
| 552 | "%s; chan: %d, dest: %pad, src: %pad, len: %zu. flags: 0x%08lx\n", |
| 553 | __func__, vchan->vc.chan.chan_id, &dest, &src, len, flags); |
| 554 | |
| 555 | if (!len) |
| 556 | return NULL; |
| 557 | |
| 558 | txd = kzalloc(sizeof(*txd), GFP_NOWAIT); |
| 559 | if (!txd) |
| 560 | return NULL; |
| 561 | |
| 562 | v_lli = dma_pool_alloc(sdev->pool, GFP_NOWAIT, &p_lli); |
| 563 | if (!v_lli) { |
| 564 | dev_err(sdev->slave.dev, "Failed to alloc lli memory\n"); |
Maxime Ripard | 4fbd804 | 2014-07-30 10:30:23 +0200 | [diff] [blame] | 565 | goto err_txd_free; |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | ret = sun6i_dma_cfg_lli(v_lli, src, dest, len, sconfig); |
| 569 | if (ret) |
| 570 | goto err_dma_free; |
| 571 | |
| 572 | v_lli->cfg |= DMA_CHAN_CFG_SRC_DRQ(DRQ_SDRAM) | |
| 573 | DMA_CHAN_CFG_DST_DRQ(DRQ_SDRAM) | |
| 574 | DMA_CHAN_CFG_DST_LINEAR_MODE | |
| 575 | DMA_CHAN_CFG_SRC_LINEAR_MODE; |
| 576 | |
| 577 | sun6i_dma_lli_add(NULL, v_lli, p_lli, txd); |
| 578 | |
| 579 | sun6i_dma_dump_lli(vchan, v_lli); |
| 580 | |
| 581 | return vchan_tx_prep(&vchan->vc, &txd->vd, flags); |
| 582 | |
| 583 | err_dma_free: |
| 584 | dma_pool_free(sdev->pool, v_lli, p_lli); |
Maxime Ripard | 4fbd804 | 2014-07-30 10:30:23 +0200 | [diff] [blame] | 585 | err_txd_free: |
| 586 | kfree(txd); |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 587 | return NULL; |
| 588 | } |
| 589 | |
| 590 | static struct dma_async_tx_descriptor *sun6i_dma_prep_slave_sg( |
| 591 | struct dma_chan *chan, struct scatterlist *sgl, |
| 592 | unsigned int sg_len, enum dma_transfer_direction dir, |
| 593 | unsigned long flags, void *context) |
| 594 | { |
| 595 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device); |
| 596 | struct sun6i_vchan *vchan = to_sun6i_vchan(chan); |
| 597 | struct dma_slave_config *sconfig = &vchan->cfg; |
| 598 | struct sun6i_dma_lli *v_lli, *prev = NULL; |
| 599 | struct sun6i_desc *txd; |
| 600 | struct scatterlist *sg; |
| 601 | dma_addr_t p_lli; |
| 602 | int i, ret; |
| 603 | |
| 604 | if (!sgl) |
| 605 | return NULL; |
| 606 | |
| 607 | if (!is_slave_direction(dir)) { |
| 608 | dev_err(chan2dev(chan), "Invalid DMA direction\n"); |
| 609 | return NULL; |
| 610 | } |
| 611 | |
| 612 | txd = kzalloc(sizeof(*txd), GFP_NOWAIT); |
| 613 | if (!txd) |
| 614 | return NULL; |
| 615 | |
| 616 | for_each_sg(sgl, sg, sg_len, i) { |
| 617 | v_lli = dma_pool_alloc(sdev->pool, GFP_NOWAIT, &p_lli); |
Maxime Ripard | 4fbd804 | 2014-07-30 10:30:23 +0200 | [diff] [blame] | 618 | if (!v_lli) |
| 619 | goto err_lli_free; |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 620 | |
| 621 | if (dir == DMA_MEM_TO_DEV) { |
| 622 | ret = sun6i_dma_cfg_lli(v_lli, sg_dma_address(sg), |
| 623 | sconfig->dst_addr, sg_dma_len(sg), |
| 624 | sconfig); |
| 625 | if (ret) |
Maxime Ripard | 4fbd804 | 2014-07-30 10:30:23 +0200 | [diff] [blame] | 626 | goto err_cur_lli_free; |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 627 | |
| 628 | v_lli->cfg |= DMA_CHAN_CFG_DST_IO_MODE | |
| 629 | DMA_CHAN_CFG_SRC_LINEAR_MODE | |
| 630 | DMA_CHAN_CFG_SRC_DRQ(DRQ_SDRAM) | |
| 631 | DMA_CHAN_CFG_DST_DRQ(vchan->port); |
| 632 | |
| 633 | dev_dbg(chan2dev(chan), |
Vinod Koul | 7f5e03e | 2014-07-28 12:32:51 +0530 | [diff] [blame] | 634 | "%s; chan: %d, dest: %pad, src: %pad, len: %u. flags: 0x%08lx\n", |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 635 | __func__, vchan->vc.chan.chan_id, |
| 636 | &sconfig->dst_addr, &sg_dma_address(sg), |
| 637 | sg_dma_len(sg), flags); |
| 638 | |
| 639 | } else { |
| 640 | ret = sun6i_dma_cfg_lli(v_lli, sconfig->src_addr, |
| 641 | sg_dma_address(sg), sg_dma_len(sg), |
| 642 | sconfig); |
| 643 | if (ret) |
Maxime Ripard | 4fbd804 | 2014-07-30 10:30:23 +0200 | [diff] [blame] | 644 | goto err_cur_lli_free; |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 645 | |
| 646 | v_lli->cfg |= DMA_CHAN_CFG_DST_LINEAR_MODE | |
| 647 | DMA_CHAN_CFG_SRC_IO_MODE | |
| 648 | DMA_CHAN_CFG_DST_DRQ(DRQ_SDRAM) | |
| 649 | DMA_CHAN_CFG_SRC_DRQ(vchan->port); |
| 650 | |
| 651 | dev_dbg(chan2dev(chan), |
Vinod Koul | 7f5e03e | 2014-07-28 12:32:51 +0530 | [diff] [blame] | 652 | "%s; chan: %d, dest: %pad, src: %pad, len: %u. flags: 0x%08lx\n", |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 653 | __func__, vchan->vc.chan.chan_id, |
| 654 | &sg_dma_address(sg), &sconfig->src_addr, |
| 655 | sg_dma_len(sg), flags); |
| 656 | } |
| 657 | |
| 658 | prev = sun6i_dma_lli_add(prev, v_lli, p_lli, txd); |
| 659 | } |
| 660 | |
| 661 | dev_dbg(chan2dev(chan), "First: %pad\n", &txd->p_lli); |
| 662 | for (prev = txd->v_lli; prev; prev = prev->v_lli_next) |
| 663 | sun6i_dma_dump_lli(vchan, prev); |
| 664 | |
| 665 | return vchan_tx_prep(&vchan->vc, &txd->vd, flags); |
| 666 | |
Maxime Ripard | 4fbd804 | 2014-07-30 10:30:23 +0200 | [diff] [blame] | 667 | err_cur_lli_free: |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 668 | dma_pool_free(sdev->pool, v_lli, p_lli); |
Maxime Ripard | 4fbd804 | 2014-07-30 10:30:23 +0200 | [diff] [blame] | 669 | err_lli_free: |
| 670 | for (prev = txd->v_lli; prev; prev = prev->v_lli_next) |
| 671 | dma_pool_free(sdev->pool, prev, virt_to_phys(prev)); |
| 672 | kfree(txd); |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 673 | return NULL; |
| 674 | } |
| 675 | |
| 676 | static int sun6i_dma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd, |
| 677 | unsigned long arg) |
| 678 | { |
| 679 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device); |
| 680 | struct sun6i_vchan *vchan = to_sun6i_vchan(chan); |
| 681 | struct sun6i_pchan *pchan = vchan->phy; |
| 682 | unsigned long flags; |
| 683 | int ret = 0; |
| 684 | |
| 685 | switch (cmd) { |
| 686 | case DMA_RESUME: |
| 687 | dev_dbg(chan2dev(chan), "vchan %p: resume\n", &vchan->vc); |
| 688 | |
| 689 | spin_lock_irqsave(&vchan->vc.lock, flags); |
| 690 | |
| 691 | if (pchan) { |
| 692 | writel(DMA_CHAN_PAUSE_RESUME, |
| 693 | pchan->base + DMA_CHAN_PAUSE); |
| 694 | } else if (!list_empty(&vchan->vc.desc_issued)) { |
| 695 | spin_lock(&sdev->lock); |
| 696 | list_add_tail(&vchan->node, &sdev->pending); |
| 697 | spin_unlock(&sdev->lock); |
| 698 | } |
| 699 | |
| 700 | spin_unlock_irqrestore(&vchan->vc.lock, flags); |
| 701 | break; |
| 702 | |
| 703 | case DMA_PAUSE: |
| 704 | dev_dbg(chan2dev(chan), "vchan %p: pause\n", &vchan->vc); |
| 705 | |
| 706 | if (pchan) { |
| 707 | writel(DMA_CHAN_PAUSE_PAUSE, |
| 708 | pchan->base + DMA_CHAN_PAUSE); |
| 709 | } else { |
| 710 | spin_lock(&sdev->lock); |
| 711 | list_del_init(&vchan->node); |
| 712 | spin_unlock(&sdev->lock); |
| 713 | } |
| 714 | break; |
| 715 | |
| 716 | case DMA_TERMINATE_ALL: |
| 717 | ret = sun6i_dma_terminate_all(vchan); |
| 718 | break; |
| 719 | case DMA_SLAVE_CONFIG: |
| 720 | memcpy(&vchan->cfg, (void *)arg, sizeof(struct dma_slave_config)); |
| 721 | break; |
| 722 | default: |
| 723 | ret = -ENXIO; |
| 724 | break; |
| 725 | } |
| 726 | return ret; |
| 727 | } |
| 728 | |
| 729 | static enum dma_status sun6i_dma_tx_status(struct dma_chan *chan, |
| 730 | dma_cookie_t cookie, |
| 731 | struct dma_tx_state *state) |
| 732 | { |
| 733 | struct sun6i_vchan *vchan = to_sun6i_vchan(chan); |
| 734 | struct sun6i_pchan *pchan = vchan->phy; |
| 735 | struct sun6i_dma_lli *lli; |
| 736 | struct virt_dma_desc *vd; |
| 737 | struct sun6i_desc *txd; |
| 738 | enum dma_status ret; |
| 739 | unsigned long flags; |
| 740 | size_t bytes = 0; |
| 741 | |
| 742 | ret = dma_cookie_status(chan, cookie, state); |
| 743 | if (ret == DMA_COMPLETE) |
| 744 | return ret; |
| 745 | |
| 746 | spin_lock_irqsave(&vchan->vc.lock, flags); |
| 747 | |
| 748 | vd = vchan_find_desc(&vchan->vc, cookie); |
| 749 | txd = to_sun6i_desc(&vd->tx); |
| 750 | |
| 751 | if (vd) { |
| 752 | for (lli = txd->v_lli; lli != NULL; lli = lli->v_lli_next) |
| 753 | bytes += lli->len; |
| 754 | } else if (!pchan || !pchan->desc) { |
| 755 | bytes = 0; |
| 756 | } else { |
| 757 | bytes = readl(pchan->base + DMA_CHAN_CUR_CNT); |
| 758 | } |
| 759 | |
| 760 | spin_unlock_irqrestore(&vchan->vc.lock, flags); |
| 761 | |
| 762 | dma_set_residue(state, bytes); |
| 763 | |
| 764 | return ret; |
| 765 | } |
| 766 | |
| 767 | static void sun6i_dma_issue_pending(struct dma_chan *chan) |
| 768 | { |
| 769 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device); |
| 770 | struct sun6i_vchan *vchan = to_sun6i_vchan(chan); |
| 771 | unsigned long flags; |
| 772 | |
| 773 | spin_lock_irqsave(&vchan->vc.lock, flags); |
| 774 | |
| 775 | if (vchan_issue_pending(&vchan->vc)) { |
| 776 | spin_lock(&sdev->lock); |
| 777 | |
| 778 | if (!vchan->phy && list_empty(&vchan->node)) { |
| 779 | list_add_tail(&vchan->node, &sdev->pending); |
| 780 | tasklet_schedule(&sdev->task); |
| 781 | dev_dbg(chan2dev(chan), "vchan %p: issued\n", |
| 782 | &vchan->vc); |
| 783 | } |
| 784 | |
| 785 | spin_unlock(&sdev->lock); |
| 786 | } else { |
| 787 | dev_dbg(chan2dev(chan), "vchan %p: nothing to issue\n", |
| 788 | &vchan->vc); |
| 789 | } |
| 790 | |
| 791 | spin_unlock_irqrestore(&vchan->vc.lock, flags); |
| 792 | } |
| 793 | |
| 794 | static int sun6i_dma_alloc_chan_resources(struct dma_chan *chan) |
| 795 | { |
| 796 | return 0; |
| 797 | } |
| 798 | |
| 799 | static void sun6i_dma_free_chan_resources(struct dma_chan *chan) |
| 800 | { |
| 801 | struct sun6i_dma_dev *sdev = to_sun6i_dma_dev(chan->device); |
| 802 | struct sun6i_vchan *vchan = to_sun6i_vchan(chan); |
| 803 | unsigned long flags; |
| 804 | |
| 805 | spin_lock_irqsave(&sdev->lock, flags); |
| 806 | list_del_init(&vchan->node); |
| 807 | spin_unlock_irqrestore(&sdev->lock, flags); |
| 808 | |
| 809 | vchan_free_chan_resources(&vchan->vc); |
| 810 | } |
| 811 | |
| 812 | static struct dma_chan *sun6i_dma_of_xlate(struct of_phandle_args *dma_spec, |
| 813 | struct of_dma *ofdma) |
| 814 | { |
| 815 | struct sun6i_dma_dev *sdev = ofdma->of_dma_data; |
| 816 | struct sun6i_vchan *vchan; |
| 817 | struct dma_chan *chan; |
| 818 | u8 port = dma_spec->args[0]; |
| 819 | |
| 820 | if (port > NR_MAX_REQUESTS) |
| 821 | return NULL; |
| 822 | |
| 823 | chan = dma_get_any_slave_channel(&sdev->slave); |
| 824 | if (!chan) |
| 825 | return NULL; |
| 826 | |
| 827 | vchan = to_sun6i_vchan(chan); |
| 828 | vchan->port = port; |
| 829 | |
| 830 | return chan; |
| 831 | } |
| 832 | |
| 833 | static inline void sun6i_kill_tasklet(struct sun6i_dma_dev *sdev) |
| 834 | { |
| 835 | /* Disable all interrupts from DMA */ |
| 836 | writel(0, sdev->base + DMA_IRQ_EN(0)); |
| 837 | writel(0, sdev->base + DMA_IRQ_EN(1)); |
| 838 | |
| 839 | /* Prevent spurious interrupts from scheduling the tasklet */ |
| 840 | atomic_inc(&sdev->tasklet_shutdown); |
| 841 | |
Maxime Ripard | 174427c | 2014-07-30 10:30:22 +0200 | [diff] [blame] | 842 | /* Make sure we won't have any further interrupts */ |
| 843 | devm_free_irq(sdev->slave.dev, sdev->irq, sdev); |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 844 | |
| 845 | /* Actually prevent the tasklet from being scheduled */ |
| 846 | tasklet_kill(&sdev->task); |
| 847 | } |
| 848 | |
| 849 | static inline void sun6i_dma_free(struct sun6i_dma_dev *sdev) |
| 850 | { |
| 851 | int i; |
| 852 | |
| 853 | for (i = 0; i < NR_MAX_VCHANS; i++) { |
| 854 | struct sun6i_vchan *vchan = &sdev->vchans[i]; |
| 855 | |
| 856 | list_del(&vchan->vc.chan.device_node); |
| 857 | tasklet_kill(&vchan->vc.task); |
| 858 | } |
| 859 | } |
| 860 | |
| 861 | static int sun6i_dma_probe(struct platform_device *pdev) |
| 862 | { |
| 863 | struct sun6i_dma_dev *sdc; |
| 864 | struct resource *res; |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 865 | int ret, i; |
| 866 | |
| 867 | sdc = devm_kzalloc(&pdev->dev, sizeof(*sdc), GFP_KERNEL); |
| 868 | if (!sdc) |
| 869 | return -ENOMEM; |
| 870 | |
| 871 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 872 | sdc->base = devm_ioremap_resource(&pdev->dev, res); |
| 873 | if (IS_ERR(sdc->base)) |
| 874 | return PTR_ERR(sdc->base); |
| 875 | |
| 876 | sdc->irq = platform_get_irq(pdev, 0); |
| 877 | if (sdc->irq < 0) { |
| 878 | dev_err(&pdev->dev, "Cannot claim IRQ\n"); |
| 879 | return sdc->irq; |
| 880 | } |
| 881 | |
| 882 | sdc->clk = devm_clk_get(&pdev->dev, NULL); |
| 883 | if (IS_ERR(sdc->clk)) { |
| 884 | dev_err(&pdev->dev, "No clock specified\n"); |
| 885 | return PTR_ERR(sdc->clk); |
| 886 | } |
| 887 | |
Maxime Ripard | 5558593 | 2014-07-17 21:46:16 +0200 | [diff] [blame] | 888 | sdc->rstc = devm_reset_control_get(&pdev->dev, NULL); |
| 889 | if (IS_ERR(sdc->rstc)) { |
| 890 | dev_err(&pdev->dev, "No reset controller specified\n"); |
| 891 | return PTR_ERR(sdc->rstc); |
| 892 | } |
| 893 | |
| 894 | sdc->pool = dmam_pool_create(dev_name(&pdev->dev), &pdev->dev, |
| 895 | sizeof(struct sun6i_dma_lli), 4, 0); |
| 896 | if (!sdc->pool) { |
| 897 | dev_err(&pdev->dev, "No memory for descriptors dma pool\n"); |
| 898 | return -ENOMEM; |
| 899 | } |
| 900 | |
| 901 | platform_set_drvdata(pdev, sdc); |
| 902 | INIT_LIST_HEAD(&sdc->pending); |
| 903 | spin_lock_init(&sdc->lock); |
| 904 | |
| 905 | dma_cap_set(DMA_PRIVATE, sdc->slave.cap_mask); |
| 906 | dma_cap_set(DMA_MEMCPY, sdc->slave.cap_mask); |
| 907 | dma_cap_set(DMA_SLAVE, sdc->slave.cap_mask); |
| 908 | |
| 909 | INIT_LIST_HEAD(&sdc->slave.channels); |
| 910 | sdc->slave.device_alloc_chan_resources = sun6i_dma_alloc_chan_resources; |
| 911 | sdc->slave.device_free_chan_resources = sun6i_dma_free_chan_resources; |
| 912 | sdc->slave.device_tx_status = sun6i_dma_tx_status; |
| 913 | sdc->slave.device_issue_pending = sun6i_dma_issue_pending; |
| 914 | sdc->slave.device_prep_slave_sg = sun6i_dma_prep_slave_sg; |
| 915 | sdc->slave.device_prep_dma_memcpy = sun6i_dma_prep_dma_memcpy; |
| 916 | sdc->slave.device_control = sun6i_dma_control; |
| 917 | sdc->slave.chancnt = NR_MAX_VCHANS; |
| 918 | |
| 919 | sdc->slave.dev = &pdev->dev; |
| 920 | |
| 921 | sdc->pchans = devm_kcalloc(&pdev->dev, NR_MAX_CHANNELS, |
| 922 | sizeof(struct sun6i_pchan), GFP_KERNEL); |
| 923 | if (!sdc->pchans) |
| 924 | return -ENOMEM; |
| 925 | |
| 926 | sdc->vchans = devm_kcalloc(&pdev->dev, NR_MAX_VCHANS, |
| 927 | sizeof(struct sun6i_vchan), GFP_KERNEL); |
| 928 | if (!sdc->vchans) |
| 929 | return -ENOMEM; |
| 930 | |
| 931 | tasklet_init(&sdc->task, sun6i_dma_tasklet, (unsigned long)sdc); |
| 932 | |
| 933 | for (i = 0; i < NR_MAX_CHANNELS; i++) { |
| 934 | struct sun6i_pchan *pchan = &sdc->pchans[i]; |
| 935 | |
| 936 | pchan->idx = i; |
| 937 | pchan->base = sdc->base + 0x100 + i * 0x40; |
| 938 | } |
| 939 | |
| 940 | for (i = 0; i < NR_MAX_VCHANS; i++) { |
| 941 | struct sun6i_vchan *vchan = &sdc->vchans[i]; |
| 942 | |
| 943 | INIT_LIST_HEAD(&vchan->node); |
| 944 | vchan->vc.desc_free = sun6i_dma_free_desc; |
| 945 | vchan_init(&vchan->vc, &sdc->slave); |
| 946 | } |
| 947 | |
| 948 | ret = reset_control_deassert(sdc->rstc); |
| 949 | if (ret) { |
| 950 | dev_err(&pdev->dev, "Couldn't deassert the device from reset\n"); |
| 951 | goto err_chan_free; |
| 952 | } |
| 953 | |
| 954 | ret = clk_prepare_enable(sdc->clk); |
| 955 | if (ret) { |
| 956 | dev_err(&pdev->dev, "Couldn't enable the clock\n"); |
| 957 | goto err_reset_assert; |
| 958 | } |
| 959 | |
| 960 | ret = devm_request_irq(&pdev->dev, sdc->irq, sun6i_dma_interrupt, 0, |
| 961 | dev_name(&pdev->dev), sdc); |
| 962 | if (ret) { |
| 963 | dev_err(&pdev->dev, "Cannot request IRQ\n"); |
| 964 | goto err_clk_disable; |
| 965 | } |
| 966 | |
| 967 | ret = dma_async_device_register(&sdc->slave); |
| 968 | if (ret) { |
| 969 | dev_warn(&pdev->dev, "Failed to register DMA engine device\n"); |
| 970 | goto err_irq_disable; |
| 971 | } |
| 972 | |
| 973 | ret = of_dma_controller_register(pdev->dev.of_node, sun6i_dma_of_xlate, |
| 974 | sdc); |
| 975 | if (ret) { |
| 976 | dev_err(&pdev->dev, "of_dma_controller_register failed\n"); |
| 977 | goto err_dma_unregister; |
| 978 | } |
| 979 | |
| 980 | return 0; |
| 981 | |
| 982 | err_dma_unregister: |
| 983 | dma_async_device_unregister(&sdc->slave); |
| 984 | err_irq_disable: |
| 985 | sun6i_kill_tasklet(sdc); |
| 986 | err_clk_disable: |
| 987 | clk_disable_unprepare(sdc->clk); |
| 988 | err_reset_assert: |
| 989 | reset_control_assert(sdc->rstc); |
| 990 | err_chan_free: |
| 991 | sun6i_dma_free(sdc); |
| 992 | return ret; |
| 993 | } |
| 994 | |
| 995 | static int sun6i_dma_remove(struct platform_device *pdev) |
| 996 | { |
| 997 | struct sun6i_dma_dev *sdc = platform_get_drvdata(pdev); |
| 998 | |
| 999 | of_dma_controller_free(pdev->dev.of_node); |
| 1000 | dma_async_device_unregister(&sdc->slave); |
| 1001 | |
| 1002 | sun6i_kill_tasklet(sdc); |
| 1003 | |
| 1004 | clk_disable_unprepare(sdc->clk); |
| 1005 | reset_control_assert(sdc->rstc); |
| 1006 | |
| 1007 | sun6i_dma_free(sdc); |
| 1008 | |
| 1009 | return 0; |
| 1010 | } |
| 1011 | |
| 1012 | static struct of_device_id sun6i_dma_match[] = { |
| 1013 | { .compatible = "allwinner,sun6i-a31-dma" }, |
| 1014 | { /* sentinel */ } |
| 1015 | }; |
| 1016 | |
| 1017 | static struct platform_driver sun6i_dma_driver = { |
| 1018 | .probe = sun6i_dma_probe, |
| 1019 | .remove = sun6i_dma_remove, |
| 1020 | .driver = { |
| 1021 | .name = "sun6i-dma", |
| 1022 | .of_match_table = sun6i_dma_match, |
| 1023 | }, |
| 1024 | }; |
| 1025 | module_platform_driver(sun6i_dma_driver); |
| 1026 | |
| 1027 | MODULE_DESCRIPTION("Allwinner A31 DMA Controller Driver"); |
| 1028 | MODULE_AUTHOR("Sugar <shuge@allwinnertech.com>"); |
| 1029 | MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>"); |
| 1030 | MODULE_LICENSE("GPL"); |