Thomas Gleixner | 9952f69 | 2019-05-28 10:10:04 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 2 | /* |
| 3 | * DMA driver for Nvidia's Tegra20 APB DMA controller. |
| 4 | * |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 5 | * Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved. |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/bitops.h> |
| 9 | #include <linux/clk.h> |
| 10 | #include <linux/delay.h> |
| 11 | #include <linux/dmaengine.h> |
| 12 | #include <linux/dma-mapping.h> |
Thierry Reding | 7331205 | 2013-01-21 11:09:00 +0100 | [diff] [blame] | 13 | #include <linux/err.h> |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/interrupt.h> |
| 16 | #include <linux/io.h> |
| 17 | #include <linux/mm.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/of.h> |
| 20 | #include <linux/of_device.h> |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 21 | #include <linux/of_dma.h> |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 23 | #include <linux/pm.h> |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 24 | #include <linux/pm_runtime.h> |
Stephen Warren | 9aa433d | 2013-11-06 16:35:34 -0700 | [diff] [blame] | 25 | #include <linux/reset.h> |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 26 | #include <linux/slab.h> |
Dmitry Osipenko | 6697255 | 2020-03-20 00:23:21 +0300 | [diff] [blame] | 27 | #include <linux/wait.h> |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 28 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 29 | #include "dmaengine.h" |
| 30 | |
Ben Dooks | 95f295f | 2018-11-21 16:13:23 +0000 | [diff] [blame] | 31 | #define CREATE_TRACE_POINTS |
| 32 | #include <trace/events/tegra_apb_dma.h> |
| 33 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 34 | #define TEGRA_APBDMA_GENERAL 0x0 |
| 35 | #define TEGRA_APBDMA_GENERAL_ENABLE BIT(31) |
| 36 | |
| 37 | #define TEGRA_APBDMA_CONTROL 0x010 |
| 38 | #define TEGRA_APBDMA_IRQ_MASK 0x01c |
| 39 | #define TEGRA_APBDMA_IRQ_MASK_SET 0x020 |
| 40 | |
| 41 | /* CSR register */ |
| 42 | #define TEGRA_APBDMA_CHAN_CSR 0x00 |
| 43 | #define TEGRA_APBDMA_CSR_ENB BIT(31) |
| 44 | #define TEGRA_APBDMA_CSR_IE_EOC BIT(30) |
| 45 | #define TEGRA_APBDMA_CSR_HOLD BIT(29) |
| 46 | #define TEGRA_APBDMA_CSR_DIR BIT(28) |
| 47 | #define TEGRA_APBDMA_CSR_ONCE BIT(27) |
| 48 | #define TEGRA_APBDMA_CSR_FLOW BIT(21) |
| 49 | #define TEGRA_APBDMA_CSR_REQ_SEL_SHIFT 16 |
Shardar Shariff Md | 00ef449 | 2016-04-23 15:06:00 +0530 | [diff] [blame] | 50 | #define TEGRA_APBDMA_CSR_REQ_SEL_MASK 0x1F |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 51 | #define TEGRA_APBDMA_CSR_WCOUNT_MASK 0xFFFC |
| 52 | |
| 53 | /* STATUS register */ |
| 54 | #define TEGRA_APBDMA_CHAN_STATUS 0x004 |
| 55 | #define TEGRA_APBDMA_STATUS_BUSY BIT(31) |
| 56 | #define TEGRA_APBDMA_STATUS_ISE_EOC BIT(30) |
| 57 | #define TEGRA_APBDMA_STATUS_HALT BIT(29) |
| 58 | #define TEGRA_APBDMA_STATUS_PING_PONG BIT(28) |
| 59 | #define TEGRA_APBDMA_STATUS_COUNT_SHIFT 2 |
| 60 | #define TEGRA_APBDMA_STATUS_COUNT_MASK 0xFFFC |
| 61 | |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 62 | #define TEGRA_APBDMA_CHAN_CSRE 0x00C |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 63 | #define TEGRA_APBDMA_CHAN_CSRE_PAUSE BIT(31) |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 64 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 65 | /* AHB memory address */ |
| 66 | #define TEGRA_APBDMA_CHAN_AHBPTR 0x010 |
| 67 | |
| 68 | /* AHB sequence register */ |
| 69 | #define TEGRA_APBDMA_CHAN_AHBSEQ 0x14 |
| 70 | #define TEGRA_APBDMA_AHBSEQ_INTR_ENB BIT(31) |
| 71 | #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_8 (0 << 28) |
| 72 | #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_16 (1 << 28) |
| 73 | #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32 (2 << 28) |
| 74 | #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_64 (3 << 28) |
| 75 | #define TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_128 (4 << 28) |
| 76 | #define TEGRA_APBDMA_AHBSEQ_DATA_SWAP BIT(27) |
| 77 | #define TEGRA_APBDMA_AHBSEQ_BURST_1 (4 << 24) |
| 78 | #define TEGRA_APBDMA_AHBSEQ_BURST_4 (5 << 24) |
| 79 | #define TEGRA_APBDMA_AHBSEQ_BURST_8 (6 << 24) |
| 80 | #define TEGRA_APBDMA_AHBSEQ_DBL_BUF BIT(19) |
| 81 | #define TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT 16 |
| 82 | #define TEGRA_APBDMA_AHBSEQ_WRAP_NONE 0 |
| 83 | |
| 84 | /* APB address */ |
| 85 | #define TEGRA_APBDMA_CHAN_APBPTR 0x018 |
| 86 | |
| 87 | /* APB sequence register */ |
| 88 | #define TEGRA_APBDMA_CHAN_APBSEQ 0x01c |
| 89 | #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8 (0 << 28) |
| 90 | #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16 (1 << 28) |
| 91 | #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32 (2 << 28) |
| 92 | #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64 (3 << 28) |
| 93 | #define TEGRA_APBDMA_APBSEQ_BUS_WIDTH_128 (4 << 28) |
| 94 | #define TEGRA_APBDMA_APBSEQ_DATA_SWAP BIT(27) |
| 95 | #define TEGRA_APBDMA_APBSEQ_WRAP_WORD_1 (1 << 16) |
| 96 | |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 97 | /* Tegra148 specific registers */ |
| 98 | #define TEGRA_APBDMA_CHAN_WCOUNT 0x20 |
| 99 | |
| 100 | #define TEGRA_APBDMA_CHAN_WORD_TRANSFER 0x24 |
| 101 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 102 | /* |
| 103 | * If any burst is in flight and DMA paused then this is the time to complete |
| 104 | * on-flight burst and update DMA status register. |
| 105 | */ |
| 106 | #define TEGRA_APBDMA_BURST_COMPLETE_TIME 20 |
| 107 | |
| 108 | /* Channel base address offset from APBDMA base address */ |
| 109 | #define TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET 0x1000 |
| 110 | |
Shardar Shariff Md | 00ef449 | 2016-04-23 15:06:00 +0530 | [diff] [blame] | 111 | #define TEGRA_APBDMA_SLAVE_ID_INVALID (TEGRA_APBDMA_CSR_REQ_SEL_MASK + 1) |
| 112 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 113 | struct tegra_dma; |
| 114 | |
| 115 | /* |
| 116 | * tegra_dma_chip_data Tegra chip specific DMA data |
| 117 | * @nr_channels: Number of channels available in the controller. |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 118 | * @channel_reg_size: Channel register size/stride. |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 119 | * @max_dma_count: Maximum DMA transfer count supported by DMA controller. |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 120 | * @support_channel_pause: Support channel wise pause of dma. |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 121 | * @support_separate_wcount_reg: Support separate word count register. |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 122 | */ |
| 123 | struct tegra_dma_chip_data { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 124 | unsigned int nr_channels; |
| 125 | unsigned int channel_reg_size; |
| 126 | unsigned int max_dma_count; |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 127 | bool support_channel_pause; |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 128 | bool support_separate_wcount_reg; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 129 | }; |
| 130 | |
| 131 | /* DMA channel registers */ |
| 132 | struct tegra_dma_channel_regs { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 133 | u32 csr; |
| 134 | u32 ahb_ptr; |
| 135 | u32 apb_ptr; |
| 136 | u32 ahb_seq; |
| 137 | u32 apb_seq; |
| 138 | u32 wcount; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | /* |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 142 | * tegra_dma_sg_req: DMA request details to configure hardware. This |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 143 | * contains the details for one transfer to configure DMA hw. |
| 144 | * The client's request for data transfer can be broken into multiple |
| 145 | * sub-transfer as per requester details and hw support. |
| 146 | * This sub transfer get added in the list of transfer and point to Tegra |
| 147 | * DMA descriptor which manages the transfer details. |
| 148 | */ |
| 149 | struct tegra_dma_sg_req { |
| 150 | struct tegra_dma_channel_regs ch_regs; |
Ben Dooks | 216a1d7 | 2018-11-21 16:13:20 +0000 | [diff] [blame] | 151 | unsigned int req_len; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 152 | bool configured; |
| 153 | bool last_sg; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 154 | struct list_head node; |
| 155 | struct tegra_dma_desc *dma_desc; |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 156 | unsigned int words_xferred; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | /* |
| 160 | * tegra_dma_desc: Tegra DMA descriptors which manages the client requests. |
| 161 | * This descriptor keep track of transfer status, callbacks and request |
| 162 | * counts etc. |
| 163 | */ |
| 164 | struct tegra_dma_desc { |
| 165 | struct dma_async_tx_descriptor txd; |
Ben Dooks | 216a1d7 | 2018-11-21 16:13:20 +0000 | [diff] [blame] | 166 | unsigned int bytes_requested; |
| 167 | unsigned int bytes_transferred; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 168 | enum dma_status dma_status; |
| 169 | struct list_head node; |
| 170 | struct list_head tx_list; |
| 171 | struct list_head cb_node; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 172 | unsigned int cb_count; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 173 | }; |
| 174 | |
| 175 | struct tegra_dma_channel; |
| 176 | |
| 177 | typedef void (*dma_isr_handler)(struct tegra_dma_channel *tdc, |
| 178 | bool to_terminate); |
| 179 | |
| 180 | /* tegra_dma_channel: Channel specific information */ |
| 181 | struct tegra_dma_channel { |
| 182 | struct dma_chan dma_chan; |
Ben Dooks | 65c383c | 2018-11-21 16:13:22 +0000 | [diff] [blame] | 183 | char name[12]; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 184 | bool config_init; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 185 | unsigned int id; |
Jon Hunter | 13a3328 | 2015-08-06 14:32:31 +0100 | [diff] [blame] | 186 | void __iomem *chan_addr; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 187 | spinlock_t lock; |
| 188 | bool busy; |
| 189 | struct tegra_dma *tdma; |
| 190 | bool cyclic; |
| 191 | |
| 192 | /* Different lists for managing the requests */ |
| 193 | struct list_head free_sg_req; |
| 194 | struct list_head pending_sg_req; |
| 195 | struct list_head free_dma_desc; |
| 196 | struct list_head cb_desc; |
| 197 | |
| 198 | /* ISR handler and tasklet for bottom half of isr handling */ |
| 199 | dma_isr_handler isr_handler; |
| 200 | struct tasklet_struct tasklet; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 201 | |
| 202 | /* Channel-slave specific configuration */ |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 203 | unsigned int slave_id; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 204 | struct dma_slave_config dma_sconfig; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 205 | struct tegra_dma_channel_regs channel_reg; |
Dmitry Osipenko | 6697255 | 2020-03-20 00:23:21 +0300 | [diff] [blame] | 206 | |
| 207 | struct wait_queue_head wq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 208 | }; |
| 209 | |
| 210 | /* tegra_dma: Tegra DMA specific information */ |
| 211 | struct tegra_dma { |
| 212 | struct dma_device dma_dev; |
| 213 | struct device *dev; |
| 214 | struct clk *dma_clk; |
Stephen Warren | 9aa433d | 2013-11-06 16:35:34 -0700 | [diff] [blame] | 215 | struct reset_control *rst; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 216 | spinlock_t global_lock; |
| 217 | void __iomem *base_addr; |
Laxman Dewangan | 83a1ef2 | 2012-08-29 10:23:07 +0200 | [diff] [blame] | 218 | const struct tegra_dma_chip_data *chip_data; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 219 | |
Jon Hunter | 23a1ec3 | 2015-08-06 14:32:33 +0100 | [diff] [blame] | 220 | /* |
| 221 | * Counter for managing global pausing of the DMA controller. |
| 222 | * Only applicable for devices that don't support individual |
| 223 | * channel pausing. |
| 224 | */ |
| 225 | u32 global_pause_count; |
| 226 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 227 | /* Last member of the structure */ |
Gustavo A. R. Silva | 0084b22 | 2020-05-28 09:35:11 -0500 | [diff] [blame] | 228 | struct tegra_dma_channel channels[]; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 229 | }; |
| 230 | |
| 231 | static inline void tdma_write(struct tegra_dma *tdma, u32 reg, u32 val) |
| 232 | { |
| 233 | writel(val, tdma->base_addr + reg); |
| 234 | } |
| 235 | |
| 236 | static inline u32 tdma_read(struct tegra_dma *tdma, u32 reg) |
| 237 | { |
| 238 | return readl(tdma->base_addr + reg); |
| 239 | } |
| 240 | |
| 241 | static inline void tdc_write(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 242 | u32 reg, u32 val) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 243 | { |
Jon Hunter | 13a3328 | 2015-08-06 14:32:31 +0100 | [diff] [blame] | 244 | writel(val, tdc->chan_addr + reg); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | static inline u32 tdc_read(struct tegra_dma_channel *tdc, u32 reg) |
| 248 | { |
Jon Hunter | 13a3328 | 2015-08-06 14:32:31 +0100 | [diff] [blame] | 249 | return readl(tdc->chan_addr + reg); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | static inline struct tegra_dma_channel *to_tegra_dma_chan(struct dma_chan *dc) |
| 253 | { |
| 254 | return container_of(dc, struct tegra_dma_channel, dma_chan); |
| 255 | } |
| 256 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 257 | static inline struct tegra_dma_desc * |
| 258 | txd_to_tegra_dma_desc(struct dma_async_tx_descriptor *td) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 259 | { |
| 260 | return container_of(td, struct tegra_dma_desc, txd); |
| 261 | } |
| 262 | |
| 263 | static inline struct device *tdc2dev(struct tegra_dma_channel *tdc) |
| 264 | { |
| 265 | return &tdc->dma_chan.dev->device; |
| 266 | } |
| 267 | |
| 268 | static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *tx); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 269 | |
| 270 | /* Get DMA desc from free list, if not there then allocate it. */ |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 271 | static struct tegra_dma_desc *tegra_dma_desc_get(struct tegra_dma_channel *tdc) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 272 | { |
| 273 | struct tegra_dma_desc *dma_desc; |
| 274 | unsigned long flags; |
| 275 | |
| 276 | spin_lock_irqsave(&tdc->lock, flags); |
| 277 | |
| 278 | /* Do not allocate if desc are waiting for ack */ |
| 279 | list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) { |
Dmitry Osipenko | c33ee13 | 2020-02-09 19:33:39 +0300 | [diff] [blame] | 280 | if (async_tx_test_ack(&dma_desc->txd) && !dma_desc->cb_count) { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 281 | list_del(&dma_desc->node); |
| 282 | spin_unlock_irqrestore(&tdc->lock, flags); |
Laxman Dewangan | b9bb37f | 2013-01-09 15:26:22 +0530 | [diff] [blame] | 283 | dma_desc->txd.flags = 0; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 284 | return dma_desc; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | spin_unlock_irqrestore(&tdc->lock, flags); |
| 289 | |
| 290 | /* Allocate DMA desc */ |
Jon Hunter | 8fe9739 | 2015-11-13 16:39:42 +0000 | [diff] [blame] | 291 | dma_desc = kzalloc(sizeof(*dma_desc), GFP_NOWAIT); |
Peter Griffin | aef94fe | 2016-06-07 18:38:41 +0100 | [diff] [blame] | 292 | if (!dma_desc) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 293 | return NULL; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 294 | |
| 295 | dma_async_tx_descriptor_init(&dma_desc->txd, &tdc->dma_chan); |
| 296 | dma_desc->txd.tx_submit = tegra_dma_tx_submit; |
| 297 | dma_desc->txd.flags = 0; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 298 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 299 | return dma_desc; |
| 300 | } |
| 301 | |
| 302 | static void tegra_dma_desc_put(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 303 | struct tegra_dma_desc *dma_desc) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 304 | { |
| 305 | unsigned long flags; |
| 306 | |
| 307 | spin_lock_irqsave(&tdc->lock, flags); |
| 308 | if (!list_empty(&dma_desc->tx_list)) |
| 309 | list_splice_init(&dma_desc->tx_list, &tdc->free_sg_req); |
| 310 | list_add_tail(&dma_desc->node, &tdc->free_dma_desc); |
| 311 | spin_unlock_irqrestore(&tdc->lock, flags); |
| 312 | } |
| 313 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 314 | static struct tegra_dma_sg_req * |
| 315 | tegra_dma_sg_req_get(struct tegra_dma_channel *tdc) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 316 | { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 317 | struct tegra_dma_sg_req *sg_req; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 318 | unsigned long flags; |
| 319 | |
| 320 | spin_lock_irqsave(&tdc->lock, flags); |
| 321 | if (!list_empty(&tdc->free_sg_req)) { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 322 | sg_req = list_first_entry(&tdc->free_sg_req, typeof(*sg_req), |
| 323 | node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 324 | list_del(&sg_req->node); |
| 325 | spin_unlock_irqrestore(&tdc->lock, flags); |
| 326 | return sg_req; |
| 327 | } |
| 328 | spin_unlock_irqrestore(&tdc->lock, flags); |
| 329 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 330 | sg_req = kzalloc(sizeof(*sg_req), GFP_NOWAIT); |
Peter Griffin | aef94fe | 2016-06-07 18:38:41 +0100 | [diff] [blame] | 331 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 332 | return sg_req; |
| 333 | } |
| 334 | |
| 335 | static int tegra_dma_slave_config(struct dma_chan *dc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 336 | struct dma_slave_config *sconfig) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 337 | { |
| 338 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
| 339 | |
| 340 | if (!list_empty(&tdc->pending_sg_req)) { |
| 341 | dev_err(tdc2dev(tdc), "Configuration not allowed\n"); |
| 342 | return -EBUSY; |
| 343 | } |
| 344 | |
| 345 | memcpy(&tdc->dma_sconfig, sconfig, sizeof(*sconfig)); |
Dmitry Osipenko | f6160f3 | 2017-11-16 20:11:06 +0300 | [diff] [blame] | 346 | if (tdc->slave_id == TEGRA_APBDMA_SLAVE_ID_INVALID && |
| 347 | sconfig->device_fc) { |
Shardar Shariff Md | 00ef449 | 2016-04-23 15:06:00 +0530 | [diff] [blame] | 348 | if (sconfig->slave_id > TEGRA_APBDMA_CSR_REQ_SEL_MASK) |
| 349 | return -EINVAL; |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 350 | tdc->slave_id = sconfig->slave_id; |
Shardar Shariff Md | 00ef449 | 2016-04-23 15:06:00 +0530 | [diff] [blame] | 351 | } |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 352 | tdc->config_init = true; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 353 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 354 | return 0; |
| 355 | } |
| 356 | |
| 357 | static void tegra_dma_global_pause(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 358 | bool wait_for_burst_complete) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 359 | { |
| 360 | struct tegra_dma *tdma = tdc->tdma; |
| 361 | |
| 362 | spin_lock(&tdma->global_lock); |
Jon Hunter | 23a1ec3 | 2015-08-06 14:32:33 +0100 | [diff] [blame] | 363 | |
| 364 | if (tdc->tdma->global_pause_count == 0) { |
| 365 | tdma_write(tdma, TEGRA_APBDMA_GENERAL, 0); |
| 366 | if (wait_for_burst_complete) |
| 367 | udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME); |
| 368 | } |
| 369 | |
| 370 | tdc->tdma->global_pause_count++; |
| 371 | |
| 372 | spin_unlock(&tdma->global_lock); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | static void tegra_dma_global_resume(struct tegra_dma_channel *tdc) |
| 376 | { |
| 377 | struct tegra_dma *tdma = tdc->tdma; |
| 378 | |
Jon Hunter | 23a1ec3 | 2015-08-06 14:32:33 +0100 | [diff] [blame] | 379 | spin_lock(&tdma->global_lock); |
| 380 | |
| 381 | if (WARN_ON(tdc->tdma->global_pause_count == 0)) |
| 382 | goto out; |
| 383 | |
| 384 | if (--tdc->tdma->global_pause_count == 0) |
| 385 | tdma_write(tdma, TEGRA_APBDMA_GENERAL, |
| 386 | TEGRA_APBDMA_GENERAL_ENABLE); |
| 387 | |
| 388 | out: |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 389 | spin_unlock(&tdma->global_lock); |
| 390 | } |
| 391 | |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 392 | static void tegra_dma_pause(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 393 | bool wait_for_burst_complete) |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 394 | { |
| 395 | struct tegra_dma *tdma = tdc->tdma; |
| 396 | |
| 397 | if (tdma->chip_data->support_channel_pause) { |
| 398 | tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 399 | TEGRA_APBDMA_CHAN_CSRE_PAUSE); |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 400 | if (wait_for_burst_complete) |
| 401 | udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME); |
| 402 | } else { |
| 403 | tegra_dma_global_pause(tdc, wait_for_burst_complete); |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | static void tegra_dma_resume(struct tegra_dma_channel *tdc) |
| 408 | { |
| 409 | struct tegra_dma *tdma = tdc->tdma; |
| 410 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 411 | if (tdma->chip_data->support_channel_pause) |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 412 | tdc_write(tdc, TEGRA_APBDMA_CHAN_CSRE, 0); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 413 | else |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 414 | tegra_dma_global_resume(tdc); |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 415 | } |
| 416 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 417 | static void tegra_dma_stop(struct tegra_dma_channel *tdc) |
| 418 | { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 419 | u32 csr, status; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 420 | |
| 421 | /* Disable interrupts */ |
| 422 | csr = tdc_read(tdc, TEGRA_APBDMA_CHAN_CSR); |
| 423 | csr &= ~TEGRA_APBDMA_CSR_IE_EOC; |
| 424 | tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr); |
| 425 | |
| 426 | /* Disable DMA */ |
| 427 | csr &= ~TEGRA_APBDMA_CSR_ENB; |
| 428 | tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, csr); |
| 429 | |
| 430 | /* Clear interrupt status if it is there */ |
| 431 | status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS); |
| 432 | if (status & TEGRA_APBDMA_STATUS_ISE_EOC) { |
| 433 | dev_dbg(tdc2dev(tdc), "%s():clearing interrupt\n", __func__); |
| 434 | tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status); |
| 435 | } |
| 436 | tdc->busy = false; |
| 437 | } |
| 438 | |
| 439 | static void tegra_dma_start(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 440 | struct tegra_dma_sg_req *sg_req) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 441 | { |
| 442 | struct tegra_dma_channel_regs *ch_regs = &sg_req->ch_regs; |
| 443 | |
| 444 | tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, ch_regs->csr); |
| 445 | tdc_write(tdc, TEGRA_APBDMA_CHAN_APBSEQ, ch_regs->apb_seq); |
| 446 | tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, ch_regs->apb_ptr); |
| 447 | tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBSEQ, ch_regs->ahb_seq); |
| 448 | tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, ch_regs->ahb_ptr); |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 449 | if (tdc->tdma->chip_data->support_separate_wcount_reg) |
| 450 | tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT, ch_regs->wcount); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 451 | |
| 452 | /* Start DMA */ |
| 453 | tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 454 | ch_regs->csr | TEGRA_APBDMA_CSR_ENB); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | static void tegra_dma_configure_for_next(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 458 | struct tegra_dma_sg_req *nsg_req) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 459 | { |
| 460 | unsigned long status; |
| 461 | |
| 462 | /* |
| 463 | * The DMA controller reloads the new configuration for next transfer |
| 464 | * after last burst of current transfer completes. |
| 465 | * If there is no IEC status then this makes sure that last burst |
| 466 | * has not be completed. There may be case that last burst is on |
| 467 | * flight and so it can complete but because DMA is paused, it |
| 468 | * will not generates interrupt as well as not reload the new |
| 469 | * configuration. |
| 470 | * If there is already IEC status then interrupt handler need to |
| 471 | * load new configuration. |
| 472 | */ |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 473 | tegra_dma_pause(tdc, false); |
Thierry Reding | 7b0e00d | 2016-06-14 16:18:46 +0200 | [diff] [blame] | 474 | status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 475 | |
| 476 | /* |
| 477 | * If interrupt is pending then do nothing as the ISR will handle |
| 478 | * the programing for new request. |
| 479 | */ |
| 480 | if (status & TEGRA_APBDMA_STATUS_ISE_EOC) { |
| 481 | dev_err(tdc2dev(tdc), |
| 482 | "Skipping new configuration as interrupt is pending\n"); |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 483 | tegra_dma_resume(tdc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 484 | return; |
| 485 | } |
| 486 | |
| 487 | /* Safe to program new configuration */ |
| 488 | tdc_write(tdc, TEGRA_APBDMA_CHAN_APBPTR, nsg_req->ch_regs.apb_ptr); |
| 489 | tdc_write(tdc, TEGRA_APBDMA_CHAN_AHBPTR, nsg_req->ch_regs.ahb_ptr); |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 490 | if (tdc->tdma->chip_data->support_separate_wcount_reg) |
| 491 | tdc_write(tdc, TEGRA_APBDMA_CHAN_WCOUNT, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 492 | nsg_req->ch_regs.wcount); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 493 | tdc_write(tdc, TEGRA_APBDMA_CHAN_CSR, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 494 | nsg_req->ch_regs.csr | TEGRA_APBDMA_CSR_ENB); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 495 | nsg_req->configured = true; |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 496 | nsg_req->words_xferred = 0; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 497 | |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 498 | tegra_dma_resume(tdc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | static void tdc_start_head_req(struct tegra_dma_channel *tdc) |
| 502 | { |
| 503 | struct tegra_dma_sg_req *sg_req; |
| 504 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 505 | sg_req = list_first_entry(&tdc->pending_sg_req, typeof(*sg_req), node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 506 | tegra_dma_start(tdc, sg_req); |
| 507 | sg_req->configured = true; |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 508 | sg_req->words_xferred = 0; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 509 | tdc->busy = true; |
| 510 | } |
| 511 | |
| 512 | static void tdc_configure_next_head_desc(struct tegra_dma_channel *tdc) |
| 513 | { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 514 | struct tegra_dma_sg_req *hsgreq, *hnsgreq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 515 | |
| 516 | hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node); |
| 517 | if (!list_is_last(&hsgreq->node, &tdc->pending_sg_req)) { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 518 | hnsgreq = list_first_entry(&hsgreq->node, typeof(*hnsgreq), |
| 519 | node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 520 | tegra_dma_configure_for_next(tdc, hnsgreq); |
| 521 | } |
| 522 | } |
| 523 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 524 | static inline unsigned int |
| 525 | get_current_xferred_count(struct tegra_dma_channel *tdc, |
| 526 | struct tegra_dma_sg_req *sg_req, |
| 527 | unsigned long status) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 528 | { |
| 529 | return sg_req->req_len - (status & TEGRA_APBDMA_STATUS_COUNT_MASK) - 4; |
| 530 | } |
| 531 | |
| 532 | static void tegra_dma_abort_all(struct tegra_dma_channel *tdc) |
| 533 | { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 534 | struct tegra_dma_desc *dma_desc; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 535 | struct tegra_dma_sg_req *sgreq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 536 | |
| 537 | while (!list_empty(&tdc->pending_sg_req)) { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 538 | sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), |
| 539 | node); |
Wei Yongjun | 2cc44e6 | 2012-09-05 15:08:56 +0800 | [diff] [blame] | 540 | list_move_tail(&sgreq->node, &tdc->free_sg_req); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 541 | if (sgreq->last_sg) { |
| 542 | dma_desc = sgreq->dma_desc; |
| 543 | dma_desc->dma_status = DMA_ERROR; |
| 544 | list_add_tail(&dma_desc->node, &tdc->free_dma_desc); |
| 545 | |
| 546 | /* Add in cb list if it is not there. */ |
| 547 | if (!dma_desc->cb_count) |
| 548 | list_add_tail(&dma_desc->cb_node, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 549 | &tdc->cb_desc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 550 | dma_desc->cb_count++; |
| 551 | } |
| 552 | } |
| 553 | tdc->isr_handler = NULL; |
| 554 | } |
| 555 | |
| 556 | static bool handle_continuous_head_request(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 557 | bool to_terminate) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 558 | { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 559 | struct tegra_dma_sg_req *hsgreq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 560 | |
| 561 | /* |
| 562 | * Check that head req on list should be in flight. |
| 563 | * If it is not in flight then abort transfer as |
| 564 | * looping of transfer can not continue. |
| 565 | */ |
| 566 | hsgreq = list_first_entry(&tdc->pending_sg_req, typeof(*hsgreq), node); |
| 567 | if (!hsgreq->configured) { |
| 568 | tegra_dma_stop(tdc); |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 569 | pm_runtime_put(tdc->tdma->dev); |
Dmitry Osipenko | 01b66a7 | 2020-02-09 19:33:56 +0300 | [diff] [blame] | 570 | dev_err(tdc2dev(tdc), "DMA transfer underflow, aborting DMA\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 571 | tegra_dma_abort_all(tdc); |
| 572 | return false; |
| 573 | } |
| 574 | |
| 575 | /* Configure next request */ |
| 576 | if (!to_terminate) |
| 577 | tdc_configure_next_head_desc(tdc); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 578 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 579 | return true; |
| 580 | } |
| 581 | |
| 582 | static void handle_once_dma_done(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 583 | bool to_terminate) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 584 | { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 585 | struct tegra_dma_desc *dma_desc; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 586 | struct tegra_dma_sg_req *sgreq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 587 | |
| 588 | tdc->busy = false; |
| 589 | sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node); |
| 590 | dma_desc = sgreq->dma_desc; |
| 591 | dma_desc->bytes_transferred += sgreq->req_len; |
| 592 | |
| 593 | list_del(&sgreq->node); |
| 594 | if (sgreq->last_sg) { |
Vinod Koul | 00d696f | 2013-10-16 21:04:50 +0530 | [diff] [blame] | 595 | dma_desc->dma_status = DMA_COMPLETE; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 596 | dma_cookie_complete(&dma_desc->txd); |
| 597 | if (!dma_desc->cb_count) |
| 598 | list_add_tail(&dma_desc->cb_node, &tdc->cb_desc); |
| 599 | dma_desc->cb_count++; |
| 600 | list_add_tail(&dma_desc->node, &tdc->free_dma_desc); |
| 601 | } |
| 602 | list_add_tail(&sgreq->node, &tdc->free_sg_req); |
| 603 | |
| 604 | /* Do not start DMA if it is going to be terminate */ |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 605 | if (to_terminate) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 606 | return; |
| 607 | |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 608 | if (list_empty(&tdc->pending_sg_req)) { |
| 609 | pm_runtime_put(tdc->tdma->dev); |
| 610 | return; |
| 611 | } |
| 612 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 613 | tdc_start_head_req(tdc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | static void handle_cont_sngl_cycle_dma_done(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 617 | bool to_terminate) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 618 | { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 619 | struct tegra_dma_desc *dma_desc; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 620 | struct tegra_dma_sg_req *sgreq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 621 | bool st; |
| 622 | |
| 623 | sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), node); |
| 624 | dma_desc = sgreq->dma_desc; |
Ben Dooks | e486df3 | 2018-11-21 16:13:19 +0000 | [diff] [blame] | 625 | /* if we dma for long enough the transfer count will wrap */ |
| 626 | dma_desc->bytes_transferred = |
| 627 | (dma_desc->bytes_transferred + sgreq->req_len) % |
| 628 | dma_desc->bytes_requested; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 629 | |
| 630 | /* Callback need to be call */ |
| 631 | if (!dma_desc->cb_count) |
| 632 | list_add_tail(&dma_desc->cb_node, &tdc->cb_desc); |
| 633 | dma_desc->cb_count++; |
| 634 | |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 635 | sgreq->words_xferred = 0; |
| 636 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 637 | /* If not last req then put at end of pending list */ |
| 638 | if (!list_is_last(&sgreq->node, &tdc->pending_sg_req)) { |
Wei Yongjun | 2cc44e6 | 2012-09-05 15:08:56 +0800 | [diff] [blame] | 639 | list_move_tail(&sgreq->node, &tdc->pending_sg_req); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 640 | sgreq->configured = false; |
Dmitry Osipenko | f261f1c | 2020-02-09 19:33:55 +0300 | [diff] [blame] | 641 | st = handle_continuous_head_request(tdc, to_terminate); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 642 | if (!st) |
| 643 | dma_desc->dma_status = DMA_ERROR; |
| 644 | } |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 645 | } |
| 646 | |
Allen Pais | 86fc54f | 2020-08-31 16:05:34 +0530 | [diff] [blame] | 647 | static void tegra_dma_tasklet(struct tasklet_struct *t) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 648 | { |
Allen Pais | 86fc54f | 2020-08-31 16:05:34 +0530 | [diff] [blame] | 649 | struct tegra_dma_channel *tdc = from_tasklet(tdc, t, tasklet); |
Dave Jiang | 370c044 | 2016-07-20 13:13:16 -0700 | [diff] [blame] | 650 | struct dmaengine_desc_callback cb; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 651 | struct tegra_dma_desc *dma_desc; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 652 | unsigned int cb_count; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 653 | unsigned long flags; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 654 | |
| 655 | spin_lock_irqsave(&tdc->lock, flags); |
| 656 | while (!list_empty(&tdc->cb_desc)) { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 657 | dma_desc = list_first_entry(&tdc->cb_desc, typeof(*dma_desc), |
| 658 | cb_node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 659 | list_del(&dma_desc->cb_node); |
Dave Jiang | 370c044 | 2016-07-20 13:13:16 -0700 | [diff] [blame] | 660 | dmaengine_desc_get_callback(&dma_desc->txd, &cb); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 661 | cb_count = dma_desc->cb_count; |
| 662 | dma_desc->cb_count = 0; |
Ben Dooks | 95f295f | 2018-11-21 16:13:23 +0000 | [diff] [blame] | 663 | trace_tegra_dma_complete_cb(&tdc->dma_chan, cb_count, |
| 664 | cb.callback); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 665 | spin_unlock_irqrestore(&tdc->lock, flags); |
Dave Jiang | 370c044 | 2016-07-20 13:13:16 -0700 | [diff] [blame] | 666 | while (cb_count--) |
| 667 | dmaengine_desc_callback_invoke(&cb, NULL); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 668 | spin_lock_irqsave(&tdc->lock, flags); |
| 669 | } |
| 670 | spin_unlock_irqrestore(&tdc->lock, flags); |
| 671 | } |
| 672 | |
| 673 | static irqreturn_t tegra_dma_isr(int irq, void *dev_id) |
| 674 | { |
| 675 | struct tegra_dma_channel *tdc = dev_id; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 676 | u32 status; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 677 | |
Dmitry Osipenko | 6de88ea | 2020-03-20 00:23:20 +0300 | [diff] [blame] | 678 | spin_lock(&tdc->lock); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 679 | |
Ben Dooks | 95f295f | 2018-11-21 16:13:23 +0000 | [diff] [blame] | 680 | trace_tegra_dma_isr(&tdc->dma_chan, irq); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 681 | status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS); |
| 682 | if (status & TEGRA_APBDMA_STATUS_ISE_EOC) { |
| 683 | tdc_write(tdc, TEGRA_APBDMA_CHAN_STATUS, status); |
| 684 | tdc->isr_handler(tdc, false); |
| 685 | tasklet_schedule(&tdc->tasklet); |
Dmitry Osipenko | 6697255 | 2020-03-20 00:23:21 +0300 | [diff] [blame] | 686 | wake_up_all(&tdc->wq); |
Dmitry Osipenko | 6de88ea | 2020-03-20 00:23:20 +0300 | [diff] [blame] | 687 | spin_unlock(&tdc->lock); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 688 | return IRQ_HANDLED; |
| 689 | } |
| 690 | |
Dmitry Osipenko | 6de88ea | 2020-03-20 00:23:20 +0300 | [diff] [blame] | 691 | spin_unlock(&tdc->lock); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 692 | dev_info(tdc2dev(tdc), "Interrupt already served status 0x%08x\n", |
| 693 | status); |
| 694 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 695 | return IRQ_NONE; |
| 696 | } |
| 697 | |
| 698 | static dma_cookie_t tegra_dma_tx_submit(struct dma_async_tx_descriptor *txd) |
| 699 | { |
| 700 | struct tegra_dma_desc *dma_desc = txd_to_tegra_dma_desc(txd); |
| 701 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(txd->chan); |
| 702 | unsigned long flags; |
| 703 | dma_cookie_t cookie; |
| 704 | |
| 705 | spin_lock_irqsave(&tdc->lock, flags); |
| 706 | dma_desc->dma_status = DMA_IN_PROGRESS; |
| 707 | cookie = dma_cookie_assign(&dma_desc->txd); |
| 708 | list_splice_tail_init(&dma_desc->tx_list, &tdc->pending_sg_req); |
| 709 | spin_unlock_irqrestore(&tdc->lock, flags); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 710 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 711 | return cookie; |
| 712 | } |
| 713 | |
| 714 | static void tegra_dma_issue_pending(struct dma_chan *dc) |
| 715 | { |
| 716 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
| 717 | unsigned long flags; |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 718 | int err; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 719 | |
| 720 | spin_lock_irqsave(&tdc->lock, flags); |
| 721 | if (list_empty(&tdc->pending_sg_req)) { |
| 722 | dev_err(tdc2dev(tdc), "No DMA request\n"); |
| 723 | goto end; |
| 724 | } |
| 725 | if (!tdc->busy) { |
Dinghao Liu | d33031a | 2021-04-09 16:28:05 +0800 | [diff] [blame] | 726 | err = pm_runtime_resume_and_get(tdc->tdma->dev); |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 727 | if (err < 0) { |
| 728 | dev_err(tdc2dev(tdc), "Failed to enable DMA\n"); |
| 729 | goto end; |
| 730 | } |
| 731 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 732 | tdc_start_head_req(tdc); |
| 733 | |
| 734 | /* Continuous single mode: Configure next req */ |
| 735 | if (tdc->cyclic) { |
| 736 | /* |
| 737 | * Wait for 1 burst time for configure DMA for |
| 738 | * next transfer. |
| 739 | */ |
| 740 | udelay(TEGRA_APBDMA_BURST_COMPLETE_TIME); |
| 741 | tdc_configure_next_head_desc(tdc); |
| 742 | } |
| 743 | } |
| 744 | end: |
| 745 | spin_unlock_irqrestore(&tdc->lock, flags); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 746 | } |
| 747 | |
Vinod Koul | a7c439a | 2014-12-08 11:30:17 +0530 | [diff] [blame] | 748 | static int tegra_dma_terminate_all(struct dma_chan *dc) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 749 | { |
| 750 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 751 | struct tegra_dma_desc *dma_desc; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 752 | struct tegra_dma_sg_req *sgreq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 753 | unsigned long flags; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 754 | u32 status, wcount; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 755 | bool was_busy; |
| 756 | |
| 757 | spin_lock_irqsave(&tdc->lock, flags); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 758 | |
| 759 | if (!tdc->busy) |
| 760 | goto skip_dma_stop; |
| 761 | |
| 762 | /* Pause DMA before checking the queue status */ |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 763 | tegra_dma_pause(tdc, true); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 764 | |
| 765 | status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS); |
| 766 | if (status & TEGRA_APBDMA_STATUS_ISE_EOC) { |
| 767 | dev_dbg(tdc2dev(tdc), "%s():handling isr\n", __func__); |
| 768 | tdc->isr_handler(tdc, true); |
| 769 | status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS); |
| 770 | } |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 771 | if (tdc->tdma->chip_data->support_separate_wcount_reg) |
| 772 | wcount = tdc_read(tdc, TEGRA_APBDMA_CHAN_WORD_TRANSFER); |
| 773 | else |
| 774 | wcount = status; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 775 | |
| 776 | was_busy = tdc->busy; |
| 777 | tegra_dma_stop(tdc); |
| 778 | |
| 779 | if (!list_empty(&tdc->pending_sg_req) && was_busy) { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 780 | sgreq = list_first_entry(&tdc->pending_sg_req, typeof(*sgreq), |
| 781 | node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 782 | sgreq->dma_desc->bytes_transferred += |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 783 | get_current_xferred_count(tdc, sgreq, wcount); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 784 | } |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 785 | tegra_dma_resume(tdc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 786 | |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 787 | pm_runtime_put(tdc->tdma->dev); |
Dmitry Osipenko | 6697255 | 2020-03-20 00:23:21 +0300 | [diff] [blame] | 788 | wake_up_all(&tdc->wq); |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 789 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 790 | skip_dma_stop: |
| 791 | tegra_dma_abort_all(tdc); |
| 792 | |
| 793 | while (!list_empty(&tdc->cb_desc)) { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 794 | dma_desc = list_first_entry(&tdc->cb_desc, typeof(*dma_desc), |
| 795 | cb_node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 796 | list_del(&dma_desc->cb_node); |
| 797 | dma_desc->cb_count = 0; |
| 798 | } |
| 799 | spin_unlock_irqrestore(&tdc->lock, flags); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 800 | |
Vinod Koul | a7c439a | 2014-12-08 11:30:17 +0530 | [diff] [blame] | 801 | return 0; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 802 | } |
| 803 | |
Dmitry Osipenko | 6697255 | 2020-03-20 00:23:21 +0300 | [diff] [blame] | 804 | static bool tegra_dma_eoc_interrupt_deasserted(struct tegra_dma_channel *tdc) |
| 805 | { |
| 806 | unsigned long flags; |
| 807 | u32 status; |
| 808 | |
| 809 | spin_lock_irqsave(&tdc->lock, flags); |
| 810 | status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS); |
| 811 | spin_unlock_irqrestore(&tdc->lock, flags); |
| 812 | |
| 813 | return !(status & TEGRA_APBDMA_STATUS_ISE_EOC); |
| 814 | } |
| 815 | |
Dmitry Osipenko | dda5e35 | 2020-02-09 19:33:40 +0300 | [diff] [blame] | 816 | static void tegra_dma_synchronize(struct dma_chan *dc) |
| 817 | { |
| 818 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
Dmitry Osipenko | 664475c | 2020-04-26 22:08:35 +0300 | [diff] [blame] | 819 | int err; |
| 820 | |
Dinghao Liu | d33031a | 2021-04-09 16:28:05 +0800 | [diff] [blame] | 821 | err = pm_runtime_resume_and_get(tdc->tdma->dev); |
Dmitry Osipenko | 664475c | 2020-04-26 22:08:35 +0300 | [diff] [blame] | 822 | if (err < 0) { |
| 823 | dev_err(tdc2dev(tdc), "Failed to synchronize DMA: %d\n", err); |
| 824 | return; |
| 825 | } |
Dmitry Osipenko | dda5e35 | 2020-02-09 19:33:40 +0300 | [diff] [blame] | 826 | |
Dmitry Osipenko | 6697255 | 2020-03-20 00:23:21 +0300 | [diff] [blame] | 827 | /* |
| 828 | * CPU, which handles interrupt, could be busy in |
| 829 | * uninterruptible state, in this case sibling CPU |
| 830 | * should wait until interrupt is handled. |
| 831 | */ |
| 832 | wait_event(tdc->wq, tegra_dma_eoc_interrupt_deasserted(tdc)); |
| 833 | |
Dmitry Osipenko | dda5e35 | 2020-02-09 19:33:40 +0300 | [diff] [blame] | 834 | tasklet_kill(&tdc->tasklet); |
Dmitry Osipenko | 664475c | 2020-04-26 22:08:35 +0300 | [diff] [blame] | 835 | |
| 836 | pm_runtime_put(tdc->tdma->dev); |
Dmitry Osipenko | dda5e35 | 2020-02-09 19:33:40 +0300 | [diff] [blame] | 837 | } |
| 838 | |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 839 | static unsigned int tegra_dma_sg_bytes_xferred(struct tegra_dma_channel *tdc, |
| 840 | struct tegra_dma_sg_req *sg_req) |
| 841 | { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 842 | u32 status, wcount = 0; |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 843 | |
| 844 | if (!list_is_first(&sg_req->node, &tdc->pending_sg_req)) |
| 845 | return 0; |
| 846 | |
| 847 | if (tdc->tdma->chip_data->support_separate_wcount_reg) |
| 848 | wcount = tdc_read(tdc, TEGRA_APBDMA_CHAN_WORD_TRANSFER); |
| 849 | |
| 850 | status = tdc_read(tdc, TEGRA_APBDMA_CHAN_STATUS); |
| 851 | |
| 852 | if (!tdc->tdma->chip_data->support_separate_wcount_reg) |
| 853 | wcount = status; |
| 854 | |
| 855 | if (status & TEGRA_APBDMA_STATUS_ISE_EOC) |
| 856 | return sg_req->req_len; |
| 857 | |
| 858 | wcount = get_current_xferred_count(tdc, sg_req, wcount); |
| 859 | |
| 860 | if (!wcount) { |
| 861 | /* |
| 862 | * If wcount wasn't ever polled for this SG before, then |
| 863 | * simply assume that transfer hasn't started yet. |
| 864 | * |
| 865 | * Otherwise it's the end of the transfer. |
| 866 | * |
| 867 | * The alternative would be to poll the status register |
| 868 | * until EOC bit is set or wcount goes UP. That's so |
| 869 | * because EOC bit is getting set only after the last |
| 870 | * burst's completion and counter is less than the actual |
| 871 | * transfer size by 4 bytes. The counter value wraps around |
| 872 | * in a cyclic mode before EOC is set(!), so we can't easily |
| 873 | * distinguish start of transfer from its end. |
| 874 | */ |
| 875 | if (sg_req->words_xferred) |
| 876 | wcount = sg_req->req_len - 4; |
| 877 | |
| 878 | } else if (wcount < sg_req->words_xferred) { |
| 879 | /* |
| 880 | * This case will never happen for a non-cyclic transfer. |
| 881 | * |
| 882 | * For a cyclic transfer, although it is possible for the |
| 883 | * next transfer to have already started (resetting the word |
| 884 | * count), this case should still not happen because we should |
| 885 | * have detected that the EOC bit is set and hence the transfer |
| 886 | * was completed. |
| 887 | */ |
| 888 | WARN_ON_ONCE(1); |
| 889 | |
| 890 | wcount = sg_req->req_len - 4; |
| 891 | } else { |
| 892 | sg_req->words_xferred = wcount; |
| 893 | } |
| 894 | |
| 895 | return wcount; |
| 896 | } |
| 897 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 898 | static enum dma_status tegra_dma_tx_status(struct dma_chan *dc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 899 | dma_cookie_t cookie, |
| 900 | struct dma_tx_state *txstate) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 901 | { |
| 902 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
| 903 | struct tegra_dma_desc *dma_desc; |
| 904 | struct tegra_dma_sg_req *sg_req; |
| 905 | enum dma_status ret; |
| 906 | unsigned long flags; |
Laxman Dewangan | 4a46ba3 | 2012-07-02 13:52:07 +0530 | [diff] [blame] | 907 | unsigned int residual; |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 908 | unsigned int bytes = 0; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 909 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 910 | ret = dma_cookie_status(dc, cookie, txstate); |
Jon Hunter | d318344 | 2016-06-29 17:08:39 +0100 | [diff] [blame] | 911 | if (ret == DMA_COMPLETE) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 912 | return ret; |
Andy Shevchenko | 0a0aee2 | 2013-05-27 15:14:39 +0300 | [diff] [blame] | 913 | |
| 914 | spin_lock_irqsave(&tdc->lock, flags); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 915 | |
| 916 | /* Check on wait_ack desc status */ |
| 917 | list_for_each_entry(dma_desc, &tdc->free_dma_desc, node) { |
| 918 | if (dma_desc->txd.cookie == cookie) { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 919 | ret = dma_desc->dma_status; |
Jon Hunter | 004f614 | 2016-06-29 17:08:38 +0100 | [diff] [blame] | 920 | goto found; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 921 | } |
| 922 | } |
| 923 | |
| 924 | /* Check in pending list */ |
| 925 | list_for_each_entry(sg_req, &tdc->pending_sg_req, node) { |
| 926 | dma_desc = sg_req->dma_desc; |
| 927 | if (dma_desc->txd.cookie == cookie) { |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 928 | bytes = tegra_dma_sg_bytes_xferred(tdc, sg_req); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 929 | ret = dma_desc->dma_status; |
Jon Hunter | 004f614 | 2016-06-29 17:08:38 +0100 | [diff] [blame] | 930 | goto found; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 931 | } |
| 932 | } |
| 933 | |
Jon Hunter | 019bfcc | 2016-06-29 17:08:37 +0100 | [diff] [blame] | 934 | dev_dbg(tdc2dev(tdc), "cookie %d not found\n", cookie); |
Jon Hunter | 004f614 | 2016-06-29 17:08:38 +0100 | [diff] [blame] | 935 | dma_desc = NULL; |
| 936 | |
| 937 | found: |
Jon Hunter | d318344 | 2016-06-29 17:08:39 +0100 | [diff] [blame] | 938 | if (dma_desc && txstate) { |
Jon Hunter | 004f614 | 2016-06-29 17:08:38 +0100 | [diff] [blame] | 939 | residual = dma_desc->bytes_requested - |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 940 | ((dma_desc->bytes_transferred + bytes) % |
Jon Hunter | 004f614 | 2016-06-29 17:08:38 +0100 | [diff] [blame] | 941 | dma_desc->bytes_requested); |
| 942 | dma_set_residue(txstate, residual); |
| 943 | } |
| 944 | |
Ben Dooks | 95f295f | 2018-11-21 16:13:23 +0000 | [diff] [blame] | 945 | trace_tegra_dma_tx_status(&tdc->dma_chan, cookie, txstate); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 946 | spin_unlock_irqrestore(&tdc->lock, flags); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 947 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 948 | return ret; |
| 949 | } |
| 950 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 951 | static inline unsigned int get_bus_width(struct tegra_dma_channel *tdc, |
| 952 | enum dma_slave_buswidth slave_bw) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 953 | { |
| 954 | switch (slave_bw) { |
| 955 | case DMA_SLAVE_BUSWIDTH_1_BYTE: |
| 956 | return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_8; |
| 957 | case DMA_SLAVE_BUSWIDTH_2_BYTES: |
| 958 | return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_16; |
| 959 | case DMA_SLAVE_BUSWIDTH_4_BYTES: |
| 960 | return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32; |
| 961 | case DMA_SLAVE_BUSWIDTH_8_BYTES: |
| 962 | return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_64; |
| 963 | default: |
| 964 | dev_warn(tdc2dev(tdc), |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 965 | "slave bw is not supported, using 32bits\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 966 | return TEGRA_APBDMA_APBSEQ_BUS_WIDTH_32; |
| 967 | } |
| 968 | } |
| 969 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 970 | static inline unsigned int get_burst_size(struct tegra_dma_channel *tdc, |
| 971 | u32 burst_size, |
| 972 | enum dma_slave_buswidth slave_bw, |
| 973 | u32 len) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 974 | { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 975 | unsigned int burst_byte, burst_ahb_width; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 976 | |
| 977 | /* |
| 978 | * burst_size from client is in terms of the bus_width. |
| 979 | * convert them into AHB memory width which is 4 byte. |
| 980 | */ |
| 981 | burst_byte = burst_size * slave_bw; |
| 982 | burst_ahb_width = burst_byte / 4; |
| 983 | |
| 984 | /* If burst size is 0 then calculate the burst size based on length */ |
| 985 | if (!burst_ahb_width) { |
| 986 | if (len & 0xF) |
| 987 | return TEGRA_APBDMA_AHBSEQ_BURST_1; |
| 988 | else if ((len >> 4) & 0x1) |
| 989 | return TEGRA_APBDMA_AHBSEQ_BURST_4; |
| 990 | else |
| 991 | return TEGRA_APBDMA_AHBSEQ_BURST_8; |
| 992 | } |
| 993 | if (burst_ahb_width < 4) |
| 994 | return TEGRA_APBDMA_AHBSEQ_BURST_1; |
| 995 | else if (burst_ahb_width < 8) |
| 996 | return TEGRA_APBDMA_AHBSEQ_BURST_4; |
| 997 | else |
| 998 | return TEGRA_APBDMA_AHBSEQ_BURST_8; |
| 999 | } |
| 1000 | |
| 1001 | static int get_transfer_param(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1002 | enum dma_transfer_direction direction, |
| 1003 | u32 *apb_addr, |
| 1004 | u32 *apb_seq, |
| 1005 | u32 *csr, |
| 1006 | unsigned int *burst_size, |
| 1007 | enum dma_slave_buswidth *slave_bw) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1008 | { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1009 | switch (direction) { |
| 1010 | case DMA_MEM_TO_DEV: |
| 1011 | *apb_addr = tdc->dma_sconfig.dst_addr; |
| 1012 | *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.dst_addr_width); |
| 1013 | *burst_size = tdc->dma_sconfig.dst_maxburst; |
| 1014 | *slave_bw = tdc->dma_sconfig.dst_addr_width; |
| 1015 | *csr = TEGRA_APBDMA_CSR_DIR; |
| 1016 | return 0; |
| 1017 | |
| 1018 | case DMA_DEV_TO_MEM: |
| 1019 | *apb_addr = tdc->dma_sconfig.src_addr; |
| 1020 | *apb_seq = get_bus_width(tdc, tdc->dma_sconfig.src_addr_width); |
| 1021 | *burst_size = tdc->dma_sconfig.src_maxburst; |
| 1022 | *slave_bw = tdc->dma_sconfig.src_addr_width; |
| 1023 | *csr = 0; |
| 1024 | return 0; |
| 1025 | |
| 1026 | default: |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 1027 | dev_err(tdc2dev(tdc), "DMA direction is not supported\n"); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1028 | break; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1029 | } |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1030 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1031 | return -EINVAL; |
| 1032 | } |
| 1033 | |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1034 | static void tegra_dma_prep_wcount(struct tegra_dma_channel *tdc, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1035 | struct tegra_dma_channel_regs *ch_regs, |
| 1036 | u32 len) |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1037 | { |
| 1038 | u32 len_field = (len - 4) & 0xFFFC; |
| 1039 | |
| 1040 | if (tdc->tdma->chip_data->support_separate_wcount_reg) |
| 1041 | ch_regs->wcount = len_field; |
| 1042 | else |
| 1043 | ch_regs->csr |= len_field; |
| 1044 | } |
| 1045 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1046 | static struct dma_async_tx_descriptor * |
| 1047 | tegra_dma_prep_slave_sg(struct dma_chan *dc, |
| 1048 | struct scatterlist *sgl, |
| 1049 | unsigned int sg_len, |
| 1050 | enum dma_transfer_direction direction, |
| 1051 | unsigned long flags, |
| 1052 | void *context) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1053 | { |
| 1054 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1055 | struct tegra_dma_sg_req *sg_req = NULL; |
| 1056 | u32 csr, ahb_seq, apb_ptr, apb_seq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1057 | enum dma_slave_buswidth slave_bw; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1058 | struct tegra_dma_desc *dma_desc; |
| 1059 | struct list_head req_list; |
| 1060 | struct scatterlist *sg; |
| 1061 | unsigned int burst_size; |
| 1062 | unsigned int i; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1063 | |
| 1064 | if (!tdc->config_init) { |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 1065 | dev_err(tdc2dev(tdc), "DMA channel is not configured\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1066 | return NULL; |
| 1067 | } |
| 1068 | if (sg_len < 1) { |
| 1069 | dev_err(tdc2dev(tdc), "Invalid segment length %d\n", sg_len); |
| 1070 | return NULL; |
| 1071 | } |
| 1072 | |
Jon Hunter | dc1ff4b | 2015-08-06 14:32:32 +0100 | [diff] [blame] | 1073 | if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1074 | &burst_size, &slave_bw) < 0) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1075 | return NULL; |
| 1076 | |
| 1077 | INIT_LIST_HEAD(&req_list); |
| 1078 | |
| 1079 | ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB; |
| 1080 | ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE << |
| 1081 | TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT; |
| 1082 | ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32; |
| 1083 | |
Dmitry Osipenko | f6160f3 | 2017-11-16 20:11:06 +0300 | [diff] [blame] | 1084 | csr |= TEGRA_APBDMA_CSR_ONCE; |
| 1085 | |
| 1086 | if (tdc->slave_id != TEGRA_APBDMA_SLAVE_ID_INVALID) { |
| 1087 | csr |= TEGRA_APBDMA_CSR_FLOW; |
| 1088 | csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT; |
| 1089 | } |
| 1090 | |
Dmitry Osipenko | dc16106 | 2019-05-30 00:43:55 +0300 | [diff] [blame] | 1091 | if (flags & DMA_PREP_INTERRUPT) { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1092 | csr |= TEGRA_APBDMA_CSR_IE_EOC; |
Dmitry Osipenko | dc16106 | 2019-05-30 00:43:55 +0300 | [diff] [blame] | 1093 | } else { |
| 1094 | WARN_ON_ONCE(1); |
| 1095 | return NULL; |
| 1096 | } |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1097 | |
| 1098 | apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1; |
| 1099 | |
| 1100 | dma_desc = tegra_dma_desc_get(tdc); |
| 1101 | if (!dma_desc) { |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 1102 | dev_err(tdc2dev(tdc), "DMA descriptors not available\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1103 | return NULL; |
| 1104 | } |
| 1105 | INIT_LIST_HEAD(&dma_desc->tx_list); |
| 1106 | INIT_LIST_HEAD(&dma_desc->cb_node); |
| 1107 | dma_desc->cb_count = 0; |
| 1108 | dma_desc->bytes_requested = 0; |
| 1109 | dma_desc->bytes_transferred = 0; |
| 1110 | dma_desc->dma_status = DMA_IN_PROGRESS; |
| 1111 | |
| 1112 | /* Make transfer requests */ |
| 1113 | for_each_sg(sgl, sg, sg_len, i) { |
| 1114 | u32 len, mem; |
| 1115 | |
Laxman Dewangan | 597c854 | 2012-06-22 20:41:10 +0530 | [diff] [blame] | 1116 | mem = sg_dma_address(sg); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1117 | len = sg_dma_len(sg); |
| 1118 | |
| 1119 | if ((len & 3) || (mem & 3) || |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1120 | len > tdc->tdma->chip_data->max_dma_count) { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1121 | dev_err(tdc2dev(tdc), |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 1122 | "DMA length/memory address is not supported\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1123 | tegra_dma_desc_put(tdc, dma_desc); |
| 1124 | return NULL; |
| 1125 | } |
| 1126 | |
| 1127 | sg_req = tegra_dma_sg_req_get(tdc); |
| 1128 | if (!sg_req) { |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 1129 | dev_err(tdc2dev(tdc), "DMA sg-req not available\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1130 | tegra_dma_desc_put(tdc, dma_desc); |
| 1131 | return NULL; |
| 1132 | } |
| 1133 | |
| 1134 | ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len); |
| 1135 | dma_desc->bytes_requested += len; |
| 1136 | |
| 1137 | sg_req->ch_regs.apb_ptr = apb_ptr; |
| 1138 | sg_req->ch_regs.ahb_ptr = mem; |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1139 | sg_req->ch_regs.csr = csr; |
| 1140 | tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1141 | sg_req->ch_regs.apb_seq = apb_seq; |
| 1142 | sg_req->ch_regs.ahb_seq = ahb_seq; |
| 1143 | sg_req->configured = false; |
| 1144 | sg_req->last_sg = false; |
| 1145 | sg_req->dma_desc = dma_desc; |
| 1146 | sg_req->req_len = len; |
| 1147 | |
| 1148 | list_add_tail(&sg_req->node, &dma_desc->tx_list); |
| 1149 | } |
| 1150 | sg_req->last_sg = true; |
| 1151 | if (flags & DMA_CTRL_ACK) |
| 1152 | dma_desc->txd.flags = DMA_CTRL_ACK; |
| 1153 | |
| 1154 | /* |
| 1155 | * Make sure that mode should not be conflicting with currently |
| 1156 | * configured mode. |
| 1157 | */ |
| 1158 | if (!tdc->isr_handler) { |
| 1159 | tdc->isr_handler = handle_once_dma_done; |
| 1160 | tdc->cyclic = false; |
| 1161 | } else { |
| 1162 | if (tdc->cyclic) { |
| 1163 | dev_err(tdc2dev(tdc), "DMA configured in cyclic mode\n"); |
| 1164 | tegra_dma_desc_put(tdc, dma_desc); |
| 1165 | return NULL; |
| 1166 | } |
| 1167 | } |
| 1168 | |
| 1169 | return &dma_desc->txd; |
| 1170 | } |
| 1171 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1172 | static struct dma_async_tx_descriptor * |
| 1173 | tegra_dma_prep_dma_cyclic(struct dma_chan *dc, dma_addr_t buf_addr, |
| 1174 | size_t buf_len, |
| 1175 | size_t period_len, |
| 1176 | enum dma_transfer_direction direction, |
| 1177 | unsigned long flags) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1178 | { |
| 1179 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
Thierry Reding | 7b0e00d | 2016-06-14 16:18:46 +0200 | [diff] [blame] | 1180 | struct tegra_dma_sg_req *sg_req = NULL; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1181 | u32 csr, ahb_seq, apb_ptr, apb_seq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1182 | enum dma_slave_buswidth slave_bw; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1183 | struct tegra_dma_desc *dma_desc; |
| 1184 | dma_addr_t mem = buf_addr; |
| 1185 | unsigned int burst_size; |
| 1186 | size_t len, remain_len; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1187 | |
| 1188 | if (!buf_len || !period_len) { |
| 1189 | dev_err(tdc2dev(tdc), "Invalid buffer/period len\n"); |
| 1190 | return NULL; |
| 1191 | } |
| 1192 | |
| 1193 | if (!tdc->config_init) { |
| 1194 | dev_err(tdc2dev(tdc), "DMA slave is not configured\n"); |
| 1195 | return NULL; |
| 1196 | } |
| 1197 | |
| 1198 | /* |
| 1199 | * We allow to take more number of requests till DMA is |
| 1200 | * not started. The driver will loop over all requests. |
| 1201 | * Once DMA is started then new requests can be queued only after |
| 1202 | * terminating the DMA. |
| 1203 | */ |
| 1204 | if (tdc->busy) { |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 1205 | dev_err(tdc2dev(tdc), "Request not allowed when DMA running\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1206 | return NULL; |
| 1207 | } |
| 1208 | |
| 1209 | /* |
| 1210 | * We only support cycle transfer when buf_len is multiple of |
| 1211 | * period_len. |
| 1212 | */ |
| 1213 | if (buf_len % period_len) { |
| 1214 | dev_err(tdc2dev(tdc), "buf_len is not multiple of period_len\n"); |
| 1215 | return NULL; |
| 1216 | } |
| 1217 | |
| 1218 | len = period_len; |
| 1219 | if ((len & 3) || (buf_addr & 3) || |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1220 | len > tdc->tdma->chip_data->max_dma_count) { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1221 | dev_err(tdc2dev(tdc), "Req len/mem address is not correct\n"); |
| 1222 | return NULL; |
| 1223 | } |
| 1224 | |
Jon Hunter | dc1ff4b | 2015-08-06 14:32:32 +0100 | [diff] [blame] | 1225 | if (get_transfer_param(tdc, direction, &apb_ptr, &apb_seq, &csr, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1226 | &burst_size, &slave_bw) < 0) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1227 | return NULL; |
| 1228 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1229 | ahb_seq = TEGRA_APBDMA_AHBSEQ_INTR_ENB; |
| 1230 | ahb_seq |= TEGRA_APBDMA_AHBSEQ_WRAP_NONE << |
| 1231 | TEGRA_APBDMA_AHBSEQ_WRAP_SHIFT; |
| 1232 | ahb_seq |= TEGRA_APBDMA_AHBSEQ_BUS_WIDTH_32; |
| 1233 | |
Dmitry Osipenko | f6160f3 | 2017-11-16 20:11:06 +0300 | [diff] [blame] | 1234 | if (tdc->slave_id != TEGRA_APBDMA_SLAVE_ID_INVALID) { |
| 1235 | csr |= TEGRA_APBDMA_CSR_FLOW; |
| 1236 | csr |= tdc->slave_id << TEGRA_APBDMA_CSR_REQ_SEL_SHIFT; |
| 1237 | } |
| 1238 | |
Dmitry Osipenko | dc16106 | 2019-05-30 00:43:55 +0300 | [diff] [blame] | 1239 | if (flags & DMA_PREP_INTERRUPT) { |
Laxman Dewangan | b9bb37f | 2013-01-09 15:26:22 +0530 | [diff] [blame] | 1240 | csr |= TEGRA_APBDMA_CSR_IE_EOC; |
Dmitry Osipenko | dc16106 | 2019-05-30 00:43:55 +0300 | [diff] [blame] | 1241 | } else { |
| 1242 | WARN_ON_ONCE(1); |
| 1243 | return NULL; |
| 1244 | } |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1245 | |
| 1246 | apb_seq |= TEGRA_APBDMA_APBSEQ_WRAP_WORD_1; |
| 1247 | |
| 1248 | dma_desc = tegra_dma_desc_get(tdc); |
| 1249 | if (!dma_desc) { |
| 1250 | dev_err(tdc2dev(tdc), "not enough descriptors available\n"); |
| 1251 | return NULL; |
| 1252 | } |
| 1253 | |
| 1254 | INIT_LIST_HEAD(&dma_desc->tx_list); |
| 1255 | INIT_LIST_HEAD(&dma_desc->cb_node); |
| 1256 | dma_desc->cb_count = 0; |
| 1257 | |
| 1258 | dma_desc->bytes_transferred = 0; |
| 1259 | dma_desc->bytes_requested = buf_len; |
| 1260 | remain_len = buf_len; |
| 1261 | |
| 1262 | /* Split transfer equal to period size */ |
| 1263 | while (remain_len) { |
| 1264 | sg_req = tegra_dma_sg_req_get(tdc); |
| 1265 | if (!sg_req) { |
Ben Dooks | 547b311 | 2018-11-21 16:13:21 +0000 | [diff] [blame] | 1266 | dev_err(tdc2dev(tdc), "DMA sg-req not available\n"); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1267 | tegra_dma_desc_put(tdc, dma_desc); |
| 1268 | return NULL; |
| 1269 | } |
| 1270 | |
| 1271 | ahb_seq |= get_burst_size(tdc, burst_size, slave_bw, len); |
| 1272 | sg_req->ch_regs.apb_ptr = apb_ptr; |
| 1273 | sg_req->ch_regs.ahb_ptr = mem; |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1274 | sg_req->ch_regs.csr = csr; |
| 1275 | tegra_dma_prep_wcount(tdc, &sg_req->ch_regs, len); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1276 | sg_req->ch_regs.apb_seq = apb_seq; |
| 1277 | sg_req->ch_regs.ahb_seq = ahb_seq; |
| 1278 | sg_req->configured = false; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1279 | sg_req->last_sg = false; |
| 1280 | sg_req->dma_desc = dma_desc; |
| 1281 | sg_req->req_len = len; |
| 1282 | |
| 1283 | list_add_tail(&sg_req->node, &dma_desc->tx_list); |
| 1284 | remain_len -= len; |
| 1285 | mem += len; |
| 1286 | } |
| 1287 | sg_req->last_sg = true; |
Laxman Dewangan | b9bb37f | 2013-01-09 15:26:22 +0530 | [diff] [blame] | 1288 | if (flags & DMA_CTRL_ACK) |
| 1289 | dma_desc->txd.flags = DMA_CTRL_ACK; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1290 | |
| 1291 | /* |
| 1292 | * Make sure that mode should not be conflicting with currently |
| 1293 | * configured mode. |
| 1294 | */ |
| 1295 | if (!tdc->isr_handler) { |
| 1296 | tdc->isr_handler = handle_cont_sngl_cycle_dma_done; |
| 1297 | tdc->cyclic = true; |
| 1298 | } else { |
| 1299 | if (!tdc->cyclic) { |
| 1300 | dev_err(tdc2dev(tdc), "DMA configuration conflict\n"); |
| 1301 | tegra_dma_desc_put(tdc, dma_desc); |
| 1302 | return NULL; |
| 1303 | } |
| 1304 | } |
| 1305 | |
| 1306 | return &dma_desc->txd; |
| 1307 | } |
| 1308 | |
| 1309 | static int tegra_dma_alloc_chan_resources(struct dma_chan *dc) |
| 1310 | { |
| 1311 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
| 1312 | |
| 1313 | dma_cookie_init(&tdc->dma_chan); |
Jon Hunter | edd3bdb | 2015-11-13 16:39:38 +0000 | [diff] [blame] | 1314 | |
| 1315 | return 0; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1316 | } |
| 1317 | |
| 1318 | static void tegra_dma_free_chan_resources(struct dma_chan *dc) |
| 1319 | { |
| 1320 | struct tegra_dma_channel *tdc = to_tegra_dma_chan(dc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1321 | struct tegra_dma_desc *dma_desc; |
| 1322 | struct tegra_dma_sg_req *sg_req; |
| 1323 | struct list_head dma_desc_list; |
| 1324 | struct list_head sg_req_list; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1325 | |
| 1326 | INIT_LIST_HEAD(&dma_desc_list); |
| 1327 | INIT_LIST_HEAD(&sg_req_list); |
| 1328 | |
| 1329 | dev_dbg(tdc2dev(tdc), "Freeing channel %d\n", tdc->id); |
| 1330 | |
Dmitry Osipenko | 8e84172 | 2020-02-09 19:33:41 +0300 | [diff] [blame] | 1331 | tegra_dma_terminate_all(dc); |
Dmitry Osipenko | 41ffc42 | 2020-02-09 19:33:42 +0300 | [diff] [blame] | 1332 | tasklet_kill(&tdc->tasklet); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1333 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1334 | list_splice_init(&tdc->pending_sg_req, &sg_req_list); |
| 1335 | list_splice_init(&tdc->free_sg_req, &sg_req_list); |
| 1336 | list_splice_init(&tdc->free_dma_desc, &dma_desc_list); |
| 1337 | INIT_LIST_HEAD(&tdc->cb_desc); |
| 1338 | tdc->config_init = false; |
Dmitry Osipenko | 7bdc1e2 | 2013-05-11 20:30:53 +0400 | [diff] [blame] | 1339 | tdc->isr_handler = NULL; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1340 | |
| 1341 | while (!list_empty(&dma_desc_list)) { |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1342 | dma_desc = list_first_entry(&dma_desc_list, typeof(*dma_desc), |
| 1343 | node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1344 | list_del(&dma_desc->node); |
| 1345 | kfree(dma_desc); |
| 1346 | } |
| 1347 | |
| 1348 | while (!list_empty(&sg_req_list)) { |
| 1349 | sg_req = list_first_entry(&sg_req_list, typeof(*sg_req), node); |
| 1350 | list_del(&sg_req->node); |
| 1351 | kfree(sg_req); |
| 1352 | } |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 1353 | |
Shardar Shariff Md | 00ef449 | 2016-04-23 15:06:00 +0530 | [diff] [blame] | 1354 | tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID; |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | static struct dma_chan *tegra_dma_of_xlate(struct of_phandle_args *dma_spec, |
| 1358 | struct of_dma *ofdma) |
| 1359 | { |
| 1360 | struct tegra_dma *tdma = ofdma->of_dma_data; |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 1361 | struct tegra_dma_channel *tdc; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1362 | struct dma_chan *chan; |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 1363 | |
Shardar Shariff Md | 00ef449 | 2016-04-23 15:06:00 +0530 | [diff] [blame] | 1364 | if (dma_spec->args[0] > TEGRA_APBDMA_CSR_REQ_SEL_MASK) { |
| 1365 | dev_err(tdma->dev, "Invalid slave id: %d\n", dma_spec->args[0]); |
| 1366 | return NULL; |
| 1367 | } |
| 1368 | |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 1369 | chan = dma_get_any_slave_channel(&tdma->dma_dev); |
| 1370 | if (!chan) |
| 1371 | return NULL; |
| 1372 | |
| 1373 | tdc = to_tegra_dma_chan(chan); |
| 1374 | tdc->slave_id = dma_spec->args[0]; |
| 1375 | |
| 1376 | return chan; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1377 | } |
| 1378 | |
| 1379 | /* Tegra20 specific DMA controller information */ |
Laxman Dewangan | 75f2163 | 2012-08-29 10:31:18 +0200 | [diff] [blame] | 1380 | static const struct tegra_dma_chip_data tegra20_dma_chip_data = { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1381 | .nr_channels = 16, |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1382 | .channel_reg_size = 0x20, |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1383 | .max_dma_count = 1024UL * 64, |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 1384 | .support_channel_pause = false, |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1385 | .support_separate_wcount_reg = false, |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1386 | }; |
| 1387 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1388 | /* Tegra30 specific DMA controller information */ |
Laxman Dewangan | 75f2163 | 2012-08-29 10:31:18 +0200 | [diff] [blame] | 1389 | static const struct tegra_dma_chip_data tegra30_dma_chip_data = { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1390 | .nr_channels = 32, |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1391 | .channel_reg_size = 0x20, |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1392 | .max_dma_count = 1024UL * 64, |
Laxman Dewangan | 1b14090 | 2013-01-06 21:52:02 +0530 | [diff] [blame] | 1393 | .support_channel_pause = false, |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1394 | .support_separate_wcount_reg = false, |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1395 | }; |
| 1396 | |
Laxman Dewangan | 5ea7caf | 2013-01-06 21:52:03 +0530 | [diff] [blame] | 1397 | /* Tegra114 specific DMA controller information */ |
| 1398 | static const struct tegra_dma_chip_data tegra114_dma_chip_data = { |
| 1399 | .nr_channels = 32, |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1400 | .channel_reg_size = 0x20, |
Laxman Dewangan | 5ea7caf | 2013-01-06 21:52:03 +0530 | [diff] [blame] | 1401 | .max_dma_count = 1024UL * 64, |
| 1402 | .support_channel_pause = true, |
Laxman Dewangan | 911dacc | 2014-01-06 11:16:45 -0700 | [diff] [blame] | 1403 | .support_separate_wcount_reg = false, |
| 1404 | }; |
| 1405 | |
| 1406 | /* Tegra148 specific DMA controller information */ |
| 1407 | static const struct tegra_dma_chip_data tegra148_dma_chip_data = { |
| 1408 | .nr_channels = 32, |
| 1409 | .channel_reg_size = 0x40, |
| 1410 | .max_dma_count = 1024UL * 64, |
| 1411 | .support_channel_pause = true, |
| 1412 | .support_separate_wcount_reg = true, |
Laxman Dewangan | 5ea7caf | 2013-01-06 21:52:03 +0530 | [diff] [blame] | 1413 | }; |
| 1414 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1415 | static int tegra_dma_init_hw(struct tegra_dma *tdma) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1416 | { |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1417 | int err; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1418 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1419 | err = reset_control_assert(tdma->rst); |
| 1420 | if (err) { |
| 1421 | dev_err(tdma->dev, "failed to assert reset: %d\n", err); |
| 1422 | return err; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1423 | } |
| 1424 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1425 | err = clk_enable(tdma->dma_clk); |
| 1426 | if (err) { |
| 1427 | dev_err(tdma->dev, "failed to enable clk: %d\n", err); |
| 1428 | return err; |
| 1429 | } |
| 1430 | |
| 1431 | /* reset DMA controller */ |
| 1432 | udelay(2); |
| 1433 | reset_control_deassert(tdma->rst); |
| 1434 | |
| 1435 | /* enable global DMA registers */ |
| 1436 | tdma_write(tdma, TEGRA_APBDMA_GENERAL, TEGRA_APBDMA_GENERAL_ENABLE); |
| 1437 | tdma_write(tdma, TEGRA_APBDMA_CONTROL, 0); |
| 1438 | tdma_write(tdma, TEGRA_APBDMA_IRQ_MASK_SET, 0xFFFFFFFF); |
| 1439 | |
| 1440 | clk_disable(tdma->dma_clk); |
| 1441 | |
| 1442 | return 0; |
| 1443 | } |
| 1444 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1445 | static int tegra_dma_probe(struct platform_device *pdev) |
| 1446 | { |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1447 | const struct tegra_dma_chip_data *cdata; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1448 | struct tegra_dma *tdma; |
| 1449 | unsigned int i; |
| 1450 | size_t size; |
| 1451 | int ret; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1452 | |
| 1453 | cdata = of_device_get_match_data(&pdev->dev); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1454 | size = struct_size(tdma, channels, cdata->nr_channels); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1455 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1456 | tdma = devm_kzalloc(&pdev->dev, size, GFP_KERNEL); |
Peter Griffin | aef94fe | 2016-06-07 18:38:41 +0100 | [diff] [blame] | 1457 | if (!tdma) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1458 | return -ENOMEM; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1459 | |
| 1460 | tdma->dev = &pdev->dev; |
| 1461 | tdma->chip_data = cdata; |
| 1462 | platform_set_drvdata(pdev, tdma); |
| 1463 | |
Dmitry Osipenko | c55c745e | 2020-02-09 19:33:43 +0300 | [diff] [blame] | 1464 | tdma->base_addr = devm_platform_ioremap_resource(pdev, 0); |
Thierry Reding | 7331205 | 2013-01-21 11:09:00 +0100 | [diff] [blame] | 1465 | if (IS_ERR(tdma->base_addr)) |
| 1466 | return PTR_ERR(tdma->base_addr); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1467 | |
| 1468 | tdma->dma_clk = devm_clk_get(&pdev->dev, NULL); |
| 1469 | if (IS_ERR(tdma->dma_clk)) { |
| 1470 | dev_err(&pdev->dev, "Error: Missing controller clock\n"); |
| 1471 | return PTR_ERR(tdma->dma_clk); |
| 1472 | } |
| 1473 | |
Stephen Warren | 9aa433d | 2013-11-06 16:35:34 -0700 | [diff] [blame] | 1474 | tdma->rst = devm_reset_control_get(&pdev->dev, "dma"); |
| 1475 | if (IS_ERR(tdma->rst)) { |
| 1476 | dev_err(&pdev->dev, "Error: Missing reset\n"); |
| 1477 | return PTR_ERR(tdma->rst); |
| 1478 | } |
| 1479 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1480 | spin_lock_init(&tdma->global_lock); |
| 1481 | |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 1482 | ret = clk_prepare(tdma->dma_clk); |
| 1483 | if (ret) |
Jon Hunter | edd3bdb | 2015-11-13 16:39:38 +0000 | [diff] [blame] | 1484 | return ret; |
Laxman Dewangan | ffc4930 | 2012-07-20 13:31:08 +0530 | [diff] [blame] | 1485 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1486 | ret = tegra_dma_init_hw(tdma); |
| 1487 | if (ret) |
| 1488 | goto err_clk_unprepare; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1489 | |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 1490 | pm_runtime_irq_safe(&pdev->dev); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1491 | pm_runtime_enable(&pdev->dev); |
Laxman Dewangan | ffc4930 | 2012-07-20 13:31:08 +0530 | [diff] [blame] | 1492 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1493 | INIT_LIST_HEAD(&tdma->dma_dev.channels); |
| 1494 | for (i = 0; i < cdata->nr_channels; i++) { |
| 1495 | struct tegra_dma_channel *tdc = &tdma->channels[i]; |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1496 | int irq; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1497 | |
Jon Hunter | 13a3328 | 2015-08-06 14:32:31 +0100 | [diff] [blame] | 1498 | tdc->chan_addr = tdma->base_addr + |
| 1499 | TEGRA_APBDMA_CHANNEL_BASE_ADD_OFFSET + |
| 1500 | (i * cdata->channel_reg_size); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1501 | |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1502 | irq = platform_get_irq(pdev, i); |
| 1503 | if (irq < 0) { |
| 1504 | ret = irq; |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1505 | goto err_pm_disable; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1506 | } |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1507 | |
Laxman Dewangan | d0fc905 | 2012-10-03 22:48:07 +0530 | [diff] [blame] | 1508 | snprintf(tdc->name, sizeof(tdc->name), "apbdma.%d", i); |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1509 | ret = devm_request_irq(&pdev->dev, irq, tegra_dma_isr, 0, |
| 1510 | tdc->name, tdc); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1511 | if (ret) { |
| 1512 | dev_err(&pdev->dev, |
| 1513 | "request_irq failed with err %d channel %d\n", |
Dmitry Osipenko | ac7ae75 | 2013-05-11 20:30:52 +0400 | [diff] [blame] | 1514 | ret, i); |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1515 | goto err_pm_disable; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1516 | } |
| 1517 | |
| 1518 | tdc->dma_chan.device = &tdma->dma_dev; |
| 1519 | dma_cookie_init(&tdc->dma_chan); |
| 1520 | list_add_tail(&tdc->dma_chan.device_node, |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1521 | &tdma->dma_dev.channels); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1522 | tdc->tdma = tdma; |
| 1523 | tdc->id = i; |
Shardar Shariff Md | 00ef449 | 2016-04-23 15:06:00 +0530 | [diff] [blame] | 1524 | tdc->slave_id = TEGRA_APBDMA_SLAVE_ID_INVALID; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1525 | |
Allen Pais | 86fc54f | 2020-08-31 16:05:34 +0530 | [diff] [blame] | 1526 | tasklet_setup(&tdc->tasklet, tegra_dma_tasklet); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1527 | spin_lock_init(&tdc->lock); |
Dmitry Osipenko | 6697255 | 2020-03-20 00:23:21 +0300 | [diff] [blame] | 1528 | init_waitqueue_head(&tdc->wq); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1529 | |
| 1530 | INIT_LIST_HEAD(&tdc->pending_sg_req); |
| 1531 | INIT_LIST_HEAD(&tdc->free_sg_req); |
| 1532 | INIT_LIST_HEAD(&tdc->free_dma_desc); |
| 1533 | INIT_LIST_HEAD(&tdc->cb_desc); |
| 1534 | } |
| 1535 | |
| 1536 | dma_cap_set(DMA_SLAVE, tdma->dma_dev.cap_mask); |
| 1537 | dma_cap_set(DMA_PRIVATE, tdma->dma_dev.cap_mask); |
Laxman Dewangan | 46fb3f8 | 2012-06-22 17:12:43 +0530 | [diff] [blame] | 1538 | dma_cap_set(DMA_CYCLIC, tdma->dma_dev.cap_mask); |
| 1539 | |
Jon Hunter | 23a1ec3 | 2015-08-06 14:32:33 +0100 | [diff] [blame] | 1540 | tdma->global_pause_count = 0; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1541 | tdma->dma_dev.dev = &pdev->dev; |
| 1542 | tdma->dma_dev.device_alloc_chan_resources = |
| 1543 | tegra_dma_alloc_chan_resources; |
| 1544 | tdma->dma_dev.device_free_chan_resources = |
| 1545 | tegra_dma_free_chan_resources; |
| 1546 | tdma->dma_dev.device_prep_slave_sg = tegra_dma_prep_slave_sg; |
| 1547 | tdma->dma_dev.device_prep_dma_cyclic = tegra_dma_prep_dma_cyclic; |
Paul Walmsley | 891653a | 2015-01-06 06:44:56 +0000 | [diff] [blame] | 1548 | tdma->dma_dev.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | |
| 1549 | BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | |
| 1550 | BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) | |
| 1551 | BIT(DMA_SLAVE_BUSWIDTH_8_BYTES); |
| 1552 | tdma->dma_dev.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | |
| 1553 | BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | |
| 1554 | BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) | |
| 1555 | BIT(DMA_SLAVE_BUSWIDTH_8_BYTES); |
| 1556 | tdma->dma_dev.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV); |
Dmitry Osipenko | 156a599 | 2019-07-05 18:05:19 +0300 | [diff] [blame] | 1557 | tdma->dma_dev.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST; |
Maxime Ripard | 662f1ac | 2014-11-17 14:42:37 +0100 | [diff] [blame] | 1558 | tdma->dma_dev.device_config = tegra_dma_slave_config; |
| 1559 | tdma->dma_dev.device_terminate_all = tegra_dma_terminate_all; |
Dmitry Osipenko | dda5e35 | 2020-02-09 19:33:40 +0300 | [diff] [blame] | 1560 | tdma->dma_dev.device_synchronize = tegra_dma_synchronize; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1561 | tdma->dma_dev.device_tx_status = tegra_dma_tx_status; |
| 1562 | tdma->dma_dev.device_issue_pending = tegra_dma_issue_pending; |
| 1563 | |
| 1564 | ret = dma_async_device_register(&tdma->dma_dev); |
| 1565 | if (ret < 0) { |
| 1566 | dev_err(&pdev->dev, |
| 1567 | "Tegra20 APB DMA driver registration failed %d\n", ret); |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1568 | goto err_pm_disable; |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1569 | } |
| 1570 | |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 1571 | ret = of_dma_controller_register(pdev->dev.of_node, |
| 1572 | tegra_dma_of_xlate, tdma); |
| 1573 | if (ret < 0) { |
| 1574 | dev_err(&pdev->dev, |
| 1575 | "Tegra20 APB DMA OF registration failed %d\n", ret); |
| 1576 | goto err_unregister_dma_dev; |
| 1577 | } |
| 1578 | |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1579 | dev_info(&pdev->dev, "Tegra20 APB DMA driver registered %u channels\n", |
| 1580 | cdata->nr_channels); |
| 1581 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1582 | return 0; |
| 1583 | |
Stephen Warren | 996556c | 2013-11-11 13:09:35 -0700 | [diff] [blame] | 1584 | err_unregister_dma_dev: |
| 1585 | dma_async_device_unregister(&tdma->dma_dev); |
Jon Hunter | 05e866b | 2015-11-13 16:39:43 +0000 | [diff] [blame] | 1586 | |
Dmitry Osipenko | 2cd3d13 | 2020-02-09 19:33:44 +0300 | [diff] [blame] | 1587 | err_pm_disable: |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1588 | pm_runtime_disable(&pdev->dev); |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1589 | |
| 1590 | err_clk_unprepare: |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 1591 | clk_unprepare(tdma->dma_clk); |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1592 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1593 | return ret; |
| 1594 | } |
| 1595 | |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 1596 | static int tegra_dma_remove(struct platform_device *pdev) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1597 | { |
| 1598 | struct tegra_dma *tdma = platform_get_drvdata(pdev); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1599 | |
Dmitry Osipenko | 16e2b3e | 2020-02-09 19:33:51 +0300 | [diff] [blame] | 1600 | of_dma_controller_free(pdev->dev.of_node); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1601 | dma_async_device_unregister(&tdma->dma_dev); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1602 | pm_runtime_disable(&pdev->dev); |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 1603 | clk_unprepare(tdma->dma_clk); |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1604 | |
| 1605 | return 0; |
| 1606 | } |
| 1607 | |
YueHaibing | a48d44c | 2020-03-20 15:13:37 +0800 | [diff] [blame] | 1608 | static int __maybe_unused tegra_dma_runtime_suspend(struct device *dev) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1609 | { |
Jon Hunter | 286a644 | 2015-11-13 16:39:39 +0000 | [diff] [blame] | 1610 | struct tegra_dma *tdma = dev_get_drvdata(dev); |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1611 | |
Dmitry Osipenko | 84a3f37 | 2020-02-09 19:33:49 +0300 | [diff] [blame] | 1612 | clk_disable(tdma->dma_clk); |
Jon Hunter | 65a5c3d | 2017-06-06 13:49:29 +0100 | [diff] [blame] | 1613 | |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1614 | return 0; |
| 1615 | } |
| 1616 | |
YueHaibing | a48d44c | 2020-03-20 15:13:37 +0800 | [diff] [blame] | 1617 | static int __maybe_unused tegra_dma_runtime_resume(struct device *dev) |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1618 | { |
| 1619 | struct tegra_dma *tdma = dev_get_drvdata(dev); |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1620 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1621 | return clk_enable(tdma->dma_clk); |
| 1622 | } |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1623 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1624 | static int __maybe_unused tegra_dma_dev_suspend(struct device *dev) |
| 1625 | { |
| 1626 | struct tegra_dma *tdma = dev_get_drvdata(dev); |
| 1627 | unsigned long flags; |
Dmitry Osipenko | 3964293 | 2020-02-09 19:33:45 +0300 | [diff] [blame] | 1628 | unsigned int i; |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1629 | bool busy; |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1630 | |
| 1631 | for (i = 0; i < tdma->chip_data->nr_channels; i++) { |
| 1632 | struct tegra_dma_channel *tdc = &tdma->channels[i]; |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1633 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1634 | tasklet_kill(&tdc->tasklet); |
Jon Hunter | 4aad5be | 2015-11-13 16:39:41 +0000 | [diff] [blame] | 1635 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1636 | spin_lock_irqsave(&tdc->lock, flags); |
| 1637 | busy = tdc->busy; |
| 1638 | spin_unlock_irqrestore(&tdc->lock, flags); |
| 1639 | |
| 1640 | if (busy) { |
| 1641 | dev_err(tdma->dev, "channel %u busy\n", i); |
| 1642 | return -EBUSY; |
| 1643 | } |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1644 | } |
| 1645 | |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1646 | return pm_runtime_force_suspend(dev); |
| 1647 | } |
| 1648 | |
| 1649 | static int __maybe_unused tegra_dma_dev_resume(struct device *dev) |
| 1650 | { |
| 1651 | struct tegra_dma *tdma = dev_get_drvdata(dev); |
| 1652 | int err; |
| 1653 | |
| 1654 | err = tegra_dma_init_hw(tdma); |
| 1655 | if (err) |
| 1656 | return err; |
| 1657 | |
| 1658 | return pm_runtime_force_resume(dev); |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1659 | } |
Laxman Dewangan | 3065c19 | 2013-04-24 15:24:27 +0530 | [diff] [blame] | 1660 | |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 1661 | static const struct dev_pm_ops tegra_dma_dev_pm_ops = { |
Jon Hunter | edd3bdb | 2015-11-13 16:39:38 +0000 | [diff] [blame] | 1662 | SET_RUNTIME_PM_OPS(tegra_dma_runtime_suspend, tegra_dma_runtime_resume, |
| 1663 | NULL) |
Dmitry Osipenko | dcb394b | 2020-02-09 19:33:50 +0300 | [diff] [blame] | 1664 | SET_SYSTEM_SLEEP_PM_OPS(tegra_dma_dev_suspend, tegra_dma_dev_resume) |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1665 | }; |
| 1666 | |
Laxman Dewangan | 242637b | 2016-03-04 15:55:11 +0530 | [diff] [blame] | 1667 | static const struct of_device_id tegra_dma_of_match[] = { |
| 1668 | { |
| 1669 | .compatible = "nvidia,tegra148-apbdma", |
| 1670 | .data = &tegra148_dma_chip_data, |
| 1671 | }, { |
| 1672 | .compatible = "nvidia,tegra114-apbdma", |
| 1673 | .data = &tegra114_dma_chip_data, |
| 1674 | }, { |
| 1675 | .compatible = "nvidia,tegra30-apbdma", |
| 1676 | .data = &tegra30_dma_chip_data, |
| 1677 | }, { |
| 1678 | .compatible = "nvidia,tegra20-apbdma", |
| 1679 | .data = &tegra20_dma_chip_data, |
| 1680 | }, { |
| 1681 | }, |
| 1682 | }; |
| 1683 | MODULE_DEVICE_TABLE(of, tegra_dma_of_match); |
| 1684 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1685 | static struct platform_driver tegra_dmac_driver = { |
| 1686 | .driver = { |
Laxman Dewangan | cd9092c | 2012-07-02 13:52:08 +0530 | [diff] [blame] | 1687 | .name = "tegra-apbdma", |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1688 | .pm = &tegra_dma_dev_pm_ops, |
Stephen Warren | dc7badb | 2013-03-11 16:30:26 -0600 | [diff] [blame] | 1689 | .of_match_table = tegra_dma_of_match, |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1690 | }, |
| 1691 | .probe = tegra_dma_probe, |
Bill Pemberton | a7d6e3e | 2012-11-19 13:20:04 -0500 | [diff] [blame] | 1692 | .remove = tegra_dma_remove, |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1693 | }; |
| 1694 | |
| 1695 | module_platform_driver(tegra_dmac_driver); |
| 1696 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 1697 | MODULE_DESCRIPTION("NVIDIA Tegra APB DMA Controller driver"); |
| 1698 | MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>"); |
| 1699 | MODULE_LICENSE("GPL v2"); |