Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1 | /* |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2 | * A driver for the ARM PL022 PrimeCell SSP/SPI bus master. |
| 3 | * |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 4 | * Copyright (C) 2008-2012 ST-Ericsson AB |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 5 | * Copyright (C) 2006 STMicroelectronics Pvt. Ltd. |
| 6 | * |
| 7 | * Author: Linus Walleij <linus.walleij@stericsson.com> |
| 8 | * |
| 9 | * Initial version inspired by: |
| 10 | * linux-2.6.17-rc3-mm1/drivers/spi/pxa2xx_spi.c |
| 11 | * Initial adoption to PL022 by: |
| 12 | * Sachin Verma <sachin.verma@st.com> |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; either version 2 of the License, or |
| 17 | * (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | */ |
| 24 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 25 | #include <linux/init.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/device.h> |
| 28 | #include <linux/ioport.h> |
| 29 | #include <linux/errno.h> |
| 30 | #include <linux/interrupt.h> |
| 31 | #include <linux/spi/spi.h> |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 32 | #include <linux/delay.h> |
| 33 | #include <linux/clk.h> |
| 34 | #include <linux/err.h> |
| 35 | #include <linux/amba/bus.h> |
| 36 | #include <linux/amba/pl022.h> |
| 37 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | #include <linux/slab.h> |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 39 | #include <linux/dmaengine.h> |
| 40 | #include <linux/dma-mapping.h> |
| 41 | #include <linux/scatterlist.h> |
Rabin Vincent | bcda6ff | 2011-06-16 10:14:40 +0200 | [diff] [blame] | 42 | #include <linux/pm_runtime.h> |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 43 | #include <linux/gpio.h> |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 44 | #include <linux/of_gpio.h> |
Patrice Chotard | 4f5e1b3 | 2012-09-19 14:23:46 +0200 | [diff] [blame] | 45 | #include <linux/pinctrl/consumer.h> |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * This macro is used to define some register default values. |
| 49 | * reg is masked with mask, the OR:ed with an (again masked) |
| 50 | * val shifted sb steps to the left. |
| 51 | */ |
| 52 | #define SSP_WRITE_BITS(reg, val, mask, sb) \ |
| 53 | ((reg) = (((reg) & ~(mask)) | (((val)<<(sb)) & (mask)))) |
| 54 | |
| 55 | /* |
| 56 | * This macro is also used to define some default values. |
| 57 | * It will just shift val by sb steps to the left and mask |
| 58 | * the result with mask. |
| 59 | */ |
| 60 | #define GEN_MASK_BITS(val, mask, sb) \ |
| 61 | (((val)<<(sb)) & (mask)) |
| 62 | |
| 63 | #define DRIVE_TX 0 |
| 64 | #define DO_NOT_DRIVE_TX 1 |
| 65 | |
| 66 | #define DO_NOT_QUEUE_DMA 0 |
| 67 | #define QUEUE_DMA 1 |
| 68 | |
| 69 | #define RX_TRANSFER 1 |
| 70 | #define TX_TRANSFER 2 |
| 71 | |
| 72 | /* |
| 73 | * Macros to access SSP Registers with their offsets |
| 74 | */ |
| 75 | #define SSP_CR0(r) (r + 0x000) |
| 76 | #define SSP_CR1(r) (r + 0x004) |
| 77 | #define SSP_DR(r) (r + 0x008) |
| 78 | #define SSP_SR(r) (r + 0x00C) |
| 79 | #define SSP_CPSR(r) (r + 0x010) |
| 80 | #define SSP_IMSC(r) (r + 0x014) |
| 81 | #define SSP_RIS(r) (r + 0x018) |
| 82 | #define SSP_MIS(r) (r + 0x01C) |
| 83 | #define SSP_ICR(r) (r + 0x020) |
| 84 | #define SSP_DMACR(r) (r + 0x024) |
| 85 | #define SSP_ITCR(r) (r + 0x080) |
| 86 | #define SSP_ITIP(r) (r + 0x084) |
| 87 | #define SSP_ITOP(r) (r + 0x088) |
| 88 | #define SSP_TDR(r) (r + 0x08C) |
| 89 | |
| 90 | #define SSP_PID0(r) (r + 0xFE0) |
| 91 | #define SSP_PID1(r) (r + 0xFE4) |
| 92 | #define SSP_PID2(r) (r + 0xFE8) |
| 93 | #define SSP_PID3(r) (r + 0xFEC) |
| 94 | |
| 95 | #define SSP_CID0(r) (r + 0xFF0) |
| 96 | #define SSP_CID1(r) (r + 0xFF4) |
| 97 | #define SSP_CID2(r) (r + 0xFF8) |
| 98 | #define SSP_CID3(r) (r + 0xFFC) |
| 99 | |
| 100 | /* |
| 101 | * SSP Control Register 0 - SSP_CR0 |
| 102 | */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 103 | #define SSP_CR0_MASK_DSS (0x0FUL << 0) |
| 104 | #define SSP_CR0_MASK_FRF (0x3UL << 4) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 105 | #define SSP_CR0_MASK_SPO (0x1UL << 6) |
| 106 | #define SSP_CR0_MASK_SPH (0x1UL << 7) |
| 107 | #define SSP_CR0_MASK_SCR (0xFFUL << 8) |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 108 | |
| 109 | /* |
| 110 | * The ST version of this block moves som bits |
| 111 | * in SSP_CR0 and extends it to 32 bits |
| 112 | */ |
| 113 | #define SSP_CR0_MASK_DSS_ST (0x1FUL << 0) |
| 114 | #define SSP_CR0_MASK_HALFDUP_ST (0x1UL << 5) |
| 115 | #define SSP_CR0_MASK_CSS_ST (0x1FUL << 16) |
| 116 | #define SSP_CR0_MASK_FRF_ST (0x3UL << 21) |
| 117 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 118 | /* |
| 119 | * SSP Control Register 0 - SSP_CR1 |
| 120 | */ |
| 121 | #define SSP_CR1_MASK_LBM (0x1UL << 0) |
| 122 | #define SSP_CR1_MASK_SSE (0x1UL << 1) |
| 123 | #define SSP_CR1_MASK_MS (0x1UL << 2) |
| 124 | #define SSP_CR1_MASK_SOD (0x1UL << 3) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 125 | |
| 126 | /* |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 127 | * The ST version of this block adds some bits |
| 128 | * in SSP_CR1 |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 129 | */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 130 | #define SSP_CR1_MASK_RENDN_ST (0x1UL << 4) |
| 131 | #define SSP_CR1_MASK_TENDN_ST (0x1UL << 5) |
| 132 | #define SSP_CR1_MASK_MWAIT_ST (0x1UL << 6) |
| 133 | #define SSP_CR1_MASK_RXIFLSEL_ST (0x7UL << 7) |
| 134 | #define SSP_CR1_MASK_TXIFLSEL_ST (0x7UL << 10) |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 135 | /* This one is only in the PL023 variant */ |
| 136 | #define SSP_CR1_MASK_FBCLKDEL_ST (0x7UL << 13) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 137 | |
| 138 | /* |
| 139 | * SSP Status Register - SSP_SR |
| 140 | */ |
| 141 | #define SSP_SR_MASK_TFE (0x1UL << 0) /* Transmit FIFO empty */ |
| 142 | #define SSP_SR_MASK_TNF (0x1UL << 1) /* Transmit FIFO not full */ |
| 143 | #define SSP_SR_MASK_RNE (0x1UL << 2) /* Receive FIFO not empty */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 144 | #define SSP_SR_MASK_RFF (0x1UL << 3) /* Receive FIFO full */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 145 | #define SSP_SR_MASK_BSY (0x1UL << 4) /* Busy Flag */ |
| 146 | |
| 147 | /* |
| 148 | * SSP Clock Prescale Register - SSP_CPSR |
| 149 | */ |
| 150 | #define SSP_CPSR_MASK_CPSDVSR (0xFFUL << 0) |
| 151 | |
| 152 | /* |
| 153 | * SSP Interrupt Mask Set/Clear Register - SSP_IMSC |
| 154 | */ |
| 155 | #define SSP_IMSC_MASK_RORIM (0x1UL << 0) /* Receive Overrun Interrupt mask */ |
| 156 | #define SSP_IMSC_MASK_RTIM (0x1UL << 1) /* Receive timeout Interrupt mask */ |
| 157 | #define SSP_IMSC_MASK_RXIM (0x1UL << 2) /* Receive FIFO Interrupt mask */ |
| 158 | #define SSP_IMSC_MASK_TXIM (0x1UL << 3) /* Transmit FIFO Interrupt mask */ |
| 159 | |
| 160 | /* |
| 161 | * SSP Raw Interrupt Status Register - SSP_RIS |
| 162 | */ |
| 163 | /* Receive Overrun Raw Interrupt status */ |
| 164 | #define SSP_RIS_MASK_RORRIS (0x1UL << 0) |
| 165 | /* Receive Timeout Raw Interrupt status */ |
| 166 | #define SSP_RIS_MASK_RTRIS (0x1UL << 1) |
| 167 | /* Receive FIFO Raw Interrupt status */ |
| 168 | #define SSP_RIS_MASK_RXRIS (0x1UL << 2) |
| 169 | /* Transmit FIFO Raw Interrupt status */ |
| 170 | #define SSP_RIS_MASK_TXRIS (0x1UL << 3) |
| 171 | |
| 172 | /* |
| 173 | * SSP Masked Interrupt Status Register - SSP_MIS |
| 174 | */ |
| 175 | /* Receive Overrun Masked Interrupt status */ |
| 176 | #define SSP_MIS_MASK_RORMIS (0x1UL << 0) |
| 177 | /* Receive Timeout Masked Interrupt status */ |
| 178 | #define SSP_MIS_MASK_RTMIS (0x1UL << 1) |
| 179 | /* Receive FIFO Masked Interrupt status */ |
| 180 | #define SSP_MIS_MASK_RXMIS (0x1UL << 2) |
| 181 | /* Transmit FIFO Masked Interrupt status */ |
| 182 | #define SSP_MIS_MASK_TXMIS (0x1UL << 3) |
| 183 | |
| 184 | /* |
| 185 | * SSP Interrupt Clear Register - SSP_ICR |
| 186 | */ |
| 187 | /* Receive Overrun Raw Clear Interrupt bit */ |
| 188 | #define SSP_ICR_MASK_RORIC (0x1UL << 0) |
| 189 | /* Receive Timeout Clear Interrupt bit */ |
| 190 | #define SSP_ICR_MASK_RTIC (0x1UL << 1) |
| 191 | |
| 192 | /* |
| 193 | * SSP DMA Control Register - SSP_DMACR |
| 194 | */ |
| 195 | /* Receive DMA Enable bit */ |
| 196 | #define SSP_DMACR_MASK_RXDMAE (0x1UL << 0) |
| 197 | /* Transmit DMA Enable bit */ |
| 198 | #define SSP_DMACR_MASK_TXDMAE (0x1UL << 1) |
| 199 | |
| 200 | /* |
| 201 | * SSP Integration Test control Register - SSP_ITCR |
| 202 | */ |
| 203 | #define SSP_ITCR_MASK_ITEN (0x1UL << 0) |
| 204 | #define SSP_ITCR_MASK_TESTFIFO (0x1UL << 1) |
| 205 | |
| 206 | /* |
| 207 | * SSP Integration Test Input Register - SSP_ITIP |
| 208 | */ |
| 209 | #define ITIP_MASK_SSPRXD (0x1UL << 0) |
| 210 | #define ITIP_MASK_SSPFSSIN (0x1UL << 1) |
| 211 | #define ITIP_MASK_SSPCLKIN (0x1UL << 2) |
| 212 | #define ITIP_MASK_RXDMAC (0x1UL << 3) |
| 213 | #define ITIP_MASK_TXDMAC (0x1UL << 4) |
| 214 | #define ITIP_MASK_SSPTXDIN (0x1UL << 5) |
| 215 | |
| 216 | /* |
| 217 | * SSP Integration Test output Register - SSP_ITOP |
| 218 | */ |
| 219 | #define ITOP_MASK_SSPTXD (0x1UL << 0) |
| 220 | #define ITOP_MASK_SSPFSSOUT (0x1UL << 1) |
| 221 | #define ITOP_MASK_SSPCLKOUT (0x1UL << 2) |
| 222 | #define ITOP_MASK_SSPOEn (0x1UL << 3) |
| 223 | #define ITOP_MASK_SSPCTLOEn (0x1UL << 4) |
| 224 | #define ITOP_MASK_RORINTR (0x1UL << 5) |
| 225 | #define ITOP_MASK_RTINTR (0x1UL << 6) |
| 226 | #define ITOP_MASK_RXINTR (0x1UL << 7) |
| 227 | #define ITOP_MASK_TXINTR (0x1UL << 8) |
| 228 | #define ITOP_MASK_INTR (0x1UL << 9) |
| 229 | #define ITOP_MASK_RXDMABREQ (0x1UL << 10) |
| 230 | #define ITOP_MASK_RXDMASREQ (0x1UL << 11) |
| 231 | #define ITOP_MASK_TXDMABREQ (0x1UL << 12) |
| 232 | #define ITOP_MASK_TXDMASREQ (0x1UL << 13) |
| 233 | |
| 234 | /* |
| 235 | * SSP Test Data Register - SSP_TDR |
| 236 | */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 237 | #define TDR_MASK_TESTDATA (0xFFFFFFFF) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 238 | |
| 239 | /* |
| 240 | * Message State |
| 241 | * we use the spi_message.state (void *) pointer to |
| 242 | * hold a single state value, that's why all this |
| 243 | * (void *) casting is done here. |
| 244 | */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 245 | #define STATE_START ((void *) 0) |
| 246 | #define STATE_RUNNING ((void *) 1) |
| 247 | #define STATE_DONE ((void *) 2) |
| 248 | #define STATE_ERROR ((void *) -1) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 249 | |
| 250 | /* |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 251 | * SSP State - Whether Enabled or Disabled |
| 252 | */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 253 | #define SSP_DISABLED (0) |
| 254 | #define SSP_ENABLED (1) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 255 | |
| 256 | /* |
| 257 | * SSP DMA State - Whether DMA Enabled or Disabled |
| 258 | */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 259 | #define SSP_DMA_DISABLED (0) |
| 260 | #define SSP_DMA_ENABLED (1) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 261 | |
| 262 | /* |
| 263 | * SSP Clock Defaults |
| 264 | */ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 265 | #define SSP_DEFAULT_CLKRATE 0x2 |
| 266 | #define SSP_DEFAULT_PRESCALE 0x40 |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 267 | |
| 268 | /* |
| 269 | * SSP Clock Parameter ranges |
| 270 | */ |
| 271 | #define CPSDVR_MIN 0x02 |
| 272 | #define CPSDVR_MAX 0xFE |
| 273 | #define SCR_MIN 0x00 |
| 274 | #define SCR_MAX 0xFF |
| 275 | |
| 276 | /* |
| 277 | * SSP Interrupt related Macros |
| 278 | */ |
| 279 | #define DEFAULT_SSP_REG_IMSC 0x0UL |
| 280 | #define DISABLE_ALL_INTERRUPTS DEFAULT_SSP_REG_IMSC |
| 281 | #define ENABLE_ALL_INTERRUPTS (~DEFAULT_SSP_REG_IMSC) |
| 282 | |
| 283 | #define CLEAR_ALL_INTERRUPTS 0x3 |
| 284 | |
Magnus Templing | a18c266 | 2011-05-19 18:05:34 +0200 | [diff] [blame] | 285 | #define SPI_POLLING_TIMEOUT 1000 |
| 286 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 287 | /* |
| 288 | * The type of reading going on on this chip |
| 289 | */ |
| 290 | enum ssp_reading { |
| 291 | READING_NULL, |
| 292 | READING_U8, |
| 293 | READING_U16, |
| 294 | READING_U32 |
| 295 | }; |
| 296 | |
| 297 | /** |
| 298 | * The type of writing going on on this chip |
| 299 | */ |
| 300 | enum ssp_writing { |
| 301 | WRITING_NULL, |
| 302 | WRITING_U8, |
| 303 | WRITING_U16, |
| 304 | WRITING_U32 |
| 305 | }; |
| 306 | |
| 307 | /** |
| 308 | * struct vendor_data - vendor-specific config parameters |
| 309 | * for PL022 derivates |
| 310 | * @fifodepth: depth of FIFOs (both) |
| 311 | * @max_bpw: maximum number of bits per word |
| 312 | * @unidir: supports unidirection transfers |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 313 | * @extended_cr: 32 bit wide control register 0 with extra |
| 314 | * features and extra features in CR1 as found in the ST variants |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 315 | * @pl023: supports a subset of the ST extensions called "PL023" |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 316 | */ |
| 317 | struct vendor_data { |
| 318 | int fifodepth; |
| 319 | int max_bpw; |
| 320 | bool unidir; |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 321 | bool extended_cr; |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 322 | bool pl023; |
Philippe Langlais | 06fb01f | 2011-03-23 11:05:16 +0100 | [diff] [blame] | 323 | bool loopback; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 324 | }; |
| 325 | |
| 326 | /** |
| 327 | * struct pl022 - This is the private SSP driver data structure |
| 328 | * @adev: AMBA device model hookup |
Linus Walleij | 12e8b32 | 2011-02-08 13:03:55 +0100 | [diff] [blame] | 329 | * @vendor: vendor data for the IP block |
| 330 | * @phybase: the physical memory where the SSP device resides |
| 331 | * @virtbase: the virtual memory where the SSP is mapped |
| 332 | * @clk: outgoing clock "SPICLK" for the SPI bus |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 333 | * @master: SPI framework hookup |
| 334 | * @master_info: controller-specific data from machine setup |
Chris Blair | 14af60b | 2012-02-02 13:59:34 +0100 | [diff] [blame] | 335 | * @kworker: thread struct for message pump |
| 336 | * @kworker_task: pointer to task for message pump kworker thread |
| 337 | * @pump_messages: work struct for scheduling work to the message pump |
Linus Walleij | 12e8b32 | 2011-02-08 13:03:55 +0100 | [diff] [blame] | 338 | * @queue_lock: spinlock to syncronise access to message queue |
| 339 | * @queue: message queue |
Chris Blair | 14af60b | 2012-02-02 13:59:34 +0100 | [diff] [blame] | 340 | * @busy: message pump is busy |
| 341 | * @running: message pump is running |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 342 | * @pump_transfers: Tasklet used in Interrupt Transfer mode |
| 343 | * @cur_msg: Pointer to current spi_message being processed |
| 344 | * @cur_transfer: Pointer to current spi_transfer |
| 345 | * @cur_chip: pointer to current clients chip(assigned from controller_state) |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 346 | * @next_msg_cs_active: the next message in the queue has been examined |
| 347 | * and it was found that it uses the same chip select as the previous |
| 348 | * message, so we left it active after the previous transfer, and it's |
| 349 | * active already. |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 350 | * @tx: current position in TX buffer to be read |
| 351 | * @tx_end: end position in TX buffer to be read |
| 352 | * @rx: current position in RX buffer to be written |
| 353 | * @rx_end: end position in RX buffer to be written |
Linus Walleij | 12e8b32 | 2011-02-08 13:03:55 +0100 | [diff] [blame] | 354 | * @read: the type of read currently going on |
| 355 | * @write: the type of write currently going on |
| 356 | * @exp_fifo_level: expected FIFO level |
| 357 | * @dma_rx_channel: optional channel for RX DMA |
| 358 | * @dma_tx_channel: optional channel for TX DMA |
| 359 | * @sgt_rx: scattertable for the RX transfer |
| 360 | * @sgt_tx: scattertable for the TX transfer |
| 361 | * @dummypage: a dummy page used for driving data on the bus with DMA |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 362 | * @cur_cs: current chip select (gpio) |
| 363 | * @chipselects: list of chipselects (gpios) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 364 | */ |
| 365 | struct pl022 { |
| 366 | struct amba_device *adev; |
| 367 | struct vendor_data *vendor; |
| 368 | resource_size_t phybase; |
| 369 | void __iomem *virtbase; |
| 370 | struct clk *clk; |
Patrice Chotard | 4f5e1b3 | 2012-09-19 14:23:46 +0200 | [diff] [blame] | 371 | /* Two optional pin states - default & sleep */ |
| 372 | struct pinctrl *pinctrl; |
| 373 | struct pinctrl_state *pins_default; |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 374 | struct pinctrl_state *pins_idle; |
Patrice Chotard | 4f5e1b3 | 2012-09-19 14:23:46 +0200 | [diff] [blame] | 375 | struct pinctrl_state *pins_sleep; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 376 | struct spi_master *master; |
| 377 | struct pl022_ssp_controller *master_info; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 378 | /* Message per-transfer pump */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 379 | struct tasklet_struct pump_transfers; |
| 380 | struct spi_message *cur_msg; |
| 381 | struct spi_transfer *cur_transfer; |
| 382 | struct chip_data *cur_chip; |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 383 | bool next_msg_cs_active; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 384 | void *tx; |
| 385 | void *tx_end; |
| 386 | void *rx; |
| 387 | void *rx_end; |
| 388 | enum ssp_reading read; |
| 389 | enum ssp_writing write; |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 390 | u32 exp_fifo_level; |
Linus Walleij | 083be3f | 2011-06-16 10:14:28 +0200 | [diff] [blame] | 391 | enum ssp_rx_level_trig rx_lev_trig; |
| 392 | enum ssp_tx_level_trig tx_lev_trig; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 393 | /* DMA settings */ |
| 394 | #ifdef CONFIG_DMA_ENGINE |
| 395 | struct dma_chan *dma_rx_channel; |
| 396 | struct dma_chan *dma_tx_channel; |
| 397 | struct sg_table sgt_rx; |
| 398 | struct sg_table sgt_tx; |
| 399 | char *dummypage; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 400 | bool dma_running; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 401 | #endif |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 402 | int cur_cs; |
| 403 | int *chipselects; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 404 | }; |
| 405 | |
| 406 | /** |
| 407 | * struct chip_data - To maintain runtime state of SSP for each client chip |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 408 | * @cr0: Value of control register CR0 of SSP - on later ST variants this |
| 409 | * register is 32 bits wide rather than just 16 |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 410 | * @cr1: Value of control register CR1 of SSP |
| 411 | * @dmacr: Value of DMA control Register of SSP |
| 412 | * @cpsr: Value of Clock prescale register |
| 413 | * @n_bytes: how many bytes(power of 2) reqd for a given data width of client |
| 414 | * @enable_dma: Whether to enable DMA or not |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 415 | * @read: function ptr to be used to read when doing xfer for this chip |
Linus Walleij | 12e8b32 | 2011-02-08 13:03:55 +0100 | [diff] [blame] | 416 | * @write: function ptr to be used to write when doing xfer for this chip |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 417 | * @cs_control: chip select callback provided by chip |
| 418 | * @xfer_type: polling/interrupt/DMA |
| 419 | * |
| 420 | * Runtime state of the SSP controller, maintained per chip, |
| 421 | * This would be set according to the current message that would be served |
| 422 | */ |
| 423 | struct chip_data { |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 424 | u32 cr0; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 425 | u16 cr1; |
| 426 | u16 dmacr; |
| 427 | u16 cpsr; |
| 428 | u8 n_bytes; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 429 | bool enable_dma; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 430 | enum ssp_reading read; |
| 431 | enum ssp_writing write; |
| 432 | void (*cs_control) (u32 command); |
| 433 | int xfer_type; |
| 434 | }; |
| 435 | |
| 436 | /** |
| 437 | * null_cs_control - Dummy chip select function |
| 438 | * @command: select/delect the chip |
| 439 | * |
| 440 | * If no chip select function is provided by client this is used as dummy |
| 441 | * chip select |
| 442 | */ |
| 443 | static void null_cs_control(u32 command) |
| 444 | { |
| 445 | pr_debug("pl022: dummy chip select control, CS=0x%x\n", command); |
| 446 | } |
| 447 | |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 448 | static void pl022_cs_control(struct pl022 *pl022, u32 command) |
| 449 | { |
| 450 | if (gpio_is_valid(pl022->cur_cs)) |
| 451 | gpio_set_value(pl022->cur_cs, command); |
| 452 | else |
| 453 | pl022->cur_chip->cs_control(command); |
| 454 | } |
| 455 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 456 | /** |
| 457 | * giveback - current spi_message is over, schedule next message and call |
| 458 | * callback of this message. Assumes that caller already |
| 459 | * set message->status; dma and pio irqs are blocked |
| 460 | * @pl022: SSP driver private data structure |
| 461 | */ |
| 462 | static void giveback(struct pl022 *pl022) |
| 463 | { |
| 464 | struct spi_transfer *last_transfer; |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 465 | pl022->next_msg_cs_active = false; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 466 | |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 467 | last_transfer = list_entry(pl022->cur_msg->transfers.prev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 468 | struct spi_transfer, |
| 469 | transfer_list); |
| 470 | |
| 471 | /* Delay if requested before any change in chip select */ |
| 472 | if (last_transfer->delay_usecs) |
| 473 | /* |
| 474 | * FIXME: This runs in interrupt context. |
| 475 | * Is this really smart? |
| 476 | */ |
| 477 | udelay(last_transfer->delay_usecs); |
| 478 | |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 479 | if (!last_transfer->cs_change) { |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 480 | struct spi_message *next_msg; |
| 481 | |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 482 | /* |
| 483 | * cs_change was not set. We can keep the chip select |
| 484 | * enabled if there is message in the queue and it is |
| 485 | * for the same spi device. |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 486 | * |
| 487 | * We cannot postpone this until pump_messages, because |
| 488 | * after calling msg->complete (below) the driver that |
| 489 | * sent the current message could be unloaded, which |
| 490 | * could invalidate the cs_control() callback... |
| 491 | */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 492 | /* get a pointer to the next message, if any */ |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 493 | next_msg = spi_get_next_queued_message(pl022->master); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 494 | |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 495 | /* |
| 496 | * see if the next and current messages point |
| 497 | * to the same spi device. |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 498 | */ |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 499 | if (next_msg && next_msg->spi != pl022->cur_msg->spi) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 500 | next_msg = NULL; |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 501 | if (!next_msg || pl022->cur_msg->state == STATE_ERROR) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 502 | pl022_cs_control(pl022, SSP_CHIP_DESELECT); |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 503 | else |
| 504 | pl022->next_msg_cs_active = true; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 505 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 506 | } |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 507 | |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 508 | pl022->cur_msg = NULL; |
| 509 | pl022->cur_transfer = NULL; |
| 510 | pl022->cur_chip = NULL; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 511 | spi_finalize_current_message(pl022->master); |
Virupax Sadashivpetimath | fd31694 | 2012-06-12 15:10:58 +0200 | [diff] [blame] | 512 | |
| 513 | /* disable the SPI/SSP operation */ |
| 514 | writew((readw(SSP_CR1(pl022->virtbase)) & |
| 515 | (~SSP_CR1_MASK_SSE)), SSP_CR1(pl022->virtbase)); |
| 516 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | /** |
| 520 | * flush - flush the FIFO to reach a clean state |
| 521 | * @pl022: SSP driver private data structure |
| 522 | */ |
| 523 | static int flush(struct pl022 *pl022) |
| 524 | { |
| 525 | unsigned long limit = loops_per_jiffy << 1; |
| 526 | |
| 527 | dev_dbg(&pl022->adev->dev, "flush\n"); |
| 528 | do { |
| 529 | while (readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RNE) |
| 530 | readw(SSP_DR(pl022->virtbase)); |
| 531 | } while ((readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_BSY) && limit--); |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 532 | |
| 533 | pl022->exp_fifo_level = 0; |
| 534 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 535 | return limit; |
| 536 | } |
| 537 | |
| 538 | /** |
| 539 | * restore_state - Load configuration of current chip |
| 540 | * @pl022: SSP driver private data structure |
| 541 | */ |
| 542 | static void restore_state(struct pl022 *pl022) |
| 543 | { |
| 544 | struct chip_data *chip = pl022->cur_chip; |
| 545 | |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 546 | if (pl022->vendor->extended_cr) |
| 547 | writel(chip->cr0, SSP_CR0(pl022->virtbase)); |
| 548 | else |
| 549 | writew(chip->cr0, SSP_CR0(pl022->virtbase)); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 550 | writew(chip->cr1, SSP_CR1(pl022->virtbase)); |
| 551 | writew(chip->dmacr, SSP_DMACR(pl022->virtbase)); |
| 552 | writew(chip->cpsr, SSP_CPSR(pl022->virtbase)); |
| 553 | writew(DISABLE_ALL_INTERRUPTS, SSP_IMSC(pl022->virtbase)); |
| 554 | writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase)); |
| 555 | } |
| 556 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 557 | /* |
| 558 | * Default SSP Register Values |
| 559 | */ |
| 560 | #define DEFAULT_SSP_REG_CR0 ( \ |
| 561 | GEN_MASK_BITS(SSP_DATA_BITS_12, SSP_CR0_MASK_DSS, 0) | \ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 562 | GEN_MASK_BITS(SSP_INTERFACE_MOTOROLA_SPI, SSP_CR0_MASK_FRF, 4) | \ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 563 | GEN_MASK_BITS(SSP_CLK_POL_IDLE_LOW, SSP_CR0_MASK_SPO, 6) | \ |
Linus Walleij | ee2b805 | 2009-08-15 15:12:05 +0100 | [diff] [blame] | 564 | GEN_MASK_BITS(SSP_CLK_SECOND_EDGE, SSP_CR0_MASK_SPH, 7) | \ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 565 | GEN_MASK_BITS(SSP_DEFAULT_CLKRATE, SSP_CR0_MASK_SCR, 8) \ |
| 566 | ) |
| 567 | |
| 568 | /* ST versions have slightly different bit layout */ |
| 569 | #define DEFAULT_SSP_REG_CR0_ST ( \ |
| 570 | GEN_MASK_BITS(SSP_DATA_BITS_12, SSP_CR0_MASK_DSS_ST, 0) | \ |
| 571 | GEN_MASK_BITS(SSP_MICROWIRE_CHANNEL_FULL_DUPLEX, SSP_CR0_MASK_HALFDUP_ST, 5) | \ |
| 572 | GEN_MASK_BITS(SSP_CLK_POL_IDLE_LOW, SSP_CR0_MASK_SPO, 6) | \ |
| 573 | GEN_MASK_BITS(SSP_CLK_SECOND_EDGE, SSP_CR0_MASK_SPH, 7) | \ |
| 574 | GEN_MASK_BITS(SSP_DEFAULT_CLKRATE, SSP_CR0_MASK_SCR, 8) | \ |
| 575 | GEN_MASK_BITS(SSP_BITS_8, SSP_CR0_MASK_CSS_ST, 16) | \ |
| 576 | GEN_MASK_BITS(SSP_INTERFACE_MOTOROLA_SPI, SSP_CR0_MASK_FRF_ST, 21) \ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 577 | ) |
| 578 | |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 579 | /* The PL023 version is slightly different again */ |
| 580 | #define DEFAULT_SSP_REG_CR0_ST_PL023 ( \ |
| 581 | GEN_MASK_BITS(SSP_DATA_BITS_12, SSP_CR0_MASK_DSS_ST, 0) | \ |
| 582 | GEN_MASK_BITS(SSP_CLK_POL_IDLE_LOW, SSP_CR0_MASK_SPO, 6) | \ |
| 583 | GEN_MASK_BITS(SSP_CLK_SECOND_EDGE, SSP_CR0_MASK_SPH, 7) | \ |
| 584 | GEN_MASK_BITS(SSP_DEFAULT_CLKRATE, SSP_CR0_MASK_SCR, 8) \ |
| 585 | ) |
| 586 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 587 | #define DEFAULT_SSP_REG_CR1 ( \ |
| 588 | GEN_MASK_BITS(LOOPBACK_DISABLED, SSP_CR1_MASK_LBM, 0) | \ |
| 589 | GEN_MASK_BITS(SSP_DISABLED, SSP_CR1_MASK_SSE, 1) | \ |
| 590 | GEN_MASK_BITS(SSP_MASTER, SSP_CR1_MASK_MS, 2) | \ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 591 | GEN_MASK_BITS(DO_NOT_DRIVE_TX, SSP_CR1_MASK_SOD, 3) \ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 592 | ) |
| 593 | |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 594 | /* ST versions extend this register to use all 16 bits */ |
| 595 | #define DEFAULT_SSP_REG_CR1_ST ( \ |
| 596 | DEFAULT_SSP_REG_CR1 | \ |
| 597 | GEN_MASK_BITS(SSP_RX_MSB, SSP_CR1_MASK_RENDN_ST, 4) | \ |
| 598 | GEN_MASK_BITS(SSP_TX_MSB, SSP_CR1_MASK_TENDN_ST, 5) | \ |
| 599 | GEN_MASK_BITS(SSP_MWIRE_WAIT_ZERO, SSP_CR1_MASK_MWAIT_ST, 6) |\ |
| 600 | GEN_MASK_BITS(SSP_RX_1_OR_MORE_ELEM, SSP_CR1_MASK_RXIFLSEL_ST, 7) | \ |
| 601 | GEN_MASK_BITS(SSP_TX_1_OR_MORE_EMPTY_LOC, SSP_CR1_MASK_TXIFLSEL_ST, 10) \ |
| 602 | ) |
| 603 | |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 604 | /* |
| 605 | * The PL023 variant has further differences: no loopback mode, no microwire |
| 606 | * support, and a new clock feedback delay setting. |
| 607 | */ |
| 608 | #define DEFAULT_SSP_REG_CR1_ST_PL023 ( \ |
| 609 | GEN_MASK_BITS(SSP_DISABLED, SSP_CR1_MASK_SSE, 1) | \ |
| 610 | GEN_MASK_BITS(SSP_MASTER, SSP_CR1_MASK_MS, 2) | \ |
| 611 | GEN_MASK_BITS(DO_NOT_DRIVE_TX, SSP_CR1_MASK_SOD, 3) | \ |
| 612 | GEN_MASK_BITS(SSP_RX_MSB, SSP_CR1_MASK_RENDN_ST, 4) | \ |
| 613 | GEN_MASK_BITS(SSP_TX_MSB, SSP_CR1_MASK_TENDN_ST, 5) | \ |
| 614 | GEN_MASK_BITS(SSP_RX_1_OR_MORE_ELEM, SSP_CR1_MASK_RXIFLSEL_ST, 7) | \ |
| 615 | GEN_MASK_BITS(SSP_TX_1_OR_MORE_EMPTY_LOC, SSP_CR1_MASK_TXIFLSEL_ST, 10) | \ |
| 616 | GEN_MASK_BITS(SSP_FEEDBACK_CLK_DELAY_NONE, SSP_CR1_MASK_FBCLKDEL_ST, 13) \ |
| 617 | ) |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 618 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 619 | #define DEFAULT_SSP_REG_CPSR ( \ |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 620 | GEN_MASK_BITS(SSP_DEFAULT_PRESCALE, SSP_CPSR_MASK_CPSDVSR, 0) \ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 621 | ) |
| 622 | |
| 623 | #define DEFAULT_SSP_REG_DMACR (\ |
| 624 | GEN_MASK_BITS(SSP_DMA_DISABLED, SSP_DMACR_MASK_RXDMAE, 0) | \ |
| 625 | GEN_MASK_BITS(SSP_DMA_DISABLED, SSP_DMACR_MASK_TXDMAE, 1) \ |
| 626 | ) |
| 627 | |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 628 | /** |
| 629 | * load_ssp_default_config - Load default configuration for SSP |
| 630 | * @pl022: SSP driver private data structure |
| 631 | */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 632 | static void load_ssp_default_config(struct pl022 *pl022) |
| 633 | { |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 634 | if (pl022->vendor->pl023) { |
| 635 | writel(DEFAULT_SSP_REG_CR0_ST_PL023, SSP_CR0(pl022->virtbase)); |
| 636 | writew(DEFAULT_SSP_REG_CR1_ST_PL023, SSP_CR1(pl022->virtbase)); |
| 637 | } else if (pl022->vendor->extended_cr) { |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 638 | writel(DEFAULT_SSP_REG_CR0_ST, SSP_CR0(pl022->virtbase)); |
| 639 | writew(DEFAULT_SSP_REG_CR1_ST, SSP_CR1(pl022->virtbase)); |
| 640 | } else { |
| 641 | writew(DEFAULT_SSP_REG_CR0, SSP_CR0(pl022->virtbase)); |
| 642 | writew(DEFAULT_SSP_REG_CR1, SSP_CR1(pl022->virtbase)); |
| 643 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 644 | writew(DEFAULT_SSP_REG_DMACR, SSP_DMACR(pl022->virtbase)); |
| 645 | writew(DEFAULT_SSP_REG_CPSR, SSP_CPSR(pl022->virtbase)); |
| 646 | writew(DISABLE_ALL_INTERRUPTS, SSP_IMSC(pl022->virtbase)); |
| 647 | writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase)); |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * This will write to TX and read from RX according to the parameters |
| 652 | * set in pl022. |
| 653 | */ |
| 654 | static void readwriter(struct pl022 *pl022) |
| 655 | { |
| 656 | |
| 657 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 658 | * The FIFO depth is different between primecell variants. |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 659 | * I believe filling in too much in the FIFO might cause |
| 660 | * errons in 8bit wide transfers on ARM variants (just 8 words |
| 661 | * FIFO, means only 8x8 = 64 bits in FIFO) at least. |
| 662 | * |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 663 | * To prevent this issue, the TX FIFO is only filled to the |
| 664 | * unused RX FIFO fill length, regardless of what the TX |
| 665 | * FIFO status flag indicates. |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 666 | */ |
| 667 | dev_dbg(&pl022->adev->dev, |
| 668 | "%s, rx: %p, rxend: %p, tx: %p, txend: %p\n", |
| 669 | __func__, pl022->rx, pl022->rx_end, pl022->tx, pl022->tx_end); |
| 670 | |
| 671 | /* Read as much as you can */ |
| 672 | while ((readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RNE) |
| 673 | && (pl022->rx < pl022->rx_end)) { |
| 674 | switch (pl022->read) { |
| 675 | case READING_NULL: |
| 676 | readw(SSP_DR(pl022->virtbase)); |
| 677 | break; |
| 678 | case READING_U8: |
| 679 | *(u8 *) (pl022->rx) = |
| 680 | readw(SSP_DR(pl022->virtbase)) & 0xFFU; |
| 681 | break; |
| 682 | case READING_U16: |
| 683 | *(u16 *) (pl022->rx) = |
| 684 | (u16) readw(SSP_DR(pl022->virtbase)); |
| 685 | break; |
| 686 | case READING_U32: |
| 687 | *(u32 *) (pl022->rx) = |
| 688 | readl(SSP_DR(pl022->virtbase)); |
| 689 | break; |
| 690 | } |
| 691 | pl022->rx += (pl022->cur_chip->n_bytes); |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 692 | pl022->exp_fifo_level--; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 693 | } |
| 694 | /* |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 695 | * Write as much as possible up to the RX FIFO size |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 696 | */ |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 697 | while ((pl022->exp_fifo_level < pl022->vendor->fifodepth) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 698 | && (pl022->tx < pl022->tx_end)) { |
| 699 | switch (pl022->write) { |
| 700 | case WRITING_NULL: |
| 701 | writew(0x0, SSP_DR(pl022->virtbase)); |
| 702 | break; |
| 703 | case WRITING_U8: |
| 704 | writew(*(u8 *) (pl022->tx), SSP_DR(pl022->virtbase)); |
| 705 | break; |
| 706 | case WRITING_U16: |
| 707 | writew((*(u16 *) (pl022->tx)), SSP_DR(pl022->virtbase)); |
| 708 | break; |
| 709 | case WRITING_U32: |
| 710 | writel(*(u32 *) (pl022->tx), SSP_DR(pl022->virtbase)); |
| 711 | break; |
| 712 | } |
| 713 | pl022->tx += (pl022->cur_chip->n_bytes); |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 714 | pl022->exp_fifo_level++; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 715 | /* |
| 716 | * This inner reader takes care of things appearing in the RX |
| 717 | * FIFO as we're transmitting. This will happen a lot since the |
| 718 | * clock starts running when you put things into the TX FIFO, |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 719 | * and then things are continuously clocked into the RX FIFO. |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 720 | */ |
| 721 | while ((readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RNE) |
| 722 | && (pl022->rx < pl022->rx_end)) { |
| 723 | switch (pl022->read) { |
| 724 | case READING_NULL: |
| 725 | readw(SSP_DR(pl022->virtbase)); |
| 726 | break; |
| 727 | case READING_U8: |
| 728 | *(u8 *) (pl022->rx) = |
| 729 | readw(SSP_DR(pl022->virtbase)) & 0xFFU; |
| 730 | break; |
| 731 | case READING_U16: |
| 732 | *(u16 *) (pl022->rx) = |
| 733 | (u16) readw(SSP_DR(pl022->virtbase)); |
| 734 | break; |
| 735 | case READING_U32: |
| 736 | *(u32 *) (pl022->rx) = |
| 737 | readl(SSP_DR(pl022->virtbase)); |
| 738 | break; |
| 739 | } |
| 740 | pl022->rx += (pl022->cur_chip->n_bytes); |
Linus Walleij | fc05475 | 2010-01-22 13:53:30 +0100 | [diff] [blame] | 741 | pl022->exp_fifo_level--; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 742 | } |
| 743 | } |
| 744 | /* |
| 745 | * When we exit here the TX FIFO should be full and the RX FIFO |
| 746 | * should be empty |
| 747 | */ |
| 748 | } |
| 749 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 750 | /** |
| 751 | * next_transfer - Move to the Next transfer in the current spi message |
| 752 | * @pl022: SSP driver private data structure |
| 753 | * |
| 754 | * This function moves though the linked list of spi transfers in the |
| 755 | * current spi message and returns with the state of current spi |
| 756 | * message i.e whether its last transfer is done(STATE_DONE) or |
| 757 | * Next transfer is ready(STATE_RUNNING) |
| 758 | */ |
| 759 | static void *next_transfer(struct pl022 *pl022) |
| 760 | { |
| 761 | struct spi_message *msg = pl022->cur_msg; |
| 762 | struct spi_transfer *trans = pl022->cur_transfer; |
| 763 | |
| 764 | /* Move to next transfer */ |
| 765 | if (trans->transfer_list.next != &msg->transfers) { |
| 766 | pl022->cur_transfer = |
| 767 | list_entry(trans->transfer_list.next, |
| 768 | struct spi_transfer, transfer_list); |
| 769 | return STATE_RUNNING; |
| 770 | } |
| 771 | return STATE_DONE; |
| 772 | } |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 773 | |
| 774 | /* |
| 775 | * This DMA functionality is only compiled in if we have |
| 776 | * access to the generic DMA devices/DMA engine. |
| 777 | */ |
| 778 | #ifdef CONFIG_DMA_ENGINE |
| 779 | static void unmap_free_dma_scatter(struct pl022 *pl022) |
| 780 | { |
| 781 | /* Unmap and free the SG tables */ |
Linus Walleij | b729889 | 2010-12-22 23:13:07 +0100 | [diff] [blame] | 782 | dma_unmap_sg(pl022->dma_tx_channel->device->dev, pl022->sgt_tx.sgl, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 783 | pl022->sgt_tx.nents, DMA_TO_DEVICE); |
Linus Walleij | b729889 | 2010-12-22 23:13:07 +0100 | [diff] [blame] | 784 | dma_unmap_sg(pl022->dma_rx_channel->device->dev, pl022->sgt_rx.sgl, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 785 | pl022->sgt_rx.nents, DMA_FROM_DEVICE); |
| 786 | sg_free_table(&pl022->sgt_rx); |
| 787 | sg_free_table(&pl022->sgt_tx); |
| 788 | } |
| 789 | |
| 790 | static void dma_callback(void *data) |
| 791 | { |
| 792 | struct pl022 *pl022 = data; |
| 793 | struct spi_message *msg = pl022->cur_msg; |
| 794 | |
| 795 | BUG_ON(!pl022->sgt_rx.sgl); |
| 796 | |
| 797 | #ifdef VERBOSE_DEBUG |
| 798 | /* |
| 799 | * Optionally dump out buffers to inspect contents, this is |
| 800 | * good if you want to convince yourself that the loopback |
| 801 | * read/write contents are the same, when adopting to a new |
| 802 | * DMA engine. |
| 803 | */ |
| 804 | { |
| 805 | struct scatterlist *sg; |
| 806 | unsigned int i; |
| 807 | |
| 808 | dma_sync_sg_for_cpu(&pl022->adev->dev, |
| 809 | pl022->sgt_rx.sgl, |
| 810 | pl022->sgt_rx.nents, |
| 811 | DMA_FROM_DEVICE); |
| 812 | |
| 813 | for_each_sg(pl022->sgt_rx.sgl, sg, pl022->sgt_rx.nents, i) { |
| 814 | dev_dbg(&pl022->adev->dev, "SPI RX SG ENTRY: %d", i); |
| 815 | print_hex_dump(KERN_ERR, "SPI RX: ", |
| 816 | DUMP_PREFIX_OFFSET, |
| 817 | 16, |
| 818 | 1, |
| 819 | sg_virt(sg), |
| 820 | sg_dma_len(sg), |
| 821 | 1); |
| 822 | } |
| 823 | for_each_sg(pl022->sgt_tx.sgl, sg, pl022->sgt_tx.nents, i) { |
| 824 | dev_dbg(&pl022->adev->dev, "SPI TX SG ENTRY: %d", i); |
| 825 | print_hex_dump(KERN_ERR, "SPI TX: ", |
| 826 | DUMP_PREFIX_OFFSET, |
| 827 | 16, |
| 828 | 1, |
| 829 | sg_virt(sg), |
| 830 | sg_dma_len(sg), |
| 831 | 1); |
| 832 | } |
| 833 | } |
| 834 | #endif |
| 835 | |
| 836 | unmap_free_dma_scatter(pl022); |
| 837 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 838 | /* Update total bytes transferred */ |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 839 | msg->actual_length += pl022->cur_transfer->len; |
| 840 | if (pl022->cur_transfer->cs_change) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 841 | pl022_cs_control(pl022, SSP_CHIP_DESELECT); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 842 | |
| 843 | /* Move to next transfer */ |
| 844 | msg->state = next_transfer(pl022); |
| 845 | tasklet_schedule(&pl022->pump_transfers); |
| 846 | } |
| 847 | |
| 848 | static void setup_dma_scatter(struct pl022 *pl022, |
| 849 | void *buffer, |
| 850 | unsigned int length, |
| 851 | struct sg_table *sgtab) |
| 852 | { |
| 853 | struct scatterlist *sg; |
| 854 | int bytesleft = length; |
| 855 | void *bufp = buffer; |
| 856 | int mapbytes; |
| 857 | int i; |
| 858 | |
| 859 | if (buffer) { |
| 860 | for_each_sg(sgtab->sgl, sg, sgtab->nents, i) { |
| 861 | /* |
| 862 | * If there are less bytes left than what fits |
| 863 | * in the current page (plus page alignment offset) |
| 864 | * we just feed in this, else we stuff in as much |
| 865 | * as we can. |
| 866 | */ |
| 867 | if (bytesleft < (PAGE_SIZE - offset_in_page(bufp))) |
| 868 | mapbytes = bytesleft; |
| 869 | else |
| 870 | mapbytes = PAGE_SIZE - offset_in_page(bufp); |
| 871 | sg_set_page(sg, virt_to_page(bufp), |
| 872 | mapbytes, offset_in_page(bufp)); |
| 873 | bufp += mapbytes; |
| 874 | bytesleft -= mapbytes; |
| 875 | dev_dbg(&pl022->adev->dev, |
| 876 | "set RX/TX target page @ %p, %d bytes, %d left\n", |
| 877 | bufp, mapbytes, bytesleft); |
| 878 | } |
| 879 | } else { |
| 880 | /* Map the dummy buffer on every page */ |
| 881 | for_each_sg(sgtab->sgl, sg, sgtab->nents, i) { |
| 882 | if (bytesleft < PAGE_SIZE) |
| 883 | mapbytes = bytesleft; |
| 884 | else |
| 885 | mapbytes = PAGE_SIZE; |
| 886 | sg_set_page(sg, virt_to_page(pl022->dummypage), |
| 887 | mapbytes, 0); |
| 888 | bytesleft -= mapbytes; |
| 889 | dev_dbg(&pl022->adev->dev, |
| 890 | "set RX/TX to dummy page %d bytes, %d left\n", |
| 891 | mapbytes, bytesleft); |
| 892 | |
| 893 | } |
| 894 | } |
| 895 | BUG_ON(bytesleft); |
| 896 | } |
| 897 | |
| 898 | /** |
| 899 | * configure_dma - configures the channels for the next transfer |
| 900 | * @pl022: SSP driver's private data structure |
| 901 | */ |
| 902 | static int configure_dma(struct pl022 *pl022) |
| 903 | { |
| 904 | struct dma_slave_config rx_conf = { |
| 905 | .src_addr = SSP_DR(pl022->phybase), |
Vinod Koul | a485df4 | 2011-10-14 10:47:38 +0530 | [diff] [blame] | 906 | .direction = DMA_DEV_TO_MEM, |
Viresh Kumar | 258aea7 | 2012-02-01 16:12:19 +0530 | [diff] [blame] | 907 | .device_fc = false, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 908 | }; |
| 909 | struct dma_slave_config tx_conf = { |
| 910 | .dst_addr = SSP_DR(pl022->phybase), |
Vinod Koul | a485df4 | 2011-10-14 10:47:38 +0530 | [diff] [blame] | 911 | .direction = DMA_MEM_TO_DEV, |
Viresh Kumar | 258aea7 | 2012-02-01 16:12:19 +0530 | [diff] [blame] | 912 | .device_fc = false, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 913 | }; |
| 914 | unsigned int pages; |
| 915 | int ret; |
Linus Walleij | 082086f | 2010-12-22 23:13:37 +0100 | [diff] [blame] | 916 | int rx_sglen, tx_sglen; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 917 | struct dma_chan *rxchan = pl022->dma_rx_channel; |
| 918 | struct dma_chan *txchan = pl022->dma_tx_channel; |
| 919 | struct dma_async_tx_descriptor *rxdesc; |
| 920 | struct dma_async_tx_descriptor *txdesc; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 921 | |
| 922 | /* Check that the channels are available */ |
| 923 | if (!rxchan || !txchan) |
| 924 | return -ENODEV; |
| 925 | |
Linus Walleij | 083be3f | 2011-06-16 10:14:28 +0200 | [diff] [blame] | 926 | /* |
| 927 | * If supplied, the DMA burstsize should equal the FIFO trigger level. |
| 928 | * Notice that the DMA engine uses one-to-one mapping. Since we can |
| 929 | * not trigger on 2 elements this needs explicit mapping rather than |
| 930 | * calculation. |
| 931 | */ |
| 932 | switch (pl022->rx_lev_trig) { |
| 933 | case SSP_RX_1_OR_MORE_ELEM: |
| 934 | rx_conf.src_maxburst = 1; |
| 935 | break; |
| 936 | case SSP_RX_4_OR_MORE_ELEM: |
| 937 | rx_conf.src_maxburst = 4; |
| 938 | break; |
| 939 | case SSP_RX_8_OR_MORE_ELEM: |
| 940 | rx_conf.src_maxburst = 8; |
| 941 | break; |
| 942 | case SSP_RX_16_OR_MORE_ELEM: |
| 943 | rx_conf.src_maxburst = 16; |
| 944 | break; |
| 945 | case SSP_RX_32_OR_MORE_ELEM: |
| 946 | rx_conf.src_maxburst = 32; |
| 947 | break; |
| 948 | default: |
| 949 | rx_conf.src_maxburst = pl022->vendor->fifodepth >> 1; |
| 950 | break; |
| 951 | } |
| 952 | |
| 953 | switch (pl022->tx_lev_trig) { |
| 954 | case SSP_TX_1_OR_MORE_EMPTY_LOC: |
| 955 | tx_conf.dst_maxburst = 1; |
| 956 | break; |
| 957 | case SSP_TX_4_OR_MORE_EMPTY_LOC: |
| 958 | tx_conf.dst_maxburst = 4; |
| 959 | break; |
| 960 | case SSP_TX_8_OR_MORE_EMPTY_LOC: |
| 961 | tx_conf.dst_maxburst = 8; |
| 962 | break; |
| 963 | case SSP_TX_16_OR_MORE_EMPTY_LOC: |
| 964 | tx_conf.dst_maxburst = 16; |
| 965 | break; |
| 966 | case SSP_TX_32_OR_MORE_EMPTY_LOC: |
| 967 | tx_conf.dst_maxburst = 32; |
| 968 | break; |
| 969 | default: |
| 970 | tx_conf.dst_maxburst = pl022->vendor->fifodepth >> 1; |
| 971 | break; |
| 972 | } |
| 973 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 974 | switch (pl022->read) { |
| 975 | case READING_NULL: |
| 976 | /* Use the same as for writing */ |
| 977 | rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_UNDEFINED; |
| 978 | break; |
| 979 | case READING_U8: |
| 980 | rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE; |
| 981 | break; |
| 982 | case READING_U16: |
| 983 | rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES; |
| 984 | break; |
| 985 | case READING_U32: |
| 986 | rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; |
| 987 | break; |
| 988 | } |
| 989 | |
| 990 | switch (pl022->write) { |
| 991 | case WRITING_NULL: |
| 992 | /* Use the same as for reading */ |
| 993 | tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_UNDEFINED; |
| 994 | break; |
| 995 | case WRITING_U8: |
| 996 | tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE; |
| 997 | break; |
| 998 | case WRITING_U16: |
| 999 | tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES; |
| 1000 | break; |
| 1001 | case WRITING_U32: |
Joe Perches | bc3f67a | 2010-11-14 19:04:47 -0800 | [diff] [blame] | 1002 | tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1003 | break; |
| 1004 | } |
| 1005 | |
| 1006 | /* SPI pecularity: we need to read and write the same width */ |
| 1007 | if (rx_conf.src_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) |
| 1008 | rx_conf.src_addr_width = tx_conf.dst_addr_width; |
| 1009 | if (tx_conf.dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) |
| 1010 | tx_conf.dst_addr_width = rx_conf.src_addr_width; |
| 1011 | BUG_ON(rx_conf.src_addr_width != tx_conf.dst_addr_width); |
| 1012 | |
Linus Walleij | ecd442f | 2011-02-08 13:03:12 +0100 | [diff] [blame] | 1013 | dmaengine_slave_config(rxchan, &rx_conf); |
| 1014 | dmaengine_slave_config(txchan, &tx_conf); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1015 | |
| 1016 | /* Create sglists for the transfers */ |
Viresh Kumar | b181565 | 2011-08-10 17:12:11 +0530 | [diff] [blame] | 1017 | pages = DIV_ROUND_UP(pl022->cur_transfer->len, PAGE_SIZE); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1018 | dev_dbg(&pl022->adev->dev, "using %d pages for transfer\n", pages); |
| 1019 | |
Viresh Kumar | 538a18d | 2011-08-10 14:20:55 +0530 | [diff] [blame] | 1020 | ret = sg_alloc_table(&pl022->sgt_rx, pages, GFP_ATOMIC); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1021 | if (ret) |
| 1022 | goto err_alloc_rx_sg; |
| 1023 | |
Viresh Kumar | 538a18d | 2011-08-10 14:20:55 +0530 | [diff] [blame] | 1024 | ret = sg_alloc_table(&pl022->sgt_tx, pages, GFP_ATOMIC); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1025 | if (ret) |
| 1026 | goto err_alloc_tx_sg; |
| 1027 | |
| 1028 | /* Fill in the scatterlists for the RX+TX buffers */ |
| 1029 | setup_dma_scatter(pl022, pl022->rx, |
| 1030 | pl022->cur_transfer->len, &pl022->sgt_rx); |
| 1031 | setup_dma_scatter(pl022, pl022->tx, |
| 1032 | pl022->cur_transfer->len, &pl022->sgt_tx); |
| 1033 | |
| 1034 | /* Map DMA buffers */ |
Linus Walleij | 082086f | 2010-12-22 23:13:37 +0100 | [diff] [blame] | 1035 | rx_sglen = dma_map_sg(rxchan->device->dev, pl022->sgt_rx.sgl, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1036 | pl022->sgt_rx.nents, DMA_FROM_DEVICE); |
Linus Walleij | 082086f | 2010-12-22 23:13:37 +0100 | [diff] [blame] | 1037 | if (!rx_sglen) |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1038 | goto err_rx_sgmap; |
| 1039 | |
Linus Walleij | 082086f | 2010-12-22 23:13:37 +0100 | [diff] [blame] | 1040 | tx_sglen = dma_map_sg(txchan->device->dev, pl022->sgt_tx.sgl, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1041 | pl022->sgt_tx.nents, DMA_TO_DEVICE); |
Linus Walleij | 082086f | 2010-12-22 23:13:37 +0100 | [diff] [blame] | 1042 | if (!tx_sglen) |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1043 | goto err_tx_sgmap; |
| 1044 | |
| 1045 | /* Send both scatterlists */ |
Alexandre Bounine | 1605282 | 2012-03-08 16:11:18 -0500 | [diff] [blame] | 1046 | rxdesc = dmaengine_prep_slave_sg(rxchan, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1047 | pl022->sgt_rx.sgl, |
Linus Walleij | 082086f | 2010-12-22 23:13:37 +0100 | [diff] [blame] | 1048 | rx_sglen, |
Vinod Koul | a485df4 | 2011-10-14 10:47:38 +0530 | [diff] [blame] | 1049 | DMA_DEV_TO_MEM, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1050 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
| 1051 | if (!rxdesc) |
| 1052 | goto err_rxdesc; |
| 1053 | |
Alexandre Bounine | 1605282 | 2012-03-08 16:11:18 -0500 | [diff] [blame] | 1054 | txdesc = dmaengine_prep_slave_sg(txchan, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1055 | pl022->sgt_tx.sgl, |
Linus Walleij | 082086f | 2010-12-22 23:13:37 +0100 | [diff] [blame] | 1056 | tx_sglen, |
Vinod Koul | a485df4 | 2011-10-14 10:47:38 +0530 | [diff] [blame] | 1057 | DMA_MEM_TO_DEV, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1058 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
| 1059 | if (!txdesc) |
| 1060 | goto err_txdesc; |
| 1061 | |
| 1062 | /* Put the callback on the RX transfer only, that should finish last */ |
| 1063 | rxdesc->callback = dma_callback; |
| 1064 | rxdesc->callback_param = pl022; |
| 1065 | |
| 1066 | /* Submit and fire RX and TX with TX last so we're ready to read! */ |
Linus Walleij | ecd442f | 2011-02-08 13:03:12 +0100 | [diff] [blame] | 1067 | dmaengine_submit(rxdesc); |
| 1068 | dmaengine_submit(txdesc); |
| 1069 | dma_async_issue_pending(rxchan); |
| 1070 | dma_async_issue_pending(txchan); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1071 | pl022->dma_running = true; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1072 | |
| 1073 | return 0; |
| 1074 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1075 | err_txdesc: |
Linus Walleij | ecd442f | 2011-02-08 13:03:12 +0100 | [diff] [blame] | 1076 | dmaengine_terminate_all(txchan); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1077 | err_rxdesc: |
Linus Walleij | ecd442f | 2011-02-08 13:03:12 +0100 | [diff] [blame] | 1078 | dmaengine_terminate_all(rxchan); |
Linus Walleij | b729889 | 2010-12-22 23:13:07 +0100 | [diff] [blame] | 1079 | dma_unmap_sg(txchan->device->dev, pl022->sgt_tx.sgl, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1080 | pl022->sgt_tx.nents, DMA_TO_DEVICE); |
| 1081 | err_tx_sgmap: |
Linus Walleij | b729889 | 2010-12-22 23:13:07 +0100 | [diff] [blame] | 1082 | dma_unmap_sg(rxchan->device->dev, pl022->sgt_rx.sgl, |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1083 | pl022->sgt_tx.nents, DMA_FROM_DEVICE); |
| 1084 | err_rx_sgmap: |
| 1085 | sg_free_table(&pl022->sgt_tx); |
| 1086 | err_alloc_tx_sg: |
| 1087 | sg_free_table(&pl022->sgt_rx); |
| 1088 | err_alloc_rx_sg: |
| 1089 | return -ENOMEM; |
| 1090 | } |
| 1091 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 1092 | static int pl022_dma_probe(struct pl022 *pl022) |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1093 | { |
| 1094 | dma_cap_mask_t mask; |
| 1095 | |
| 1096 | /* Try to acquire a generic DMA engine slave channel */ |
| 1097 | dma_cap_zero(mask); |
| 1098 | dma_cap_set(DMA_SLAVE, mask); |
| 1099 | /* |
| 1100 | * We need both RX and TX channels to do DMA, else do none |
| 1101 | * of them. |
| 1102 | */ |
| 1103 | pl022->dma_rx_channel = dma_request_channel(mask, |
| 1104 | pl022->master_info->dma_filter, |
| 1105 | pl022->master_info->dma_rx_param); |
| 1106 | if (!pl022->dma_rx_channel) { |
Viresh Kumar | 43c6401 | 2011-05-16 09:40:10 +0530 | [diff] [blame] | 1107 | dev_dbg(&pl022->adev->dev, "no RX DMA channel!\n"); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1108 | goto err_no_rxchan; |
| 1109 | } |
| 1110 | |
| 1111 | pl022->dma_tx_channel = dma_request_channel(mask, |
| 1112 | pl022->master_info->dma_filter, |
| 1113 | pl022->master_info->dma_tx_param); |
| 1114 | if (!pl022->dma_tx_channel) { |
Viresh Kumar | 43c6401 | 2011-05-16 09:40:10 +0530 | [diff] [blame] | 1115 | dev_dbg(&pl022->adev->dev, "no TX DMA channel!\n"); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1116 | goto err_no_txchan; |
| 1117 | } |
| 1118 | |
| 1119 | pl022->dummypage = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 1120 | if (!pl022->dummypage) { |
Viresh Kumar | 43c6401 | 2011-05-16 09:40:10 +0530 | [diff] [blame] | 1121 | dev_dbg(&pl022->adev->dev, "no DMA dummypage!\n"); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1122 | goto err_no_dummypage; |
| 1123 | } |
| 1124 | |
| 1125 | dev_info(&pl022->adev->dev, "setup for DMA on RX %s, TX %s\n", |
| 1126 | dma_chan_name(pl022->dma_rx_channel), |
| 1127 | dma_chan_name(pl022->dma_tx_channel)); |
| 1128 | |
| 1129 | return 0; |
| 1130 | |
| 1131 | err_no_dummypage: |
| 1132 | dma_release_channel(pl022->dma_tx_channel); |
| 1133 | err_no_txchan: |
| 1134 | dma_release_channel(pl022->dma_rx_channel); |
| 1135 | pl022->dma_rx_channel = NULL; |
| 1136 | err_no_rxchan: |
Viresh Kumar | 43c6401 | 2011-05-16 09:40:10 +0530 | [diff] [blame] | 1137 | dev_err(&pl022->adev->dev, |
| 1138 | "Failed to work in dma mode, work without dma!\n"); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1139 | return -ENODEV; |
| 1140 | } |
| 1141 | |
Arnd Bergmann | dc71545 | 2013-01-28 16:24:37 +0000 | [diff] [blame] | 1142 | static int pl022_dma_autoprobe(struct pl022 *pl022) |
| 1143 | { |
| 1144 | struct device *dev = &pl022->adev->dev; |
| 1145 | |
| 1146 | /* automatically configure DMA channels from platform, normally using DT */ |
| 1147 | pl022->dma_rx_channel = dma_request_slave_channel(dev, "rx"); |
| 1148 | if (!pl022->dma_rx_channel) |
| 1149 | goto err_no_rxchan; |
| 1150 | |
| 1151 | pl022->dma_tx_channel = dma_request_slave_channel(dev, "tx"); |
| 1152 | if (!pl022->dma_tx_channel) |
| 1153 | goto err_no_txchan; |
| 1154 | |
| 1155 | pl022->dummypage = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 1156 | if (!pl022->dummypage) |
| 1157 | goto err_no_dummypage; |
| 1158 | |
| 1159 | return 0; |
| 1160 | |
| 1161 | err_no_dummypage: |
| 1162 | dma_release_channel(pl022->dma_tx_channel); |
| 1163 | pl022->dma_tx_channel = NULL; |
| 1164 | err_no_txchan: |
| 1165 | dma_release_channel(pl022->dma_rx_channel); |
| 1166 | pl022->dma_rx_channel = NULL; |
| 1167 | err_no_rxchan: |
| 1168 | return -ENODEV; |
| 1169 | } |
| 1170 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1171 | static void terminate_dma(struct pl022 *pl022) |
| 1172 | { |
| 1173 | struct dma_chan *rxchan = pl022->dma_rx_channel; |
| 1174 | struct dma_chan *txchan = pl022->dma_tx_channel; |
| 1175 | |
Linus Walleij | ecd442f | 2011-02-08 13:03:12 +0100 | [diff] [blame] | 1176 | dmaengine_terminate_all(rxchan); |
| 1177 | dmaengine_terminate_all(txchan); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1178 | unmap_free_dma_scatter(pl022); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1179 | pl022->dma_running = false; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1180 | } |
| 1181 | |
| 1182 | static void pl022_dma_remove(struct pl022 *pl022) |
| 1183 | { |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1184 | if (pl022->dma_running) |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1185 | terminate_dma(pl022); |
| 1186 | if (pl022->dma_tx_channel) |
| 1187 | dma_release_channel(pl022->dma_tx_channel); |
| 1188 | if (pl022->dma_rx_channel) |
| 1189 | dma_release_channel(pl022->dma_rx_channel); |
| 1190 | kfree(pl022->dummypage); |
| 1191 | } |
| 1192 | |
| 1193 | #else |
| 1194 | static inline int configure_dma(struct pl022 *pl022) |
| 1195 | { |
| 1196 | return -ENODEV; |
| 1197 | } |
| 1198 | |
Arnd Bergmann | dc71545 | 2013-01-28 16:24:37 +0000 | [diff] [blame] | 1199 | static inline int pl022_dma_autoprobe(struct pl022 *pl022) |
| 1200 | { |
| 1201 | return 0; |
| 1202 | } |
| 1203 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1204 | static inline int pl022_dma_probe(struct pl022 *pl022) |
| 1205 | { |
| 1206 | return 0; |
| 1207 | } |
| 1208 | |
| 1209 | static inline void pl022_dma_remove(struct pl022 *pl022) |
| 1210 | { |
| 1211 | } |
| 1212 | #endif |
| 1213 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1214 | /** |
| 1215 | * pl022_interrupt_handler - Interrupt handler for SSP controller |
| 1216 | * |
| 1217 | * This function handles interrupts generated for an interrupt based transfer. |
| 1218 | * If a receive overrun (ROR) interrupt is there then we disable SSP, flag the |
| 1219 | * current message's state as STATE_ERROR and schedule the tasklet |
| 1220 | * pump_transfers which will do the postprocessing of the current message by |
| 1221 | * calling giveback(). Otherwise it reads data from RX FIFO till there is no |
| 1222 | * more data, and writes data in TX FIFO till it is not full. If we complete |
| 1223 | * the transfer we move to the next transfer and schedule the tasklet. |
| 1224 | */ |
| 1225 | static irqreturn_t pl022_interrupt_handler(int irq, void *dev_id) |
| 1226 | { |
| 1227 | struct pl022 *pl022 = dev_id; |
| 1228 | struct spi_message *msg = pl022->cur_msg; |
| 1229 | u16 irq_status = 0; |
| 1230 | u16 flag = 0; |
| 1231 | |
| 1232 | if (unlikely(!msg)) { |
| 1233 | dev_err(&pl022->adev->dev, |
| 1234 | "bad message state in interrupt handler"); |
| 1235 | /* Never fail */ |
| 1236 | return IRQ_HANDLED; |
| 1237 | } |
| 1238 | |
| 1239 | /* Read the Interrupt Status Register */ |
| 1240 | irq_status = readw(SSP_MIS(pl022->virtbase)); |
| 1241 | |
| 1242 | if (unlikely(!irq_status)) |
| 1243 | return IRQ_NONE; |
| 1244 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1245 | /* |
| 1246 | * This handles the FIFO interrupts, the timeout |
| 1247 | * interrupts are flatly ignored, they cannot be |
| 1248 | * trusted. |
| 1249 | */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1250 | if (unlikely(irq_status & SSP_MIS_MASK_RORMIS)) { |
| 1251 | /* |
| 1252 | * Overrun interrupt - bail out since our Data has been |
| 1253 | * corrupted |
| 1254 | */ |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1255 | dev_err(&pl022->adev->dev, "FIFO overrun\n"); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1256 | if (readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RFF) |
| 1257 | dev_err(&pl022->adev->dev, |
| 1258 | "RXFIFO is full\n"); |
| 1259 | if (readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_TNF) |
| 1260 | dev_err(&pl022->adev->dev, |
| 1261 | "TXFIFO is full\n"); |
| 1262 | |
| 1263 | /* |
| 1264 | * Disable and clear interrupts, disable SSP, |
| 1265 | * mark message with bad status so it can be |
| 1266 | * retried. |
| 1267 | */ |
| 1268 | writew(DISABLE_ALL_INTERRUPTS, |
| 1269 | SSP_IMSC(pl022->virtbase)); |
| 1270 | writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase)); |
| 1271 | writew((readw(SSP_CR1(pl022->virtbase)) & |
| 1272 | (~SSP_CR1_MASK_SSE)), SSP_CR1(pl022->virtbase)); |
| 1273 | msg->state = STATE_ERROR; |
| 1274 | |
| 1275 | /* Schedule message queue handler */ |
| 1276 | tasklet_schedule(&pl022->pump_transfers); |
| 1277 | return IRQ_HANDLED; |
| 1278 | } |
| 1279 | |
| 1280 | readwriter(pl022); |
| 1281 | |
| 1282 | if ((pl022->tx == pl022->tx_end) && (flag == 0)) { |
| 1283 | flag = 1; |
Chris Blair | 172289d | 2011-06-04 07:57:47 +0100 | [diff] [blame] | 1284 | /* Disable Transmit interrupt, enable receive interrupt */ |
| 1285 | writew((readw(SSP_IMSC(pl022->virtbase)) & |
| 1286 | ~SSP_IMSC_MASK_TXIM) | SSP_IMSC_MASK_RXIM, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1287 | SSP_IMSC(pl022->virtbase)); |
| 1288 | } |
| 1289 | |
| 1290 | /* |
| 1291 | * Since all transactions must write as much as shall be read, |
| 1292 | * we can conclude the entire transaction once RX is complete. |
| 1293 | * At this point, all TX will always be finished. |
| 1294 | */ |
| 1295 | if (pl022->rx >= pl022->rx_end) { |
| 1296 | writew(DISABLE_ALL_INTERRUPTS, |
| 1297 | SSP_IMSC(pl022->virtbase)); |
| 1298 | writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase)); |
| 1299 | if (unlikely(pl022->rx > pl022->rx_end)) { |
| 1300 | dev_warn(&pl022->adev->dev, "read %u surplus " |
| 1301 | "bytes (did you request an odd " |
| 1302 | "number of bytes on a 16bit bus?)\n", |
| 1303 | (u32) (pl022->rx - pl022->rx_end)); |
| 1304 | } |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1305 | /* Update total bytes transferred */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1306 | msg->actual_length += pl022->cur_transfer->len; |
| 1307 | if (pl022->cur_transfer->cs_change) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1308 | pl022_cs_control(pl022, SSP_CHIP_DESELECT); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1309 | /* Move to next transfer */ |
| 1310 | msg->state = next_transfer(pl022); |
| 1311 | tasklet_schedule(&pl022->pump_transfers); |
| 1312 | return IRQ_HANDLED; |
| 1313 | } |
| 1314 | |
| 1315 | return IRQ_HANDLED; |
| 1316 | } |
| 1317 | |
| 1318 | /** |
| 1319 | * This sets up the pointers to memory for the next message to |
| 1320 | * send out on the SPI bus. |
| 1321 | */ |
| 1322 | static int set_up_next_transfer(struct pl022 *pl022, |
| 1323 | struct spi_transfer *transfer) |
| 1324 | { |
| 1325 | int residue; |
| 1326 | |
| 1327 | /* Sanity check the message for this bus width */ |
| 1328 | residue = pl022->cur_transfer->len % pl022->cur_chip->n_bytes; |
| 1329 | if (unlikely(residue != 0)) { |
| 1330 | dev_err(&pl022->adev->dev, |
| 1331 | "message of %u bytes to transmit but the current " |
| 1332 | "chip bus has a data width of %u bytes!\n", |
| 1333 | pl022->cur_transfer->len, |
| 1334 | pl022->cur_chip->n_bytes); |
| 1335 | dev_err(&pl022->adev->dev, "skipping this message\n"); |
| 1336 | return -EIO; |
| 1337 | } |
| 1338 | pl022->tx = (void *)transfer->tx_buf; |
| 1339 | pl022->tx_end = pl022->tx + pl022->cur_transfer->len; |
| 1340 | pl022->rx = (void *)transfer->rx_buf; |
| 1341 | pl022->rx_end = pl022->rx + pl022->cur_transfer->len; |
| 1342 | pl022->write = |
| 1343 | pl022->tx ? pl022->cur_chip->write : WRITING_NULL; |
| 1344 | pl022->read = pl022->rx ? pl022->cur_chip->read : READING_NULL; |
| 1345 | return 0; |
| 1346 | } |
| 1347 | |
| 1348 | /** |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1349 | * pump_transfers - Tasklet function which schedules next transfer |
| 1350 | * when running in interrupt or DMA transfer mode. |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1351 | * @data: SSP driver private data structure |
| 1352 | * |
| 1353 | */ |
| 1354 | static void pump_transfers(unsigned long data) |
| 1355 | { |
| 1356 | struct pl022 *pl022 = (struct pl022 *) data; |
| 1357 | struct spi_message *message = NULL; |
| 1358 | struct spi_transfer *transfer = NULL; |
| 1359 | struct spi_transfer *previous = NULL; |
| 1360 | |
| 1361 | /* Get current state information */ |
| 1362 | message = pl022->cur_msg; |
| 1363 | transfer = pl022->cur_transfer; |
| 1364 | |
| 1365 | /* Handle for abort */ |
| 1366 | if (message->state == STATE_ERROR) { |
| 1367 | message->status = -EIO; |
| 1368 | giveback(pl022); |
| 1369 | return; |
| 1370 | } |
| 1371 | |
| 1372 | /* Handle end of message */ |
| 1373 | if (message->state == STATE_DONE) { |
| 1374 | message->status = 0; |
| 1375 | giveback(pl022); |
| 1376 | return; |
| 1377 | } |
| 1378 | |
| 1379 | /* Delay if requested at end of transfer before CS change */ |
| 1380 | if (message->state == STATE_RUNNING) { |
| 1381 | previous = list_entry(transfer->transfer_list.prev, |
| 1382 | struct spi_transfer, |
| 1383 | transfer_list); |
| 1384 | if (previous->delay_usecs) |
| 1385 | /* |
| 1386 | * FIXME: This runs in interrupt context. |
| 1387 | * Is this really smart? |
| 1388 | */ |
| 1389 | udelay(previous->delay_usecs); |
| 1390 | |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 1391 | /* Reselect chip select only if cs_change was requested */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1392 | if (previous->cs_change) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1393 | pl022_cs_control(pl022, SSP_CHIP_SELECT); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1394 | } else { |
| 1395 | /* STATE_START */ |
| 1396 | message->state = STATE_RUNNING; |
| 1397 | } |
| 1398 | |
| 1399 | if (set_up_next_transfer(pl022, transfer)) { |
| 1400 | message->state = STATE_ERROR; |
| 1401 | message->status = -EIO; |
| 1402 | giveback(pl022); |
| 1403 | return; |
| 1404 | } |
| 1405 | /* Flush the FIFOs and let's go! */ |
| 1406 | flush(pl022); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1407 | |
| 1408 | if (pl022->cur_chip->enable_dma) { |
| 1409 | if (configure_dma(pl022)) { |
| 1410 | dev_dbg(&pl022->adev->dev, |
| 1411 | "configuration of DMA failed, fall back to interrupt mode\n"); |
| 1412 | goto err_config_dma; |
| 1413 | } |
| 1414 | return; |
| 1415 | } |
| 1416 | |
| 1417 | err_config_dma: |
Chris Blair | 172289d | 2011-06-04 07:57:47 +0100 | [diff] [blame] | 1418 | /* enable all interrupts except RX */ |
| 1419 | writew(ENABLE_ALL_INTERRUPTS & ~SSP_IMSC_MASK_RXIM, SSP_IMSC(pl022->virtbase)); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1420 | } |
| 1421 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1422 | static void do_interrupt_dma_transfer(struct pl022 *pl022) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1423 | { |
Chris Blair | 172289d | 2011-06-04 07:57:47 +0100 | [diff] [blame] | 1424 | /* |
| 1425 | * Default is to enable all interrupts except RX - |
| 1426 | * this will be enabled once TX is complete |
| 1427 | */ |
| 1428 | u32 irqflags = ENABLE_ALL_INTERRUPTS & ~SSP_IMSC_MASK_RXIM; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1429 | |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 1430 | /* Enable target chip, if not already active */ |
| 1431 | if (!pl022->next_msg_cs_active) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1432 | pl022_cs_control(pl022, SSP_CHIP_SELECT); |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 1433 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1434 | if (set_up_next_transfer(pl022, pl022->cur_transfer)) { |
| 1435 | /* Error path */ |
| 1436 | pl022->cur_msg->state = STATE_ERROR; |
| 1437 | pl022->cur_msg->status = -EIO; |
| 1438 | giveback(pl022); |
| 1439 | return; |
| 1440 | } |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1441 | /* If we're using DMA, set up DMA here */ |
| 1442 | if (pl022->cur_chip->enable_dma) { |
| 1443 | /* Configure DMA transfer */ |
| 1444 | if (configure_dma(pl022)) { |
| 1445 | dev_dbg(&pl022->adev->dev, |
| 1446 | "configuration of DMA failed, fall back to interrupt mode\n"); |
| 1447 | goto err_config_dma; |
| 1448 | } |
| 1449 | /* Disable interrupts in DMA mode, IRQ from DMA controller */ |
| 1450 | irqflags = DISABLE_ALL_INTERRUPTS; |
| 1451 | } |
| 1452 | err_config_dma: |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1453 | /* Enable SSP, turn on interrupts */ |
| 1454 | writew((readw(SSP_CR1(pl022->virtbase)) | SSP_CR1_MASK_SSE), |
| 1455 | SSP_CR1(pl022->virtbase)); |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1456 | writew(irqflags, SSP_IMSC(pl022->virtbase)); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1457 | } |
| 1458 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1459 | static void do_polling_transfer(struct pl022 *pl022) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1460 | { |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1461 | struct spi_message *message = NULL; |
| 1462 | struct spi_transfer *transfer = NULL; |
| 1463 | struct spi_transfer *previous = NULL; |
| 1464 | struct chip_data *chip; |
Magnus Templing | a18c266 | 2011-05-19 18:05:34 +0200 | [diff] [blame] | 1465 | unsigned long time, timeout; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1466 | |
| 1467 | chip = pl022->cur_chip; |
| 1468 | message = pl022->cur_msg; |
| 1469 | |
| 1470 | while (message->state != STATE_DONE) { |
| 1471 | /* Handle for abort */ |
| 1472 | if (message->state == STATE_ERROR) |
| 1473 | break; |
| 1474 | transfer = pl022->cur_transfer; |
| 1475 | |
| 1476 | /* Delay if requested at end of transfer */ |
| 1477 | if (message->state == STATE_RUNNING) { |
| 1478 | previous = |
| 1479 | list_entry(transfer->transfer_list.prev, |
| 1480 | struct spi_transfer, transfer_list); |
| 1481 | if (previous->delay_usecs) |
| 1482 | udelay(previous->delay_usecs); |
| 1483 | if (previous->cs_change) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1484 | pl022_cs_control(pl022, SSP_CHIP_SELECT); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1485 | } else { |
| 1486 | /* STATE_START */ |
| 1487 | message->state = STATE_RUNNING; |
Virupax Sadashivpetimath | 8b8d719 | 2011-11-10 12:43:24 +0530 | [diff] [blame] | 1488 | if (!pl022->next_msg_cs_active) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1489 | pl022_cs_control(pl022, SSP_CHIP_SELECT); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1490 | } |
| 1491 | |
| 1492 | /* Configuration Changing Per Transfer */ |
| 1493 | if (set_up_next_transfer(pl022, transfer)) { |
| 1494 | /* Error path */ |
| 1495 | message->state = STATE_ERROR; |
| 1496 | break; |
| 1497 | } |
| 1498 | /* Flush FIFOs and enable SSP */ |
| 1499 | flush(pl022); |
| 1500 | writew((readw(SSP_CR1(pl022->virtbase)) | SSP_CR1_MASK_SSE), |
| 1501 | SSP_CR1(pl022->virtbase)); |
| 1502 | |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 1503 | dev_dbg(&pl022->adev->dev, "polling transfer ongoing ...\n"); |
Magnus Templing | a18c266 | 2011-05-19 18:05:34 +0200 | [diff] [blame] | 1504 | |
| 1505 | timeout = jiffies + msecs_to_jiffies(SPI_POLLING_TIMEOUT); |
| 1506 | while (pl022->tx < pl022->tx_end || pl022->rx < pl022->rx_end) { |
| 1507 | time = jiffies; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1508 | readwriter(pl022); |
Magnus Templing | a18c266 | 2011-05-19 18:05:34 +0200 | [diff] [blame] | 1509 | if (time_after(time, timeout)) { |
| 1510 | dev_warn(&pl022->adev->dev, |
| 1511 | "%s: timeout!\n", __func__); |
| 1512 | message->state = STATE_ERROR; |
| 1513 | goto out; |
| 1514 | } |
Linus Walleij | 521999b | 2011-05-19 20:01:25 +0200 | [diff] [blame] | 1515 | cpu_relax(); |
Magnus Templing | a18c266 | 2011-05-19 18:05:34 +0200 | [diff] [blame] | 1516 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1517 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1518 | /* Update total byte transferred */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1519 | message->actual_length += pl022->cur_transfer->len; |
| 1520 | if (pl022->cur_transfer->cs_change) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1521 | pl022_cs_control(pl022, SSP_CHIP_DESELECT); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1522 | /* Move to next transfer */ |
| 1523 | message->state = next_transfer(pl022); |
| 1524 | } |
Magnus Templing | a18c266 | 2011-05-19 18:05:34 +0200 | [diff] [blame] | 1525 | out: |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1526 | /* Handle end of message */ |
| 1527 | if (message->state == STATE_DONE) |
| 1528 | message->status = 0; |
| 1529 | else |
| 1530 | message->status = -EIO; |
| 1531 | |
| 1532 | giveback(pl022); |
| 1533 | return; |
| 1534 | } |
| 1535 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1536 | static int pl022_transfer_one_message(struct spi_master *master, |
| 1537 | struct spi_message *msg) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1538 | { |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1539 | struct pl022 *pl022 = spi_master_get_devdata(master); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1540 | |
| 1541 | /* Initial message state */ |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1542 | pl022->cur_msg = msg; |
| 1543 | msg->state = STATE_START; |
| 1544 | |
| 1545 | pl022->cur_transfer = list_entry(msg->transfers.next, |
| 1546 | struct spi_transfer, transfer_list); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1547 | |
| 1548 | /* Setup the SPI using the per chip configuration */ |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1549 | pl022->cur_chip = spi_get_ctldata(msg->spi); |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1550 | pl022->cur_cs = pl022->chipselects[msg->spi->chip_select]; |
Chris Blair | d4b6af2 | 2011-11-04 07:43:41 +0000 | [diff] [blame] | 1551 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1552 | restore_state(pl022); |
| 1553 | flush(pl022); |
| 1554 | |
| 1555 | if (pl022->cur_chip->xfer_type == POLLING_TRANSFER) |
| 1556 | do_polling_transfer(pl022); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1557 | else |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1558 | do_interrupt_dma_transfer(pl022); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1559 | |
| 1560 | return 0; |
| 1561 | } |
| 1562 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1563 | static int pl022_prepare_transfer_hardware(struct spi_master *master) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1564 | { |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1565 | struct pl022 *pl022 = spi_master_get_devdata(master); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1566 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1567 | /* |
| 1568 | * Just make sure we have all we need to run the transfer by syncing |
| 1569 | * with the runtime PM framework. |
| 1570 | */ |
| 1571 | pm_runtime_get_sync(&pl022->adev->dev); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1572 | return 0; |
| 1573 | } |
| 1574 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1575 | static int pl022_unprepare_transfer_hardware(struct spi_master *master) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1576 | { |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1577 | struct pl022 *pl022 = spi_master_get_devdata(master); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1578 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1579 | /* nothing more to do - disable spi/ssp and power off */ |
| 1580 | writew((readw(SSP_CR1(pl022->virtbase)) & |
| 1581 | (~SSP_CR1_MASK_SSE)), SSP_CR1(pl022->virtbase)); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1582 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 1583 | if (pl022->master_info->autosuspend_delay > 0) { |
| 1584 | pm_runtime_mark_last_busy(&pl022->adev->dev); |
| 1585 | pm_runtime_put_autosuspend(&pl022->adev->dev); |
| 1586 | } else { |
| 1587 | pm_runtime_put(&pl022->adev->dev); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1588 | } |
| 1589 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1590 | return 0; |
| 1591 | } |
| 1592 | |
| 1593 | static int verify_controller_parameters(struct pl022 *pl022, |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1594 | struct pl022_config_chip const *chip_info) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1595 | { |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1596 | if ((chip_info->iface < SSP_INTERFACE_MOTOROLA_SPI) |
| 1597 | || (chip_info->iface > SSP_INTERFACE_UNIDIRECTIONAL)) { |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1598 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1599 | "interface is configured incorrectly\n"); |
| 1600 | return -EINVAL; |
| 1601 | } |
| 1602 | if ((chip_info->iface == SSP_INTERFACE_UNIDIRECTIONAL) && |
| 1603 | (!pl022->vendor->unidir)) { |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1604 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1605 | "unidirectional mode not supported in this " |
| 1606 | "hardware version\n"); |
| 1607 | return -EINVAL; |
| 1608 | } |
| 1609 | if ((chip_info->hierarchy != SSP_MASTER) |
| 1610 | && (chip_info->hierarchy != SSP_SLAVE)) { |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1611 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1612 | "hierarchy is configured incorrectly\n"); |
| 1613 | return -EINVAL; |
| 1614 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1615 | if ((chip_info->com_mode != INTERRUPT_TRANSFER) |
| 1616 | && (chip_info->com_mode != DMA_TRANSFER) |
| 1617 | && (chip_info->com_mode != POLLING_TRANSFER)) { |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1618 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1619 | "Communication mode is configured incorrectly\n"); |
| 1620 | return -EINVAL; |
| 1621 | } |
Linus Walleij | 78b2b91 | 2011-06-16 10:14:46 +0200 | [diff] [blame] | 1622 | switch (chip_info->rx_lev_trig) { |
| 1623 | case SSP_RX_1_OR_MORE_ELEM: |
| 1624 | case SSP_RX_4_OR_MORE_ELEM: |
| 1625 | case SSP_RX_8_OR_MORE_ELEM: |
| 1626 | /* These are always OK, all variants can handle this */ |
| 1627 | break; |
| 1628 | case SSP_RX_16_OR_MORE_ELEM: |
| 1629 | if (pl022->vendor->fifodepth < 16) { |
| 1630 | dev_err(&pl022->adev->dev, |
| 1631 | "RX FIFO Trigger Level is configured incorrectly\n"); |
| 1632 | return -EINVAL; |
| 1633 | } |
| 1634 | break; |
| 1635 | case SSP_RX_32_OR_MORE_ELEM: |
| 1636 | if (pl022->vendor->fifodepth < 32) { |
| 1637 | dev_err(&pl022->adev->dev, |
| 1638 | "RX FIFO Trigger Level is configured incorrectly\n"); |
| 1639 | return -EINVAL; |
| 1640 | } |
| 1641 | break; |
| 1642 | default: |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1643 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1644 | "RX FIFO Trigger Level is configured incorrectly\n"); |
| 1645 | return -EINVAL; |
Linus Walleij | 78b2b91 | 2011-06-16 10:14:46 +0200 | [diff] [blame] | 1646 | break; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1647 | } |
Linus Walleij | 78b2b91 | 2011-06-16 10:14:46 +0200 | [diff] [blame] | 1648 | switch (chip_info->tx_lev_trig) { |
| 1649 | case SSP_TX_1_OR_MORE_EMPTY_LOC: |
| 1650 | case SSP_TX_4_OR_MORE_EMPTY_LOC: |
| 1651 | case SSP_TX_8_OR_MORE_EMPTY_LOC: |
| 1652 | /* These are always OK, all variants can handle this */ |
| 1653 | break; |
| 1654 | case SSP_TX_16_OR_MORE_EMPTY_LOC: |
| 1655 | if (pl022->vendor->fifodepth < 16) { |
| 1656 | dev_err(&pl022->adev->dev, |
| 1657 | "TX FIFO Trigger Level is configured incorrectly\n"); |
| 1658 | return -EINVAL; |
| 1659 | } |
| 1660 | break; |
| 1661 | case SSP_TX_32_OR_MORE_EMPTY_LOC: |
| 1662 | if (pl022->vendor->fifodepth < 32) { |
| 1663 | dev_err(&pl022->adev->dev, |
| 1664 | "TX FIFO Trigger Level is configured incorrectly\n"); |
| 1665 | return -EINVAL; |
| 1666 | } |
| 1667 | break; |
| 1668 | default: |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1669 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1670 | "TX FIFO Trigger Level is configured incorrectly\n"); |
| 1671 | return -EINVAL; |
Linus Walleij | 78b2b91 | 2011-06-16 10:14:46 +0200 | [diff] [blame] | 1672 | break; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1673 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1674 | if (chip_info->iface == SSP_INTERFACE_NATIONAL_MICROWIRE) { |
| 1675 | if ((chip_info->ctrl_len < SSP_BITS_4) |
| 1676 | || (chip_info->ctrl_len > SSP_BITS_32)) { |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1677 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1678 | "CTRL LEN is configured incorrectly\n"); |
| 1679 | return -EINVAL; |
| 1680 | } |
| 1681 | if ((chip_info->wait_state != SSP_MWIRE_WAIT_ZERO) |
| 1682 | && (chip_info->wait_state != SSP_MWIRE_WAIT_ONE)) { |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1683 | dev_err(&pl022->adev->dev, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1684 | "Wait State is configured incorrectly\n"); |
| 1685 | return -EINVAL; |
| 1686 | } |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 1687 | /* Half duplex is only available in the ST Micro version */ |
| 1688 | if (pl022->vendor->extended_cr) { |
| 1689 | if ((chip_info->duplex != |
| 1690 | SSP_MICROWIRE_CHANNEL_FULL_DUPLEX) |
| 1691 | && (chip_info->duplex != |
Julia Lawall | 4a4fd47 | 2010-09-29 17:31:30 +0900 | [diff] [blame] | 1692 | SSP_MICROWIRE_CHANNEL_HALF_DUPLEX)) { |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1693 | dev_err(&pl022->adev->dev, |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 1694 | "Microwire duplex mode is configured incorrectly\n"); |
| 1695 | return -EINVAL; |
Julia Lawall | 4a4fd47 | 2010-09-29 17:31:30 +0900 | [diff] [blame] | 1696 | } |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 1697 | } else { |
| 1698 | if (chip_info->duplex != SSP_MICROWIRE_CHANNEL_FULL_DUPLEX) |
Linus Walleij | 5a1c98b | 2010-10-01 11:47:32 +0200 | [diff] [blame] | 1699 | dev_err(&pl022->adev->dev, |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 1700 | "Microwire half duplex mode requested," |
| 1701 | " but this is only available in the" |
| 1702 | " ST version of PL022\n"); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1703 | return -EINVAL; |
| 1704 | } |
| 1705 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1706 | return 0; |
| 1707 | } |
| 1708 | |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1709 | static inline u32 spi_rate(u32 rate, u16 cpsdvsr, u16 scr) |
| 1710 | { |
| 1711 | return rate / (cpsdvsr * (1 + scr)); |
| 1712 | } |
| 1713 | |
| 1714 | static int calculate_effective_freq(struct pl022 *pl022, int freq, struct |
| 1715 | ssp_clock_params * clk_freq) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1716 | { |
| 1717 | /* Lets calculate the frequency parameters */ |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1718 | u16 cpsdvsr = CPSDVR_MIN, scr = SCR_MIN; |
| 1719 | u32 rate, max_tclk, min_tclk, best_freq = 0, best_cpsdvsr = 0, |
| 1720 | best_scr = 0, tmp, found = 0; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1721 | |
| 1722 | rate = clk_get_rate(pl022->clk); |
| 1723 | /* cpsdvscr = 2 & scr 0 */ |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1724 | max_tclk = spi_rate(rate, CPSDVR_MIN, SCR_MIN); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1725 | /* cpsdvsr = 254 & scr = 255 */ |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1726 | min_tclk = spi_rate(rate, CPSDVR_MAX, SCR_MAX); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1727 | |
Viresh Kumar | ea505bc | 2012-04-19 11:48:15 +0530 | [diff] [blame] | 1728 | if (freq > max_tclk) |
| 1729 | dev_warn(&pl022->adev->dev, |
| 1730 | "Max speed that can be programmed is %d Hz, you requested %d\n", |
| 1731 | max_tclk, freq); |
| 1732 | |
| 1733 | if (freq < min_tclk) { |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1734 | dev_err(&pl022->adev->dev, |
Viresh Kumar | ea505bc | 2012-04-19 11:48:15 +0530 | [diff] [blame] | 1735 | "Requested frequency: %d Hz is less than minimum possible %d Hz\n", |
| 1736 | freq, min_tclk); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1737 | return -EINVAL; |
| 1738 | } |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1739 | |
| 1740 | /* |
| 1741 | * best_freq will give closest possible available rate (<= requested |
| 1742 | * freq) for all values of scr & cpsdvsr. |
| 1743 | */ |
| 1744 | while ((cpsdvsr <= CPSDVR_MAX) && !found) { |
| 1745 | while (scr <= SCR_MAX) { |
| 1746 | tmp = spi_rate(rate, cpsdvsr, scr); |
| 1747 | |
Viresh Kumar | 5eb806a | 2012-04-19 14:44:21 +0530 | [diff] [blame] | 1748 | if (tmp > freq) { |
| 1749 | /* we need lower freq */ |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1750 | scr++; |
Viresh Kumar | 5eb806a | 2012-04-19 14:44:21 +0530 | [diff] [blame] | 1751 | continue; |
| 1752 | } |
| 1753 | |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1754 | /* |
Viresh Kumar | 5eb806a | 2012-04-19 14:44:21 +0530 | [diff] [blame] | 1755 | * If found exact value, mark found and break. |
| 1756 | * If found more closer value, update and break. |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1757 | */ |
Viresh Kumar | 5eb806a | 2012-04-19 14:44:21 +0530 | [diff] [blame] | 1758 | if (tmp > best_freq) { |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1759 | best_freq = tmp; |
| 1760 | best_cpsdvsr = cpsdvsr; |
| 1761 | best_scr = scr; |
| 1762 | |
| 1763 | if (tmp == freq) |
Viresh Kumar | 5eb806a | 2012-04-19 14:44:21 +0530 | [diff] [blame] | 1764 | found = 1; |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1765 | } |
Viresh Kumar | 5eb806a | 2012-04-19 14:44:21 +0530 | [diff] [blame] | 1766 | /* |
| 1767 | * increased scr will give lower rates, which are not |
| 1768 | * required |
| 1769 | */ |
| 1770 | break; |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1771 | } |
| 1772 | cpsdvsr += 2; |
| 1773 | scr = SCR_MIN; |
| 1774 | } |
| 1775 | |
Viresh Kumar | 5eb806a | 2012-04-19 14:44:21 +0530 | [diff] [blame] | 1776 | WARN(!best_freq, "pl022: Matching cpsdvsr and scr not found for %d Hz rate \n", |
| 1777 | freq); |
| 1778 | |
Viresh Kumar | 0379b2a | 2011-08-10 14:20:57 +0530 | [diff] [blame] | 1779 | clk_freq->cpsdvsr = (u8) (best_cpsdvsr & 0xFF); |
| 1780 | clk_freq->scr = (u8) (best_scr & 0xFF); |
| 1781 | dev_dbg(&pl022->adev->dev, |
| 1782 | "SSP Target Frequency is: %u, Effective Frequency is %u\n", |
| 1783 | freq, best_freq); |
| 1784 | dev_dbg(&pl022->adev->dev, "SSP cpsdvsr = %d, scr = %d\n", |
| 1785 | clk_freq->cpsdvsr, clk_freq->scr); |
| 1786 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1787 | return 0; |
| 1788 | } |
| 1789 | |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1790 | /* |
| 1791 | * A piece of default chip info unless the platform |
| 1792 | * supplies it. |
| 1793 | */ |
| 1794 | static const struct pl022_config_chip pl022_default_chip_info = { |
| 1795 | .com_mode = POLLING_TRANSFER, |
| 1796 | .iface = SSP_INTERFACE_MOTOROLA_SPI, |
| 1797 | .hierarchy = SSP_SLAVE, |
| 1798 | .slave_tx_disable = DO_NOT_DRIVE_TX, |
| 1799 | .rx_lev_trig = SSP_RX_1_OR_MORE_ELEM, |
| 1800 | .tx_lev_trig = SSP_TX_1_OR_MORE_EMPTY_LOC, |
| 1801 | .ctrl_len = SSP_BITS_8, |
| 1802 | .wait_state = SSP_MWIRE_WAIT_ZERO, |
| 1803 | .duplex = SSP_MICROWIRE_CHANNEL_FULL_DUPLEX, |
| 1804 | .cs_control = null_cs_control, |
| 1805 | }; |
| 1806 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1807 | /** |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1808 | * pl022_setup - setup function registered to SPI master framework |
| 1809 | * @spi: spi device which is requesting setup |
| 1810 | * |
| 1811 | * This function is registered to the SPI framework for this SPI master |
| 1812 | * controller. If it is the first time when setup is called by this device, |
| 1813 | * this function will initialize the runtime state for this chip and save |
| 1814 | * the same in the device structure. Else it will update the runtime info |
| 1815 | * with the updated chip info. Nothing is really being written to the |
| 1816 | * controller hardware here, that is not done until the actual transfer |
| 1817 | * commence. |
| 1818 | */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1819 | static int pl022_setup(struct spi_device *spi) |
| 1820 | { |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1821 | struct pl022_config_chip const *chip_info; |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 1822 | struct pl022_config_chip chip_info_dt; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1823 | struct chip_data *chip; |
Jonas Aaberg | c4a4784 | 2011-02-28 16:42:41 +0100 | [diff] [blame] | 1824 | struct ssp_clock_params clk_freq = { .cpsdvsr = 0, .scr = 0}; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1825 | int status = 0; |
| 1826 | struct pl022 *pl022 = spi_master_get_devdata(spi->master); |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 1827 | unsigned int bits = spi->bits_per_word; |
| 1828 | u32 tmp; |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 1829 | struct device_node *np = spi->dev.of_node; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1830 | |
| 1831 | if (!spi->max_speed_hz) |
| 1832 | return -EINVAL; |
| 1833 | |
| 1834 | /* Get controller_state if one is supplied */ |
| 1835 | chip = spi_get_ctldata(spi); |
| 1836 | |
| 1837 | if (chip == NULL) { |
| 1838 | chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL); |
| 1839 | if (!chip) { |
| 1840 | dev_err(&spi->dev, |
| 1841 | "cannot allocate controller state\n"); |
| 1842 | return -ENOMEM; |
| 1843 | } |
| 1844 | dev_dbg(&spi->dev, |
| 1845 | "allocated memory for controller's runtime state\n"); |
| 1846 | } |
| 1847 | |
| 1848 | /* Get controller data if one is supplied */ |
| 1849 | chip_info = spi->controller_data; |
| 1850 | |
| 1851 | if (chip_info == NULL) { |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 1852 | if (np) { |
| 1853 | chip_info_dt = pl022_default_chip_info; |
| 1854 | |
| 1855 | chip_info_dt.hierarchy = SSP_MASTER; |
| 1856 | of_property_read_u32(np, "pl022,interface", |
| 1857 | &chip_info_dt.iface); |
| 1858 | of_property_read_u32(np, "pl022,com-mode", |
| 1859 | &chip_info_dt.com_mode); |
| 1860 | of_property_read_u32(np, "pl022,rx-level-trig", |
| 1861 | &chip_info_dt.rx_lev_trig); |
| 1862 | of_property_read_u32(np, "pl022,tx-level-trig", |
| 1863 | &chip_info_dt.tx_lev_trig); |
| 1864 | of_property_read_u32(np, "pl022,ctrl-len", |
| 1865 | &chip_info_dt.ctrl_len); |
| 1866 | of_property_read_u32(np, "pl022,wait-state", |
| 1867 | &chip_info_dt.wait_state); |
| 1868 | of_property_read_u32(np, "pl022,duplex", |
| 1869 | &chip_info_dt.duplex); |
| 1870 | |
| 1871 | chip_info = &chip_info_dt; |
| 1872 | } else { |
| 1873 | chip_info = &pl022_default_chip_info; |
| 1874 | /* spi_board_info.controller_data not is supplied */ |
| 1875 | dev_dbg(&spi->dev, |
| 1876 | "using default controller_data settings\n"); |
| 1877 | } |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1878 | } else |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1879 | dev_dbg(&spi->dev, |
| 1880 | "using user supplied controller_data settings\n"); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1881 | |
| 1882 | /* |
| 1883 | * We can override with custom divisors, else we use the board |
| 1884 | * frequency setting |
| 1885 | */ |
| 1886 | if ((0 == chip_info->clk_freq.cpsdvsr) |
| 1887 | && (0 == chip_info->clk_freq.scr)) { |
| 1888 | status = calculate_effective_freq(pl022, |
| 1889 | spi->max_speed_hz, |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1890 | &clk_freq); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1891 | if (status < 0) |
| 1892 | goto err_config_params; |
| 1893 | } else { |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1894 | memcpy(&clk_freq, &chip_info->clk_freq, sizeof(clk_freq)); |
| 1895 | if ((clk_freq.cpsdvsr % 2) != 0) |
| 1896 | clk_freq.cpsdvsr = |
| 1897 | clk_freq.cpsdvsr - 1; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1898 | } |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1899 | if ((clk_freq.cpsdvsr < CPSDVR_MIN) |
| 1900 | || (clk_freq.cpsdvsr > CPSDVR_MAX)) { |
Virupax Sadashivpetimath | e3f88ae | 2011-06-13 16:23:46 +0530 | [diff] [blame] | 1901 | status = -EINVAL; |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1902 | dev_err(&spi->dev, |
| 1903 | "cpsdvsr is configured incorrectly\n"); |
| 1904 | goto err_config_params; |
| 1905 | } |
| 1906 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1907 | status = verify_controller_parameters(pl022, chip_info); |
| 1908 | if (status) { |
| 1909 | dev_err(&spi->dev, "controller data is incorrect"); |
| 1910 | goto err_config_params; |
| 1911 | } |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1912 | |
Linus Walleij | 083be3f | 2011-06-16 10:14:28 +0200 | [diff] [blame] | 1913 | pl022->rx_lev_trig = chip_info->rx_lev_trig; |
| 1914 | pl022->tx_lev_trig = chip_info->tx_lev_trig; |
| 1915 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1916 | /* Now set controller state based on controller data */ |
| 1917 | chip->xfer_type = chip_info->com_mode; |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1918 | if (!chip_info->cs_control) { |
| 1919 | chip->cs_control = null_cs_control; |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 1920 | if (!gpio_is_valid(pl022->chipselects[spi->chip_select])) |
| 1921 | dev_warn(&spi->dev, |
| 1922 | "invalid chip select\n"); |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1923 | } else |
| 1924 | chip->cs_control = chip_info->cs_control; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1925 | |
Vinit Shenoy | eb798c6 | 2012-04-17 12:40:13 +0530 | [diff] [blame] | 1926 | /* Check bits per word with vendor specific range */ |
| 1927 | if ((bits <= 3) || (bits > pl022->vendor->max_bpw)) { |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 1928 | status = -ENOTSUPP; |
Vinit Shenoy | eb798c6 | 2012-04-17 12:40:13 +0530 | [diff] [blame] | 1929 | dev_err(&spi->dev, "illegal data size for this controller!\n"); |
| 1930 | dev_err(&spi->dev, "This controller can only handle 4 <= n <= %d bit words\n", |
| 1931 | pl022->vendor->max_bpw); |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 1932 | goto err_config_params; |
| 1933 | } else if (bits <= 8) { |
| 1934 | dev_dbg(&spi->dev, "4 <= n <=8 bits per word\n"); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1935 | chip->n_bytes = 1; |
| 1936 | chip->read = READING_U8; |
| 1937 | chip->write = WRITING_U8; |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 1938 | } else if (bits <= 16) { |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1939 | dev_dbg(&spi->dev, "9 <= n <= 16 bits per word\n"); |
| 1940 | chip->n_bytes = 2; |
| 1941 | chip->read = READING_U16; |
| 1942 | chip->write = WRITING_U16; |
| 1943 | } else { |
Vinit Shenoy | eb798c6 | 2012-04-17 12:40:13 +0530 | [diff] [blame] | 1944 | dev_dbg(&spi->dev, "17 <= n <= 32 bits per word\n"); |
| 1945 | chip->n_bytes = 4; |
| 1946 | chip->read = READING_U32; |
| 1947 | chip->write = WRITING_U32; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1948 | } |
| 1949 | |
| 1950 | /* Now Initialize all register settings required for this chip */ |
| 1951 | chip->cr0 = 0; |
| 1952 | chip->cr1 = 0; |
| 1953 | chip->dmacr = 0; |
| 1954 | chip->cpsr = 0; |
| 1955 | if ((chip_info->com_mode == DMA_TRANSFER) |
| 1956 | && ((pl022->master_info)->enable_dma)) { |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1957 | chip->enable_dma = true; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1958 | dev_dbg(&spi->dev, "DMA mode set in controller state\n"); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1959 | SSP_WRITE_BITS(chip->dmacr, SSP_DMA_ENABLED, |
| 1960 | SSP_DMACR_MASK_RXDMAE, 0); |
| 1961 | SSP_WRITE_BITS(chip->dmacr, SSP_DMA_ENABLED, |
| 1962 | SSP_DMACR_MASK_TXDMAE, 1); |
| 1963 | } else { |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 1964 | chip->enable_dma = false; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1965 | dev_dbg(&spi->dev, "DMA mode NOT set in controller state\n"); |
| 1966 | SSP_WRITE_BITS(chip->dmacr, SSP_DMA_DISABLED, |
| 1967 | SSP_DMACR_MASK_RXDMAE, 0); |
| 1968 | SSP_WRITE_BITS(chip->dmacr, SSP_DMA_DISABLED, |
| 1969 | SSP_DMACR_MASK_TXDMAE, 1); |
| 1970 | } |
| 1971 | |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 1972 | chip->cpsr = clk_freq.cpsdvsr; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 1973 | |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 1974 | /* Special setup for the ST micro extended control registers */ |
| 1975 | if (pl022->vendor->extended_cr) { |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 1976 | u32 etx; |
| 1977 | |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 1978 | if (pl022->vendor->pl023) { |
| 1979 | /* These bits are only in the PL023 */ |
| 1980 | SSP_WRITE_BITS(chip->cr1, chip_info->clkdelay, |
| 1981 | SSP_CR1_MASK_FBCLKDEL_ST, 13); |
| 1982 | } else { |
| 1983 | /* These bits are in the PL022 but not PL023 */ |
| 1984 | SSP_WRITE_BITS(chip->cr0, chip_info->duplex, |
| 1985 | SSP_CR0_MASK_HALFDUP_ST, 5); |
| 1986 | SSP_WRITE_BITS(chip->cr0, chip_info->ctrl_len, |
| 1987 | SSP_CR0_MASK_CSS_ST, 16); |
| 1988 | SSP_WRITE_BITS(chip->cr0, chip_info->iface, |
| 1989 | SSP_CR0_MASK_FRF_ST, 21); |
| 1990 | SSP_WRITE_BITS(chip->cr1, chip_info->wait_state, |
| 1991 | SSP_CR1_MASK_MWAIT_ST, 6); |
| 1992 | } |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 1993 | SSP_WRITE_BITS(chip->cr0, bits - 1, |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 1994 | SSP_CR0_MASK_DSS_ST, 0); |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 1995 | |
| 1996 | if (spi->mode & SPI_LSB_FIRST) { |
| 1997 | tmp = SSP_RX_LSB; |
| 1998 | etx = SSP_TX_LSB; |
| 1999 | } else { |
| 2000 | tmp = SSP_RX_MSB; |
| 2001 | etx = SSP_TX_MSB; |
| 2002 | } |
| 2003 | SSP_WRITE_BITS(chip->cr1, tmp, SSP_CR1_MASK_RENDN_ST, 4); |
| 2004 | SSP_WRITE_BITS(chip->cr1, etx, SSP_CR1_MASK_TENDN_ST, 5); |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 2005 | SSP_WRITE_BITS(chip->cr1, chip_info->rx_lev_trig, |
| 2006 | SSP_CR1_MASK_RXIFLSEL_ST, 7); |
| 2007 | SSP_WRITE_BITS(chip->cr1, chip_info->tx_lev_trig, |
| 2008 | SSP_CR1_MASK_TXIFLSEL_ST, 10); |
| 2009 | } else { |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 2010 | SSP_WRITE_BITS(chip->cr0, bits - 1, |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 2011 | SSP_CR0_MASK_DSS, 0); |
| 2012 | SSP_WRITE_BITS(chip->cr0, chip_info->iface, |
| 2013 | SSP_CR0_MASK_FRF, 4); |
| 2014 | } |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 2015 | |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 2016 | /* Stuff that is common for all versions */ |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 2017 | if (spi->mode & SPI_CPOL) |
| 2018 | tmp = SSP_CLK_POL_IDLE_HIGH; |
| 2019 | else |
| 2020 | tmp = SSP_CLK_POL_IDLE_LOW; |
| 2021 | SSP_WRITE_BITS(chip->cr0, tmp, SSP_CR0_MASK_SPO, 6); |
| 2022 | |
| 2023 | if (spi->mode & SPI_CPHA) |
| 2024 | tmp = SSP_CLK_SECOND_EDGE; |
| 2025 | else |
| 2026 | tmp = SSP_CLK_FIRST_EDGE; |
| 2027 | SSP_WRITE_BITS(chip->cr0, tmp, SSP_CR0_MASK_SPH, 7); |
| 2028 | |
Linus Walleij | f9d629c | 2010-10-01 13:33:13 +0200 | [diff] [blame] | 2029 | SSP_WRITE_BITS(chip->cr0, clk_freq.scr, SSP_CR0_MASK_SCR, 8); |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 2030 | /* Loopback is available on all versions except PL023 */ |
Philippe Langlais | 06fb01f | 2011-03-23 11:05:16 +0100 | [diff] [blame] | 2031 | if (pl022->vendor->loopback) { |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 2032 | if (spi->mode & SPI_LOOP) |
| 2033 | tmp = LOOPBACK_ENABLED; |
| 2034 | else |
| 2035 | tmp = LOOPBACK_DISABLED; |
| 2036 | SSP_WRITE_BITS(chip->cr1, tmp, SSP_CR1_MASK_LBM, 0); |
| 2037 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2038 | SSP_WRITE_BITS(chip->cr1, SSP_DISABLED, SSP_CR1_MASK_SSE, 1); |
| 2039 | SSP_WRITE_BITS(chip->cr1, chip_info->hierarchy, SSP_CR1_MASK_MS, 2); |
Viresh Kumar | f1e45f8 | 2011-08-10 14:20:54 +0530 | [diff] [blame] | 2040 | SSP_WRITE_BITS(chip->cr1, chip_info->slave_tx_disable, SSP_CR1_MASK_SOD, |
| 2041 | 3); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2042 | |
| 2043 | /* Save controller_state */ |
| 2044 | spi_set_ctldata(spi, chip); |
| 2045 | return status; |
| 2046 | err_config_params: |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 2047 | spi_set_ctldata(spi, NULL); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2048 | kfree(chip); |
| 2049 | return status; |
| 2050 | } |
| 2051 | |
| 2052 | /** |
| 2053 | * pl022_cleanup - cleanup function registered to SPI master framework |
| 2054 | * @spi: spi device which is requesting cleanup |
| 2055 | * |
| 2056 | * This function is registered to the SPI framework for this SPI master |
| 2057 | * controller. It will free the runtime state of chip. |
| 2058 | */ |
| 2059 | static void pl022_cleanup(struct spi_device *spi) |
| 2060 | { |
| 2061 | struct chip_data *chip = spi_get_ctldata(spi); |
| 2062 | |
| 2063 | spi_set_ctldata(spi, NULL); |
| 2064 | kfree(chip); |
| 2065 | } |
| 2066 | |
Roland Stigge | 39a6ac1 | 2012-09-18 15:53:53 +0200 | [diff] [blame] | 2067 | static struct pl022_ssp_controller * |
| 2068 | pl022_platform_data_dt_get(struct device *dev) |
| 2069 | { |
| 2070 | struct device_node *np = dev->of_node; |
| 2071 | struct pl022_ssp_controller *pd; |
| 2072 | u32 tmp; |
| 2073 | |
| 2074 | if (!np) { |
| 2075 | dev_err(dev, "no dt node defined\n"); |
| 2076 | return NULL; |
| 2077 | } |
| 2078 | |
| 2079 | pd = devm_kzalloc(dev, sizeof(struct pl022_ssp_controller), GFP_KERNEL); |
| 2080 | if (!pd) { |
| 2081 | dev_err(dev, "cannot allocate platform data memory\n"); |
| 2082 | return NULL; |
| 2083 | } |
| 2084 | |
| 2085 | pd->bus_id = -1; |
| 2086 | of_property_read_u32(np, "num-cs", &tmp); |
| 2087 | pd->num_chipselect = tmp; |
| 2088 | of_property_read_u32(np, "pl022,autosuspend-delay", |
| 2089 | &pd->autosuspend_delay); |
| 2090 | pd->rt = of_property_read_bool(np, "pl022,rt"); |
| 2091 | |
| 2092 | return pd; |
| 2093 | } |
| 2094 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 2095 | static int pl022_probe(struct amba_device *adev, const struct amba_id *id) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2096 | { |
| 2097 | struct device *dev = &adev->dev; |
| 2098 | struct pl022_ssp_controller *platform_info = adev->dev.platform_data; |
| 2099 | struct spi_master *master; |
| 2100 | struct pl022 *pl022 = NULL; /*Data for this driver */ |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2101 | struct device_node *np = adev->dev.of_node; |
| 2102 | int status = 0, i, num_cs; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2103 | |
| 2104 | dev_info(&adev->dev, |
| 2105 | "ARM PL022 driver, device ID: 0x%08x\n", adev->periphid); |
Roland Stigge | 39a6ac1 | 2012-09-18 15:53:53 +0200 | [diff] [blame] | 2106 | if (!platform_info && IS_ENABLED(CONFIG_OF)) |
| 2107 | platform_info = pl022_platform_data_dt_get(dev); |
| 2108 | |
| 2109 | if (!platform_info) { |
| 2110 | dev_err(dev, "probe: no platform data defined\n"); |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 2111 | return -ENODEV; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2112 | } |
| 2113 | |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2114 | if (platform_info->num_chipselect) { |
| 2115 | num_cs = platform_info->num_chipselect; |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2116 | } else { |
Roland Stigge | 39a6ac1 | 2012-09-18 15:53:53 +0200 | [diff] [blame] | 2117 | dev_err(dev, "probe: no chip select defined\n"); |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 2118 | return -ENODEV; |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2119 | } |
| 2120 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2121 | /* Allocate master with space for data */ |
Roland Stigge | b4b8482 | 2012-09-03 10:14:29 +0200 | [diff] [blame] | 2122 | master = spi_alloc_master(dev, sizeof(struct pl022)); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2123 | if (master == NULL) { |
| 2124 | dev_err(&adev->dev, "probe - cannot alloc SPI master\n"); |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 2125 | return -ENOMEM; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2126 | } |
| 2127 | |
| 2128 | pl022 = spi_master_get_devdata(master); |
| 2129 | pl022->master = master; |
| 2130 | pl022->master_info = platform_info; |
| 2131 | pl022->adev = adev; |
| 2132 | pl022->vendor = id->data; |
Roland Stigge | b4b8482 | 2012-09-03 10:14:29 +0200 | [diff] [blame] | 2133 | pl022->chipselects = devm_kzalloc(dev, num_cs * sizeof(int), |
| 2134 | GFP_KERNEL); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2135 | |
Patrice Chotard | 4f5e1b3 | 2012-09-19 14:23:46 +0200 | [diff] [blame] | 2136 | pl022->pinctrl = devm_pinctrl_get(dev); |
| 2137 | if (IS_ERR(pl022->pinctrl)) { |
| 2138 | status = PTR_ERR(pl022->pinctrl); |
| 2139 | goto err_no_pinctrl; |
| 2140 | } |
| 2141 | |
| 2142 | pl022->pins_default = pinctrl_lookup_state(pl022->pinctrl, |
| 2143 | PINCTRL_STATE_DEFAULT); |
| 2144 | /* enable pins to be muxed in and configured */ |
| 2145 | if (!IS_ERR(pl022->pins_default)) { |
| 2146 | status = pinctrl_select_state(pl022->pinctrl, |
| 2147 | pl022->pins_default); |
| 2148 | if (status) |
| 2149 | dev_err(dev, "could not set default pins\n"); |
| 2150 | } else |
| 2151 | dev_err(dev, "could not get default pinstate\n"); |
| 2152 | |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2153 | pl022->pins_idle = pinctrl_lookup_state(pl022->pinctrl, |
| 2154 | PINCTRL_STATE_IDLE); |
| 2155 | if (IS_ERR(pl022->pins_idle)) |
| 2156 | dev_dbg(dev, "could not get idle pinstate\n"); |
| 2157 | |
Patrice Chotard | 4f5e1b3 | 2012-09-19 14:23:46 +0200 | [diff] [blame] | 2158 | pl022->pins_sleep = pinctrl_lookup_state(pl022->pinctrl, |
| 2159 | PINCTRL_STATE_SLEEP); |
| 2160 | if (IS_ERR(pl022->pins_sleep)) |
| 2161 | dev_dbg(dev, "could not get sleep pinstate\n"); |
| 2162 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2163 | /* |
| 2164 | * Bus Number Which has been Assigned to this SSP controller |
| 2165 | * on this board |
| 2166 | */ |
| 2167 | master->bus_num = platform_info->bus_id; |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2168 | master->num_chipselect = num_cs; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2169 | master->cleanup = pl022_cleanup; |
| 2170 | master->setup = pl022_setup; |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 2171 | master->prepare_transfer_hardware = pl022_prepare_transfer_hardware; |
| 2172 | master->transfer_one_message = pl022_transfer_one_message; |
| 2173 | master->unprepare_transfer_hardware = pl022_unprepare_transfer_hardware; |
| 2174 | master->rt = platform_info->rt; |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2175 | master->dev.of_node = dev->of_node; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2176 | |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2177 | if (platform_info->num_chipselect && platform_info->chipselects) { |
| 2178 | for (i = 0; i < num_cs; i++) |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 2179 | pl022->chipselects[i] = platform_info->chipselects[i]; |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2180 | } else if (IS_ENABLED(CONFIG_OF)) { |
| 2181 | for (i = 0; i < num_cs; i++) { |
| 2182 | int cs_gpio = of_get_named_gpio(np, "cs-gpios", i); |
| 2183 | |
| 2184 | if (cs_gpio == -EPROBE_DEFER) { |
| 2185 | status = -EPROBE_DEFER; |
| 2186 | goto err_no_gpio; |
| 2187 | } |
| 2188 | |
| 2189 | pl022->chipselects[i] = cs_gpio; |
| 2190 | |
| 2191 | if (gpio_is_valid(cs_gpio)) { |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 2192 | if (devm_gpio_request(dev, cs_gpio, "ssp-pl022")) |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2193 | dev_err(&adev->dev, |
| 2194 | "could not request %d gpio\n", |
| 2195 | cs_gpio); |
| 2196 | else if (gpio_direction_output(cs_gpio, 1)) |
| 2197 | dev_err(&adev->dev, |
| 2198 | "could set gpio %d as output\n", |
| 2199 | cs_gpio); |
| 2200 | } |
| 2201 | } |
| 2202 | } |
Roland Stigge | f6f46de | 2012-08-22 15:49:17 +0200 | [diff] [blame] | 2203 | |
Kevin Wells | bde435a | 2010-09-16 06:18:50 -0700 | [diff] [blame] | 2204 | /* |
| 2205 | * Supports mode 0-3, loopback, and active low CS. Transfers are |
| 2206 | * always MS bit first on the original pl022. |
| 2207 | */ |
| 2208 | master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LOOP; |
| 2209 | if (pl022->vendor->extended_cr) |
| 2210 | master->mode_bits |= SPI_LSB_FIRST; |
| 2211 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2212 | dev_dbg(&adev->dev, "BUSNO: %d\n", master->bus_num); |
| 2213 | |
| 2214 | status = amba_request_regions(adev, NULL); |
| 2215 | if (status) |
| 2216 | goto err_no_ioregion; |
| 2217 | |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 2218 | pl022->phybase = adev->res.start; |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 2219 | pl022->virtbase = devm_ioremap(dev, adev->res.start, |
| 2220 | resource_size(&adev->res)); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2221 | if (pl022->virtbase == NULL) { |
| 2222 | status = -ENOMEM; |
| 2223 | goto err_no_ioremap; |
| 2224 | } |
| 2225 | printk(KERN_INFO "pl022: mapped registers from 0x%08x to %p\n", |
| 2226 | adev->res.start, pl022->virtbase); |
| 2227 | |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 2228 | pl022->clk = devm_clk_get(&adev->dev, NULL); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2229 | if (IS_ERR(pl022->clk)) { |
| 2230 | status = PTR_ERR(pl022->clk); |
| 2231 | dev_err(&adev->dev, "could not retrieve SSP/SPI bus clock\n"); |
| 2232 | goto err_no_clk; |
| 2233 | } |
Russell King | 7ff6bcf | 2011-09-22 14:27:11 +0100 | [diff] [blame] | 2234 | |
| 2235 | status = clk_prepare(pl022->clk); |
| 2236 | if (status) { |
| 2237 | dev_err(&adev->dev, "could not prepare SSP/SPI bus clock\n"); |
| 2238 | goto err_clk_prep; |
| 2239 | } |
| 2240 | |
Ulf Hansson | 71e63e7 | 2011-11-04 08:10:09 +0100 | [diff] [blame] | 2241 | status = clk_enable(pl022->clk); |
| 2242 | if (status) { |
| 2243 | dev_err(&adev->dev, "could not enable SSP/SPI bus clock\n"); |
| 2244 | goto err_no_clk_en; |
| 2245 | } |
| 2246 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 2247 | /* Initialize transfer pump */ |
| 2248 | tasklet_init(&pl022->pump_transfers, pump_transfers, |
| 2249 | (unsigned long)pl022); |
| 2250 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2251 | /* Disable SSP */ |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2252 | writew((readw(SSP_CR1(pl022->virtbase)) & (~SSP_CR1_MASK_SSE)), |
| 2253 | SSP_CR1(pl022->virtbase)); |
| 2254 | load_ssp_default_config(pl022); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2255 | |
Linus Walleij | aeef991 | 2012-09-26 16:48:36 +0200 | [diff] [blame] | 2256 | status = devm_request_irq(dev, adev->irq[0], pl022_interrupt_handler, |
| 2257 | 0, "pl022", pl022); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2258 | if (status < 0) { |
| 2259 | dev_err(&adev->dev, "probe - cannot get IRQ (%d)\n", status); |
| 2260 | goto err_no_irq; |
| 2261 | } |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 2262 | |
Arnd Bergmann | dc71545 | 2013-01-28 16:24:37 +0000 | [diff] [blame] | 2263 | /* Get DMA channels, try autoconfiguration first */ |
| 2264 | status = pl022_dma_autoprobe(pl022); |
| 2265 | |
| 2266 | /* If that failed, use channels from platform_info */ |
| 2267 | if (status == 0) |
| 2268 | platform_info->enable_dma = 1; |
| 2269 | else if (platform_info->enable_dma) { |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 2270 | status = pl022_dma_probe(pl022); |
| 2271 | if (status != 0) |
Viresh Kumar | 43c6401 | 2011-05-16 09:40:10 +0530 | [diff] [blame] | 2272 | platform_info->enable_dma = 0; |
Linus Walleij | b1b6b9a | 2010-09-29 17:31:35 +0900 | [diff] [blame] | 2273 | } |
| 2274 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2275 | /* Register with the SPI framework */ |
| 2276 | amba_set_drvdata(adev, pl022); |
| 2277 | status = spi_register_master(master); |
| 2278 | if (status != 0) { |
| 2279 | dev_err(&adev->dev, |
| 2280 | "probe - problem registering spi master\n"); |
| 2281 | goto err_spi_register; |
| 2282 | } |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2283 | dev_dbg(dev, "probe succeeded\n"); |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2284 | |
| 2285 | /* let runtime pm put suspend */ |
Chris Blair | 53e4ace | 2011-11-08 08:54:46 +0000 | [diff] [blame] | 2286 | if (platform_info->autosuspend_delay > 0) { |
| 2287 | dev_info(&adev->dev, |
| 2288 | "will use autosuspend for runtime pm, delay %dms\n", |
| 2289 | platform_info->autosuspend_delay); |
| 2290 | pm_runtime_set_autosuspend_delay(dev, |
| 2291 | platform_info->autosuspend_delay); |
| 2292 | pm_runtime_use_autosuspend(dev); |
Chris Blair | 53e4ace | 2011-11-08 08:54:46 +0000 | [diff] [blame] | 2293 | } |
Ulf Hansson | 0df3499 | 2012-10-17 14:27:08 +0200 | [diff] [blame] | 2294 | pm_runtime_put(dev); |
| 2295 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2296 | return 0; |
| 2297 | |
| 2298 | err_spi_register: |
Viresh Kumar | 3e3ea71 | 2011-08-10 14:20:58 +0530 | [diff] [blame] | 2299 | if (platform_info->enable_dma) |
| 2300 | pl022_dma_remove(pl022); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2301 | err_no_irq: |
Ulf Hansson | 71e63e7 | 2011-11-04 08:10:09 +0100 | [diff] [blame] | 2302 | clk_disable(pl022->clk); |
| 2303 | err_no_clk_en: |
Russell King | 7ff6bcf | 2011-09-22 14:27:11 +0100 | [diff] [blame] | 2304 | clk_unprepare(pl022->clk); |
| 2305 | err_clk_prep: |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2306 | err_no_clk: |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2307 | err_no_ioremap: |
| 2308 | amba_release_regions(adev); |
| 2309 | err_no_ioregion: |
Roland Stigge | 6d3952a | 2012-08-22 15:49:18 +0200 | [diff] [blame] | 2310 | err_no_gpio: |
Patrice Chotard | 4f5e1b3 | 2012-09-19 14:23:46 +0200 | [diff] [blame] | 2311 | err_no_pinctrl: |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2312 | spi_master_put(master); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2313 | return status; |
| 2314 | } |
| 2315 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 2316 | static int |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2317 | pl022_remove(struct amba_device *adev) |
| 2318 | { |
| 2319 | struct pl022 *pl022 = amba_get_drvdata(adev); |
Linus Walleij | 50658b6 | 2011-08-02 11:29:24 +0200 | [diff] [blame] | 2320 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2321 | if (!pl022) |
| 2322 | return 0; |
| 2323 | |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2324 | /* |
| 2325 | * undo pm_runtime_put() in probe. I assume that we're not |
| 2326 | * accessing the primecell here. |
| 2327 | */ |
| 2328 | pm_runtime_get_noresume(&adev->dev); |
| 2329 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2330 | load_ssp_default_config(pl022); |
Viresh Kumar | 3e3ea71 | 2011-08-10 14:20:58 +0530 | [diff] [blame] | 2331 | if (pl022->master_info->enable_dma) |
| 2332 | pl022_dma_remove(pl022); |
| 2333 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2334 | clk_disable(pl022->clk); |
Russell King | 7ff6bcf | 2011-09-22 14:27:11 +0100 | [diff] [blame] | 2335 | clk_unprepare(pl022->clk); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2336 | amba_release_regions(adev); |
| 2337 | tasklet_disable(&pl022->pump_transfers); |
| 2338 | spi_unregister_master(pl022->master); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2339 | amba_set_drvdata(adev, NULL); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2340 | return 0; |
| 2341 | } |
| 2342 | |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2343 | #if defined(CONFIG_SUSPEND) || defined(CONFIG_PM_RUNTIME) |
| 2344 | /* |
| 2345 | * These two functions are used from both suspend/resume and |
| 2346 | * the runtime counterparts to handle external resources like |
| 2347 | * clocks, pins and regulators when going to sleep. |
| 2348 | */ |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2349 | static void pl022_suspend_resources(struct pl022 *pl022, bool runtime) |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2350 | { |
| 2351 | int ret; |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2352 | struct pinctrl_state *pins_state; |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2353 | |
| 2354 | clk_disable(pl022->clk); |
| 2355 | |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2356 | pins_state = runtime ? pl022->pins_idle : pl022->pins_sleep; |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2357 | /* Optionally let pins go into sleep states */ |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2358 | if (!IS_ERR(pins_state)) { |
| 2359 | ret = pinctrl_select_state(pl022->pinctrl, pins_state); |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2360 | if (ret) |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2361 | dev_err(&pl022->adev->dev, "could not set %s pins\n", |
| 2362 | runtime ? "idle" : "sleep"); |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2363 | } |
| 2364 | } |
| 2365 | |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2366 | static void pl022_resume_resources(struct pl022 *pl022, bool runtime) |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2367 | { |
| 2368 | int ret; |
| 2369 | |
| 2370 | /* Optionaly enable pins to be muxed in and configured */ |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2371 | /* First go to the default state */ |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2372 | if (!IS_ERR(pl022->pins_default)) { |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2373 | ret = pinctrl_select_state(pl022->pinctrl, pl022->pins_default); |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2374 | if (ret) |
| 2375 | dev_err(&pl022->adev->dev, |
| 2376 | "could not set default pins\n"); |
| 2377 | } |
| 2378 | |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2379 | if (!runtime) { |
| 2380 | /* Then let's idle the pins until the next transfer happens */ |
| 2381 | if (!IS_ERR(pl022->pins_idle)) { |
| 2382 | ret = pinctrl_select_state(pl022->pinctrl, |
| 2383 | pl022->pins_idle); |
| 2384 | if (ret) |
| 2385 | dev_err(&pl022->adev->dev, |
| 2386 | "could not set idle pins\n"); |
| 2387 | } |
| 2388 | } |
| 2389 | |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2390 | clk_enable(pl022->clk); |
| 2391 | } |
| 2392 | #endif |
| 2393 | |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2394 | #ifdef CONFIG_SUSPEND |
Peter Hüwe | 6cfa627 | 2011-09-05 21:07:23 +0100 | [diff] [blame] | 2395 | static int pl022_suspend(struct device *dev) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2396 | { |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2397 | struct pl022 *pl022 = dev_get_drvdata(dev); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 2398 | int ret; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2399 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 2400 | ret = spi_master_suspend(pl022->master); |
| 2401 | if (ret) { |
| 2402 | dev_warn(dev, "cannot suspend master\n"); |
| 2403 | return ret; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2404 | } |
Ulf Hansson | 4964a26 | 2012-10-17 14:27:16 +0200 | [diff] [blame] | 2405 | |
| 2406 | pm_runtime_get_sync(dev); |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2407 | pl022_suspend_resources(pl022, false); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2408 | |
Peter Hüwe | 6cfa627 | 2011-09-05 21:07:23 +0100 | [diff] [blame] | 2409 | dev_dbg(dev, "suspended\n"); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2410 | return 0; |
| 2411 | } |
| 2412 | |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2413 | static int pl022_resume(struct device *dev) |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2414 | { |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2415 | struct pl022 *pl022 = dev_get_drvdata(dev); |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 2416 | int ret; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2417 | |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2418 | pl022_resume_resources(pl022, false); |
Ulf Hansson | 4964a26 | 2012-10-17 14:27:16 +0200 | [diff] [blame] | 2419 | pm_runtime_put(dev); |
Linus Walleij | ada7aec | 2012-09-26 18:06:22 +0200 | [diff] [blame] | 2420 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2421 | /* Start the queue running */ |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 2422 | ret = spi_master_resume(pl022->master); |
| 2423 | if (ret) |
| 2424 | dev_err(dev, "problem starting queue (%d)\n", ret); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2425 | else |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2426 | dev_dbg(dev, "resumed\n"); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2427 | |
Linus Walleij | ffbbdd21 | 2012-02-22 10:05:38 +0100 | [diff] [blame] | 2428 | return ret; |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2429 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2430 | #endif /* CONFIG_PM */ |
| 2431 | |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2432 | #ifdef CONFIG_PM_RUNTIME |
| 2433 | static int pl022_runtime_suspend(struct device *dev) |
| 2434 | { |
| 2435 | struct pl022 *pl022 = dev_get_drvdata(dev); |
| 2436 | |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2437 | pl022_suspend_resources(pl022, true); |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2438 | return 0; |
| 2439 | } |
| 2440 | |
| 2441 | static int pl022_runtime_resume(struct device *dev) |
| 2442 | { |
| 2443 | struct pl022 *pl022 = dev_get_drvdata(dev); |
Patrice Chotard | 4f5e1b3 | 2012-09-19 14:23:46 +0200 | [diff] [blame] | 2444 | |
Patrice Chotard | d8f1842 | 2012-10-17 14:27:24 +0200 | [diff] [blame] | 2445 | pl022_resume_resources(pl022, true); |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2446 | return 0; |
| 2447 | } |
| 2448 | #endif |
| 2449 | |
| 2450 | static const struct dev_pm_ops pl022_dev_pm_ops = { |
| 2451 | SET_SYSTEM_SLEEP_PM_OPS(pl022_suspend, pl022_resume) |
| 2452 | SET_RUNTIME_PM_OPS(pl022_runtime_suspend, pl022_runtime_resume, NULL) |
| 2453 | }; |
| 2454 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2455 | static struct vendor_data vendor_arm = { |
| 2456 | .fifodepth = 8, |
| 2457 | .max_bpw = 16, |
| 2458 | .unidir = false, |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 2459 | .extended_cr = false, |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 2460 | .pl023 = false, |
Philippe Langlais | 06fb01f | 2011-03-23 11:05:16 +0100 | [diff] [blame] | 2461 | .loopback = true, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2462 | }; |
| 2463 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2464 | static struct vendor_data vendor_st = { |
| 2465 | .fifodepth = 32, |
| 2466 | .max_bpw = 32, |
| 2467 | .unidir = false, |
Linus Walleij | 556f4ae | 2010-05-05 09:28:15 +0000 | [diff] [blame] | 2468 | .extended_cr = true, |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 2469 | .pl023 = false, |
Philippe Langlais | 06fb01f | 2011-03-23 11:05:16 +0100 | [diff] [blame] | 2470 | .loopback = true, |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 2471 | }; |
| 2472 | |
| 2473 | static struct vendor_data vendor_st_pl023 = { |
| 2474 | .fifodepth = 32, |
| 2475 | .max_bpw = 32, |
| 2476 | .unidir = false, |
| 2477 | .extended_cr = true, |
| 2478 | .pl023 = true, |
Philippe Langlais | 06fb01f | 2011-03-23 11:05:16 +0100 | [diff] [blame] | 2479 | .loopback = false, |
| 2480 | }; |
| 2481 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2482 | static struct amba_id pl022_ids[] = { |
| 2483 | { |
| 2484 | /* |
| 2485 | * ARM PL022 variant, this has a 16bit wide |
| 2486 | * and 8 locations deep TX/RX FIFO |
| 2487 | */ |
| 2488 | .id = 0x00041022, |
| 2489 | .mask = 0x000fffff, |
| 2490 | .data = &vendor_arm, |
| 2491 | }, |
| 2492 | { |
| 2493 | /* |
| 2494 | * ST Micro derivative, this has 32bit wide |
| 2495 | * and 32 locations deep TX/RX FIFO |
| 2496 | */ |
Srinidhi Kasagar | e89e04f | 2009-10-05 06:13:53 +0100 | [diff] [blame] | 2497 | .id = 0x01080022, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2498 | .mask = 0xffffffff, |
| 2499 | .data = &vendor_st, |
| 2500 | }, |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 2501 | { |
| 2502 | /* |
| 2503 | * ST-Ericsson derivative "PL023" (this is not |
| 2504 | * an official ARM number), this is a PL022 SSP block |
| 2505 | * stripped to SPI mode only, it has 32bit wide |
| 2506 | * and 32 locations deep TX/RX FIFO but no extended |
| 2507 | * CR0/CR1 register |
| 2508 | */ |
Viresh Kumar | f1e45f8 | 2011-08-10 14:20:54 +0530 | [diff] [blame] | 2509 | .id = 0x00080023, |
| 2510 | .mask = 0xffffffff, |
| 2511 | .data = &vendor_st_pl023, |
Linus Walleij | 781c7b1 | 2010-05-07 08:40:53 +0000 | [diff] [blame] | 2512 | }, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2513 | { 0, 0 }, |
| 2514 | }; |
| 2515 | |
Dave Martin | 7eeac71 | 2011-10-05 15:15:22 +0100 | [diff] [blame] | 2516 | MODULE_DEVICE_TABLE(amba, pl022_ids); |
| 2517 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2518 | static struct amba_driver pl022_driver = { |
| 2519 | .drv = { |
| 2520 | .name = "ssp-pl022", |
Russell King | 92b97f0 | 2011-08-14 09:13:48 +0100 | [diff] [blame] | 2521 | .pm = &pl022_dev_pm_ops, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2522 | }, |
| 2523 | .id_table = pl022_ids, |
| 2524 | .probe = pl022_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 2525 | .remove = pl022_remove, |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2526 | }; |
| 2527 | |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2528 | static int __init pl022_init(void) |
| 2529 | { |
| 2530 | return amba_driver_register(&pl022_driver); |
| 2531 | } |
Linus Walleij | 25c8e03 | 2010-09-06 11:02:12 +0200 | [diff] [blame] | 2532 | subsys_initcall(pl022_init); |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2533 | |
| 2534 | static void __exit pl022_exit(void) |
| 2535 | { |
| 2536 | amba_driver_unregister(&pl022_driver); |
| 2537 | } |
Linus Walleij | b43d65f | 2009-06-09 08:11:42 +0100 | [diff] [blame] | 2538 | module_exit(pl022_exit); |
| 2539 | |
| 2540 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); |
| 2541 | MODULE_DESCRIPTION("PL022 SSP Controller Driver"); |
| 2542 | MODULE_LICENSE("GPL"); |