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