Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 1 | /* |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 2 | * Copyright (c) 2006 Ben Dooks |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 3 | * Copyright 2006-2009 Simtec Electronics |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | */ |
| 11 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 12 | #include <linux/init.h> |
| 13 | #include <linux/spinlock.h> |
| 14 | #include <linux/workqueue.h> |
| 15 | #include <linux/interrupt.h> |
| 16 | #include <linux/delay.h> |
| 17 | #include <linux/errno.h> |
| 18 | #include <linux/err.h> |
| 19 | #include <linux/clk.h> |
| 20 | #include <linux/platform_device.h> |
Ben Dooks | ee9c1fb | 2009-01-06 14:41:44 -0800 | [diff] [blame] | 21 | #include <linux/gpio.h> |
Ben Dooks | 1a0c220 | 2009-09-22 16:46:12 -0700 | [diff] [blame] | 22 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 24 | |
| 25 | #include <linux/spi/spi.h> |
| 26 | #include <linux/spi/spi_bitbang.h> |
Heiko Stuebner | f35ef7c | 2012-01-31 20:06:07 +0900 | [diff] [blame] | 27 | #include <linux/spi/s3c24xx.h> |
Paul Gortmaker | d7614de | 2011-07-03 15:44:29 -0400 | [diff] [blame] | 28 | #include <linux/module.h> |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 29 | |
Ben Dooks | 1362270 | 2008-10-30 10:14:38 +0000 | [diff] [blame] | 30 | #include <plat/regs-spi.h> |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 31 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 32 | #include <asm/fiq.h> |
| 33 | |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 34 | #include "spi-s3c24xx-fiq.h" |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 35 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 36 | /** |
| 37 | * s3c24xx_spi_devstate - per device data |
| 38 | * @hz: Last frequency calculated for @sppre field. |
| 39 | * @mode: Last mode setting for the @spcon field. |
| 40 | * @spcon: Value to write to the SPCON register. |
| 41 | * @sppre: Value to write to the SPPRE register. |
| 42 | */ |
| 43 | struct s3c24xx_spi_devstate { |
| 44 | unsigned int hz; |
| 45 | unsigned int mode; |
| 46 | u8 spcon; |
| 47 | u8 sppre; |
| 48 | }; |
| 49 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 50 | enum spi_fiq_mode { |
| 51 | FIQ_MODE_NONE = 0, |
| 52 | FIQ_MODE_TX = 1, |
| 53 | FIQ_MODE_RX = 2, |
| 54 | FIQ_MODE_TXRX = 3, |
| 55 | }; |
| 56 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 57 | struct s3c24xx_spi { |
| 58 | /* bitbang has to be first */ |
| 59 | struct spi_bitbang bitbang; |
| 60 | struct completion done; |
| 61 | |
| 62 | void __iomem *regs; |
| 63 | int irq; |
| 64 | int len; |
| 65 | int count; |
| 66 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 67 | struct fiq_handler fiq_handler; |
| 68 | enum spi_fiq_mode fiq_mode; |
| 69 | unsigned char fiq_inuse; |
| 70 | unsigned char fiq_claimed; |
| 71 | |
Arnaud Patard (Rtp | 6c912a3 | 2007-03-16 13:38:36 -0800 | [diff] [blame] | 72 | void (*set_cs)(struct s3c2410_spi_info *spi, |
Ben Dooks | 8736b92 | 2007-01-26 00:56:43 -0800 | [diff] [blame] | 73 | int cs, int pol); |
| 74 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 75 | /* data buffers */ |
| 76 | const unsigned char *tx; |
| 77 | unsigned char *rx; |
| 78 | |
| 79 | struct clk *clk; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 80 | struct spi_master *master; |
| 81 | struct spi_device *curdev; |
| 82 | struct device *dev; |
| 83 | struct s3c2410_spi_info *pdata; |
| 84 | }; |
| 85 | |
| 86 | #define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT) |
| 87 | #define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP) |
| 88 | |
| 89 | static inline struct s3c24xx_spi *to_hw(struct spi_device *sdev) |
| 90 | { |
| 91 | return spi_master_get_devdata(sdev->master); |
| 92 | } |
| 93 | |
Ben Dooks | 8736b92 | 2007-01-26 00:56:43 -0800 | [diff] [blame] | 94 | static void s3c24xx_spi_gpiocs(struct s3c2410_spi_info *spi, int cs, int pol) |
| 95 | { |
Ben Dooks | ee9c1fb | 2009-01-06 14:41:44 -0800 | [diff] [blame] | 96 | gpio_set_value(spi->pin_cs, pol); |
Ben Dooks | 8736b92 | 2007-01-26 00:56:43 -0800 | [diff] [blame] | 97 | } |
| 98 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 99 | static void s3c24xx_spi_chipsel(struct spi_device *spi, int value) |
| 100 | { |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 101 | struct s3c24xx_spi_devstate *cs = spi->controller_state; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 102 | struct s3c24xx_spi *hw = to_hw(spi); |
| 103 | unsigned int cspol = spi->mode & SPI_CS_HIGH ? 1 : 0; |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 104 | |
| 105 | /* change the chipselect state and the state of the spi engine clock */ |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 106 | |
| 107 | switch (value) { |
| 108 | case BITBANG_CS_INACTIVE: |
Ben Dooks | 3d2c5b4 | 2007-04-16 22:53:22 -0700 | [diff] [blame] | 109 | hw->set_cs(hw->pdata, spi->chip_select, cspol^1); |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 110 | writeb(cs->spcon, hw->regs + S3C2410_SPCON); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 111 | break; |
| 112 | |
| 113 | case BITBANG_CS_ACTIVE: |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 114 | writeb(cs->spcon | S3C2410_SPCON_ENSCK, |
| 115 | hw->regs + S3C2410_SPCON); |
Ben Dooks | 3d2c5b4 | 2007-04-16 22:53:22 -0700 | [diff] [blame] | 116 | hw->set_cs(hw->pdata, spi->chip_select, cspol); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 117 | break; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 118 | } |
| 119 | } |
| 120 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 121 | static int s3c24xx_spi_update_state(struct spi_device *spi, |
| 122 | struct spi_transfer *t) |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 123 | { |
| 124 | struct s3c24xx_spi *hw = to_hw(spi); |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 125 | struct s3c24xx_spi_devstate *cs = spi->controller_state; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 126 | unsigned int hz; |
| 127 | unsigned int div; |
Ben Dooks | b897878 | 2009-08-18 14:11:16 -0700 | [diff] [blame] | 128 | unsigned long clk; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 129 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 130 | hz = t ? t->speed_hz : spi->max_speed_hz; |
| 131 | |
Ben Dooks | 1915297 | 2009-08-18 14:11:17 -0700 | [diff] [blame] | 132 | if (!hz) |
| 133 | hz = spi->max_speed_hz; |
| 134 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 135 | if (spi->mode != cs->mode) { |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 136 | u8 spcon = SPCON_DEFAULT | S3C2410_SPCON_ENSCK; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 137 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 138 | if (spi->mode & SPI_CPHA) |
| 139 | spcon |= S3C2410_SPCON_CPHA_FMTB; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 140 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 141 | if (spi->mode & SPI_CPOL) |
| 142 | spcon |= S3C2410_SPCON_CPOL_HIGH; |
Ben Dooks | b897878 | 2009-08-18 14:11:16 -0700 | [diff] [blame] | 143 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 144 | cs->mode = spi->mode; |
| 145 | cs->spcon = spcon; |
| 146 | } |
Ben Dooks | b897878 | 2009-08-18 14:11:16 -0700 | [diff] [blame] | 147 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 148 | if (cs->hz != hz) { |
| 149 | clk = clk_get_rate(hw->clk); |
| 150 | div = DIV_ROUND_UP(clk, hz * 2) - 1; |
| 151 | |
| 152 | if (div > 255) |
| 153 | div = 255; |
| 154 | |
| 155 | dev_dbg(&spi->dev, "pre-scaler=%d (wanted %d, got %ld)\n", |
| 156 | div, hz, clk / (2 * (div + 1))); |
| 157 | |
| 158 | cs->hz = hz; |
| 159 | cs->sppre = div; |
| 160 | } |
| 161 | |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | static int s3c24xx_spi_setupxfer(struct spi_device *spi, |
| 166 | struct spi_transfer *t) |
| 167 | { |
| 168 | struct s3c24xx_spi_devstate *cs = spi->controller_state; |
| 169 | struct s3c24xx_spi *hw = to_hw(spi); |
| 170 | int ret; |
| 171 | |
| 172 | ret = s3c24xx_spi_update_state(spi, t); |
| 173 | if (!ret) |
| 174 | writeb(cs->sppre, hw->regs + S3C2410_SPPRE); |
| 175 | |
| 176 | return ret; |
| 177 | } |
| 178 | |
| 179 | static int s3c24xx_spi_setup(struct spi_device *spi) |
| 180 | { |
| 181 | struct s3c24xx_spi_devstate *cs = spi->controller_state; |
| 182 | struct s3c24xx_spi *hw = to_hw(spi); |
| 183 | int ret; |
| 184 | |
| 185 | /* allocate settings on the first call */ |
| 186 | if (!cs) { |
| 187 | cs = kzalloc(sizeof(struct s3c24xx_spi_devstate), GFP_KERNEL); |
| 188 | if (!cs) { |
| 189 | dev_err(&spi->dev, "no memory for controller state\n"); |
| 190 | return -ENOMEM; |
| 191 | } |
| 192 | |
| 193 | cs->spcon = SPCON_DEFAULT; |
| 194 | cs->hz = -1; |
| 195 | spi->controller_state = cs; |
| 196 | } |
| 197 | |
| 198 | /* initialise the state from the device */ |
| 199 | ret = s3c24xx_spi_update_state(spi, NULL); |
| 200 | if (ret) |
| 201 | return ret; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 202 | |
| 203 | spin_lock(&hw->bitbang.lock); |
| 204 | if (!hw->bitbang.busy) { |
| 205 | hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE); |
| 206 | /* need to ndelay for 0.5 clocktick ? */ |
| 207 | } |
| 208 | spin_unlock(&hw->bitbang.lock); |
| 209 | |
| 210 | return 0; |
| 211 | } |
| 212 | |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 213 | static void s3c24xx_spi_cleanup(struct spi_device *spi) |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 214 | { |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 215 | kfree(spi->controller_state); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count) |
| 219 | { |
David Brownell | 4b1badf | 2006-12-29 16:48:39 -0800 | [diff] [blame] | 220 | return hw->tx ? hw->tx[count] : 0; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 223 | #ifdef CONFIG_SPI_S3C24XX_FIQ |
| 224 | /* Support for FIQ based pseudo-DMA to improve the transfer speed. |
| 225 | * |
| 226 | * This code uses the assembly helper in spi_s3c24xx_spi.S which is |
| 227 | * used by the FIQ core to move data between main memory and the peripheral |
| 228 | * block. Since this is code running on the processor, there is no problem |
| 229 | * with cache coherency of the buffers, so we can use any buffer we like. |
| 230 | */ |
| 231 | |
| 232 | /** |
| 233 | * struct spi_fiq_code - FIQ code and header |
| 234 | * @length: The length of the code fragment, excluding this header. |
| 235 | * @ack_offset: The offset from @data to the word to place the IRQ ACK bit at. |
| 236 | * @data: The code itself to install as a FIQ handler. |
| 237 | */ |
| 238 | struct spi_fiq_code { |
| 239 | u32 length; |
| 240 | u32 ack_offset; |
| 241 | u8 data[0]; |
| 242 | }; |
| 243 | |
| 244 | extern struct spi_fiq_code s3c24xx_spi_fiq_txrx; |
| 245 | extern struct spi_fiq_code s3c24xx_spi_fiq_tx; |
| 246 | extern struct spi_fiq_code s3c24xx_spi_fiq_rx; |
| 247 | |
| 248 | /** |
| 249 | * ack_bit - turn IRQ into IRQ acknowledgement bit |
| 250 | * @irq: The interrupt number |
| 251 | * |
| 252 | * Returns the bit to write to the interrupt acknowledge register. |
| 253 | */ |
| 254 | static inline u32 ack_bit(unsigned int irq) |
| 255 | { |
| 256 | return 1 << (irq - IRQ_EINT0); |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * s3c24xx_spi_tryfiq - attempt to claim and setup FIQ for transfer |
| 261 | * @hw: The hardware state. |
| 262 | * |
| 263 | * Claim the FIQ handler (only one can be active at any one time) and |
| 264 | * then setup the correct transfer code for this transfer. |
| 265 | * |
Daniel Mack | 3ad2f3fb | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 266 | * This call updates all the necessary state information if successful, |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 267 | * so the caller does not need to do anything more than start the transfer |
| 268 | * as normal, since the IRQ will have been re-routed to the FIQ handler. |
| 269 | */ |
Sachin Kamat | cfeb331 | 2013-09-10 11:20:13 +0530 | [diff] [blame] | 270 | static void s3c24xx_spi_tryfiq(struct s3c24xx_spi *hw) |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 271 | { |
| 272 | struct pt_regs regs; |
| 273 | enum spi_fiq_mode mode; |
| 274 | struct spi_fiq_code *code; |
| 275 | int ret; |
| 276 | |
| 277 | if (!hw->fiq_claimed) { |
| 278 | /* try and claim fiq if we haven't got it, and if not |
| 279 | * then return and simply use another transfer method */ |
| 280 | |
| 281 | ret = claim_fiq(&hw->fiq_handler); |
| 282 | if (ret) |
| 283 | return; |
| 284 | } |
| 285 | |
| 286 | if (hw->tx && !hw->rx) |
| 287 | mode = FIQ_MODE_TX; |
| 288 | else if (hw->rx && !hw->tx) |
| 289 | mode = FIQ_MODE_RX; |
| 290 | else |
| 291 | mode = FIQ_MODE_TXRX; |
| 292 | |
| 293 | regs.uregs[fiq_rspi] = (long)hw->regs; |
| 294 | regs.uregs[fiq_rrx] = (long)hw->rx; |
| 295 | regs.uregs[fiq_rtx] = (long)hw->tx + 1; |
| 296 | regs.uregs[fiq_rcount] = hw->len - 1; |
| 297 | regs.uregs[fiq_rirq] = (long)S3C24XX_VA_IRQ; |
| 298 | |
| 299 | set_fiq_regs(®s); |
| 300 | |
| 301 | if (hw->fiq_mode != mode) { |
| 302 | u32 *ack_ptr; |
| 303 | |
| 304 | hw->fiq_mode = mode; |
| 305 | |
| 306 | switch (mode) { |
| 307 | case FIQ_MODE_TX: |
| 308 | code = &s3c24xx_spi_fiq_tx; |
| 309 | break; |
| 310 | case FIQ_MODE_RX: |
| 311 | code = &s3c24xx_spi_fiq_rx; |
| 312 | break; |
| 313 | case FIQ_MODE_TXRX: |
| 314 | code = &s3c24xx_spi_fiq_txrx; |
| 315 | break; |
| 316 | default: |
| 317 | code = NULL; |
| 318 | } |
| 319 | |
| 320 | BUG_ON(!code); |
| 321 | |
| 322 | ack_ptr = (u32 *)&code->data[code->ack_offset]; |
| 323 | *ack_ptr = ack_bit(hw->irq); |
| 324 | |
| 325 | set_fiq_handler(&code->data, code->length); |
| 326 | } |
| 327 | |
| 328 | s3c24xx_set_fiq(hw->irq, true); |
| 329 | |
| 330 | hw->fiq_mode = mode; |
| 331 | hw->fiq_inuse = 1; |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * s3c24xx_spi_fiqop - FIQ core code callback |
| 336 | * @pw: Data registered with the handler |
| 337 | * @release: Whether this is a release or a return. |
| 338 | * |
| 339 | * Called by the FIQ code when another module wants to use the FIQ, so |
| 340 | * return whether we are currently using this or not and then update our |
| 341 | * internal state. |
| 342 | */ |
| 343 | static int s3c24xx_spi_fiqop(void *pw, int release) |
| 344 | { |
| 345 | struct s3c24xx_spi *hw = pw; |
| 346 | int ret = 0; |
| 347 | |
| 348 | if (release) { |
| 349 | if (hw->fiq_inuse) |
| 350 | ret = -EBUSY; |
| 351 | |
| 352 | /* note, we do not need to unroute the FIQ, as the FIQ |
| 353 | * vector code de-routes it to signal the end of transfer */ |
| 354 | |
| 355 | hw->fiq_mode = FIQ_MODE_NONE; |
| 356 | hw->fiq_claimed = 0; |
| 357 | } else { |
| 358 | hw->fiq_claimed = 1; |
| 359 | } |
| 360 | |
| 361 | return ret; |
| 362 | } |
| 363 | |
| 364 | /** |
| 365 | * s3c24xx_spi_initfiq - setup the information for the FIQ core |
| 366 | * @hw: The hardware state. |
| 367 | * |
| 368 | * Setup the fiq_handler block to pass to the FIQ core. |
| 369 | */ |
| 370 | static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *hw) |
| 371 | { |
| 372 | hw->fiq_handler.dev_id = hw; |
| 373 | hw->fiq_handler.name = dev_name(hw->dev); |
| 374 | hw->fiq_handler.fiq_op = s3c24xx_spi_fiqop; |
| 375 | } |
| 376 | |
| 377 | /** |
| 378 | * s3c24xx_spi_usefiq - return if we should be using FIQ. |
| 379 | * @hw: The hardware state. |
| 380 | * |
| 381 | * Return true if the platform data specifies whether this channel is |
| 382 | * allowed to use the FIQ. |
| 383 | */ |
| 384 | static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *hw) |
| 385 | { |
| 386 | return hw->pdata->use_fiq; |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * s3c24xx_spi_usingfiq - return if channel is using FIQ |
| 391 | * @spi: The hardware state. |
| 392 | * |
| 393 | * Return whether the channel is currently using the FIQ (separate from |
| 394 | * whether the FIQ is claimed). |
| 395 | */ |
| 396 | static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *spi) |
| 397 | { |
| 398 | return spi->fiq_inuse; |
| 399 | } |
| 400 | #else |
| 401 | |
| 402 | static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *s) { } |
| 403 | static inline void s3c24xx_spi_tryfiq(struct s3c24xx_spi *s) { } |
| 404 | static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *s) { return false; } |
| 405 | static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *s) { return false; } |
| 406 | |
| 407 | #endif /* CONFIG_SPI_S3C24XX_FIQ */ |
| 408 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 409 | static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t) |
| 410 | { |
| 411 | struct s3c24xx_spi *hw = to_hw(spi); |
| 412 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 413 | hw->tx = t->tx_buf; |
| 414 | hw->rx = t->rx_buf; |
| 415 | hw->len = t->len; |
| 416 | hw->count = 0; |
| 417 | |
Ben Dooks | 4bb5eba | 2008-04-15 14:34:44 -0700 | [diff] [blame] | 418 | init_completion(&hw->done); |
| 419 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 420 | hw->fiq_inuse = 0; |
| 421 | if (s3c24xx_spi_usefiq(hw) && t->len >= 3) |
| 422 | s3c24xx_spi_tryfiq(hw); |
| 423 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 424 | /* send the first byte */ |
| 425 | writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT); |
Ben Dooks | 4bb5eba | 2008-04-15 14:34:44 -0700 | [diff] [blame] | 426 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 427 | wait_for_completion(&hw->done); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 428 | return hw->count; |
| 429 | } |
| 430 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 431 | static irqreturn_t s3c24xx_spi_irq(int irq, void *dev) |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 432 | { |
| 433 | struct s3c24xx_spi *hw = dev; |
| 434 | unsigned int spsta = readb(hw->regs + S3C2410_SPSTA); |
| 435 | unsigned int count = hw->count; |
| 436 | |
| 437 | if (spsta & S3C2410_SPSTA_DCOL) { |
| 438 | dev_dbg(hw->dev, "data-collision\n"); |
| 439 | complete(&hw->done); |
| 440 | goto irq_done; |
| 441 | } |
| 442 | |
| 443 | if (!(spsta & S3C2410_SPSTA_READY)) { |
| 444 | dev_dbg(hw->dev, "spi not ready for tx?\n"); |
| 445 | complete(&hw->done); |
| 446 | goto irq_done; |
| 447 | } |
| 448 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 449 | if (!s3c24xx_spi_usingfiq(hw)) { |
| 450 | hw->count++; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 451 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 452 | if (hw->rx) |
| 453 | hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 454 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 455 | count++; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 456 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 457 | if (count < hw->len) |
| 458 | writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT); |
| 459 | else |
| 460 | complete(&hw->done); |
| 461 | } else { |
| 462 | hw->count = hw->len; |
| 463 | hw->fiq_inuse = 0; |
| 464 | |
| 465 | if (hw->rx) |
| 466 | hw->rx[hw->len-1] = readb(hw->regs + S3C2410_SPRDAT); |
| 467 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 468 | complete(&hw->done); |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 469 | } |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 470 | |
| 471 | irq_done: |
| 472 | return IRQ_HANDLED; |
| 473 | } |
| 474 | |
Ben Dooks | 5aa6cf3 | 2008-08-04 13:41:10 -0700 | [diff] [blame] | 475 | static void s3c24xx_spi_initialsetup(struct s3c24xx_spi *hw) |
| 476 | { |
| 477 | /* for the moment, permanently enable the clock */ |
| 478 | |
| 479 | clk_enable(hw->clk); |
| 480 | |
| 481 | /* program defaults into the registers */ |
| 482 | |
| 483 | writeb(0xff, hw->regs + S3C2410_SPPRE); |
| 484 | writeb(SPPIN_DEFAULT, hw->regs + S3C2410_SPPIN); |
| 485 | writeb(SPCON_DEFAULT, hw->regs + S3C2410_SPCON); |
Ben Dooks | cf46b97 | 2008-10-15 22:02:41 -0700 | [diff] [blame] | 486 | |
Ben Dooks | ee9c1fb | 2009-01-06 14:41:44 -0800 | [diff] [blame] | 487 | if (hw->pdata) { |
| 488 | if (hw->set_cs == s3c24xx_spi_gpiocs) |
| 489 | gpio_direction_output(hw->pdata->pin_cs, 1); |
| 490 | |
| 491 | if (hw->pdata->gpio_setup) |
| 492 | hw->pdata->gpio_setup(hw->pdata, 1); |
| 493 | } |
Ben Dooks | 5aa6cf3 | 2008-08-04 13:41:10 -0700 | [diff] [blame] | 494 | } |
| 495 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 496 | static int s3c24xx_spi_probe(struct platform_device *pdev) |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 497 | { |
Ben Dooks | 50f426b | 2008-04-15 14:34:45 -0700 | [diff] [blame] | 498 | struct s3c2410_spi_info *pdata; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 499 | struct s3c24xx_spi *hw; |
| 500 | struct spi_master *master; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 501 | struct resource *res; |
| 502 | int err = 0; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 503 | |
| 504 | master = spi_alloc_master(&pdev->dev, sizeof(struct s3c24xx_spi)); |
| 505 | if (master == NULL) { |
| 506 | dev_err(&pdev->dev, "No memory for spi_master\n"); |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 507 | return -ENOMEM; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | hw = spi_master_get_devdata(master); |
| 511 | memset(hw, 0, sizeof(struct s3c24xx_spi)); |
| 512 | |
Axel Lin | 94c69f7 | 2013-09-10 15:43:41 +0800 | [diff] [blame] | 513 | hw->master = master; |
Jingoo Han | 8074cf0 | 2013-07-30 16:58:59 +0900 | [diff] [blame] | 514 | hw->pdata = pdata = dev_get_platdata(&pdev->dev); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 515 | hw->dev = &pdev->dev; |
| 516 | |
Ben Dooks | 50f426b | 2008-04-15 14:34:45 -0700 | [diff] [blame] | 517 | if (pdata == NULL) { |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 518 | dev_err(&pdev->dev, "No platform data supplied\n"); |
| 519 | err = -ENOENT; |
| 520 | goto err_no_pdata; |
| 521 | } |
| 522 | |
| 523 | platform_set_drvdata(pdev, hw); |
| 524 | init_completion(&hw->done); |
| 525 | |
Ben Dooks | bec0806 | 2009-12-14 22:20:24 -0800 | [diff] [blame] | 526 | /* initialise fiq handler */ |
| 527 | |
| 528 | s3c24xx_spi_initfiq(hw); |
| 529 | |
Ben Dooks | d1e7780 | 2008-04-15 14:34:46 -0700 | [diff] [blame] | 530 | /* setup the master state. */ |
| 531 | |
David Brownell | e7db06b | 2009-06-17 16:26:04 -0700 | [diff] [blame] | 532 | /* the spi->mode bits understood by this driver: */ |
| 533 | master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH; |
| 534 | |
Ben Dooks | d1e7780 | 2008-04-15 14:34:46 -0700 | [diff] [blame] | 535 | master->num_chipselect = hw->pdata->num_cs; |
Ben Dooks | cb1d0a7 | 2008-07-28 15:46:33 -0700 | [diff] [blame] | 536 | master->bus_num = pdata->bus_num; |
Axel Lin | 08850fa | 2014-02-14 20:38:16 +0800 | [diff] [blame] | 537 | master->bits_per_word_mask = SPI_BPW_MASK(8); |
Ben Dooks | d1e7780 | 2008-04-15 14:34:46 -0700 | [diff] [blame] | 538 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 539 | /* setup the state for the bitbang driver */ |
| 540 | |
| 541 | hw->bitbang.master = hw->master; |
| 542 | hw->bitbang.setup_transfer = s3c24xx_spi_setupxfer; |
| 543 | hw->bitbang.chipselect = s3c24xx_spi_chipsel; |
| 544 | hw->bitbang.txrx_bufs = s3c24xx_spi_txrx; |
Ben Dooks | 570327d | 2009-09-22 16:46:14 -0700 | [diff] [blame] | 545 | |
| 546 | hw->master->setup = s3c24xx_spi_setup; |
| 547 | hw->master->cleanup = s3c24xx_spi_cleanup; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 548 | |
| 549 | dev_dbg(hw->dev, "bitbang at %p\n", &hw->bitbang); |
| 550 | |
| 551 | /* find and map our resources */ |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 552 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 553 | hw->regs = devm_ioremap_resource(&pdev->dev, res); |
| 554 | if (IS_ERR(hw->regs)) { |
| 555 | err = PTR_ERR(hw->regs); |
| 556 | goto err_no_pdata; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | hw->irq = platform_get_irq(pdev, 0); |
| 560 | if (hw->irq < 0) { |
| 561 | dev_err(&pdev->dev, "No IRQ specified\n"); |
| 562 | err = -ENOENT; |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 563 | goto err_no_pdata; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 564 | } |
| 565 | |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 566 | err = devm_request_irq(&pdev->dev, hw->irq, s3c24xx_spi_irq, 0, |
| 567 | pdev->name, hw); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 568 | if (err) { |
| 569 | dev_err(&pdev->dev, "Cannot claim IRQ\n"); |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 570 | goto err_no_pdata; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 571 | } |
| 572 | |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 573 | hw->clk = devm_clk_get(&pdev->dev, "spi"); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 574 | if (IS_ERR(hw->clk)) { |
| 575 | dev_err(&pdev->dev, "No clock for device\n"); |
| 576 | err = PTR_ERR(hw->clk); |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 577 | goto err_no_pdata; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 580 | /* setup any gpio we can */ |
| 581 | |
Ben Dooks | 50f426b | 2008-04-15 14:34:45 -0700 | [diff] [blame] | 582 | if (!pdata->set_cs) { |
Ben Dooks | ee9c1fb | 2009-01-06 14:41:44 -0800 | [diff] [blame] | 583 | if (pdata->pin_cs < 0) { |
| 584 | dev_err(&pdev->dev, "No chipselect pin\n"); |
Julia Lawall | b2af045 | 2012-08-22 13:42:47 +0200 | [diff] [blame] | 585 | err = -EINVAL; |
Ben Dooks | ee9c1fb | 2009-01-06 14:41:44 -0800 | [diff] [blame] | 586 | goto err_register; |
| 587 | } |
Ben Dooks | 8736b92 | 2007-01-26 00:56:43 -0800 | [diff] [blame] | 588 | |
Jingoo Han | c9f722e | 2013-12-09 19:19:13 +0900 | [diff] [blame] | 589 | err = devm_gpio_request(&pdev->dev, pdata->pin_cs, |
| 590 | dev_name(&pdev->dev)); |
Ben Dooks | ee9c1fb | 2009-01-06 14:41:44 -0800 | [diff] [blame] | 591 | if (err) { |
| 592 | dev_err(&pdev->dev, "Failed to get gpio for cs\n"); |
| 593 | goto err_register; |
| 594 | } |
| 595 | |
| 596 | hw->set_cs = s3c24xx_spi_gpiocs; |
| 597 | gpio_direction_output(pdata->pin_cs, 1); |
Ben Dooks | 8736b92 | 2007-01-26 00:56:43 -0800 | [diff] [blame] | 598 | } else |
Ben Dooks | 50f426b | 2008-04-15 14:34:45 -0700 | [diff] [blame] | 599 | hw->set_cs = pdata->set_cs; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 600 | |
Ben Dooks | ee9c1fb | 2009-01-06 14:41:44 -0800 | [diff] [blame] | 601 | s3c24xx_spi_initialsetup(hw); |
| 602 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 603 | /* register our spi controller */ |
| 604 | |
| 605 | err = spi_bitbang_start(&hw->bitbang); |
| 606 | if (err) { |
| 607 | dev_err(&pdev->dev, "Failed to register SPI master\n"); |
| 608 | goto err_register; |
| 609 | } |
| 610 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 611 | return 0; |
| 612 | |
| 613 | err_register: |
| 614 | clk_disable(hw->clk); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 615 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 616 | err_no_pdata: |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 617 | spi_master_put(hw->master); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 618 | return err; |
| 619 | } |
| 620 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 621 | static int s3c24xx_spi_remove(struct platform_device *dev) |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 622 | { |
| 623 | struct s3c24xx_spi *hw = platform_get_drvdata(dev); |
| 624 | |
Axel Lin | c6e7b8c | 2011-05-15 07:35:16 +0800 | [diff] [blame] | 625 | spi_bitbang_stop(&hw->bitbang); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 626 | clk_disable(hw->clk); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 627 | spi_master_put(hw->master); |
| 628 | return 0; |
| 629 | } |
| 630 | |
| 631 | |
| 632 | #ifdef CONFIG_PM |
| 633 | |
Ben Dooks | 6d61320 | 2009-09-22 16:46:13 -0700 | [diff] [blame] | 634 | static int s3c24xx_spi_suspend(struct device *dev) |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 635 | { |
Axel Lin | a1216394 | 2013-08-09 15:35:16 +0800 | [diff] [blame] | 636 | struct s3c24xx_spi *hw = dev_get_drvdata(dev); |
Axel Lin | 3806037 | 2014-03-05 15:17:23 +0800 | [diff] [blame^] | 637 | int ret; |
| 638 | |
| 639 | ret = spi_master_suspend(hw->master); |
| 640 | if (ret) |
| 641 | return ret; |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 642 | |
Ben Dooks | cf46b97 | 2008-10-15 22:02:41 -0700 | [diff] [blame] | 643 | if (hw->pdata && hw->pdata->gpio_setup) |
| 644 | hw->pdata->gpio_setup(hw->pdata, 0); |
| 645 | |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 646 | clk_disable(hw->clk); |
| 647 | return 0; |
| 648 | } |
| 649 | |
Ben Dooks | 6d61320 | 2009-09-22 16:46:13 -0700 | [diff] [blame] | 650 | static int s3c24xx_spi_resume(struct device *dev) |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 651 | { |
Axel Lin | a1216394 | 2013-08-09 15:35:16 +0800 | [diff] [blame] | 652 | struct s3c24xx_spi *hw = dev_get_drvdata(dev); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 653 | |
Ben Dooks | 5aa6cf3 | 2008-08-04 13:41:10 -0700 | [diff] [blame] | 654 | s3c24xx_spi_initialsetup(hw); |
Axel Lin | 3806037 | 2014-03-05 15:17:23 +0800 | [diff] [blame^] | 655 | return spi_master_resume(hw->master); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Alexey Dobriyan | 4714521 | 2009-12-14 18:00:08 -0800 | [diff] [blame] | 658 | static const struct dev_pm_ops s3c24xx_spi_pmops = { |
Ben Dooks | 6d61320 | 2009-09-22 16:46:13 -0700 | [diff] [blame] | 659 | .suspend = s3c24xx_spi_suspend, |
| 660 | .resume = s3c24xx_spi_resume, |
| 661 | }; |
| 662 | |
| 663 | #define S3C24XX_SPI_PMOPS &s3c24xx_spi_pmops |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 664 | #else |
Ben Dooks | 6d61320 | 2009-09-22 16:46:13 -0700 | [diff] [blame] | 665 | #define S3C24XX_SPI_PMOPS NULL |
| 666 | #endif /* CONFIG_PM */ |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 667 | |
Kay Sievers | 7e38c3c | 2008-04-10 21:29:20 -0700 | [diff] [blame] | 668 | MODULE_ALIAS("platform:s3c2410-spi"); |
Ben Dooks | 42cde43 | 2008-09-13 02:33:24 -0700 | [diff] [blame] | 669 | static struct platform_driver s3c24xx_spi_driver = { |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 670 | .probe = s3c24xx_spi_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 671 | .remove = s3c24xx_spi_remove, |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 672 | .driver = { |
| 673 | .name = "s3c2410-spi", |
| 674 | .owner = THIS_MODULE, |
Ben Dooks | 6d61320 | 2009-09-22 16:46:13 -0700 | [diff] [blame] | 675 | .pm = S3C24XX_SPI_PMOPS, |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 676 | }, |
| 677 | }; |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 678 | module_platform_driver(s3c24xx_spi_driver); |
Ben Dooks | 7fba534 | 2006-05-20 15:00:18 -0700 | [diff] [blame] | 679 | |
| 680 | MODULE_DESCRIPTION("S3C24XX SPI Driver"); |
| 681 | MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>"); |
| 682 | MODULE_LICENSE("GPL"); |