Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006 ARM Ltd. |
| 3 | * Copyright (c) 2010 ST-Ericsson SA |
| 4 | * |
| 5 | * Author: Peter Pearse <peter.pearse@arm.com> |
| 6 | * Author: Linus Walleij <linus.walleij@stericsson.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public License as published by the Free |
| 10 | * Software Foundation; either version 2 of the License, or (at your option) |
| 11 | * any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 14 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 15 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 16 | * more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * this program; if not, write to the Free Software Foundation, Inc., 59 |
| 20 | * Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 21 | * |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 22 | * The full GNU General Public License is in this distribution in the file |
| 23 | * called COPYING. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 24 | * |
| 25 | * Documentation: ARM DDI 0196G == PL080 |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 26 | * Documentation: ARM DDI 0218E == PL081 |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 27 | * |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 28 | * PL080 & PL081 both have 16 sets of DMA signals that can be routed to any |
| 29 | * channel. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 30 | * |
| 31 | * The PL080 has 8 channels available for simultaneous use, and the PL081 |
| 32 | * has only two channels. So on these DMA controllers the number of channels |
| 33 | * and the number of incoming DMA signals are two totally different things. |
| 34 | * It is usually not possible to theoretically handle all physical signals, |
| 35 | * so a multiplexing scheme with possible denial of use is necessary. |
| 36 | * |
| 37 | * The PL080 has a dual bus master, PL081 has a single master. |
| 38 | * |
| 39 | * Memory to peripheral transfer may be visualized as |
| 40 | * Get data from memory to DMAC |
| 41 | * Until no data left |
| 42 | * On burst request from peripheral |
| 43 | * Destination burst from DMAC to peripheral |
| 44 | * Clear burst request |
| 45 | * Raise terminal count interrupt |
| 46 | * |
| 47 | * For peripherals with a FIFO: |
| 48 | * Source burst size == half the depth of the peripheral FIFO |
| 49 | * Destination burst size == the depth of the peripheral FIFO |
| 50 | * |
| 51 | * (Bursts are irrelevant for mem to mem transfers - there are no burst |
| 52 | * signals, the DMA controller will simply facilitate its AHB master.) |
| 53 | * |
| 54 | * ASSUMES default (little) endianness for DMA transfers |
| 55 | * |
Russell King - ARM Linux | 9dc2c20 | 2011-01-03 22:33:06 +0000 | [diff] [blame] | 56 | * The PL08x has two flow control settings: |
| 57 | * - DMAC flow control: the transfer size defines the number of transfers |
| 58 | * which occur for the current LLI entry, and the DMAC raises TC at the |
| 59 | * end of every LLI entry. Observed behaviour shows the DMAC listening |
| 60 | * to both the BREQ and SREQ signals (contrary to documented), |
| 61 | * transferring data if either is active. The LBREQ and LSREQ signals |
| 62 | * are ignored. |
| 63 | * |
| 64 | * - Peripheral flow control: the transfer size is ignored (and should be |
| 65 | * zero). The data is transferred from the current LLI entry, until |
| 66 | * after the final transfer signalled by LBREQ or LSREQ. The DMAC |
| 67 | * will then move to the next LLI entry. |
| 68 | * |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 69 | * Global TODO: |
| 70 | * - Break out common code from arch/arm/mach-s3c64xx and share |
| 71 | */ |
Russell King - ARM Linux | 730404a | 2011-01-03 22:34:07 +0000 | [diff] [blame] | 72 | #include <linux/amba/bus.h> |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 73 | #include <linux/amba/pl08x.h> |
| 74 | #include <linux/debugfs.h> |
Viresh Kumar | 0c38d70 | 2011-08-05 15:32:28 +0530 | [diff] [blame] | 75 | #include <linux/delay.h> |
| 76 | #include <linux/device.h> |
| 77 | #include <linux/dmaengine.h> |
| 78 | #include <linux/dmapool.h> |
Vinod Koul | 8516f52 | 2011-09-02 16:43:44 +0530 | [diff] [blame] | 79 | #include <linux/dma-mapping.h> |
Viresh Kumar | 0c38d70 | 2011-08-05 15:32:28 +0530 | [diff] [blame] | 80 | #include <linux/init.h> |
| 81 | #include <linux/interrupt.h> |
| 82 | #include <linux/module.h> |
Viresh Kumar | b7b6018 | 2011-08-05 15:32:33 +0530 | [diff] [blame] | 83 | #include <linux/pm_runtime.h> |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 84 | #include <linux/seq_file.h> |
Viresh Kumar | 0c38d70 | 2011-08-05 15:32:28 +0530 | [diff] [blame] | 85 | #include <linux/slab.h> |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 86 | #include <asm/hardware/pl080.h> |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 87 | |
Russell King - ARM Linux | d2ebfb3 | 2012-03-06 22:34:26 +0000 | [diff] [blame] | 88 | #include "dmaengine.h" |
| 89 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 90 | #define DRIVER_NAME "pl08xdmac" |
| 91 | |
Russell King - ARM Linux | 7703eac | 2011-08-31 09:34:35 +0100 | [diff] [blame] | 92 | static struct amba_driver pl08x_amba_driver; |
Russell King | b23f204 | 2012-05-16 10:48:44 +0100 | [diff] [blame] | 93 | struct pl08x_driver_data; |
Russell King - ARM Linux | 7703eac | 2011-08-31 09:34:35 +0100 | [diff] [blame] | 94 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 95 | /** |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 96 | * struct vendor_data - vendor-specific config parameters for PL08x derivatives |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 97 | * @channels: the number of channels available in this variant |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 98 | * @dualmaster: whether this version supports dual AHB masters or not. |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 99 | * @nomadik: whether the channels have Nomadik security extension bits |
| 100 | * that need to be checked for permission before use and some registers are |
| 101 | * missing |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 102 | */ |
| 103 | struct vendor_data { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 104 | u8 channels; |
| 105 | bool dualmaster; |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 106 | bool nomadik; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | /* |
| 110 | * PL08X private data structures |
Russell King - ARM Linux | e8b5e11 | 2011-01-03 22:30:24 +0000 | [diff] [blame] | 111 | * An LLI struct - see PL08x TRM. Note that next uses bit[0] as a bus bit, |
Russell King - ARM Linux | e25761d | 2011-01-03 22:37:52 +0000 | [diff] [blame] | 112 | * start & end do not - their bus bit info is in cctl. Also note that these |
| 113 | * are fixed 32-bit quantities. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 114 | */ |
Russell King - ARM Linux | 7cb72ad | 2011-01-03 22:35:28 +0000 | [diff] [blame] | 115 | struct pl08x_lli { |
Russell King - ARM Linux | e25761d | 2011-01-03 22:37:52 +0000 | [diff] [blame] | 116 | u32 src; |
| 117 | u32 dst; |
Russell King - ARM Linux | bfddfb4 | 2011-01-03 22:38:12 +0000 | [diff] [blame] | 118 | u32 lli; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 119 | u32 cctl; |
| 120 | }; |
| 121 | |
| 122 | /** |
Russell King | b23f204 | 2012-05-16 10:48:44 +0100 | [diff] [blame] | 123 | * struct pl08x_bus_data - information of source or destination |
| 124 | * busses for a transfer |
| 125 | * @addr: current address |
| 126 | * @maxwidth: the maximum width of a transfer on this bus |
| 127 | * @buswidth: the width of this bus in bytes: 1, 2 or 4 |
| 128 | */ |
| 129 | struct pl08x_bus_data { |
| 130 | dma_addr_t addr; |
| 131 | u8 maxwidth; |
| 132 | u8 buswidth; |
| 133 | }; |
| 134 | |
| 135 | /** |
| 136 | * struct pl08x_phy_chan - holder for the physical channels |
| 137 | * @id: physical index to this channel |
| 138 | * @lock: a lock to use when altering an instance of this struct |
| 139 | * @signal: the physical signal (aka channel) serving this physical channel |
| 140 | * right now |
| 141 | * @serving: the virtual channel currently being served by this physical |
| 142 | * channel |
| 143 | */ |
| 144 | struct pl08x_phy_chan { |
| 145 | unsigned int id; |
| 146 | void __iomem *base; |
| 147 | spinlock_t lock; |
| 148 | int signal; |
| 149 | struct pl08x_dma_chan *serving; |
| 150 | }; |
| 151 | |
| 152 | /** |
| 153 | * struct pl08x_sg - structure containing data per sg |
| 154 | * @src_addr: src address of sg |
| 155 | * @dst_addr: dst address of sg |
| 156 | * @len: transfer len in bytes |
| 157 | * @node: node for txd's dsg_list |
| 158 | */ |
| 159 | struct pl08x_sg { |
| 160 | dma_addr_t src_addr; |
| 161 | dma_addr_t dst_addr; |
| 162 | size_t len; |
| 163 | struct list_head node; |
| 164 | }; |
| 165 | |
| 166 | /** |
| 167 | * struct pl08x_txd - wrapper for struct dma_async_tx_descriptor |
| 168 | * @tx: async tx descriptor |
| 169 | * @node: node for txd list for channels |
| 170 | * @dsg_list: list of children sg's |
| 171 | * @direction: direction of transfer |
| 172 | * @llis_bus: DMA memory address (physical) start for the LLIs |
| 173 | * @llis_va: virtual memory address start for the LLIs |
| 174 | * @cctl: control reg values for current txd |
| 175 | * @ccfg: config reg values for current txd |
| 176 | */ |
| 177 | struct pl08x_txd { |
| 178 | struct dma_async_tx_descriptor tx; |
| 179 | struct list_head node; |
| 180 | struct list_head dsg_list; |
| 181 | enum dma_transfer_direction direction; |
| 182 | dma_addr_t llis_bus; |
| 183 | struct pl08x_lli *llis_va; |
| 184 | /* Default cctl value for LLIs */ |
| 185 | u32 cctl; |
| 186 | /* |
| 187 | * Settings to be put into the physical channel when we |
| 188 | * trigger this txd. Other registers are in llis_va[0]. |
| 189 | */ |
| 190 | u32 ccfg; |
| 191 | }; |
| 192 | |
| 193 | /** |
| 194 | * struct pl08x_dma_chan_state - holds the PL08x specific virtual channel |
| 195 | * states |
| 196 | * @PL08X_CHAN_IDLE: the channel is idle |
| 197 | * @PL08X_CHAN_RUNNING: the channel has allocated a physical transport |
| 198 | * channel and is running a transfer on it |
| 199 | * @PL08X_CHAN_PAUSED: the channel has allocated a physical transport |
| 200 | * channel, but the transfer is currently paused |
| 201 | * @PL08X_CHAN_WAITING: the channel is waiting for a physical transport |
| 202 | * channel to become available (only pertains to memcpy channels) |
| 203 | */ |
| 204 | enum pl08x_dma_chan_state { |
| 205 | PL08X_CHAN_IDLE, |
| 206 | PL08X_CHAN_RUNNING, |
| 207 | PL08X_CHAN_PAUSED, |
| 208 | PL08X_CHAN_WAITING, |
| 209 | }; |
| 210 | |
| 211 | /** |
| 212 | * struct pl08x_dma_chan - this structure wraps a DMA ENGINE channel |
| 213 | * @chan: wrappped abstract channel |
| 214 | * @phychan: the physical channel utilized by this channel, if there is one |
| 215 | * @phychan_hold: if non-zero, hold on to the physical channel even if we |
| 216 | * have no pending entries |
| 217 | * @tasklet: tasklet scheduled by the IRQ to handle actual work etc |
| 218 | * @name: name of channel |
| 219 | * @cd: channel platform data |
| 220 | * @runtime_addr: address for RX/TX according to the runtime config |
| 221 | * @runtime_direction: current direction of this channel according to |
| 222 | * runtime config |
| 223 | * @pend_list: queued transactions pending on this channel |
| 224 | * @at: active transaction on this channel |
| 225 | * @lock: a lock for this channel data |
| 226 | * @host: a pointer to the host (internal use) |
| 227 | * @state: whether the channel is idle, paused, running etc |
| 228 | * @slave: whether this channel is a device (slave) or for memcpy |
| 229 | * @device_fc: Flow Controller Settings for ccfg register. Only valid for slave |
| 230 | * channels. Fill with 'true' if peripheral should be flow controller. Direction |
| 231 | * will be selected at Runtime. |
| 232 | * @waiting: a TX descriptor on this channel which is waiting for a physical |
| 233 | * channel to become available |
| 234 | */ |
| 235 | struct pl08x_dma_chan { |
| 236 | struct dma_chan chan; |
| 237 | struct pl08x_phy_chan *phychan; |
| 238 | int phychan_hold; |
| 239 | struct tasklet_struct tasklet; |
Russell King | 550ec36 | 2012-05-28 10:18:55 +0100 | [diff] [blame] | 240 | const char *name; |
Russell King | b23f204 | 2012-05-16 10:48:44 +0100 | [diff] [blame] | 241 | const struct pl08x_channel_data *cd; |
Russell King | ed91c13 | 2012-05-16 11:02:40 +0100 | [diff] [blame^] | 242 | struct dma_slave_config cfg; |
Russell King | b23f204 | 2012-05-16 10:48:44 +0100 | [diff] [blame] | 243 | u32 src_cctl; |
| 244 | u32 dst_cctl; |
| 245 | enum dma_transfer_direction runtime_direction; |
| 246 | struct list_head pend_list; |
| 247 | struct pl08x_txd *at; |
| 248 | spinlock_t lock; |
| 249 | struct pl08x_driver_data *host; |
| 250 | enum pl08x_dma_chan_state state; |
| 251 | bool slave; |
| 252 | bool device_fc; |
| 253 | struct pl08x_txd *waiting; |
| 254 | }; |
| 255 | |
| 256 | /** |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 257 | * struct pl08x_driver_data - the local state holder for the PL08x |
| 258 | * @slave: slave engine for this instance |
| 259 | * @memcpy: memcpy engine for this instance |
| 260 | * @base: virtual memory base (remapped) for the PL08x |
| 261 | * @adev: the corresponding AMBA (PrimeCell) bus entry |
| 262 | * @vd: vendor data for this PL08x variant |
| 263 | * @pd: platform data passed in from the platform/machine |
| 264 | * @phy_chans: array of data for the physical channels |
| 265 | * @pool: a pool for the LLI descriptors |
| 266 | * @pool_ctr: counter of LLIs in the pool |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 267 | * @lli_buses: bitmask to or in to LLI pointer selecting AHB port for LLI |
| 268 | * fetches |
Russell King - ARM Linux | 30749cb | 2011-01-03 22:41:13 +0000 | [diff] [blame] | 269 | * @mem_buses: set to indicate memory transfers on AHB2. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 270 | * @lock: a spinlock for this struct |
| 271 | */ |
| 272 | struct pl08x_driver_data { |
| 273 | struct dma_device slave; |
| 274 | struct dma_device memcpy; |
| 275 | void __iomem *base; |
| 276 | struct amba_device *adev; |
Russell King - ARM Linux | f96ca9ec | 2011-01-03 22:35:08 +0000 | [diff] [blame] | 277 | const struct vendor_data *vd; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 278 | struct pl08x_platform_data *pd; |
| 279 | struct pl08x_phy_chan *phy_chans; |
| 280 | struct dma_pool *pool; |
| 281 | int pool_ctr; |
Russell King - ARM Linux | 30749cb | 2011-01-03 22:41:13 +0000 | [diff] [blame] | 282 | u8 lli_buses; |
| 283 | u8 mem_buses; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 284 | }; |
| 285 | |
| 286 | /* |
| 287 | * PL08X specific defines |
| 288 | */ |
| 289 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 290 | /* Size (bytes) of each LLI buffer allocated for one transfer */ |
| 291 | # define PL08X_LLI_TSFR_SIZE 0x2000 |
| 292 | |
Russell King - ARM Linux | e8b5e11 | 2011-01-03 22:30:24 +0000 | [diff] [blame] | 293 | /* Maximum times we call dma_pool_alloc on this pool without freeing */ |
Russell King - ARM Linux | 7cb72ad | 2011-01-03 22:35:28 +0000 | [diff] [blame] | 294 | #define MAX_NUM_TSFR_LLIS (PL08X_LLI_TSFR_SIZE/sizeof(struct pl08x_lli)) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 295 | #define PL08X_ALIGN 8 |
| 296 | |
| 297 | static inline struct pl08x_dma_chan *to_pl08x_chan(struct dma_chan *chan) |
| 298 | { |
| 299 | return container_of(chan, struct pl08x_dma_chan, chan); |
| 300 | } |
| 301 | |
Russell King - ARM Linux | 501e67e | 2011-01-03 22:44:57 +0000 | [diff] [blame] | 302 | static inline struct pl08x_txd *to_pl08x_txd(struct dma_async_tx_descriptor *tx) |
| 303 | { |
| 304 | return container_of(tx, struct pl08x_txd, tx); |
| 305 | } |
| 306 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 307 | /* |
| 308 | * Physical channel handling |
| 309 | */ |
| 310 | |
| 311 | /* Whether a certain channel is busy or not */ |
| 312 | static int pl08x_phy_channel_busy(struct pl08x_phy_chan *ch) |
| 313 | { |
| 314 | unsigned int val; |
| 315 | |
| 316 | val = readl(ch->base + PL080_CH_CONFIG); |
| 317 | return val & PL080_CONFIG_ACTIVE; |
| 318 | } |
| 319 | |
| 320 | /* |
| 321 | * Set the initial DMA register values i.e. those for the first LLI |
Russell King - ARM Linux | e8b5e11 | 2011-01-03 22:30:24 +0000 | [diff] [blame] | 322 | * The next LLI pointer and the configuration interrupt bit have |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 323 | * been set when the LLIs were constructed. Poke them into the hardware |
| 324 | * and start the transfer. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 325 | */ |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 326 | static void pl08x_start_txd(struct pl08x_dma_chan *plchan, |
| 327 | struct pl08x_txd *txd) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 328 | { |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 329 | struct pl08x_driver_data *pl08x = plchan->host; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 330 | struct pl08x_phy_chan *phychan = plchan->phychan; |
Russell King - ARM Linux | 19524d7 | 2011-01-03 22:39:13 +0000 | [diff] [blame] | 331 | struct pl08x_lli *lli = &txd->llis_va[0]; |
Russell King - ARM Linux | 09b3c32 | 2011-01-03 22:39:53 +0000 | [diff] [blame] | 332 | u32 val; |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 333 | |
| 334 | plchan->at = txd; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 335 | |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 336 | /* Wait for channel inactive */ |
| 337 | while (pl08x_phy_channel_busy(phychan)) |
Russell King - ARM Linux | 19386b32 | 2011-01-03 22:36:29 +0000 | [diff] [blame] | 338 | cpu_relax(); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 339 | |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 340 | dev_vdbg(&pl08x->adev->dev, |
| 341 | "WRITE channel %d: csrc=0x%08x, cdst=0x%08x, " |
Russell King - ARM Linux | 19524d7 | 2011-01-03 22:39:13 +0000 | [diff] [blame] | 342 | "clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n", |
| 343 | phychan->id, lli->src, lli->dst, lli->lli, lli->cctl, |
Russell King - ARM Linux | 09b3c32 | 2011-01-03 22:39:53 +0000 | [diff] [blame] | 344 | txd->ccfg); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 345 | |
Russell King - ARM Linux | 19524d7 | 2011-01-03 22:39:13 +0000 | [diff] [blame] | 346 | writel(lli->src, phychan->base + PL080_CH_SRC_ADDR); |
| 347 | writel(lli->dst, phychan->base + PL080_CH_DST_ADDR); |
| 348 | writel(lli->lli, phychan->base + PL080_CH_LLI); |
| 349 | writel(lli->cctl, phychan->base + PL080_CH_CONTROL); |
Russell King - ARM Linux | 09b3c32 | 2011-01-03 22:39:53 +0000 | [diff] [blame] | 350 | writel(txd->ccfg, phychan->base + PL080_CH_CONFIG); |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 351 | |
| 352 | /* Enable the DMA channel */ |
| 353 | /* Do not access config register until channel shows as disabled */ |
| 354 | while (readl(pl08x->base + PL080_EN_CHAN) & (1 << phychan->id)) |
| 355 | cpu_relax(); |
| 356 | |
| 357 | /* Do not access config register until channel shows as inactive */ |
| 358 | val = readl(phychan->base + PL080_CH_CONFIG); |
| 359 | while ((val & PL080_CONFIG_ACTIVE) || (val & PL080_CONFIG_ENABLE)) |
| 360 | val = readl(phychan->base + PL080_CH_CONFIG); |
| 361 | |
| 362 | writel(val | PL080_CONFIG_ENABLE, phychan->base + PL080_CH_CONFIG); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | /* |
Russell King - ARM Linux | 8179661 | 2011-01-27 12:37:44 +0000 | [diff] [blame] | 366 | * Pause the channel by setting the HALT bit. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 367 | * |
Russell King - ARM Linux | 8179661 | 2011-01-27 12:37:44 +0000 | [diff] [blame] | 368 | * For M->P transfers, pause the DMAC first and then stop the peripheral - |
| 369 | * the FIFO can only drain if the peripheral is still requesting data. |
| 370 | * (note: this can still timeout if the DMAC FIFO never drains of data.) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 371 | * |
Russell King - ARM Linux | 8179661 | 2011-01-27 12:37:44 +0000 | [diff] [blame] | 372 | * For P->M transfers, disable the peripheral first to stop it filling |
| 373 | * the DMAC FIFO, and then pause the DMAC. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 374 | */ |
| 375 | static void pl08x_pause_phy_chan(struct pl08x_phy_chan *ch) |
| 376 | { |
| 377 | u32 val; |
Russell King - ARM Linux | 8179661 | 2011-01-27 12:37:44 +0000 | [diff] [blame] | 378 | int timeout; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 379 | |
| 380 | /* Set the HALT bit and wait for the FIFO to drain */ |
| 381 | val = readl(ch->base + PL080_CH_CONFIG); |
| 382 | val |= PL080_CONFIG_HALT; |
| 383 | writel(val, ch->base + PL080_CH_CONFIG); |
| 384 | |
| 385 | /* Wait for channel inactive */ |
Russell King - ARM Linux | 8179661 | 2011-01-27 12:37:44 +0000 | [diff] [blame] | 386 | for (timeout = 1000; timeout; timeout--) { |
| 387 | if (!pl08x_phy_channel_busy(ch)) |
| 388 | break; |
| 389 | udelay(1); |
| 390 | } |
| 391 | if (pl08x_phy_channel_busy(ch)) |
| 392 | pr_err("pl08x: channel%u timeout waiting for pause\n", ch->id); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | static void pl08x_resume_phy_chan(struct pl08x_phy_chan *ch) |
| 396 | { |
| 397 | u32 val; |
| 398 | |
| 399 | /* Clear the HALT bit */ |
| 400 | val = readl(ch->base + PL080_CH_CONFIG); |
| 401 | val &= ~PL080_CONFIG_HALT; |
| 402 | writel(val, ch->base + PL080_CH_CONFIG); |
| 403 | } |
| 404 | |
Russell King - ARM Linux | fb52621 | 2011-01-27 12:32:53 +0000 | [diff] [blame] | 405 | /* |
| 406 | * pl08x_terminate_phy_chan() stops the channel, clears the FIFO and |
| 407 | * clears any pending interrupt status. This should not be used for |
| 408 | * an on-going transfer, but as a method of shutting down a channel |
| 409 | * (eg, when it's no longer used) or terminating a transfer. |
| 410 | */ |
| 411 | static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x, |
| 412 | struct pl08x_phy_chan *ch) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 413 | { |
Russell King - ARM Linux | fb52621 | 2011-01-27 12:32:53 +0000 | [diff] [blame] | 414 | u32 val = readl(ch->base + PL080_CH_CONFIG); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 415 | |
Russell King - ARM Linux | fb52621 | 2011-01-27 12:32:53 +0000 | [diff] [blame] | 416 | val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK | |
| 417 | PL080_CONFIG_TC_IRQ_MASK); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 418 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 419 | writel(val, ch->base + PL080_CH_CONFIG); |
Russell King - ARM Linux | fb52621 | 2011-01-27 12:32:53 +0000 | [diff] [blame] | 420 | |
| 421 | writel(1 << ch->id, pl08x->base + PL080_ERR_CLEAR); |
| 422 | writel(1 << ch->id, pl08x->base + PL080_TC_CLEAR); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | static inline u32 get_bytes_in_cctl(u32 cctl) |
| 426 | { |
| 427 | /* The source width defines the number of bytes */ |
| 428 | u32 bytes = cctl & PL080_CONTROL_TRANSFER_SIZE_MASK; |
| 429 | |
| 430 | switch (cctl >> PL080_CONTROL_SWIDTH_SHIFT) { |
| 431 | case PL080_WIDTH_8BIT: |
| 432 | break; |
| 433 | case PL080_WIDTH_16BIT: |
| 434 | bytes *= 2; |
| 435 | break; |
| 436 | case PL080_WIDTH_32BIT: |
| 437 | bytes *= 4; |
| 438 | break; |
| 439 | } |
| 440 | return bytes; |
| 441 | } |
| 442 | |
| 443 | /* The channel should be paused when calling this */ |
| 444 | static u32 pl08x_getbytes_chan(struct pl08x_dma_chan *plchan) |
| 445 | { |
| 446 | struct pl08x_phy_chan *ch; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 447 | struct pl08x_txd *txd; |
| 448 | unsigned long flags; |
Russell King - ARM Linux | cace658 | 2011-01-03 22:37:31 +0000 | [diff] [blame] | 449 | size_t bytes = 0; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 450 | |
| 451 | spin_lock_irqsave(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 452 | ch = plchan->phychan; |
| 453 | txd = plchan->at; |
| 454 | |
| 455 | /* |
Russell King - ARM Linux | db9f136 | 2011-01-03 22:38:32 +0000 | [diff] [blame] | 456 | * Follow the LLIs to get the number of remaining |
| 457 | * bytes in the currently active transaction. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 458 | */ |
| 459 | if (ch && txd) { |
Russell King - ARM Linux | 4c0df6a | 2011-01-03 22:36:50 +0000 | [diff] [blame] | 460 | u32 clli = readl(ch->base + PL080_CH_LLI) & ~PL080_LLI_LM_AHB2; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 461 | |
Russell King - ARM Linux | db9f136 | 2011-01-03 22:38:32 +0000 | [diff] [blame] | 462 | /* First get the remaining bytes in the active transfer */ |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 463 | bytes = get_bytes_in_cctl(readl(ch->base + PL080_CH_CONTROL)); |
| 464 | |
| 465 | if (clli) { |
Russell King - ARM Linux | db9f136 | 2011-01-03 22:38:32 +0000 | [diff] [blame] | 466 | struct pl08x_lli *llis_va = txd->llis_va; |
| 467 | dma_addr_t llis_bus = txd->llis_bus; |
| 468 | int index; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 469 | |
Russell King - ARM Linux | db9f136 | 2011-01-03 22:38:32 +0000 | [diff] [blame] | 470 | BUG_ON(clli < llis_bus || clli >= llis_bus + |
| 471 | sizeof(struct pl08x_lli) * MAX_NUM_TSFR_LLIS); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 472 | |
Russell King - ARM Linux | db9f136 | 2011-01-03 22:38:32 +0000 | [diff] [blame] | 473 | /* |
| 474 | * Locate the next LLI - as this is an array, |
| 475 | * it's simple maths to find. |
| 476 | */ |
| 477 | index = (clli - llis_bus) / sizeof(struct pl08x_lli); |
| 478 | |
| 479 | for (; index < MAX_NUM_TSFR_LLIS; index++) { |
| 480 | bytes += get_bytes_in_cctl(llis_va[index].cctl); |
| 481 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 482 | /* |
Russell King - ARM Linux | e8b5e11 | 2011-01-03 22:30:24 +0000 | [diff] [blame] | 483 | * A LLI pointer of 0 terminates the LLI list |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 484 | */ |
Russell King - ARM Linux | db9f136 | 2011-01-03 22:38:32 +0000 | [diff] [blame] | 485 | if (!llis_va[index].lli) |
| 486 | break; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 487 | } |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | /* Sum up all queued transactions */ |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 492 | if (!list_empty(&plchan->pend_list)) { |
Russell King - ARM Linux | db9f136 | 2011-01-03 22:38:32 +0000 | [diff] [blame] | 493 | struct pl08x_txd *txdi; |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 494 | list_for_each_entry(txdi, &plchan->pend_list, node) { |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 495 | struct pl08x_sg *dsg; |
| 496 | list_for_each_entry(dsg, &txd->dsg_list, node) |
| 497 | bytes += dsg->len; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 498 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | spin_unlock_irqrestore(&plchan->lock, flags); |
| 502 | |
| 503 | return bytes; |
| 504 | } |
| 505 | |
| 506 | /* |
| 507 | * Allocate a physical channel for a virtual channel |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 508 | * |
| 509 | * Try to locate a physical channel to be used for this transfer. If all |
| 510 | * are taken return NULL and the requester will have to cope by using |
| 511 | * some fallback PIO mode or retrying later. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 512 | */ |
| 513 | static struct pl08x_phy_chan * |
| 514 | pl08x_get_phy_channel(struct pl08x_driver_data *pl08x, |
| 515 | struct pl08x_dma_chan *virt_chan) |
| 516 | { |
| 517 | struct pl08x_phy_chan *ch = NULL; |
| 518 | unsigned long flags; |
| 519 | int i; |
| 520 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 521 | for (i = 0; i < pl08x->vd->channels; i++) { |
| 522 | ch = &pl08x->phy_chans[i]; |
| 523 | |
| 524 | spin_lock_irqsave(&ch->lock, flags); |
| 525 | |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 526 | if (!ch->locked && !ch->serving) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 527 | ch->serving = virt_chan; |
| 528 | ch->signal = -1; |
| 529 | spin_unlock_irqrestore(&ch->lock, flags); |
| 530 | break; |
| 531 | } |
| 532 | |
| 533 | spin_unlock_irqrestore(&ch->lock, flags); |
| 534 | } |
| 535 | |
| 536 | if (i == pl08x->vd->channels) { |
| 537 | /* No physical channel available, cope with it */ |
| 538 | return NULL; |
| 539 | } |
| 540 | |
| 541 | return ch; |
| 542 | } |
| 543 | |
| 544 | static inline void pl08x_put_phy_channel(struct pl08x_driver_data *pl08x, |
| 545 | struct pl08x_phy_chan *ch) |
| 546 | { |
| 547 | unsigned long flags; |
| 548 | |
Russell King - ARM Linux | fb52621 | 2011-01-27 12:32:53 +0000 | [diff] [blame] | 549 | spin_lock_irqsave(&ch->lock, flags); |
| 550 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 551 | /* Stop the channel and clear its interrupts */ |
Russell King - ARM Linux | fb52621 | 2011-01-27 12:32:53 +0000 | [diff] [blame] | 552 | pl08x_terminate_phy_chan(pl08x, ch); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 553 | |
| 554 | /* Mark it as free */ |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 555 | ch->serving = NULL; |
| 556 | spin_unlock_irqrestore(&ch->lock, flags); |
| 557 | } |
| 558 | |
| 559 | /* |
| 560 | * LLI handling |
| 561 | */ |
| 562 | |
| 563 | static inline unsigned int pl08x_get_bytes_for_cctl(unsigned int coded) |
| 564 | { |
| 565 | switch (coded) { |
| 566 | case PL080_WIDTH_8BIT: |
| 567 | return 1; |
| 568 | case PL080_WIDTH_16BIT: |
| 569 | return 2; |
| 570 | case PL080_WIDTH_32BIT: |
| 571 | return 4; |
| 572 | default: |
| 573 | break; |
| 574 | } |
| 575 | BUG(); |
| 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | static inline u32 pl08x_cctl_bits(u32 cctl, u8 srcwidth, u8 dstwidth, |
Russell King - ARM Linux | cace658 | 2011-01-03 22:37:31 +0000 | [diff] [blame] | 580 | size_t tsize) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 581 | { |
| 582 | u32 retbits = cctl; |
| 583 | |
Russell King - ARM Linux | e8b5e11 | 2011-01-03 22:30:24 +0000 | [diff] [blame] | 584 | /* Remove all src, dst and transfer size bits */ |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 585 | retbits &= ~PL080_CONTROL_DWIDTH_MASK; |
| 586 | retbits &= ~PL080_CONTROL_SWIDTH_MASK; |
| 587 | retbits &= ~PL080_CONTROL_TRANSFER_SIZE_MASK; |
| 588 | |
| 589 | /* Then set the bits according to the parameters */ |
| 590 | switch (srcwidth) { |
| 591 | case 1: |
| 592 | retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT; |
| 593 | break; |
| 594 | case 2: |
| 595 | retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT; |
| 596 | break; |
| 597 | case 4: |
| 598 | retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT; |
| 599 | break; |
| 600 | default: |
| 601 | BUG(); |
| 602 | break; |
| 603 | } |
| 604 | |
| 605 | switch (dstwidth) { |
| 606 | case 1: |
| 607 | retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT; |
| 608 | break; |
| 609 | case 2: |
| 610 | retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT; |
| 611 | break; |
| 612 | case 4: |
| 613 | retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT; |
| 614 | break; |
| 615 | default: |
| 616 | BUG(); |
| 617 | break; |
| 618 | } |
| 619 | |
| 620 | retbits |= tsize << PL080_CONTROL_TRANSFER_SIZE_SHIFT; |
| 621 | return retbits; |
| 622 | } |
| 623 | |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 624 | struct pl08x_lli_build_data { |
| 625 | struct pl08x_txd *txd; |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 626 | struct pl08x_bus_data srcbus; |
| 627 | struct pl08x_bus_data dstbus; |
| 628 | size_t remainder; |
Russell King - ARM Linux | 25c94f7 | 2011-07-21 17:11:46 +0100 | [diff] [blame] | 629 | u32 lli_bus; |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 630 | }; |
| 631 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 632 | /* |
Viresh Kumar | 0532e6f | 2011-08-05 15:32:31 +0530 | [diff] [blame] | 633 | * Autoselect a master bus to use for the transfer. Slave will be the chosen as |
| 634 | * victim in case src & dest are not similarly aligned. i.e. If after aligning |
| 635 | * masters address with width requirements of transfer (by sending few byte by |
| 636 | * byte data), slave is still not aligned, then its width will be reduced to |
| 637 | * BYTE. |
| 638 | * - prefers the destination bus if both available |
Viresh Kumar | 036f05f | 2011-08-05 15:32:41 +0530 | [diff] [blame] | 639 | * - prefers bus with fixed address (i.e. peripheral) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 640 | */ |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 641 | static void pl08x_choose_master_bus(struct pl08x_lli_build_data *bd, |
| 642 | struct pl08x_bus_data **mbus, struct pl08x_bus_data **sbus, u32 cctl) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 643 | { |
| 644 | if (!(cctl & PL080_CONTROL_DST_INCR)) { |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 645 | *mbus = &bd->dstbus; |
| 646 | *sbus = &bd->srcbus; |
Viresh Kumar | 036f05f | 2011-08-05 15:32:41 +0530 | [diff] [blame] | 647 | } else if (!(cctl & PL080_CONTROL_SRC_INCR)) { |
| 648 | *mbus = &bd->srcbus; |
| 649 | *sbus = &bd->dstbus; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 650 | } else { |
Viresh Kumar | 036f05f | 2011-08-05 15:32:41 +0530 | [diff] [blame] | 651 | if (bd->dstbus.buswidth >= bd->srcbus.buswidth) { |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 652 | *mbus = &bd->dstbus; |
| 653 | *sbus = &bd->srcbus; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 654 | } else { |
Viresh Kumar | 036f05f | 2011-08-05 15:32:41 +0530 | [diff] [blame] | 655 | *mbus = &bd->srcbus; |
| 656 | *sbus = &bd->dstbus; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 657 | } |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | /* |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 662 | * Fills in one LLI for a certain transfer descriptor and advance the counter |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 663 | */ |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 664 | static void pl08x_fill_lli_for_desc(struct pl08x_lli_build_data *bd, |
| 665 | int num_llis, int len, u32 cctl) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 666 | { |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 667 | struct pl08x_lli *llis_va = bd->txd->llis_va; |
| 668 | dma_addr_t llis_bus = bd->txd->llis_bus; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 669 | |
| 670 | BUG_ON(num_llis >= MAX_NUM_TSFR_LLIS); |
| 671 | |
Russell King - ARM Linux | 30749cb | 2011-01-03 22:41:13 +0000 | [diff] [blame] | 672 | llis_va[num_llis].cctl = cctl; |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 673 | llis_va[num_llis].src = bd->srcbus.addr; |
| 674 | llis_va[num_llis].dst = bd->dstbus.addr; |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 675 | llis_va[num_llis].lli = llis_bus + (num_llis + 1) * |
| 676 | sizeof(struct pl08x_lli); |
Russell King - ARM Linux | 25c94f7 | 2011-07-21 17:11:46 +0100 | [diff] [blame] | 677 | llis_va[num_llis].lli |= bd->lli_bus; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 678 | |
| 679 | if (cctl & PL080_CONTROL_SRC_INCR) |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 680 | bd->srcbus.addr += len; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 681 | if (cctl & PL080_CONTROL_DST_INCR) |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 682 | bd->dstbus.addr += len; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 683 | |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 684 | BUG_ON(bd->remainder < len); |
Russell King - ARM Linux | cace658 | 2011-01-03 22:37:31 +0000 | [diff] [blame] | 685 | |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 686 | bd->remainder -= len; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 687 | } |
| 688 | |
Viresh Kumar | 03af500 | 2011-08-05 15:32:39 +0530 | [diff] [blame] | 689 | static inline void prep_byte_width_lli(struct pl08x_lli_build_data *bd, |
| 690 | u32 *cctl, u32 len, int num_llis, size_t *total_bytes) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 691 | { |
Viresh Kumar | 03af500 | 2011-08-05 15:32:39 +0530 | [diff] [blame] | 692 | *cctl = pl08x_cctl_bits(*cctl, 1, 1, len); |
| 693 | pl08x_fill_lli_for_desc(bd, num_llis, len, *cctl); |
| 694 | (*total_bytes) += len; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | /* |
| 698 | * This fills in the table of LLIs for the transfer descriptor |
| 699 | * Note that we assume we never have to change the burst sizes |
| 700 | * Return 0 for error |
| 701 | */ |
| 702 | static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x, |
| 703 | struct pl08x_txd *txd) |
| 704 | { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 705 | struct pl08x_bus_data *mbus, *sbus; |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 706 | struct pl08x_lli_build_data bd; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 707 | int num_llis = 0; |
Viresh Kumar | 03af500 | 2011-08-05 15:32:39 +0530 | [diff] [blame] | 708 | u32 cctl, early_bytes = 0; |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 709 | size_t max_bytes_per_lli, total_bytes; |
Russell King - ARM Linux | 7cb72ad | 2011-01-03 22:35:28 +0000 | [diff] [blame] | 710 | struct pl08x_lli *llis_va; |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 711 | struct pl08x_sg *dsg; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 712 | |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 713 | txd->llis_va = dma_pool_alloc(pl08x->pool, GFP_NOWAIT, &txd->llis_bus); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 714 | if (!txd->llis_va) { |
| 715 | dev_err(&pl08x->adev->dev, "%s no memory for llis\n", __func__); |
| 716 | return 0; |
| 717 | } |
| 718 | |
| 719 | pl08x->pool_ctr++; |
| 720 | |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 721 | bd.txd = txd; |
Russell King - ARM Linux | 25c94f7 | 2011-07-21 17:11:46 +0100 | [diff] [blame] | 722 | bd.lli_bus = (pl08x->lli_buses & PL08X_AHB2) ? PL080_LLI_LM_AHB2 : 0; |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 723 | cctl = txd->cctl; |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 724 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 725 | /* Find maximum width of the source bus */ |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 726 | bd.srcbus.maxwidth = |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 727 | pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_SWIDTH_MASK) >> |
| 728 | PL080_CONTROL_SWIDTH_SHIFT); |
| 729 | |
| 730 | /* Find maximum width of the destination bus */ |
Russell King - ARM Linux | 542361f | 2011-01-03 22:43:15 +0000 | [diff] [blame] | 731 | bd.dstbus.maxwidth = |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 732 | pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_DWIDTH_MASK) >> |
| 733 | PL080_CONTROL_DWIDTH_SHIFT); |
| 734 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 735 | list_for_each_entry(dsg, &txd->dsg_list, node) { |
| 736 | total_bytes = 0; |
| 737 | cctl = txd->cctl; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 738 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 739 | bd.srcbus.addr = dsg->src_addr; |
| 740 | bd.dstbus.addr = dsg->dst_addr; |
| 741 | bd.remainder = dsg->len; |
| 742 | bd.srcbus.buswidth = bd.srcbus.maxwidth; |
| 743 | bd.dstbus.buswidth = bd.dstbus.maxwidth; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 744 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 745 | pl08x_choose_master_bus(&bd, &mbus, &sbus, cctl); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 746 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 747 | dev_vdbg(&pl08x->adev->dev, "src=0x%08x%s/%u dst=0x%08x%s/%u len=%zu\n", |
| 748 | bd.srcbus.addr, cctl & PL080_CONTROL_SRC_INCR ? "+" : "", |
| 749 | bd.srcbus.buswidth, |
| 750 | bd.dstbus.addr, cctl & PL080_CONTROL_DST_INCR ? "+" : "", |
| 751 | bd.dstbus.buswidth, |
| 752 | bd.remainder); |
| 753 | dev_vdbg(&pl08x->adev->dev, "mbus=%s sbus=%s\n", |
| 754 | mbus == &bd.srcbus ? "src" : "dst", |
| 755 | sbus == &bd.srcbus ? "src" : "dst"); |
Russell King - ARM Linux | fc74eb7 | 2011-07-21 17:12:06 +0100 | [diff] [blame] | 756 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 757 | /* |
| 758 | * Zero length is only allowed if all these requirements are |
| 759 | * met: |
| 760 | * - flow controller is peripheral. |
| 761 | * - src.addr is aligned to src.width |
| 762 | * - dst.addr is aligned to dst.width |
| 763 | * |
| 764 | * sg_len == 1 should be true, as there can be two cases here: |
| 765 | * |
| 766 | * - Memory addresses are contiguous and are not scattered. |
| 767 | * Here, Only one sg will be passed by user driver, with |
| 768 | * memory address and zero length. We pass this to controller |
| 769 | * and after the transfer it will receive the last burst |
| 770 | * request from peripheral and so transfer finishes. |
| 771 | * |
| 772 | * - Memory addresses are scattered and are not contiguous. |
| 773 | * Here, Obviously as DMA controller doesn't know when a lli's |
| 774 | * transfer gets over, it can't load next lli. So in this |
| 775 | * case, there has to be an assumption that only one lli is |
| 776 | * supported. Thus, we can't have scattered addresses. |
| 777 | */ |
| 778 | if (!bd.remainder) { |
| 779 | u32 fc = (txd->ccfg & PL080_CONFIG_FLOW_CONTROL_MASK) >> |
| 780 | PL080_CONFIG_FLOW_CONTROL_SHIFT; |
| 781 | if (!((fc >= PL080_FLOW_SRC2DST_DST) && |
Viresh Kumar | 0a23565 | 2011-08-05 15:32:42 +0530 | [diff] [blame] | 782 | (fc <= PL080_FLOW_SRC2DST_SRC))) { |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 783 | dev_err(&pl08x->adev->dev, "%s sg len can't be zero", |
| 784 | __func__); |
| 785 | return 0; |
| 786 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 787 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 788 | if ((bd.srcbus.addr % bd.srcbus.buswidth) || |
Julia Lawall | 880db3f | 2012-01-12 22:49:29 +0100 | [diff] [blame] | 789 | (bd.dstbus.addr % bd.dstbus.buswidth)) { |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 790 | dev_err(&pl08x->adev->dev, |
| 791 | "%s src & dst address must be aligned to src" |
| 792 | " & dst width if peripheral is flow controller", |
| 793 | __func__); |
| 794 | return 0; |
| 795 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 796 | |
Viresh Kumar | 16a2e7d | 2011-08-05 15:32:37 +0530 | [diff] [blame] | 797 | cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth, |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 798 | bd.dstbus.buswidth, 0); |
| 799 | pl08x_fill_lli_for_desc(&bd, num_llis++, 0, cctl); |
| 800 | break; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | /* |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 804 | * Send byte by byte for following cases |
| 805 | * - Less than a bus width available |
| 806 | * - until master bus is aligned |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 807 | */ |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 808 | if (bd.remainder < mbus->buswidth) |
| 809 | early_bytes = bd.remainder; |
| 810 | else if ((mbus->addr) % (mbus->buswidth)) { |
| 811 | early_bytes = mbus->buswidth - (mbus->addr) % |
| 812 | (mbus->buswidth); |
| 813 | if ((bd.remainder - early_bytes) < mbus->buswidth) |
| 814 | early_bytes = bd.remainder; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 815 | } |
Viresh Kumar | 16a2e7d | 2011-08-05 15:32:37 +0530 | [diff] [blame] | 816 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 817 | if (early_bytes) { |
| 818 | dev_vdbg(&pl08x->adev->dev, |
| 819 | "%s byte width LLIs (remain 0x%08x)\n", |
| 820 | __func__, bd.remainder); |
| 821 | prep_byte_width_lli(&bd, &cctl, early_bytes, num_llis++, |
| 822 | &total_bytes); |
| 823 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 824 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 825 | if (bd.remainder) { |
| 826 | /* |
| 827 | * Master now aligned |
| 828 | * - if slave is not then we must set its width down |
| 829 | */ |
| 830 | if (sbus->addr % sbus->buswidth) { |
| 831 | dev_dbg(&pl08x->adev->dev, |
| 832 | "%s set down bus width to one byte\n", |
| 833 | __func__); |
| 834 | |
| 835 | sbus->buswidth = 1; |
| 836 | } |
| 837 | |
| 838 | /* |
| 839 | * Bytes transferred = tsize * src width, not |
| 840 | * MIN(buswidths) |
| 841 | */ |
| 842 | max_bytes_per_lli = bd.srcbus.buswidth * |
| 843 | PL080_CONTROL_TRANSFER_SIZE_MASK; |
| 844 | dev_vdbg(&pl08x->adev->dev, |
| 845 | "%s max bytes per lli = %zu\n", |
| 846 | __func__, max_bytes_per_lli); |
| 847 | |
| 848 | /* |
| 849 | * Make largest possible LLIs until less than one bus |
| 850 | * width left |
| 851 | */ |
| 852 | while (bd.remainder > (mbus->buswidth - 1)) { |
| 853 | size_t lli_len, tsize, width; |
| 854 | |
| 855 | /* |
| 856 | * If enough left try to send max possible, |
| 857 | * otherwise try to send the remainder |
| 858 | */ |
| 859 | lli_len = min(bd.remainder, max_bytes_per_lli); |
| 860 | |
| 861 | /* |
| 862 | * Check against maximum bus alignment: |
| 863 | * Calculate actual transfer size in relation to |
| 864 | * bus width an get a maximum remainder of the |
| 865 | * highest bus width - 1 |
| 866 | */ |
| 867 | width = max(mbus->buswidth, sbus->buswidth); |
| 868 | lli_len = (lli_len / width) * width; |
| 869 | tsize = lli_len / bd.srcbus.buswidth; |
| 870 | |
| 871 | dev_vdbg(&pl08x->adev->dev, |
| 872 | "%s fill lli with single lli chunk of " |
| 873 | "size 0x%08zx (remainder 0x%08zx)\n", |
| 874 | __func__, lli_len, bd.remainder); |
| 875 | |
| 876 | cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth, |
| 877 | bd.dstbus.buswidth, tsize); |
| 878 | pl08x_fill_lli_for_desc(&bd, num_llis++, |
| 879 | lli_len, cctl); |
| 880 | total_bytes += lli_len; |
| 881 | } |
| 882 | |
| 883 | /* |
| 884 | * Send any odd bytes |
| 885 | */ |
| 886 | if (bd.remainder) { |
| 887 | dev_vdbg(&pl08x->adev->dev, |
| 888 | "%s align with boundary, send odd bytes (remain %zu)\n", |
| 889 | __func__, bd.remainder); |
| 890 | prep_byte_width_lli(&bd, &cctl, bd.remainder, |
| 891 | num_llis++, &total_bytes); |
| 892 | } |
| 893 | } |
| 894 | |
| 895 | if (total_bytes != dsg->len) { |
| 896 | dev_err(&pl08x->adev->dev, |
| 897 | "%s size of encoded lli:s don't match total txd, transferred 0x%08zx from size 0x%08zx\n", |
| 898 | __func__, total_bytes, dsg->len); |
| 899 | return 0; |
| 900 | } |
| 901 | |
| 902 | if (num_llis >= MAX_NUM_TSFR_LLIS) { |
| 903 | dev_err(&pl08x->adev->dev, |
| 904 | "%s need to increase MAX_NUM_TSFR_LLIS from 0x%08x\n", |
| 905 | __func__, (u32) MAX_NUM_TSFR_LLIS); |
| 906 | return 0; |
| 907 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 908 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 909 | |
Russell King - ARM Linux | b58b6b5 | 2011-01-03 22:34:48 +0000 | [diff] [blame] | 910 | llis_va = txd->llis_va; |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 911 | /* The final LLI terminates the LLI. */ |
Russell King - ARM Linux | bfddfb4 | 2011-01-03 22:38:12 +0000 | [diff] [blame] | 912 | llis_va[num_llis - 1].lli = 0; |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 913 | /* The final LLI element shall also fire an interrupt. */ |
Russell King - ARM Linux | b58b6b5 | 2011-01-03 22:34:48 +0000 | [diff] [blame] | 914 | llis_va[num_llis - 1].cctl |= PL080_CONTROL_TC_IRQ_EN; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 915 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 916 | #ifdef VERBOSE_DEBUG |
| 917 | { |
| 918 | int i; |
| 919 | |
Russell King - ARM Linux | fc74eb7 | 2011-07-21 17:12:06 +0100 | [diff] [blame] | 920 | dev_vdbg(&pl08x->adev->dev, |
| 921 | "%-3s %-9s %-10s %-10s %-10s %s\n", |
| 922 | "lli", "", "csrc", "cdst", "clli", "cctl"); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 923 | for (i = 0; i < num_llis; i++) { |
| 924 | dev_vdbg(&pl08x->adev->dev, |
Russell King - ARM Linux | fc74eb7 | 2011-07-21 17:12:06 +0100 | [diff] [blame] | 925 | "%3d @%p: 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 926 | i, &llis_va[i], llis_va[i].src, |
| 927 | llis_va[i].dst, llis_va[i].lli, llis_va[i].cctl |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 928 | ); |
| 929 | } |
| 930 | } |
| 931 | #endif |
| 932 | |
| 933 | return num_llis; |
| 934 | } |
| 935 | |
| 936 | /* You should call this with the struct pl08x lock held */ |
| 937 | static void pl08x_free_txd(struct pl08x_driver_data *pl08x, |
| 938 | struct pl08x_txd *txd) |
| 939 | { |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 940 | struct pl08x_sg *dsg, *_dsg; |
| 941 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 942 | /* Free the LLI */ |
Viresh Kumar | c120564 | 2011-08-05 15:32:44 +0530 | [diff] [blame] | 943 | if (txd->llis_va) |
| 944 | dma_pool_free(pl08x->pool, txd->llis_va, txd->llis_bus); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 945 | |
| 946 | pl08x->pool_ctr--; |
| 947 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 948 | list_for_each_entry_safe(dsg, _dsg, &txd->dsg_list, node) { |
| 949 | list_del(&dsg->node); |
| 950 | kfree(dsg); |
| 951 | } |
| 952 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 953 | kfree(txd); |
| 954 | } |
| 955 | |
| 956 | static void pl08x_free_txd_list(struct pl08x_driver_data *pl08x, |
| 957 | struct pl08x_dma_chan *plchan) |
| 958 | { |
| 959 | struct pl08x_txd *txdi = NULL; |
| 960 | struct pl08x_txd *next; |
| 961 | |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 962 | if (!list_empty(&plchan->pend_list)) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 963 | list_for_each_entry_safe(txdi, |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 964 | next, &plchan->pend_list, node) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 965 | list_del(&txdi->node); |
| 966 | pl08x_free_txd(pl08x, txdi); |
| 967 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | |
| 971 | /* |
| 972 | * The DMA ENGINE API |
| 973 | */ |
| 974 | static int pl08x_alloc_chan_resources(struct dma_chan *chan) |
| 975 | { |
| 976 | return 0; |
| 977 | } |
| 978 | |
| 979 | static void pl08x_free_chan_resources(struct dma_chan *chan) |
| 980 | { |
| 981 | } |
| 982 | |
| 983 | /* |
| 984 | * This should be called with the channel plchan->lock held |
| 985 | */ |
| 986 | static int prep_phy_channel(struct pl08x_dma_chan *plchan, |
| 987 | struct pl08x_txd *txd) |
| 988 | { |
| 989 | struct pl08x_driver_data *pl08x = plchan->host; |
| 990 | struct pl08x_phy_chan *ch; |
| 991 | int ret; |
| 992 | |
| 993 | /* Check if we already have a channel */ |
Viresh Kumar | 8f0d30f | 2011-11-29 12:56:50 +0530 | [diff] [blame] | 994 | if (plchan->phychan) { |
| 995 | ch = plchan->phychan; |
| 996 | goto got_channel; |
| 997 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 998 | |
| 999 | ch = pl08x_get_phy_channel(pl08x, plchan); |
| 1000 | if (!ch) { |
| 1001 | /* No physical channel available, cope with it */ |
| 1002 | dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name); |
| 1003 | return -EBUSY; |
| 1004 | } |
| 1005 | |
| 1006 | /* |
| 1007 | * OK we have a physical channel: for memcpy() this is all we |
| 1008 | * need, but for slaves the physical signals may be muxed! |
| 1009 | * Can the platform allow us to use this channel? |
| 1010 | */ |
Viresh Kumar | 16ca810 | 2011-08-05 15:32:35 +0530 | [diff] [blame] | 1011 | if (plchan->slave && pl08x->pd->get_signal) { |
Russell King | aeea180 | 2012-05-17 15:01:28 +0100 | [diff] [blame] | 1012 | ret = pl08x->pd->get_signal(plchan->cd); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1013 | if (ret < 0) { |
| 1014 | dev_dbg(&pl08x->adev->dev, |
| 1015 | "unable to use physical channel %d for transfer on %s due to platform restrictions\n", |
| 1016 | ch->id, plchan->name); |
| 1017 | /* Release physical channel & return */ |
| 1018 | pl08x_put_phy_channel(pl08x, ch); |
| 1019 | return -EBUSY; |
| 1020 | } |
| 1021 | ch->signal = ret; |
| 1022 | } |
| 1023 | |
Viresh Kumar | 8f0d30f | 2011-11-29 12:56:50 +0530 | [diff] [blame] | 1024 | plchan->phychan = ch; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1025 | dev_dbg(&pl08x->adev->dev, "allocated physical channel %d and signal %d for xfer on %s\n", |
| 1026 | ch->id, |
| 1027 | ch->signal, |
| 1028 | plchan->name); |
| 1029 | |
Viresh Kumar | 8f0d30f | 2011-11-29 12:56:50 +0530 | [diff] [blame] | 1030 | got_channel: |
| 1031 | /* Assign the flow control signal to this channel */ |
| 1032 | if (txd->direction == DMA_MEM_TO_DEV) |
| 1033 | txd->ccfg |= ch->signal << PL080_CONFIG_DST_SEL_SHIFT; |
| 1034 | else if (txd->direction == DMA_DEV_TO_MEM) |
| 1035 | txd->ccfg |= ch->signal << PL080_CONFIG_SRC_SEL_SHIFT; |
| 1036 | |
Russell King - ARM Linux | 8087aac | 2011-01-03 22:45:17 +0000 | [diff] [blame] | 1037 | plchan->phychan_hold++; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1038 | |
| 1039 | return 0; |
| 1040 | } |
| 1041 | |
Russell King - ARM Linux | 8c8cc2b | 2011-01-03 22:36:09 +0000 | [diff] [blame] | 1042 | static void release_phy_channel(struct pl08x_dma_chan *plchan) |
| 1043 | { |
| 1044 | struct pl08x_driver_data *pl08x = plchan->host; |
| 1045 | |
| 1046 | if ((plchan->phychan->signal >= 0) && pl08x->pd->put_signal) { |
Russell King | aeea180 | 2012-05-17 15:01:28 +0100 | [diff] [blame] | 1047 | pl08x->pd->put_signal(plchan->cd, plchan->phychan->signal); |
Russell King - ARM Linux | 8c8cc2b | 2011-01-03 22:36:09 +0000 | [diff] [blame] | 1048 | plchan->phychan->signal = -1; |
| 1049 | } |
| 1050 | pl08x_put_phy_channel(pl08x, plchan->phychan); |
| 1051 | plchan->phychan = NULL; |
| 1052 | } |
| 1053 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1054 | static dma_cookie_t pl08x_tx_submit(struct dma_async_tx_descriptor *tx) |
| 1055 | { |
| 1056 | struct pl08x_dma_chan *plchan = to_pl08x_chan(tx->chan); |
Russell King - ARM Linux | 501e67e | 2011-01-03 22:44:57 +0000 | [diff] [blame] | 1057 | struct pl08x_txd *txd = to_pl08x_txd(tx); |
Russell King - ARM Linux | c370e59 | 2011-01-03 22:45:37 +0000 | [diff] [blame] | 1058 | unsigned long flags; |
Russell King - ARM Linux | 884485e | 2012-03-06 22:34:46 +0000 | [diff] [blame] | 1059 | dma_cookie_t cookie; |
Russell King - ARM Linux | c370e59 | 2011-01-03 22:45:37 +0000 | [diff] [blame] | 1060 | |
| 1061 | spin_lock_irqsave(&plchan->lock, flags); |
Russell King - ARM Linux | 884485e | 2012-03-06 22:34:46 +0000 | [diff] [blame] | 1062 | cookie = dma_cookie_assign(tx); |
Russell King - ARM Linux | 501e67e | 2011-01-03 22:44:57 +0000 | [diff] [blame] | 1063 | |
| 1064 | /* Put this onto the pending list */ |
| 1065 | list_add_tail(&txd->node, &plchan->pend_list); |
| 1066 | |
| 1067 | /* |
| 1068 | * If there was no physical channel available for this memcpy, |
| 1069 | * stack the request up and indicate that the channel is waiting |
| 1070 | * for a free physical channel. |
| 1071 | */ |
| 1072 | if (!plchan->slave && !plchan->phychan) { |
| 1073 | /* Do this memcpy whenever there is a channel ready */ |
| 1074 | plchan->state = PL08X_CHAN_WAITING; |
| 1075 | plchan->waiting = txd; |
Russell King - ARM Linux | 8087aac | 2011-01-03 22:45:17 +0000 | [diff] [blame] | 1076 | } else { |
| 1077 | plchan->phychan_hold--; |
Russell King - ARM Linux | 501e67e | 2011-01-03 22:44:57 +0000 | [diff] [blame] | 1078 | } |
| 1079 | |
Russell King - ARM Linux | c370e59 | 2011-01-03 22:45:37 +0000 | [diff] [blame] | 1080 | spin_unlock_irqrestore(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1081 | |
Russell King - ARM Linux | 884485e | 2012-03-06 22:34:46 +0000 | [diff] [blame] | 1082 | return cookie; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1083 | } |
| 1084 | |
| 1085 | static struct dma_async_tx_descriptor *pl08x_prep_dma_interrupt( |
| 1086 | struct dma_chan *chan, unsigned long flags) |
| 1087 | { |
| 1088 | struct dma_async_tx_descriptor *retval = NULL; |
| 1089 | |
| 1090 | return retval; |
| 1091 | } |
| 1092 | |
| 1093 | /* |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 1094 | * Code accessing dma_async_is_complete() in a tight loop may give problems. |
| 1095 | * If slaves are relying on interrupts to signal completion this function |
| 1096 | * must not be called with interrupts disabled. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1097 | */ |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 1098 | static enum dma_status pl08x_dma_tx_status(struct dma_chan *chan, |
| 1099 | dma_cookie_t cookie, struct dma_tx_state *txstate) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1100 | { |
| 1101 | struct pl08x_dma_chan *plchan = to_pl08x_chan(chan); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1102 | enum dma_status ret; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1103 | |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 1104 | ret = dma_cookie_status(chan, cookie, txstate); |
| 1105 | if (ret == DMA_SUCCESS) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1106 | return ret; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1107 | |
| 1108 | /* |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1109 | * This cookie not complete yet |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 1110 | * Get number of bytes left in the active transactions and queue |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1111 | */ |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 1112 | dma_set_residue(txstate, pl08x_getbytes_chan(plchan)); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1113 | |
| 1114 | if (plchan->state == PL08X_CHAN_PAUSED) |
| 1115 | return DMA_PAUSED; |
| 1116 | |
| 1117 | /* Whether waiting or running, we're in progress */ |
| 1118 | return DMA_IN_PROGRESS; |
| 1119 | } |
| 1120 | |
| 1121 | /* PrimeCell DMA extension */ |
| 1122 | struct burst_table { |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1123 | u32 burstwords; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1124 | u32 reg; |
| 1125 | }; |
| 1126 | |
| 1127 | static const struct burst_table burst_sizes[] = { |
| 1128 | { |
| 1129 | .burstwords = 256, |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1130 | .reg = PL080_BSIZE_256, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1131 | }, |
| 1132 | { |
| 1133 | .burstwords = 128, |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1134 | .reg = PL080_BSIZE_128, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1135 | }, |
| 1136 | { |
| 1137 | .burstwords = 64, |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1138 | .reg = PL080_BSIZE_64, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1139 | }, |
| 1140 | { |
| 1141 | .burstwords = 32, |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1142 | .reg = PL080_BSIZE_32, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1143 | }, |
| 1144 | { |
| 1145 | .burstwords = 16, |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1146 | .reg = PL080_BSIZE_16, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1147 | }, |
| 1148 | { |
| 1149 | .burstwords = 8, |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1150 | .reg = PL080_BSIZE_8, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1151 | }, |
| 1152 | { |
| 1153 | .burstwords = 4, |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1154 | .reg = PL080_BSIZE_4, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1155 | }, |
| 1156 | { |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1157 | .burstwords = 0, |
| 1158 | .reg = PL080_BSIZE_1, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1159 | }, |
| 1160 | }; |
| 1161 | |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1162 | /* |
| 1163 | * Given the source and destination available bus masks, select which |
| 1164 | * will be routed to each port. We try to have source and destination |
| 1165 | * on separate ports, but always respect the allowable settings. |
| 1166 | */ |
| 1167 | static u32 pl08x_select_bus(u8 src, u8 dst) |
| 1168 | { |
| 1169 | u32 cctl = 0; |
| 1170 | |
| 1171 | if (!(dst & PL08X_AHB1) || ((dst & PL08X_AHB2) && (src & PL08X_AHB1))) |
| 1172 | cctl |= PL080_CONTROL_DST_AHB2; |
| 1173 | if (!(src & PL08X_AHB1) || ((src & PL08X_AHB2) && !(dst & PL08X_AHB2))) |
| 1174 | cctl |= PL080_CONTROL_SRC_AHB2; |
| 1175 | |
| 1176 | return cctl; |
| 1177 | } |
| 1178 | |
Russell King - ARM Linux | f14c426 | 2011-07-21 17:12:47 +0100 | [diff] [blame] | 1179 | static u32 pl08x_cctl(u32 cctl) |
| 1180 | { |
| 1181 | cctl &= ~(PL080_CONTROL_SRC_AHB2 | PL080_CONTROL_DST_AHB2 | |
| 1182 | PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR | |
| 1183 | PL080_CONTROL_PROT_MASK); |
| 1184 | |
| 1185 | /* Access the cell in privileged mode, non-bufferable, non-cacheable */ |
| 1186 | return cctl | PL080_CONTROL_PROT_SYS; |
| 1187 | } |
| 1188 | |
Russell King - ARM Linux | aa88cda | 2011-07-21 17:13:28 +0100 | [diff] [blame] | 1189 | static u32 pl08x_width(enum dma_slave_buswidth width) |
| 1190 | { |
| 1191 | switch (width) { |
| 1192 | case DMA_SLAVE_BUSWIDTH_1_BYTE: |
| 1193 | return PL080_WIDTH_8BIT; |
| 1194 | case DMA_SLAVE_BUSWIDTH_2_BYTES: |
| 1195 | return PL080_WIDTH_16BIT; |
| 1196 | case DMA_SLAVE_BUSWIDTH_4_BYTES: |
| 1197 | return PL080_WIDTH_32BIT; |
Vinod Koul | f32807f | 2011-07-25 19:22:01 +0530 | [diff] [blame] | 1198 | default: |
| 1199 | return ~0; |
Russell King - ARM Linux | aa88cda | 2011-07-21 17:13:28 +0100 | [diff] [blame] | 1200 | } |
Russell King - ARM Linux | aa88cda | 2011-07-21 17:13:28 +0100 | [diff] [blame] | 1201 | } |
| 1202 | |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1203 | static u32 pl08x_burst(u32 maxburst) |
| 1204 | { |
| 1205 | int i; |
| 1206 | |
| 1207 | for (i = 0; i < ARRAY_SIZE(burst_sizes); i++) |
| 1208 | if (burst_sizes[i].burstwords <= maxburst) |
| 1209 | break; |
| 1210 | |
| 1211 | return burst_sizes[i].reg; |
| 1212 | } |
| 1213 | |
Russell King - ARM Linux | f0fd944 | 2011-01-03 22:45:57 +0000 | [diff] [blame] | 1214 | static int dma_set_runtime_config(struct dma_chan *chan, |
| 1215 | struct dma_slave_config *config) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1216 | { |
| 1217 | struct pl08x_dma_chan *plchan = to_pl08x_chan(chan); |
| 1218 | struct pl08x_driver_data *pl08x = plchan->host; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1219 | enum dma_slave_buswidth addr_width; |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1220 | u32 width, burst, maxburst; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1221 | u32 cctl = 0; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1222 | |
Russell King - ARM Linux | b7f75865 | 2011-01-03 22:46:17 +0000 | [diff] [blame] | 1223 | if (!plchan->slave) |
| 1224 | return -EINVAL; |
| 1225 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1226 | /* Transfer direction */ |
| 1227 | plchan->runtime_direction = config->direction; |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1228 | if (config->direction == DMA_MEM_TO_DEV) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1229 | addr_width = config->dst_addr_width; |
| 1230 | maxburst = config->dst_maxburst; |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1231 | } else if (config->direction == DMA_DEV_TO_MEM) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1232 | addr_width = config->src_addr_width; |
| 1233 | maxburst = config->src_maxburst; |
| 1234 | } else { |
| 1235 | dev_err(&pl08x->adev->dev, |
| 1236 | "bad runtime_config: alien transfer direction\n"); |
Russell King - ARM Linux | f0fd944 | 2011-01-03 22:45:57 +0000 | [diff] [blame] | 1237 | return -EINVAL; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1238 | } |
| 1239 | |
Russell King - ARM Linux | aa88cda | 2011-07-21 17:13:28 +0100 | [diff] [blame] | 1240 | width = pl08x_width(addr_width); |
| 1241 | if (width == ~0) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1242 | dev_err(&pl08x->adev->dev, |
| 1243 | "bad runtime_config: alien address width\n"); |
Russell King - ARM Linux | f0fd944 | 2011-01-03 22:45:57 +0000 | [diff] [blame] | 1244 | return -EINVAL; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1245 | } |
| 1246 | |
Russell King | ed91c13 | 2012-05-16 11:02:40 +0100 | [diff] [blame^] | 1247 | plchan->cfg = *config; |
| 1248 | |
Russell King - ARM Linux | aa88cda | 2011-07-21 17:13:28 +0100 | [diff] [blame] | 1249 | cctl |= width << PL080_CONTROL_SWIDTH_SHIFT; |
| 1250 | cctl |= width << PL080_CONTROL_DWIDTH_SHIFT; |
| 1251 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1252 | /* |
Russell King - ARM Linux | 4440aac | 2011-01-03 22:30:44 +0000 | [diff] [blame] | 1253 | * If this channel will only request single transfers, set this |
| 1254 | * down to ONE element. Also select one element if no maxburst |
| 1255 | * is specified. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1256 | */ |
Russell King - ARM Linux | 760596c6 | 2011-07-21 17:14:08 +0100 | [diff] [blame] | 1257 | if (plchan->cd->single) |
| 1258 | maxburst = 1; |
| 1259 | |
| 1260 | burst = pl08x_burst(maxburst); |
| 1261 | cctl |= burst << PL080_CONTROL_SB_SIZE_SHIFT; |
| 1262 | cctl |= burst << PL080_CONTROL_DB_SIZE_SHIFT; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1263 | |
Viresh Kumar | 8c9f7aa | 2012-02-01 16:12:20 +0530 | [diff] [blame] | 1264 | plchan->device_fc = config->device_fc; |
| 1265 | |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1266 | if (plchan->runtime_direction == DMA_DEV_TO_MEM) { |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1267 | plchan->src_cctl = pl08x_cctl(cctl) | PL080_CONTROL_DST_INCR | |
| 1268 | pl08x_select_bus(plchan->cd->periph_buses, |
| 1269 | pl08x->mem_buses); |
Russell King - ARM Linux | b207b4d | 2011-07-21 17:12:27 +0100 | [diff] [blame] | 1270 | } else { |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1271 | plchan->dst_cctl = pl08x_cctl(cctl) | PL080_CONTROL_SRC_INCR | |
| 1272 | pl08x_select_bus(pl08x->mem_buses, |
| 1273 | plchan->cd->periph_buses); |
Russell King - ARM Linux | b207b4d | 2011-07-21 17:12:27 +0100 | [diff] [blame] | 1274 | } |
Russell King - ARM Linux | f0fd944 | 2011-01-03 22:45:57 +0000 | [diff] [blame] | 1275 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1276 | dev_dbg(&pl08x->adev->dev, |
| 1277 | "configured channel %s (%s) for %s, data width %d, " |
Russell King - ARM Linux | 4983a04 | 2011-01-03 22:39:33 +0000 | [diff] [blame] | 1278 | "maxburst %d words, LE, CCTL=0x%08x\n", |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1279 | dma_chan_name(chan), plchan->name, |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1280 | (config->direction == DMA_DEV_TO_MEM) ? "RX" : "TX", |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1281 | addr_width, |
| 1282 | maxburst, |
Russell King - ARM Linux | 4983a04 | 2011-01-03 22:39:33 +0000 | [diff] [blame] | 1283 | cctl); |
Russell King - ARM Linux | f0fd944 | 2011-01-03 22:45:57 +0000 | [diff] [blame] | 1284 | |
| 1285 | return 0; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1286 | } |
| 1287 | |
| 1288 | /* |
| 1289 | * Slave transactions callback to the slave device to allow |
| 1290 | * synchronization of slave DMA signals with the DMAC enable |
| 1291 | */ |
| 1292 | static void pl08x_issue_pending(struct dma_chan *chan) |
| 1293 | { |
| 1294 | struct pl08x_dma_chan *plchan = to_pl08x_chan(chan); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1295 | unsigned long flags; |
| 1296 | |
| 1297 | spin_lock_irqsave(&plchan->lock, flags); |
Russell King - ARM Linux | 9c0bb43 | 2011-01-03 22:32:05 +0000 | [diff] [blame] | 1298 | /* Something is already active, or we're waiting for a channel... */ |
| 1299 | if (plchan->at || plchan->state == PL08X_CHAN_WAITING) { |
| 1300 | spin_unlock_irqrestore(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1301 | return; |
Russell King - ARM Linux | 9c0bb43 | 2011-01-03 22:32:05 +0000 | [diff] [blame] | 1302 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1303 | |
| 1304 | /* Take the first element in the queue and execute it */ |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 1305 | if (!list_empty(&plchan->pend_list)) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1306 | struct pl08x_txd *next; |
| 1307 | |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 1308 | next = list_first_entry(&plchan->pend_list, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1309 | struct pl08x_txd, |
| 1310 | node); |
| 1311 | list_del(&next->node); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1312 | plchan->state = PL08X_CHAN_RUNNING; |
| 1313 | |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 1314 | pl08x_start_txd(plchan, next); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1315 | } |
| 1316 | |
| 1317 | spin_unlock_irqrestore(&plchan->lock, flags); |
| 1318 | } |
| 1319 | |
| 1320 | static int pl08x_prep_channel_resources(struct pl08x_dma_chan *plchan, |
| 1321 | struct pl08x_txd *txd) |
| 1322 | { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1323 | struct pl08x_driver_data *pl08x = plchan->host; |
Russell King - ARM Linux | c370e59 | 2011-01-03 22:45:37 +0000 | [diff] [blame] | 1324 | unsigned long flags; |
| 1325 | int num_llis, ret; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1326 | |
| 1327 | num_llis = pl08x_fill_llis_for_desc(pl08x, txd); |
Russell King - ARM Linux | dafa731 | 2011-01-03 22:31:45 +0000 | [diff] [blame] | 1328 | if (!num_llis) { |
Viresh Kumar | 57001a6 | 2011-08-05 15:32:45 +0530 | [diff] [blame] | 1329 | spin_lock_irqsave(&plchan->lock, flags); |
| 1330 | pl08x_free_txd(pl08x, txd); |
| 1331 | spin_unlock_irqrestore(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1332 | return -EINVAL; |
Russell King - ARM Linux | dafa731 | 2011-01-03 22:31:45 +0000 | [diff] [blame] | 1333 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1334 | |
Russell King - ARM Linux | c370e59 | 2011-01-03 22:45:37 +0000 | [diff] [blame] | 1335 | spin_lock_irqsave(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1336 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1337 | /* |
| 1338 | * See if we already have a physical channel allocated, |
| 1339 | * else this is the time to try to get one. |
| 1340 | */ |
| 1341 | ret = prep_phy_channel(plchan, txd); |
| 1342 | if (ret) { |
| 1343 | /* |
Russell King - ARM Linux | 501e67e | 2011-01-03 22:44:57 +0000 | [diff] [blame] | 1344 | * No physical channel was available. |
| 1345 | * |
| 1346 | * memcpy transfers can be sorted out at submission time. |
| 1347 | * |
| 1348 | * Slave transfers may have been denied due to platform |
| 1349 | * channel muxing restrictions. Since there is no guarantee |
| 1350 | * that this will ever be resolved, and the signal must be |
| 1351 | * acquired AFTER acquiring the physical channel, we will let |
| 1352 | * them be NACK:ed with -EBUSY here. The drivers can retry |
| 1353 | * the prep() call if they are eager on doing this using DMA. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1354 | */ |
| 1355 | if (plchan->slave) { |
| 1356 | pl08x_free_txd_list(pl08x, plchan); |
Russell King - ARM Linux | 501e67e | 2011-01-03 22:44:57 +0000 | [diff] [blame] | 1357 | pl08x_free_txd(pl08x, txd); |
Russell King - ARM Linux | c370e59 | 2011-01-03 22:45:37 +0000 | [diff] [blame] | 1358 | spin_unlock_irqrestore(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1359 | return -EBUSY; |
| 1360 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1361 | } else |
| 1362 | /* |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 1363 | * Else we're all set, paused and ready to roll, status |
| 1364 | * will switch to PL08X_CHAN_RUNNING when we call |
| 1365 | * issue_pending(). If there is something running on the |
| 1366 | * channel already we don't change its state. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1367 | */ |
| 1368 | if (plchan->state == PL08X_CHAN_IDLE) |
| 1369 | plchan->state = PL08X_CHAN_PAUSED; |
| 1370 | |
Russell King - ARM Linux | c370e59 | 2011-01-03 22:45:37 +0000 | [diff] [blame] | 1371 | spin_unlock_irqrestore(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1372 | |
| 1373 | return 0; |
| 1374 | } |
| 1375 | |
Russell King - ARM Linux | c042879 | 2011-01-03 22:43:56 +0000 | [diff] [blame] | 1376 | static struct pl08x_txd *pl08x_get_txd(struct pl08x_dma_chan *plchan, |
| 1377 | unsigned long flags) |
Russell King - ARM Linux | ac3cd20 | 2011-01-03 22:35:49 +0000 | [diff] [blame] | 1378 | { |
Viresh Kumar | b201c11 | 2011-08-05 15:32:29 +0530 | [diff] [blame] | 1379 | struct pl08x_txd *txd = kzalloc(sizeof(*txd), GFP_NOWAIT); |
Russell King - ARM Linux | ac3cd20 | 2011-01-03 22:35:49 +0000 | [diff] [blame] | 1380 | |
| 1381 | if (txd) { |
| 1382 | dma_async_tx_descriptor_init(&txd->tx, &plchan->chan); |
Russell King - ARM Linux | c042879 | 2011-01-03 22:43:56 +0000 | [diff] [blame] | 1383 | txd->tx.flags = flags; |
Russell King - ARM Linux | ac3cd20 | 2011-01-03 22:35:49 +0000 | [diff] [blame] | 1384 | txd->tx.tx_submit = pl08x_tx_submit; |
| 1385 | INIT_LIST_HEAD(&txd->node); |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1386 | INIT_LIST_HEAD(&txd->dsg_list); |
Russell King - ARM Linux | 4983a04 | 2011-01-03 22:39:33 +0000 | [diff] [blame] | 1387 | |
| 1388 | /* Always enable error and terminal interrupts */ |
| 1389 | txd->ccfg = PL080_CONFIG_ERR_IRQ_MASK | |
| 1390 | PL080_CONFIG_TC_IRQ_MASK; |
Russell King - ARM Linux | ac3cd20 | 2011-01-03 22:35:49 +0000 | [diff] [blame] | 1391 | } |
| 1392 | return txd; |
| 1393 | } |
| 1394 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1395 | /* |
| 1396 | * Initialize a descriptor to be used by memcpy submit |
| 1397 | */ |
| 1398 | static struct dma_async_tx_descriptor *pl08x_prep_dma_memcpy( |
| 1399 | struct dma_chan *chan, dma_addr_t dest, dma_addr_t src, |
| 1400 | size_t len, unsigned long flags) |
| 1401 | { |
| 1402 | struct pl08x_dma_chan *plchan = to_pl08x_chan(chan); |
| 1403 | struct pl08x_driver_data *pl08x = plchan->host; |
| 1404 | struct pl08x_txd *txd; |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1405 | struct pl08x_sg *dsg; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1406 | int ret; |
| 1407 | |
Russell King - ARM Linux | c042879 | 2011-01-03 22:43:56 +0000 | [diff] [blame] | 1408 | txd = pl08x_get_txd(plchan, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1409 | if (!txd) { |
| 1410 | dev_err(&pl08x->adev->dev, |
| 1411 | "%s no memory for descriptor\n", __func__); |
| 1412 | return NULL; |
| 1413 | } |
| 1414 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1415 | dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT); |
| 1416 | if (!dsg) { |
| 1417 | pl08x_free_txd(pl08x, txd); |
| 1418 | dev_err(&pl08x->adev->dev, "%s no memory for pl080 sg\n", |
| 1419 | __func__); |
| 1420 | return NULL; |
| 1421 | } |
| 1422 | list_add_tail(&dsg->node, &txd->dsg_list); |
| 1423 | |
Russell King | 92d2fd6 | 2012-05-25 14:37:56 +0100 | [diff] [blame] | 1424 | txd->direction = DMA_MEM_TO_MEM; |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1425 | dsg->src_addr = src; |
| 1426 | dsg->dst_addr = dest; |
| 1427 | dsg->len = len; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1428 | |
| 1429 | /* Set platform data for m2m */ |
Russell King - ARM Linux | 4983a04 | 2011-01-03 22:39:33 +0000 | [diff] [blame] | 1430 | txd->ccfg |= PL080_FLOW_MEM2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT; |
Russell King - ARM Linux | c7da9a5 | 2011-01-03 22:40:53 +0000 | [diff] [blame] | 1431 | txd->cctl = pl08x->pd->memcpy_channel.cctl & |
| 1432 | ~(PL080_CONTROL_DST_AHB2 | PL080_CONTROL_SRC_AHB2); |
Russell King - ARM Linux | 4983a04 | 2011-01-03 22:39:33 +0000 | [diff] [blame] | 1433 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1434 | /* Both to be incremented or the code will break */ |
Russell King - ARM Linux | 70b5ed6 | 2011-01-03 22:40:13 +0000 | [diff] [blame] | 1435 | txd->cctl |= PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR; |
Russell King - ARM Linux | c7da9a5 | 2011-01-03 22:40:53 +0000 | [diff] [blame] | 1436 | |
Russell King - ARM Linux | c7da9a5 | 2011-01-03 22:40:53 +0000 | [diff] [blame] | 1437 | if (pl08x->vd->dualmaster) |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1438 | txd->cctl |= pl08x_select_bus(pl08x->mem_buses, |
| 1439 | pl08x->mem_buses); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1440 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1441 | ret = pl08x_prep_channel_resources(plchan, txd); |
| 1442 | if (ret) |
| 1443 | return NULL; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1444 | |
| 1445 | return &txd->tx; |
| 1446 | } |
| 1447 | |
Russell King - ARM Linux | 3e2a037 | 2011-01-03 22:32:46 +0000 | [diff] [blame] | 1448 | static struct dma_async_tx_descriptor *pl08x_prep_slave_sg( |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1449 | struct dma_chan *chan, struct scatterlist *sgl, |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1450 | unsigned int sg_len, enum dma_transfer_direction direction, |
Alexandre Bounine | 185ecb5 | 2012-03-08 15:35:13 -0500 | [diff] [blame] | 1451 | unsigned long flags, void *context) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1452 | { |
| 1453 | struct pl08x_dma_chan *plchan = to_pl08x_chan(chan); |
| 1454 | struct pl08x_driver_data *pl08x = plchan->host; |
| 1455 | struct pl08x_txd *txd; |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1456 | struct pl08x_sg *dsg; |
| 1457 | struct scatterlist *sg; |
| 1458 | dma_addr_t slave_addr; |
Viresh Kumar | 0a23565 | 2011-08-05 15:32:42 +0530 | [diff] [blame] | 1459 | int ret, tmp; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1460 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1461 | dev_dbg(&pl08x->adev->dev, "%s prepare transaction of %d bytes from %s\n", |
Lars-Peter Clausen | fdaf9c4 | 2012-04-25 20:50:52 +0200 | [diff] [blame] | 1462 | __func__, sg_dma_len(sgl), plchan->name); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1463 | |
Russell King - ARM Linux | c042879 | 2011-01-03 22:43:56 +0000 | [diff] [blame] | 1464 | txd = pl08x_get_txd(plchan, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1465 | if (!txd) { |
| 1466 | dev_err(&pl08x->adev->dev, "%s no txd\n", __func__); |
| 1467 | return NULL; |
| 1468 | } |
| 1469 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1470 | if (direction != plchan->runtime_direction) |
| 1471 | dev_err(&pl08x->adev->dev, "%s DMA setup does not match " |
| 1472 | "the direction configured for the PrimeCell\n", |
| 1473 | __func__); |
| 1474 | |
| 1475 | /* |
| 1476 | * Set up addresses, the PrimeCell configured address |
| 1477 | * will take precedence since this may configure the |
| 1478 | * channel target address dynamically at runtime. |
| 1479 | */ |
| 1480 | txd->direction = direction; |
Russell King - ARM Linux | c7da9a5 | 2011-01-03 22:40:53 +0000 | [diff] [blame] | 1481 | |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1482 | if (direction == DMA_MEM_TO_DEV) { |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1483 | txd->cctl = plchan->dst_cctl; |
Russell King | ed91c13 | 2012-05-16 11:02:40 +0100 | [diff] [blame^] | 1484 | slave_addr = plchan->cfg.dst_addr; |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1485 | } else if (direction == DMA_DEV_TO_MEM) { |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1486 | txd->cctl = plchan->src_cctl; |
Russell King | ed91c13 | 2012-05-16 11:02:40 +0100 | [diff] [blame^] | 1487 | slave_addr = plchan->cfg.src_addr; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1488 | } else { |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1489 | pl08x_free_txd(pl08x, txd); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1490 | dev_err(&pl08x->adev->dev, |
| 1491 | "%s direction unsupported\n", __func__); |
| 1492 | return NULL; |
| 1493 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1494 | |
Viresh Kumar | 8c9f7aa | 2012-02-01 16:12:20 +0530 | [diff] [blame] | 1495 | if (plchan->device_fc) |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1496 | tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER_PER : |
Viresh Kumar | 0a23565 | 2011-08-05 15:32:42 +0530 | [diff] [blame] | 1497 | PL080_FLOW_PER2MEM_PER; |
| 1498 | else |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1499 | tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER : |
Viresh Kumar | 0a23565 | 2011-08-05 15:32:42 +0530 | [diff] [blame] | 1500 | PL080_FLOW_PER2MEM; |
| 1501 | |
| 1502 | txd->ccfg |= tmp << PL080_CONFIG_FLOW_CONTROL_SHIFT; |
| 1503 | |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1504 | for_each_sg(sgl, sg, sg_len, tmp) { |
| 1505 | dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT); |
| 1506 | if (!dsg) { |
| 1507 | pl08x_free_txd(pl08x, txd); |
| 1508 | dev_err(&pl08x->adev->dev, "%s no mem for pl080 sg\n", |
| 1509 | __func__); |
| 1510 | return NULL; |
| 1511 | } |
| 1512 | list_add_tail(&dsg->node, &txd->dsg_list); |
| 1513 | |
| 1514 | dsg->len = sg_dma_len(sg); |
Vinod Koul | db8196d | 2011-10-13 22:34:23 +0530 | [diff] [blame] | 1515 | if (direction == DMA_MEM_TO_DEV) { |
Lars-Peter Clausen | cbb796c | 2012-04-25 20:50:51 +0200 | [diff] [blame] | 1516 | dsg->src_addr = sg_dma_address(sg); |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1517 | dsg->dst_addr = slave_addr; |
| 1518 | } else { |
| 1519 | dsg->src_addr = slave_addr; |
Lars-Peter Clausen | cbb796c | 2012-04-25 20:50:51 +0200 | [diff] [blame] | 1520 | dsg->dst_addr = sg_dma_address(sg); |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1521 | } |
| 1522 | } |
| 1523 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1524 | ret = pl08x_prep_channel_resources(plchan, txd); |
| 1525 | if (ret) |
| 1526 | return NULL; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1527 | |
| 1528 | return &txd->tx; |
| 1529 | } |
| 1530 | |
| 1531 | static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd, |
| 1532 | unsigned long arg) |
| 1533 | { |
| 1534 | struct pl08x_dma_chan *plchan = to_pl08x_chan(chan); |
| 1535 | struct pl08x_driver_data *pl08x = plchan->host; |
| 1536 | unsigned long flags; |
| 1537 | int ret = 0; |
| 1538 | |
| 1539 | /* Controls applicable to inactive channels */ |
| 1540 | if (cmd == DMA_SLAVE_CONFIG) { |
Russell King - ARM Linux | f0fd944 | 2011-01-03 22:45:57 +0000 | [diff] [blame] | 1541 | return dma_set_runtime_config(chan, |
| 1542 | (struct dma_slave_config *)arg); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1543 | } |
| 1544 | |
| 1545 | /* |
| 1546 | * Anything succeeds on channels with no physical allocation and |
| 1547 | * no queued transfers. |
| 1548 | */ |
| 1549 | spin_lock_irqsave(&plchan->lock, flags); |
| 1550 | if (!plchan->phychan && !plchan->at) { |
| 1551 | spin_unlock_irqrestore(&plchan->lock, flags); |
| 1552 | return 0; |
| 1553 | } |
| 1554 | |
| 1555 | switch (cmd) { |
| 1556 | case DMA_TERMINATE_ALL: |
| 1557 | plchan->state = PL08X_CHAN_IDLE; |
| 1558 | |
| 1559 | if (plchan->phychan) { |
Russell King - ARM Linux | fb52621 | 2011-01-27 12:32:53 +0000 | [diff] [blame] | 1560 | pl08x_terminate_phy_chan(pl08x, plchan->phychan); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1561 | |
| 1562 | /* |
| 1563 | * Mark physical channel as free and free any slave |
| 1564 | * signal |
| 1565 | */ |
Russell King - ARM Linux | 8c8cc2b | 2011-01-03 22:36:09 +0000 | [diff] [blame] | 1566 | release_phy_channel(plchan); |
Davide Ciminaghi | 88c08a3 | 2012-04-19 12:20:24 +0200 | [diff] [blame] | 1567 | plchan->phychan_hold = 0; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1568 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1569 | /* Dequeue jobs and free LLIs */ |
| 1570 | if (plchan->at) { |
| 1571 | pl08x_free_txd(pl08x, plchan->at); |
| 1572 | plchan->at = NULL; |
| 1573 | } |
| 1574 | /* Dequeue jobs not yet fired as well */ |
| 1575 | pl08x_free_txd_list(pl08x, plchan); |
| 1576 | break; |
| 1577 | case DMA_PAUSE: |
| 1578 | pl08x_pause_phy_chan(plchan->phychan); |
| 1579 | plchan->state = PL08X_CHAN_PAUSED; |
| 1580 | break; |
| 1581 | case DMA_RESUME: |
| 1582 | pl08x_resume_phy_chan(plchan->phychan); |
| 1583 | plchan->state = PL08X_CHAN_RUNNING; |
| 1584 | break; |
| 1585 | default: |
| 1586 | /* Unknown command */ |
| 1587 | ret = -ENXIO; |
| 1588 | break; |
| 1589 | } |
| 1590 | |
| 1591 | spin_unlock_irqrestore(&plchan->lock, flags); |
| 1592 | |
| 1593 | return ret; |
| 1594 | } |
| 1595 | |
| 1596 | bool pl08x_filter_id(struct dma_chan *chan, void *chan_id) |
| 1597 | { |
Russell King - ARM Linux | 7703eac | 2011-08-31 09:34:35 +0100 | [diff] [blame] | 1598 | struct pl08x_dma_chan *plchan; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1599 | char *name = chan_id; |
| 1600 | |
Russell King - ARM Linux | 7703eac | 2011-08-31 09:34:35 +0100 | [diff] [blame] | 1601 | /* Reject channels for devices not bound to this driver */ |
| 1602 | if (chan->device->dev->driver != &pl08x_amba_driver.drv) |
| 1603 | return false; |
| 1604 | |
| 1605 | plchan = to_pl08x_chan(chan); |
| 1606 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1607 | /* Check that the channel is not taken! */ |
| 1608 | if (!strcmp(plchan->name, name)) |
| 1609 | return true; |
| 1610 | |
| 1611 | return false; |
| 1612 | } |
| 1613 | |
| 1614 | /* |
| 1615 | * Just check that the device is there and active |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 1616 | * TODO: turn this bit on/off depending on the number of physical channels |
| 1617 | * actually used, if it is zero... well shut it off. That will save some |
| 1618 | * power. Cut the clock at the same time. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1619 | */ |
| 1620 | static void pl08x_ensure_on(struct pl08x_driver_data *pl08x) |
| 1621 | { |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 1622 | /* The Nomadik variant does not have the config register */ |
| 1623 | if (pl08x->vd->nomadik) |
| 1624 | return; |
Viresh Kumar | 48a59ef | 2011-08-05 15:32:34 +0530 | [diff] [blame] | 1625 | writel(PL080_CONFIG_ENABLE, pl08x->base + PL080_CONFIG); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1626 | } |
| 1627 | |
Russell King - ARM Linux | 3d992e1 | 2011-01-03 22:44:16 +0000 | [diff] [blame] | 1628 | static void pl08x_unmap_buffers(struct pl08x_txd *txd) |
| 1629 | { |
| 1630 | struct device *dev = txd->tx.chan->device->dev; |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1631 | struct pl08x_sg *dsg; |
Russell King - ARM Linux | 3d992e1 | 2011-01-03 22:44:16 +0000 | [diff] [blame] | 1632 | |
| 1633 | if (!(txd->tx.flags & DMA_COMPL_SKIP_SRC_UNMAP)) { |
| 1634 | if (txd->tx.flags & DMA_COMPL_SRC_UNMAP_SINGLE) |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1635 | list_for_each_entry(dsg, &txd->dsg_list, node) |
| 1636 | dma_unmap_single(dev, dsg->src_addr, dsg->len, |
| 1637 | DMA_TO_DEVICE); |
| 1638 | else { |
| 1639 | list_for_each_entry(dsg, &txd->dsg_list, node) |
| 1640 | dma_unmap_page(dev, dsg->src_addr, dsg->len, |
| 1641 | DMA_TO_DEVICE); |
| 1642 | } |
Russell King - ARM Linux | 3d992e1 | 2011-01-03 22:44:16 +0000 | [diff] [blame] | 1643 | } |
| 1644 | if (!(txd->tx.flags & DMA_COMPL_SKIP_DEST_UNMAP)) { |
| 1645 | if (txd->tx.flags & DMA_COMPL_DEST_UNMAP_SINGLE) |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1646 | list_for_each_entry(dsg, &txd->dsg_list, node) |
| 1647 | dma_unmap_single(dev, dsg->dst_addr, dsg->len, |
| 1648 | DMA_FROM_DEVICE); |
Russell King - ARM Linux | 3d992e1 | 2011-01-03 22:44:16 +0000 | [diff] [blame] | 1649 | else |
Viresh Kumar | b7f69d9 | 2011-08-05 15:32:43 +0530 | [diff] [blame] | 1650 | list_for_each_entry(dsg, &txd->dsg_list, node) |
| 1651 | dma_unmap_page(dev, dsg->dst_addr, dsg->len, |
| 1652 | DMA_FROM_DEVICE); |
Russell King - ARM Linux | 3d992e1 | 2011-01-03 22:44:16 +0000 | [diff] [blame] | 1653 | } |
| 1654 | } |
| 1655 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1656 | static void pl08x_tasklet(unsigned long data) |
| 1657 | { |
| 1658 | struct pl08x_dma_chan *plchan = (struct pl08x_dma_chan *) data; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1659 | struct pl08x_driver_data *pl08x = plchan->host; |
Russell King - ARM Linux | 858c21c | 2011-01-03 22:41:34 +0000 | [diff] [blame] | 1660 | struct pl08x_txd *txd; |
Russell King - ARM Linux | bf072af | 2011-01-03 22:31:24 +0000 | [diff] [blame] | 1661 | unsigned long flags; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1662 | |
Russell King - ARM Linux | bf072af | 2011-01-03 22:31:24 +0000 | [diff] [blame] | 1663 | spin_lock_irqsave(&plchan->lock, flags); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1664 | |
Russell King - ARM Linux | 858c21c | 2011-01-03 22:41:34 +0000 | [diff] [blame] | 1665 | txd = plchan->at; |
| 1666 | plchan->at = NULL; |
| 1667 | |
| 1668 | if (txd) { |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 1669 | /* Update last completed */ |
Russell King - ARM Linux | f7fbce0 | 2012-03-06 22:35:07 +0000 | [diff] [blame] | 1670 | dma_cookie_complete(&txd->tx); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1671 | } |
Russell King - ARM Linux | 8087aac | 2011-01-03 22:45:17 +0000 | [diff] [blame] | 1672 | |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 1673 | /* If a new descriptor is queued, set it up plchan->at is NULL here */ |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 1674 | if (!list_empty(&plchan->pend_list)) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1675 | struct pl08x_txd *next; |
| 1676 | |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 1677 | next = list_first_entry(&plchan->pend_list, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1678 | struct pl08x_txd, |
| 1679 | node); |
| 1680 | list_del(&next->node); |
Russell King - ARM Linux | c885bee | 2011-01-03 22:38:52 +0000 | [diff] [blame] | 1681 | |
| 1682 | pl08x_start_txd(plchan, next); |
Russell King - ARM Linux | 8087aac | 2011-01-03 22:45:17 +0000 | [diff] [blame] | 1683 | } else if (plchan->phychan_hold) { |
| 1684 | /* |
| 1685 | * This channel is still in use - we have a new txd being |
| 1686 | * prepared and will soon be queued. Don't give up the |
| 1687 | * physical channel. |
| 1688 | */ |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1689 | } else { |
| 1690 | struct pl08x_dma_chan *waiting = NULL; |
| 1691 | |
| 1692 | /* |
| 1693 | * No more jobs, so free up the physical channel |
| 1694 | * Free any allocated signal on slave transfers too |
| 1695 | */ |
Russell King - ARM Linux | 8c8cc2b | 2011-01-03 22:36:09 +0000 | [diff] [blame] | 1696 | release_phy_channel(plchan); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1697 | plchan->state = PL08X_CHAN_IDLE; |
| 1698 | |
| 1699 | /* |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 1700 | * And NOW before anyone else can grab that free:d up |
| 1701 | * physical channel, see if there is some memcpy pending |
| 1702 | * that seriously needs to start because of being stacked |
| 1703 | * up while we were choking the physical channels with data. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1704 | */ |
| 1705 | list_for_each_entry(waiting, &pl08x->memcpy.channels, |
| 1706 | chan.device_node) { |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 1707 | if (waiting->state == PL08X_CHAN_WAITING && |
| 1708 | waiting->waiting != NULL) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1709 | int ret; |
| 1710 | |
| 1711 | /* This should REALLY not fail now */ |
| 1712 | ret = prep_phy_channel(waiting, |
| 1713 | waiting->waiting); |
| 1714 | BUG_ON(ret); |
Russell King - ARM Linux | 8087aac | 2011-01-03 22:45:17 +0000 | [diff] [blame] | 1715 | waiting->phychan_hold--; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1716 | waiting->state = PL08X_CHAN_RUNNING; |
| 1717 | waiting->waiting = NULL; |
| 1718 | pl08x_issue_pending(&waiting->chan); |
| 1719 | break; |
| 1720 | } |
| 1721 | } |
| 1722 | } |
| 1723 | |
Russell King - ARM Linux | bf072af | 2011-01-03 22:31:24 +0000 | [diff] [blame] | 1724 | spin_unlock_irqrestore(&plchan->lock, flags); |
Russell King - ARM Linux | 858c21c | 2011-01-03 22:41:34 +0000 | [diff] [blame] | 1725 | |
Russell King - ARM Linux | 3d992e1 | 2011-01-03 22:44:16 +0000 | [diff] [blame] | 1726 | if (txd) { |
| 1727 | dma_async_tx_callback callback = txd->tx.callback; |
| 1728 | void *callback_param = txd->tx.callback_param; |
| 1729 | |
| 1730 | /* Don't try to unmap buffers on slave channels */ |
| 1731 | if (!plchan->slave) |
| 1732 | pl08x_unmap_buffers(txd); |
| 1733 | |
| 1734 | /* Free the descriptor */ |
| 1735 | spin_lock_irqsave(&plchan->lock, flags); |
| 1736 | pl08x_free_txd(pl08x, txd); |
| 1737 | spin_unlock_irqrestore(&plchan->lock, flags); |
| 1738 | |
| 1739 | /* Callback to signal completion */ |
| 1740 | if (callback) |
| 1741 | callback(callback_param); |
| 1742 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1743 | } |
| 1744 | |
| 1745 | static irqreturn_t pl08x_irq(int irq, void *dev) |
| 1746 | { |
| 1747 | struct pl08x_driver_data *pl08x = dev; |
Viresh Kumar | 28da283 | 2011-08-05 15:32:36 +0530 | [diff] [blame] | 1748 | u32 mask = 0, err, tc, i; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1749 | |
Viresh Kumar | 28da283 | 2011-08-05 15:32:36 +0530 | [diff] [blame] | 1750 | /* check & clear - ERR & TC interrupts */ |
| 1751 | err = readl(pl08x->base + PL080_ERR_STATUS); |
| 1752 | if (err) { |
| 1753 | dev_err(&pl08x->adev->dev, "%s error interrupt, register value 0x%08x\n", |
| 1754 | __func__, err); |
| 1755 | writel(err, pl08x->base + PL080_ERR_CLEAR); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1756 | } |
Linus Walleij | d29bf01 | 2012-04-09 22:53:21 +0200 | [diff] [blame] | 1757 | tc = readl(pl08x->base + PL080_TC_STATUS); |
Viresh Kumar | 28da283 | 2011-08-05 15:32:36 +0530 | [diff] [blame] | 1758 | if (tc) |
| 1759 | writel(tc, pl08x->base + PL080_TC_CLEAR); |
| 1760 | |
| 1761 | if (!err && !tc) |
| 1762 | return IRQ_NONE; |
| 1763 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1764 | for (i = 0; i < pl08x->vd->channels; i++) { |
Viresh Kumar | 28da283 | 2011-08-05 15:32:36 +0530 | [diff] [blame] | 1765 | if (((1 << i) & err) || ((1 << i) & tc)) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1766 | /* Locate physical channel */ |
| 1767 | struct pl08x_phy_chan *phychan = &pl08x->phy_chans[i]; |
| 1768 | struct pl08x_dma_chan *plchan = phychan->serving; |
| 1769 | |
Viresh Kumar | 28da283 | 2011-08-05 15:32:36 +0530 | [diff] [blame] | 1770 | if (!plchan) { |
| 1771 | dev_err(&pl08x->adev->dev, |
| 1772 | "%s Error TC interrupt on unused channel: 0x%08x\n", |
| 1773 | __func__, i); |
| 1774 | continue; |
| 1775 | } |
| 1776 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1777 | /* Schedule tasklet on this channel */ |
| 1778 | tasklet_schedule(&plchan->tasklet); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1779 | mask |= (1 << i); |
| 1780 | } |
| 1781 | } |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1782 | |
| 1783 | return mask ? IRQ_HANDLED : IRQ_NONE; |
| 1784 | } |
| 1785 | |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1786 | static void pl08x_dma_slave_init(struct pl08x_dma_chan *chan) |
| 1787 | { |
| 1788 | u32 cctl = pl08x_cctl(chan->cd->cctl); |
| 1789 | |
| 1790 | chan->slave = true; |
| 1791 | chan->name = chan->cd->bus_id; |
Russell King | ed91c13 | 2012-05-16 11:02:40 +0100 | [diff] [blame^] | 1792 | chan->cfg.src_addr = chan->cd->addr; |
| 1793 | chan->cfg.dst_addr = chan->cd->addr; |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1794 | chan->src_cctl = cctl | PL080_CONTROL_DST_INCR | |
| 1795 | pl08x_select_bus(chan->cd->periph_buses, chan->host->mem_buses); |
| 1796 | chan->dst_cctl = cctl | PL080_CONTROL_SRC_INCR | |
| 1797 | pl08x_select_bus(chan->host->mem_buses, chan->cd->periph_buses); |
| 1798 | } |
| 1799 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1800 | /* |
| 1801 | * Initialise the DMAC memcpy/slave channels. |
| 1802 | * Make a local wrapper to hold required data |
| 1803 | */ |
| 1804 | static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x, |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 1805 | struct dma_device *dmadev, unsigned int channels, bool slave) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1806 | { |
| 1807 | struct pl08x_dma_chan *chan; |
| 1808 | int i; |
| 1809 | |
| 1810 | INIT_LIST_HEAD(&dmadev->channels); |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 1811 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1812 | /* |
| 1813 | * Register as many many memcpy as we have physical channels, |
| 1814 | * we won't always be able to use all but the code will have |
| 1815 | * to cope with that situation. |
| 1816 | */ |
| 1817 | for (i = 0; i < channels; i++) { |
Viresh Kumar | b201c11 | 2011-08-05 15:32:29 +0530 | [diff] [blame] | 1818 | chan = kzalloc(sizeof(*chan), GFP_KERNEL); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1819 | if (!chan) { |
| 1820 | dev_err(&pl08x->adev->dev, |
| 1821 | "%s no memory for channel\n", __func__); |
| 1822 | return -ENOMEM; |
| 1823 | } |
| 1824 | |
| 1825 | chan->host = pl08x; |
| 1826 | chan->state = PL08X_CHAN_IDLE; |
| 1827 | |
| 1828 | if (slave) { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1829 | chan->cd = &pl08x->pd->slave_channels[i]; |
Russell King - ARM Linux | 121c847 | 2011-07-21 17:13:48 +0100 | [diff] [blame] | 1830 | pl08x_dma_slave_init(chan); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1831 | } else { |
| 1832 | chan->cd = &pl08x->pd->memcpy_channel; |
| 1833 | chan->name = kasprintf(GFP_KERNEL, "memcpy%d", i); |
| 1834 | if (!chan->name) { |
| 1835 | kfree(chan); |
| 1836 | return -ENOMEM; |
| 1837 | } |
| 1838 | } |
Viresh Kumar | 175a5e6 | 2011-08-05 15:32:32 +0530 | [diff] [blame] | 1839 | dev_dbg(&pl08x->adev->dev, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1840 | "initialize virtual channel \"%s\"\n", |
| 1841 | chan->name); |
| 1842 | |
| 1843 | chan->chan.device = dmadev; |
Russell King - ARM Linux | d3ee98cdc | 2012-03-06 22:35:47 +0000 | [diff] [blame] | 1844 | dma_cookie_init(&chan->chan); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1845 | |
| 1846 | spin_lock_init(&chan->lock); |
Russell King - ARM Linux | 15c1723 | 2011-01-03 22:44:36 +0000 | [diff] [blame] | 1847 | INIT_LIST_HEAD(&chan->pend_list); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1848 | tasklet_init(&chan->tasklet, pl08x_tasklet, |
| 1849 | (unsigned long) chan); |
| 1850 | |
| 1851 | list_add_tail(&chan->chan.device_node, &dmadev->channels); |
| 1852 | } |
| 1853 | dev_info(&pl08x->adev->dev, "initialized %d virtual %s channels\n", |
| 1854 | i, slave ? "slave" : "memcpy"); |
| 1855 | return i; |
| 1856 | } |
| 1857 | |
| 1858 | static void pl08x_free_virtual_channels(struct dma_device *dmadev) |
| 1859 | { |
| 1860 | struct pl08x_dma_chan *chan = NULL; |
| 1861 | struct pl08x_dma_chan *next; |
| 1862 | |
| 1863 | list_for_each_entry_safe(chan, |
| 1864 | next, &dmadev->channels, chan.device_node) { |
| 1865 | list_del(&chan->chan.device_node); |
| 1866 | kfree(chan); |
| 1867 | } |
| 1868 | } |
| 1869 | |
| 1870 | #ifdef CONFIG_DEBUG_FS |
| 1871 | static const char *pl08x_state_str(enum pl08x_dma_chan_state state) |
| 1872 | { |
| 1873 | switch (state) { |
| 1874 | case PL08X_CHAN_IDLE: |
| 1875 | return "idle"; |
| 1876 | case PL08X_CHAN_RUNNING: |
| 1877 | return "running"; |
| 1878 | case PL08X_CHAN_PAUSED: |
| 1879 | return "paused"; |
| 1880 | case PL08X_CHAN_WAITING: |
| 1881 | return "waiting"; |
| 1882 | default: |
| 1883 | break; |
| 1884 | } |
| 1885 | return "UNKNOWN STATE"; |
| 1886 | } |
| 1887 | |
| 1888 | static int pl08x_debugfs_show(struct seq_file *s, void *data) |
| 1889 | { |
| 1890 | struct pl08x_driver_data *pl08x = s->private; |
| 1891 | struct pl08x_dma_chan *chan; |
| 1892 | struct pl08x_phy_chan *ch; |
| 1893 | unsigned long flags; |
| 1894 | int i; |
| 1895 | |
| 1896 | seq_printf(s, "PL08x physical channels:\n"); |
| 1897 | seq_printf(s, "CHANNEL:\tUSER:\n"); |
| 1898 | seq_printf(s, "--------\t-----\n"); |
| 1899 | for (i = 0; i < pl08x->vd->channels; i++) { |
| 1900 | struct pl08x_dma_chan *virt_chan; |
| 1901 | |
| 1902 | ch = &pl08x->phy_chans[i]; |
| 1903 | |
| 1904 | spin_lock_irqsave(&ch->lock, flags); |
| 1905 | virt_chan = ch->serving; |
| 1906 | |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 1907 | seq_printf(s, "%d\t\t%s%s\n", |
| 1908 | ch->id, |
| 1909 | virt_chan ? virt_chan->name : "(none)", |
| 1910 | ch->locked ? " LOCKED" : ""); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1911 | |
| 1912 | spin_unlock_irqrestore(&ch->lock, flags); |
| 1913 | } |
| 1914 | |
| 1915 | seq_printf(s, "\nPL08x virtual memcpy channels:\n"); |
| 1916 | seq_printf(s, "CHANNEL:\tSTATE:\n"); |
| 1917 | seq_printf(s, "--------\t------\n"); |
| 1918 | list_for_each_entry(chan, &pl08x->memcpy.channels, chan.device_node) { |
Russell King - ARM Linux | 3e2a037 | 2011-01-03 22:32:46 +0000 | [diff] [blame] | 1919 | seq_printf(s, "%s\t\t%s\n", chan->name, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1920 | pl08x_state_str(chan->state)); |
| 1921 | } |
| 1922 | |
| 1923 | seq_printf(s, "\nPL08x virtual slave channels:\n"); |
| 1924 | seq_printf(s, "CHANNEL:\tSTATE:\n"); |
| 1925 | seq_printf(s, "--------\t------\n"); |
| 1926 | list_for_each_entry(chan, &pl08x->slave.channels, chan.device_node) { |
Russell King - ARM Linux | 3e2a037 | 2011-01-03 22:32:46 +0000 | [diff] [blame] | 1927 | seq_printf(s, "%s\t\t%s\n", chan->name, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1928 | pl08x_state_str(chan->state)); |
| 1929 | } |
| 1930 | |
| 1931 | return 0; |
| 1932 | } |
| 1933 | |
| 1934 | static int pl08x_debugfs_open(struct inode *inode, struct file *file) |
| 1935 | { |
| 1936 | return single_open(file, pl08x_debugfs_show, inode->i_private); |
| 1937 | } |
| 1938 | |
| 1939 | static const struct file_operations pl08x_debugfs_operations = { |
| 1940 | .open = pl08x_debugfs_open, |
| 1941 | .read = seq_read, |
| 1942 | .llseek = seq_lseek, |
| 1943 | .release = single_release, |
| 1944 | }; |
| 1945 | |
| 1946 | static void init_pl08x_debugfs(struct pl08x_driver_data *pl08x) |
| 1947 | { |
| 1948 | /* Expose a simple debugfs interface to view all clocks */ |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 1949 | (void) debugfs_create_file(dev_name(&pl08x->adev->dev), |
| 1950 | S_IFREG | S_IRUGO, NULL, pl08x, |
| 1951 | &pl08x_debugfs_operations); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1952 | } |
| 1953 | |
| 1954 | #else |
| 1955 | static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x) |
| 1956 | { |
| 1957 | } |
| 1958 | #endif |
| 1959 | |
Russell King | aa25afa | 2011-02-19 15:55:00 +0000 | [diff] [blame] | 1960 | static int pl08x_probe(struct amba_device *adev, const struct amba_id *id) |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1961 | { |
| 1962 | struct pl08x_driver_data *pl08x; |
Russell King - ARM Linux | f96ca9ec | 2011-01-03 22:35:08 +0000 | [diff] [blame] | 1963 | const struct vendor_data *vd = id->data; |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1964 | int ret = 0; |
| 1965 | int i; |
| 1966 | |
| 1967 | ret = amba_request_regions(adev, NULL); |
| 1968 | if (ret) |
| 1969 | return ret; |
| 1970 | |
| 1971 | /* Create the driver state holder */ |
Viresh Kumar | b201c11 | 2011-08-05 15:32:29 +0530 | [diff] [blame] | 1972 | pl08x = kzalloc(sizeof(*pl08x), GFP_KERNEL); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 1973 | if (!pl08x) { |
| 1974 | ret = -ENOMEM; |
| 1975 | goto out_no_pl08x; |
| 1976 | } |
| 1977 | |
| 1978 | /* Initialize memcpy engine */ |
| 1979 | dma_cap_set(DMA_MEMCPY, pl08x->memcpy.cap_mask); |
| 1980 | pl08x->memcpy.dev = &adev->dev; |
| 1981 | pl08x->memcpy.device_alloc_chan_resources = pl08x_alloc_chan_resources; |
| 1982 | pl08x->memcpy.device_free_chan_resources = pl08x_free_chan_resources; |
| 1983 | pl08x->memcpy.device_prep_dma_memcpy = pl08x_prep_dma_memcpy; |
| 1984 | pl08x->memcpy.device_prep_dma_interrupt = pl08x_prep_dma_interrupt; |
| 1985 | pl08x->memcpy.device_tx_status = pl08x_dma_tx_status; |
| 1986 | pl08x->memcpy.device_issue_pending = pl08x_issue_pending; |
| 1987 | pl08x->memcpy.device_control = pl08x_control; |
| 1988 | |
| 1989 | /* Initialize slave engine */ |
| 1990 | dma_cap_set(DMA_SLAVE, pl08x->slave.cap_mask); |
| 1991 | pl08x->slave.dev = &adev->dev; |
| 1992 | pl08x->slave.device_alloc_chan_resources = pl08x_alloc_chan_resources; |
| 1993 | pl08x->slave.device_free_chan_resources = pl08x_free_chan_resources; |
| 1994 | pl08x->slave.device_prep_dma_interrupt = pl08x_prep_dma_interrupt; |
| 1995 | pl08x->slave.device_tx_status = pl08x_dma_tx_status; |
| 1996 | pl08x->slave.device_issue_pending = pl08x_issue_pending; |
| 1997 | pl08x->slave.device_prep_slave_sg = pl08x_prep_slave_sg; |
| 1998 | pl08x->slave.device_control = pl08x_control; |
| 1999 | |
| 2000 | /* Get the platform data */ |
| 2001 | pl08x->pd = dev_get_platdata(&adev->dev); |
| 2002 | if (!pl08x->pd) { |
| 2003 | dev_err(&adev->dev, "no platform data supplied\n"); |
| 2004 | goto out_no_platdata; |
| 2005 | } |
| 2006 | |
| 2007 | /* Assign useful pointers to the driver state */ |
| 2008 | pl08x->adev = adev; |
| 2009 | pl08x->vd = vd; |
| 2010 | |
Russell King - ARM Linux | 30749cb | 2011-01-03 22:41:13 +0000 | [diff] [blame] | 2011 | /* By default, AHB1 only. If dualmaster, from platform */ |
| 2012 | pl08x->lli_buses = PL08X_AHB1; |
| 2013 | pl08x->mem_buses = PL08X_AHB1; |
| 2014 | if (pl08x->vd->dualmaster) { |
| 2015 | pl08x->lli_buses = pl08x->pd->lli_buses; |
| 2016 | pl08x->mem_buses = pl08x->pd->mem_buses; |
| 2017 | } |
| 2018 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2019 | /* A DMA memory pool for LLIs, align on 1-byte boundary */ |
| 2020 | pl08x->pool = dma_pool_create(DRIVER_NAME, &pl08x->adev->dev, |
| 2021 | PL08X_LLI_TSFR_SIZE, PL08X_ALIGN, 0); |
| 2022 | if (!pl08x->pool) { |
| 2023 | ret = -ENOMEM; |
| 2024 | goto out_no_lli_pool; |
| 2025 | } |
| 2026 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2027 | pl08x->base = ioremap(adev->res.start, resource_size(&adev->res)); |
| 2028 | if (!pl08x->base) { |
| 2029 | ret = -ENOMEM; |
| 2030 | goto out_no_ioremap; |
| 2031 | } |
| 2032 | |
| 2033 | /* Turn on the PL08x */ |
| 2034 | pl08x_ensure_on(pl08x); |
| 2035 | |
Russell King - ARM Linux | 94ae852 | 2011-01-16 20:18:05 +0000 | [diff] [blame] | 2036 | /* Attach the interrupt handler */ |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2037 | writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR); |
| 2038 | writel(0x000000FF, pl08x->base + PL080_TC_CLEAR); |
| 2039 | |
| 2040 | ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED, |
Russell King - ARM Linux | b05cd8f | 2011-01-03 22:33:26 +0000 | [diff] [blame] | 2041 | DRIVER_NAME, pl08x); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2042 | if (ret) { |
| 2043 | dev_err(&adev->dev, "%s failed to request interrupt %d\n", |
| 2044 | __func__, adev->irq[0]); |
| 2045 | goto out_no_irq; |
| 2046 | } |
| 2047 | |
| 2048 | /* Initialize physical channels */ |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 2049 | pl08x->phy_chans = kzalloc((vd->channels * sizeof(*pl08x->phy_chans)), |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2050 | GFP_KERNEL); |
| 2051 | if (!pl08x->phy_chans) { |
| 2052 | dev_err(&adev->dev, "%s failed to allocate " |
| 2053 | "physical channel holders\n", |
| 2054 | __func__); |
| 2055 | goto out_no_phychans; |
| 2056 | } |
| 2057 | |
| 2058 | for (i = 0; i < vd->channels; i++) { |
| 2059 | struct pl08x_phy_chan *ch = &pl08x->phy_chans[i]; |
| 2060 | |
| 2061 | ch->id = i; |
| 2062 | ch->base = pl08x->base + PL080_Cx_BASE(i); |
| 2063 | spin_lock_init(&ch->lock); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2064 | ch->signal = -1; |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 2065 | |
| 2066 | /* |
| 2067 | * Nomadik variants can have channels that are locked |
| 2068 | * down for the secure world only. Lock up these channels |
| 2069 | * by perpetually serving a dummy virtual channel. |
| 2070 | */ |
| 2071 | if (vd->nomadik) { |
| 2072 | u32 val; |
| 2073 | |
| 2074 | val = readl(ch->base + PL080_CH_CONFIG); |
| 2075 | if (val & (PL080N_CONFIG_ITPROT | PL080N_CONFIG_SECPROT)) { |
| 2076 | dev_info(&adev->dev, "physical channel %d reserved for secure access only\n", i); |
| 2077 | ch->locked = true; |
| 2078 | } |
| 2079 | } |
| 2080 | |
Viresh Kumar | 175a5e6 | 2011-08-05 15:32:32 +0530 | [diff] [blame] | 2081 | dev_dbg(&adev->dev, "physical channel %d is %s\n", |
| 2082 | i, pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE"); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2083 | } |
| 2084 | |
| 2085 | /* Register as many memcpy channels as there are physical channels */ |
| 2086 | ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->memcpy, |
| 2087 | pl08x->vd->channels, false); |
| 2088 | if (ret <= 0) { |
| 2089 | dev_warn(&pl08x->adev->dev, |
| 2090 | "%s failed to enumerate memcpy channels - %d\n", |
| 2091 | __func__, ret); |
| 2092 | goto out_no_memcpy; |
| 2093 | } |
| 2094 | pl08x->memcpy.chancnt = ret; |
| 2095 | |
| 2096 | /* Register slave channels */ |
| 2097 | ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->slave, |
Viresh Kumar | 3e27ee8 | 2011-08-05 15:32:27 +0530 | [diff] [blame] | 2098 | pl08x->pd->num_slave_channels, true); |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2099 | if (ret <= 0) { |
| 2100 | dev_warn(&pl08x->adev->dev, |
| 2101 | "%s failed to enumerate slave channels - %d\n", |
| 2102 | __func__, ret); |
| 2103 | goto out_no_slave; |
| 2104 | } |
| 2105 | pl08x->slave.chancnt = ret; |
| 2106 | |
| 2107 | ret = dma_async_device_register(&pl08x->memcpy); |
| 2108 | if (ret) { |
| 2109 | dev_warn(&pl08x->adev->dev, |
| 2110 | "%s failed to register memcpy as an async device - %d\n", |
| 2111 | __func__, ret); |
| 2112 | goto out_no_memcpy_reg; |
| 2113 | } |
| 2114 | |
| 2115 | ret = dma_async_device_register(&pl08x->slave); |
| 2116 | if (ret) { |
| 2117 | dev_warn(&pl08x->adev->dev, |
| 2118 | "%s failed to register slave as an async device - %d\n", |
| 2119 | __func__, ret); |
| 2120 | goto out_no_slave_reg; |
| 2121 | } |
| 2122 | |
| 2123 | amba_set_drvdata(adev, pl08x); |
| 2124 | init_pl08x_debugfs(pl08x); |
Russell King - ARM Linux | b05cd8f | 2011-01-03 22:33:26 +0000 | [diff] [blame] | 2125 | dev_info(&pl08x->adev->dev, "DMA: PL%03x rev%u at 0x%08llx irq %d\n", |
| 2126 | amba_part(adev), amba_rev(adev), |
| 2127 | (unsigned long long)adev->res.start, adev->irq[0]); |
Viresh Kumar | b7b6018 | 2011-08-05 15:32:33 +0530 | [diff] [blame] | 2128 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2129 | return 0; |
| 2130 | |
| 2131 | out_no_slave_reg: |
| 2132 | dma_async_device_unregister(&pl08x->memcpy); |
| 2133 | out_no_memcpy_reg: |
| 2134 | pl08x_free_virtual_channels(&pl08x->slave); |
| 2135 | out_no_slave: |
| 2136 | pl08x_free_virtual_channels(&pl08x->memcpy); |
| 2137 | out_no_memcpy: |
| 2138 | kfree(pl08x->phy_chans); |
| 2139 | out_no_phychans: |
| 2140 | free_irq(adev->irq[0], pl08x); |
| 2141 | out_no_irq: |
| 2142 | iounmap(pl08x->base); |
| 2143 | out_no_ioremap: |
| 2144 | dma_pool_destroy(pl08x->pool); |
| 2145 | out_no_lli_pool: |
| 2146 | out_no_platdata: |
| 2147 | kfree(pl08x); |
| 2148 | out_no_pl08x: |
| 2149 | amba_release_regions(adev); |
| 2150 | return ret; |
| 2151 | } |
| 2152 | |
| 2153 | /* PL080 has 8 channels and the PL080 have just 2 */ |
| 2154 | static struct vendor_data vendor_pl080 = { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2155 | .channels = 8, |
| 2156 | .dualmaster = true, |
| 2157 | }; |
| 2158 | |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 2159 | static struct vendor_data vendor_nomadik = { |
| 2160 | .channels = 8, |
| 2161 | .dualmaster = true, |
| 2162 | .nomadik = true, |
| 2163 | }; |
| 2164 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2165 | static struct vendor_data vendor_pl081 = { |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2166 | .channels = 2, |
| 2167 | .dualmaster = false, |
| 2168 | }; |
| 2169 | |
| 2170 | static struct amba_id pl08x_ids[] = { |
| 2171 | /* PL080 */ |
| 2172 | { |
| 2173 | .id = 0x00041080, |
| 2174 | .mask = 0x000fffff, |
| 2175 | .data = &vendor_pl080, |
| 2176 | }, |
| 2177 | /* PL081 */ |
| 2178 | { |
| 2179 | .id = 0x00041081, |
| 2180 | .mask = 0x000fffff, |
| 2181 | .data = &vendor_pl081, |
| 2182 | }, |
| 2183 | /* Nomadik 8815 PL080 variant */ |
| 2184 | { |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 2185 | .id = 0x00280080, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2186 | .mask = 0x00ffffff, |
Linus Walleij | affa115 | 2012-04-12 09:01:49 +0200 | [diff] [blame] | 2187 | .data = &vendor_nomadik, |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2188 | }, |
| 2189 | { 0, 0 }, |
| 2190 | }; |
| 2191 | |
Dave Martin | 037566d | 2011-10-05 15:15:20 +0100 | [diff] [blame] | 2192 | MODULE_DEVICE_TABLE(amba, pl08x_ids); |
| 2193 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2194 | static struct amba_driver pl08x_amba_driver = { |
| 2195 | .drv.name = DRIVER_NAME, |
| 2196 | .id_table = pl08x_ids, |
| 2197 | .probe = pl08x_probe, |
| 2198 | }; |
| 2199 | |
| 2200 | static int __init pl08x_init(void) |
| 2201 | { |
| 2202 | int retval; |
| 2203 | retval = amba_driver_register(&pl08x_amba_driver); |
| 2204 | if (retval) |
| 2205 | printk(KERN_WARNING DRIVER_NAME |
Russell King - ARM Linux | e8b5e11 | 2011-01-03 22:30:24 +0000 | [diff] [blame] | 2206 | "failed to register as an AMBA device (%d)\n", |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 2207 | retval); |
| 2208 | return retval; |
| 2209 | } |
| 2210 | subsys_initcall(pl08x_init); |