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