blob: 88dee87fc420fa81dc310d3ad18e68a46ef31ca8 [file] [log] [blame]
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001/*
Mike Frysinger26fdc1f2008-02-06 01:38:21 -08002 * Blackfin On-Chip SPI Driver
Wu, Bryana5f6abd2007-05-06 14:50:34 -07003 *
Bryan Wu131b17d2007-12-04 23:45:12 -08004 * Copyright 2004-2007 Analog Devices Inc.
Wu, Bryana5f6abd2007-05-06 14:50:34 -07005 *
Mike Frysinger26fdc1f2008-02-06 01:38:21 -08006 * Enter bugs at http://blackfin.uclinux.org/
Wu, Bryana5f6abd2007-05-06 14:50:34 -07007 *
Mike Frysinger26fdc1f2008-02-06 01:38:21 -08008 * Licensed under the GPL-2 or later.
Wu, Bryana5f6abd2007-05-06 14:50:34 -07009 */
10
11#include <linux/init.h>
12#include <linux/module.h>
Bryan Wu131b17d2007-12-04 23:45:12 -080013#include <linux/delay.h>
Wu, Bryana5f6abd2007-05-06 14:50:34 -070014#include <linux/device.h>
Bryan Wu131b17d2007-12-04 23:45:12 -080015#include <linux/io.h>
Wu, Bryana5f6abd2007-05-06 14:50:34 -070016#include <linux/ioport.h>
Bryan Wu131b17d2007-12-04 23:45:12 -080017#include <linux/irq.h>
Wu, Bryana5f6abd2007-05-06 14:50:34 -070018#include <linux/errno.h>
19#include <linux/interrupt.h>
20#include <linux/platform_device.h>
21#include <linux/dma-mapping.h>
22#include <linux/spi/spi.h>
23#include <linux/workqueue.h>
Wu, Bryana5f6abd2007-05-06 14:50:34 -070024
Wu, Bryana5f6abd2007-05-06 14:50:34 -070025#include <asm/dma.h>
Bryan Wu131b17d2007-12-04 23:45:12 -080026#include <asm/portmux.h>
Wu, Bryana5f6abd2007-05-06 14:50:34 -070027#include <asm/bfin5xx_spi.h>
Vitja Makarov8cf58582009-04-06 19:00:31 -070028#include <asm/cacheflush.h>
29
Bryan Wua32c6912007-12-04 23:45:15 -080030#define DRV_NAME "bfin-spi"
31#define DRV_AUTHOR "Bryan Wu, Luke Yang"
Will Newton6b1a8022007-12-10 15:49:26 -080032#define DRV_DESC "Blackfin BF5xx on-chip SPI Controller Driver"
Bryan Wua32c6912007-12-04 23:45:15 -080033#define DRV_VERSION "1.0"
34
35MODULE_AUTHOR(DRV_AUTHOR);
36MODULE_DESCRIPTION(DRV_DESC);
Wu, Bryana5f6abd2007-05-06 14:50:34 -070037MODULE_LICENSE("GPL");
38
Bryan Wubb90eb02007-12-04 23:45:18 -080039#define IS_DMA_ALIGNED(x) (((u32)(x)&0x07) == 0)
Wu, Bryana5f6abd2007-05-06 14:50:34 -070040
Bryan Wubb90eb02007-12-04 23:45:18 -080041#define START_STATE ((void *)0)
42#define RUNNING_STATE ((void *)1)
43#define DONE_STATE ((void *)2)
44#define ERROR_STATE ((void *)-1)
45#define QUEUE_RUNNING 0
46#define QUEUE_STOPPED 1
Wu, Bryana5f6abd2007-05-06 14:50:34 -070047
48struct driver_data {
49 /* Driver model hookup */
50 struct platform_device *pdev;
51
52 /* SPI framework hookup */
53 struct spi_master *master;
54
Bryan Wubb90eb02007-12-04 23:45:18 -080055 /* Regs base of SPI controller */
Bryan Wuf4521262007-12-04 23:45:22 -080056 void __iomem *regs_base;
Bryan Wubb90eb02007-12-04 23:45:18 -080057
Bryan Wu003d9222007-12-04 23:45:22 -080058 /* Pin request list */
59 u16 *pin_req;
60
Wu, Bryana5f6abd2007-05-06 14:50:34 -070061 /* BFIN hookup */
62 struct bfin5xx_spi_master *master_info;
63
64 /* Driver message queue */
65 struct workqueue_struct *workqueue;
66 struct work_struct pump_messages;
67 spinlock_t lock;
68 struct list_head queue;
69 int busy;
70 int run;
71
72 /* Message Transfer pump */
73 struct tasklet_struct pump_transfers;
74
75 /* Current message transfer state info */
76 struct spi_message *cur_msg;
77 struct spi_transfer *cur_transfer;
78 struct chip_data *cur_chip;
79 size_t len_in_bytes;
80 size_t len;
81 void *tx;
82 void *tx_end;
83 void *rx;
84 void *rx_end;
Bryan Wubb90eb02007-12-04 23:45:18 -080085
86 /* DMA stuffs */
87 int dma_channel;
Wu, Bryana5f6abd2007-05-06 14:50:34 -070088 int dma_mapped;
Bryan Wubb90eb02007-12-04 23:45:18 -080089 int dma_requested;
Wu, Bryana5f6abd2007-05-06 14:50:34 -070090 dma_addr_t rx_dma;
91 dma_addr_t tx_dma;
Bryan Wubb90eb02007-12-04 23:45:18 -080092
Wu, Bryana5f6abd2007-05-06 14:50:34 -070093 size_t rx_map_len;
94 size_t tx_map_len;
95 u8 n_bytes;
Bryan Wufad91c82007-12-04 23:45:14 -080096 int cs_change;
Wu, Bryana5f6abd2007-05-06 14:50:34 -070097 void (*write) (struct driver_data *);
98 void (*read) (struct driver_data *);
99 void (*duplex) (struct driver_data *);
100};
101
102struct chip_data {
103 u16 ctl_reg;
104 u16 baud;
105 u16 flag;
106
107 u8 chip_select_num;
108 u8 n_bytes;
Bryan Wu88b40362007-05-21 18:32:16 +0800109 u8 width; /* 0 or 1 */
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700110 u8 enable_dma;
111 u8 bits_per_word; /* 8 or 16 */
112 u8 cs_change_per_word;
Bryan Wu62310e52007-12-04 23:45:20 -0800113 u16 cs_chg_udelay; /* Some devices require > 255usec delay */
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700114 void (*write) (struct driver_data *);
115 void (*read) (struct driver_data *);
116 void (*duplex) (struct driver_data *);
117};
118
Bryan Wubb90eb02007-12-04 23:45:18 -0800119#define DEFINE_SPI_REG(reg, off) \
120static inline u16 read_##reg(struct driver_data *drv_data) \
121 { return bfin_read16(drv_data->regs_base + off); } \
122static inline void write_##reg(struct driver_data *drv_data, u16 v) \
123 { bfin_write16(drv_data->regs_base + off, v); }
124
125DEFINE_SPI_REG(CTRL, 0x00)
126DEFINE_SPI_REG(FLAG, 0x04)
127DEFINE_SPI_REG(STAT, 0x08)
128DEFINE_SPI_REG(TDBR, 0x0C)
129DEFINE_SPI_REG(RDBR, 0x10)
130DEFINE_SPI_REG(BAUD, 0x14)
131DEFINE_SPI_REG(SHAW, 0x18)
132
Bryan Wu88b40362007-05-21 18:32:16 +0800133static void bfin_spi_enable(struct driver_data *drv_data)
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700134{
135 u16 cr;
136
Bryan Wubb90eb02007-12-04 23:45:18 -0800137 cr = read_CTRL(drv_data);
138 write_CTRL(drv_data, (cr | BIT_CTL_ENABLE));
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700139}
140
Bryan Wu88b40362007-05-21 18:32:16 +0800141static void bfin_spi_disable(struct driver_data *drv_data)
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700142{
143 u16 cr;
144
Bryan Wubb90eb02007-12-04 23:45:18 -0800145 cr = read_CTRL(drv_data);
146 write_CTRL(drv_data, (cr & (~BIT_CTL_ENABLE)));
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700147}
148
149/* Caculate the SPI_BAUD register value based on input HZ */
150static u16 hz_to_spi_baud(u32 speed_hz)
151{
152 u_long sclk = get_sclk();
153 u16 spi_baud = (sclk / (2 * speed_hz));
154
155 if ((sclk % (2 * speed_hz)) > 0)
156 spi_baud++;
157
Michael Hennerich7513e002009-04-06 19:00:32 -0700158 if (spi_baud < MIN_SPI_BAUD_VAL)
159 spi_baud = MIN_SPI_BAUD_VAL;
160
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700161 return spi_baud;
162}
163
164static int flush(struct driver_data *drv_data)
165{
166 unsigned long limit = loops_per_jiffy << 1;
167
168 /* wait for stop and clear stat */
Bryan Wubb90eb02007-12-04 23:45:18 -0800169 while (!(read_STAT(drv_data) & BIT_STAT_SPIF) && limit--)
Bryan Wud8c05002007-12-04 23:45:21 -0800170 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700171
Bryan Wubb90eb02007-12-04 23:45:18 -0800172 write_STAT(drv_data, BIT_STAT_CLR);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700173
174 return limit;
175}
176
Bryan Wufad91c82007-12-04 23:45:14 -0800177/* Chip select operation functions for cs_change flag */
Bryan Wubb90eb02007-12-04 23:45:18 -0800178static void cs_active(struct driver_data *drv_data, struct chip_data *chip)
Bryan Wufad91c82007-12-04 23:45:14 -0800179{
Bryan Wubb90eb02007-12-04 23:45:18 -0800180 u16 flag = read_FLAG(drv_data);
Bryan Wufad91c82007-12-04 23:45:14 -0800181
182 flag |= chip->flag;
183 flag &= ~(chip->flag << 8);
184
Bryan Wubb90eb02007-12-04 23:45:18 -0800185 write_FLAG(drv_data, flag);
Bryan Wufad91c82007-12-04 23:45:14 -0800186}
187
Bryan Wubb90eb02007-12-04 23:45:18 -0800188static void cs_deactive(struct driver_data *drv_data, struct chip_data *chip)
Bryan Wufad91c82007-12-04 23:45:14 -0800189{
Bryan Wubb90eb02007-12-04 23:45:18 -0800190 u16 flag = read_FLAG(drv_data);
Bryan Wufad91c82007-12-04 23:45:14 -0800191
192 flag |= (chip->flag << 8);
193
Bryan Wubb90eb02007-12-04 23:45:18 -0800194 write_FLAG(drv_data, flag);
Bryan Wu62310e52007-12-04 23:45:20 -0800195
196 /* Move delay here for consistency */
197 if (chip->cs_chg_udelay)
198 udelay(chip->cs_chg_udelay);
Bryan Wufad91c82007-12-04 23:45:14 -0800199}
200
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700201/* stop controller and re-config current chip*/
Bryan Wu8d20d0a2008-02-06 01:38:17 -0800202static void restore_state(struct driver_data *drv_data)
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700203{
204 struct chip_data *chip = drv_data->cur_chip;
205
206 /* Clear status and disable clock */
Bryan Wubb90eb02007-12-04 23:45:18 -0800207 write_STAT(drv_data, BIT_STAT_CLR);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700208 bfin_spi_disable(drv_data);
Bryan Wu88b40362007-05-21 18:32:16 +0800209 dev_dbg(&drv_data->pdev->dev, "restoring spi ctl state\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700210
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700211 /* Load the registers */
Bryan Wubb90eb02007-12-04 23:45:18 -0800212 write_CTRL(drv_data, chip->ctl_reg);
Bryan Wu092e1fd2007-12-04 23:45:23 -0800213 write_BAUD(drv_data, chip->baud);
Sonic Zhangcc487e72007-12-04 23:45:17 -0800214
215 bfin_spi_enable(drv_data);
Sonic Zhang07612e52007-12-04 23:45:21 -0800216 cs_active(drv_data, chip);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700217}
218
219/* used to kick off transfer in rx mode */
Bryan Wubb90eb02007-12-04 23:45:18 -0800220static unsigned short dummy_read(struct driver_data *drv_data)
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700221{
222 unsigned short tmp;
Bryan Wubb90eb02007-12-04 23:45:18 -0800223 tmp = read_RDBR(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700224 return tmp;
225}
226
227static void null_writer(struct driver_data *drv_data)
228{
229 u8 n_bytes = drv_data->n_bytes;
230
231 while (drv_data->tx < drv_data->tx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800232 write_TDBR(drv_data, 0);
233 while ((read_STAT(drv_data) & BIT_STAT_TXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800234 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700235 drv_data->tx += n_bytes;
236 }
237}
238
239static void null_reader(struct driver_data *drv_data)
240{
241 u8 n_bytes = drv_data->n_bytes;
Bryan Wubb90eb02007-12-04 23:45:18 -0800242 dummy_read(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700243
244 while (drv_data->rx < drv_data->rx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800245 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800246 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800247 dummy_read(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700248 drv_data->rx += n_bytes;
249 }
250}
251
252static void u8_writer(struct driver_data *drv_data)
253{
Bryan Wu131b17d2007-12-04 23:45:12 -0800254 dev_dbg(&drv_data->pdev->dev,
Bryan Wubb90eb02007-12-04 23:45:18 -0800255 "cr8-s is 0x%x\n", read_STAT(drv_data));
Sonic Zhangcc487e72007-12-04 23:45:17 -0800256
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700257 while (drv_data->tx < drv_data->tx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800258 write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
259 while (read_STAT(drv_data) & BIT_STAT_TXS)
Bryan Wud8c05002007-12-04 23:45:21 -0800260 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700261 ++drv_data->tx;
262 }
Sonic Zhang13f3e6422008-02-06 01:38:20 -0800263
264 /* poll for SPI completion before return */
265 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
266 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700267}
268
269static void u8_cs_chg_writer(struct driver_data *drv_data)
270{
271 struct chip_data *chip = drv_data->cur_chip;
272
273 while (drv_data->tx < drv_data->tx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800274 cs_active(drv_data, chip);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700275
Bryan Wubb90eb02007-12-04 23:45:18 -0800276 write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
277 while (read_STAT(drv_data) & BIT_STAT_TXS)
Bryan Wud8c05002007-12-04 23:45:21 -0800278 cpu_relax();
Bryan Wue26aa012008-02-06 01:38:18 -0800279 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
280 cpu_relax();
Bryan Wu62310e52007-12-04 23:45:20 -0800281
Bryan Wubb90eb02007-12-04 23:45:18 -0800282 cs_deactive(drv_data, chip);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800283
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700284 ++drv_data->tx;
285 }
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700286}
287
288static void u8_reader(struct driver_data *drv_data)
289{
Bryan Wu131b17d2007-12-04 23:45:12 -0800290 dev_dbg(&drv_data->pdev->dev,
Bryan Wubb90eb02007-12-04 23:45:18 -0800291 "cr-8 is 0x%x\n", read_STAT(drv_data));
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700292
Sonic Zhang3f479a62007-12-04 23:45:18 -0800293 /* poll for SPI completion before start */
Bryan Wubb90eb02007-12-04 23:45:18 -0800294 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800295 cpu_relax();
Sonic Zhang3f479a62007-12-04 23:45:18 -0800296
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700297 /* clear TDBR buffer before read(else it will be shifted out) */
Bryan Wubb90eb02007-12-04 23:45:18 -0800298 write_TDBR(drv_data, 0xFFFF);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700299
Bryan Wubb90eb02007-12-04 23:45:18 -0800300 dummy_read(drv_data);
Sonic Zhangcc487e72007-12-04 23:45:17 -0800301
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700302 while (drv_data->rx < drv_data->rx_end - 1) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800303 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800304 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800305 *(u8 *) (drv_data->rx) = read_RDBR(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700306 ++drv_data->rx;
307 }
308
Bryan Wubb90eb02007-12-04 23:45:18 -0800309 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800310 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800311 *(u8 *) (drv_data->rx) = read_SHAW(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700312 ++drv_data->rx;
313}
314
315static void u8_cs_chg_reader(struct driver_data *drv_data)
316{
317 struct chip_data *chip = drv_data->cur_chip;
318
Bryan Wue26aa012008-02-06 01:38:18 -0800319 while (drv_data->rx < drv_data->rx_end) {
320 cs_active(drv_data, chip);
321 read_RDBR(drv_data); /* kick off */
Bryan Wu5fec5b52007-12-04 23:45:13 -0800322
Bryan Wubb90eb02007-12-04 23:45:18 -0800323 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800324 cpu_relax();
Bryan Wue26aa012008-02-06 01:38:18 -0800325 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
326 cpu_relax();
327
328 *(u8 *) (drv_data->rx) = read_SHAW(drv_data);
329 cs_deactive(drv_data, chip);
330
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700331 ++drv_data->rx;
332 }
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700333}
334
335static void u8_duplex(struct driver_data *drv_data)
336{
337 /* in duplex mode, clk is triggered by writing of TDBR */
338 while (drv_data->rx < drv_data->rx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800339 write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
Bryan Wu4fd432d2008-02-06 01:38:19 -0800340 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800341 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800342 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800343 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800344 *(u8 *) (drv_data->rx) = read_RDBR(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700345 ++drv_data->rx;
346 ++drv_data->tx;
347 }
348}
349
350static void u8_cs_chg_duplex(struct driver_data *drv_data)
351{
352 struct chip_data *chip = drv_data->cur_chip;
353
354 while (drv_data->rx < drv_data->rx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800355 cs_active(drv_data, chip);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800356
Bryan Wubb90eb02007-12-04 23:45:18 -0800357 write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
Bryan Wue26aa012008-02-06 01:38:18 -0800358
359 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800360 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800361 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800362 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800363 *(u8 *) (drv_data->rx) = read_RDBR(drv_data);
Bryan Wu62310e52007-12-04 23:45:20 -0800364
Bryan Wubb90eb02007-12-04 23:45:18 -0800365 cs_deactive(drv_data, chip);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800366
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700367 ++drv_data->rx;
368 ++drv_data->tx;
369 }
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700370}
371
372static void u16_writer(struct driver_data *drv_data)
373{
Bryan Wu131b17d2007-12-04 23:45:12 -0800374 dev_dbg(&drv_data->pdev->dev,
Bryan Wubb90eb02007-12-04 23:45:18 -0800375 "cr16 is 0x%x\n", read_STAT(drv_data));
Bryan Wu88b40362007-05-21 18:32:16 +0800376
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700377 while (drv_data->tx < drv_data->tx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800378 write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
379 while ((read_STAT(drv_data) & BIT_STAT_TXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800380 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700381 drv_data->tx += 2;
382 }
Sonic Zhang13f3e6422008-02-06 01:38:20 -0800383
384 /* poll for SPI completion before return */
385 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
386 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700387}
388
389static void u16_cs_chg_writer(struct driver_data *drv_data)
390{
391 struct chip_data *chip = drv_data->cur_chip;
392
393 while (drv_data->tx < drv_data->tx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800394 cs_active(drv_data, chip);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700395
Bryan Wubb90eb02007-12-04 23:45:18 -0800396 write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
397 while ((read_STAT(drv_data) & BIT_STAT_TXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800398 cpu_relax();
Sonic Zhang13f3e6422008-02-06 01:38:20 -0800399 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
400 cpu_relax();
Bryan Wu62310e52007-12-04 23:45:20 -0800401
Bryan Wubb90eb02007-12-04 23:45:18 -0800402 cs_deactive(drv_data, chip);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800403
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700404 drv_data->tx += 2;
405 }
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700406}
407
408static void u16_reader(struct driver_data *drv_data)
409{
Bryan Wu88b40362007-05-21 18:32:16 +0800410 dev_dbg(&drv_data->pdev->dev,
Bryan Wubb90eb02007-12-04 23:45:18 -0800411 "cr-16 is 0x%x\n", read_STAT(drv_data));
Sonic Zhangcc487e72007-12-04 23:45:17 -0800412
Sonic Zhang3f479a62007-12-04 23:45:18 -0800413 /* poll for SPI completion before start */
Bryan Wubb90eb02007-12-04 23:45:18 -0800414 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800415 cpu_relax();
Sonic Zhang3f479a62007-12-04 23:45:18 -0800416
Sonic Zhangcc487e72007-12-04 23:45:17 -0800417 /* clear TDBR buffer before read(else it will be shifted out) */
Bryan Wubb90eb02007-12-04 23:45:18 -0800418 write_TDBR(drv_data, 0xFFFF);
Sonic Zhangcc487e72007-12-04 23:45:17 -0800419
Bryan Wubb90eb02007-12-04 23:45:18 -0800420 dummy_read(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700421
422 while (drv_data->rx < (drv_data->rx_end - 2)) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800423 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800424 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800425 *(u16 *) (drv_data->rx) = read_RDBR(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700426 drv_data->rx += 2;
427 }
428
Bryan Wubb90eb02007-12-04 23:45:18 -0800429 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800430 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800431 *(u16 *) (drv_data->rx) = read_SHAW(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700432 drv_data->rx += 2;
433}
434
435static void u16_cs_chg_reader(struct driver_data *drv_data)
436{
437 struct chip_data *chip = drv_data->cur_chip;
438
Sonic Zhang3f479a62007-12-04 23:45:18 -0800439 /* poll for SPI completion before start */
Bryan Wubb90eb02007-12-04 23:45:18 -0800440 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800441 cpu_relax();
Sonic Zhang3f479a62007-12-04 23:45:18 -0800442
Sonic Zhangcc487e72007-12-04 23:45:17 -0800443 /* clear TDBR buffer before read(else it will be shifted out) */
Bryan Wubb90eb02007-12-04 23:45:18 -0800444 write_TDBR(drv_data, 0xFFFF);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700445
Bryan Wubb90eb02007-12-04 23:45:18 -0800446 cs_active(drv_data, chip);
447 dummy_read(drv_data);
Sonic Zhangcc487e72007-12-04 23:45:17 -0800448
Bryan Wuc3061ab2007-12-04 23:45:19 -0800449 while (drv_data->rx < drv_data->rx_end - 2) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800450 cs_deactive(drv_data, chip);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800451
Bryan Wubb90eb02007-12-04 23:45:18 -0800452 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800453 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800454 cs_active(drv_data, chip);
455 *(u16 *) (drv_data->rx) = read_RDBR(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700456 drv_data->rx += 2;
457 }
Bryan Wubb90eb02007-12-04 23:45:18 -0800458 cs_deactive(drv_data, chip);
Sonic Zhangcc487e72007-12-04 23:45:17 -0800459
Bryan Wubb90eb02007-12-04 23:45:18 -0800460 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800461 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800462 *(u16 *) (drv_data->rx) = read_SHAW(drv_data);
Sonic Zhangcc487e72007-12-04 23:45:17 -0800463 drv_data->rx += 2;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700464}
465
466static void u16_duplex(struct driver_data *drv_data)
467{
468 /* in duplex mode, clk is triggered by writing of TDBR */
469 while (drv_data->tx < drv_data->tx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800470 write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
Bryan Wu4fd432d2008-02-06 01:38:19 -0800471 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800472 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800473 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800474 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800475 *(u16 *) (drv_data->rx) = read_RDBR(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700476 drv_data->rx += 2;
477 drv_data->tx += 2;
478 }
479}
480
481static void u16_cs_chg_duplex(struct driver_data *drv_data)
482{
483 struct chip_data *chip = drv_data->cur_chip;
484
485 while (drv_data->tx < drv_data->tx_end) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800486 cs_active(drv_data, chip);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700487
Bryan Wubb90eb02007-12-04 23:45:18 -0800488 write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
Bryan Wu4fd432d2008-02-06 01:38:19 -0800489 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800490 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800491 while (!(read_STAT(drv_data) & BIT_STAT_RXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800492 cpu_relax();
Bryan Wubb90eb02007-12-04 23:45:18 -0800493 *(u16 *) (drv_data->rx) = read_RDBR(drv_data);
Bryan Wu62310e52007-12-04 23:45:20 -0800494
Bryan Wubb90eb02007-12-04 23:45:18 -0800495 cs_deactive(drv_data, chip);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800496
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700497 drv_data->rx += 2;
498 drv_data->tx += 2;
499 }
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700500}
501
502/* test if ther is more transfer to be done */
503static void *next_transfer(struct driver_data *drv_data)
504{
505 struct spi_message *msg = drv_data->cur_msg;
506 struct spi_transfer *trans = drv_data->cur_transfer;
507
508 /* Move to next transfer */
509 if (trans->transfer_list.next != &msg->transfers) {
510 drv_data->cur_transfer =
511 list_entry(trans->transfer_list.next,
512 struct spi_transfer, transfer_list);
513 return RUNNING_STATE;
514 } else
515 return DONE_STATE;
516}
517
518/*
519 * caller already set message->status;
520 * dma and pio irqs are blocked give finished message back
521 */
522static void giveback(struct driver_data *drv_data)
523{
Bryan Wufad91c82007-12-04 23:45:14 -0800524 struct chip_data *chip = drv_data->cur_chip;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700525 struct spi_transfer *last_transfer;
526 unsigned long flags;
527 struct spi_message *msg;
528
529 spin_lock_irqsave(&drv_data->lock, flags);
530 msg = drv_data->cur_msg;
531 drv_data->cur_msg = NULL;
532 drv_data->cur_transfer = NULL;
533 drv_data->cur_chip = NULL;
534 queue_work(drv_data->workqueue, &drv_data->pump_messages);
535 spin_unlock_irqrestore(&drv_data->lock, flags);
536
537 last_transfer = list_entry(msg->transfers.prev,
538 struct spi_transfer, transfer_list);
539
540 msg->state = NULL;
541
542 /* disable chip select signal. And not stop spi in autobuffer mode */
543 if (drv_data->tx_dma != 0xFFFF) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800544 cs_deactive(drv_data, chip);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700545 bfin_spi_disable(drv_data);
546 }
547
Bryan Wufad91c82007-12-04 23:45:14 -0800548 if (!drv_data->cs_change)
Bryan Wubb90eb02007-12-04 23:45:18 -0800549 cs_deactive(drv_data, chip);
Bryan Wufad91c82007-12-04 23:45:14 -0800550
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700551 if (msg->complete)
552 msg->complete(msg->context);
553}
554
Bryan Wu88b40362007-05-21 18:32:16 +0800555static irqreturn_t dma_irq_handler(int irq, void *dev_id)
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700556{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800557 struct driver_data *drv_data = dev_id;
Bryan Wufad91c82007-12-04 23:45:14 -0800558 struct chip_data *chip = drv_data->cur_chip;
Bryan Wubb90eb02007-12-04 23:45:18 -0800559 struct spi_message *msg = drv_data->cur_msg;
Mike Frysingerd24bd1d2009-04-06 19:00:38 -0700560 unsigned short dmastat = get_dma_curr_irqstat(drv_data->dma_channel);
Mike Frysinger04b95d22009-04-06 19:00:35 -0700561 u16 spistat = read_STAT(drv_data);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700562
Mike Frysingerd24bd1d2009-04-06 19:00:38 -0700563 dev_dbg(&drv_data->pdev->dev,
564 "in dma_irq_handler dmastat:0x%x spistat:0x%x\n",
565 dmastat, spistat);
566
Bryan Wubb90eb02007-12-04 23:45:18 -0800567 clear_dma_irqstat(drv_data->dma_channel);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700568
Bryan Wud6fe89b2007-06-11 17:34:17 +0800569 /* Wait for DMA to complete */
Bryan Wubb90eb02007-12-04 23:45:18 -0800570 while (get_dma_curr_irqstat(drv_data->dma_channel) & DMA_RUN)
Bryan Wud8c05002007-12-04 23:45:21 -0800571 cpu_relax();
Bryan Wud6fe89b2007-06-11 17:34:17 +0800572
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700573 /*
Bryan Wud6fe89b2007-06-11 17:34:17 +0800574 * wait for the last transaction shifted out. HRM states:
575 * at this point there may still be data in the SPI DMA FIFO waiting
576 * to be transmitted ... software needs to poll TXS in the SPI_STAT
577 * register until it goes low for 2 successive reads
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700578 */
579 if (drv_data->tx != NULL) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800580 while ((read_STAT(drv_data) & TXS) ||
581 (read_STAT(drv_data) & TXS))
Bryan Wud8c05002007-12-04 23:45:21 -0800582 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700583 }
584
Bryan Wubb90eb02007-12-04 23:45:18 -0800585 while (!(read_STAT(drv_data) & SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800586 cpu_relax();
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700587
Mike Frysinger40a29452009-04-06 19:00:38 -0700588 if ((dmastat & DMA_ERR) && (spistat & RBSY)) {
Mike Frysinger04b95d22009-04-06 19:00:35 -0700589 msg->state = ERROR_STATE;
590 dev_err(&drv_data->pdev->dev, "dma receive: fifo/buffer overflow\n");
591 } else {
592 msg->actual_length += drv_data->len_in_bytes;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700593
Mike Frysinger04b95d22009-04-06 19:00:35 -0700594 if (drv_data->cs_change)
595 cs_deactive(drv_data, chip);
Bryan Wufad91c82007-12-04 23:45:14 -0800596
Mike Frysinger04b95d22009-04-06 19:00:35 -0700597 /* Move to next transfer */
598 msg->state = next_transfer(drv_data);
599 }
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700600
601 /* Schedule transfer tasklet */
602 tasklet_schedule(&drv_data->pump_transfers);
603
604 /* free the irq handler before next transfer */
Bryan Wu88b40362007-05-21 18:32:16 +0800605 dev_dbg(&drv_data->pdev->dev,
606 "disable dma channel irq%d\n",
Bryan Wubb90eb02007-12-04 23:45:18 -0800607 drv_data->dma_channel);
608 dma_disable_irq(drv_data->dma_channel);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700609
610 return IRQ_HANDLED;
611}
612
613static void pump_transfers(unsigned long data)
614{
615 struct driver_data *drv_data = (struct driver_data *)data;
616 struct spi_message *message = NULL;
617 struct spi_transfer *transfer = NULL;
618 struct spi_transfer *previous = NULL;
619 struct chip_data *chip = NULL;
Bryan Wu88b40362007-05-21 18:32:16 +0800620 u8 width;
621 u16 cr, dma_width, dma_config;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700622 u32 tranf_success = 1;
Vitja Makarov8eeb12e2008-05-01 04:35:03 -0700623 u8 full_duplex = 0;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700624
625 /* Get current state information */
626 message = drv_data->cur_msg;
627 transfer = drv_data->cur_transfer;
628 chip = drv_data->cur_chip;
Bryan Wu092e1fd2007-12-04 23:45:23 -0800629
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700630 /*
631 * if msg is error or done, report it back using complete() callback
632 */
633
634 /* Handle for abort */
635 if (message->state == ERROR_STATE) {
Mike Frysingerd24bd1d2009-04-06 19:00:38 -0700636 dev_dbg(&drv_data->pdev->dev, "transfer: we've hit an error\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700637 message->status = -EIO;
638 giveback(drv_data);
639 return;
640 }
641
642 /* Handle end of message */
643 if (message->state == DONE_STATE) {
Mike Frysingerd24bd1d2009-04-06 19:00:38 -0700644 dev_dbg(&drv_data->pdev->dev, "transfer: all done!\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700645 message->status = 0;
646 giveback(drv_data);
647 return;
648 }
649
650 /* Delay if requested at end of transfer */
651 if (message->state == RUNNING_STATE) {
Mike Frysingerd24bd1d2009-04-06 19:00:38 -0700652 dev_dbg(&drv_data->pdev->dev, "transfer: still running ...\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700653 previous = list_entry(transfer->transfer_list.prev,
654 struct spi_transfer, transfer_list);
655 if (previous->delay_usecs)
656 udelay(previous->delay_usecs);
657 }
658
659 /* Setup the transfer state based on the type of transfer */
660 if (flush(drv_data) == 0) {
661 dev_err(&drv_data->pdev->dev, "pump_transfers: flush failed\n");
662 message->status = -EIO;
663 giveback(drv_data);
664 return;
665 }
666
667 if (transfer->tx_buf != NULL) {
668 drv_data->tx = (void *)transfer->tx_buf;
669 drv_data->tx_end = drv_data->tx + transfer->len;
Bryan Wu88b40362007-05-21 18:32:16 +0800670 dev_dbg(&drv_data->pdev->dev, "tx_buf is %p, tx_end is %p\n",
671 transfer->tx_buf, drv_data->tx_end);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700672 } else {
673 drv_data->tx = NULL;
674 }
675
676 if (transfer->rx_buf != NULL) {
Vitja Makarov8eeb12e2008-05-01 04:35:03 -0700677 full_duplex = transfer->tx_buf != NULL;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700678 drv_data->rx = transfer->rx_buf;
679 drv_data->rx_end = drv_data->rx + transfer->len;
Bryan Wu88b40362007-05-21 18:32:16 +0800680 dev_dbg(&drv_data->pdev->dev, "rx_buf is %p, rx_end is %p\n",
681 transfer->rx_buf, drv_data->rx_end);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700682 } else {
683 drv_data->rx = NULL;
684 }
685
686 drv_data->rx_dma = transfer->rx_dma;
687 drv_data->tx_dma = transfer->tx_dma;
688 drv_data->len_in_bytes = transfer->len;
Bryan Wufad91c82007-12-04 23:45:14 -0800689 drv_data->cs_change = transfer->cs_change;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700690
Bryan Wu092e1fd2007-12-04 23:45:23 -0800691 /* Bits per word setup */
692 switch (transfer->bits_per_word) {
693 case 8:
694 drv_data->n_bytes = 1;
695 width = CFG_SPI_WORDSIZE8;
696 drv_data->read = chip->cs_change_per_word ?
697 u8_cs_chg_reader : u8_reader;
698 drv_data->write = chip->cs_change_per_word ?
699 u8_cs_chg_writer : u8_writer;
700 drv_data->duplex = chip->cs_change_per_word ?
701 u8_cs_chg_duplex : u8_duplex;
702 break;
703
704 case 16:
705 drv_data->n_bytes = 2;
706 width = CFG_SPI_WORDSIZE16;
707 drv_data->read = chip->cs_change_per_word ?
708 u16_cs_chg_reader : u16_reader;
709 drv_data->write = chip->cs_change_per_word ?
710 u16_cs_chg_writer : u16_writer;
711 drv_data->duplex = chip->cs_change_per_word ?
712 u16_cs_chg_duplex : u16_duplex;
713 break;
714
715 default:
716 /* No change, the same as default setting */
717 drv_data->n_bytes = chip->n_bytes;
718 width = chip->width;
719 drv_data->write = drv_data->tx ? chip->write : null_writer;
720 drv_data->read = drv_data->rx ? chip->read : null_reader;
721 drv_data->duplex = chip->duplex ? chip->duplex : null_writer;
722 break;
723 }
724 cr = (read_CTRL(drv_data) & (~BIT_CTL_TIMOD));
725 cr |= (width << 8);
726 write_CTRL(drv_data, cr);
727
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700728 if (width == CFG_SPI_WORDSIZE16) {
729 drv_data->len = (transfer->len) >> 1;
730 } else {
731 drv_data->len = transfer->len;
732 }
Mike Frysinger4fb98ef2008-04-08 17:41:57 -0700733 dev_dbg(&drv_data->pdev->dev,
734 "transfer: drv_data->write is %p, chip->write is %p, null_wr is %p\n",
Bryan Wu131b17d2007-12-04 23:45:12 -0800735 drv_data->write, chip->write, null_writer);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700736
737 /* speed and width has been set on per message */
738 message->state = RUNNING_STATE;
739 dma_config = 0;
740
Bryan Wu092e1fd2007-12-04 23:45:23 -0800741 /* Speed setup (surely valid because already checked) */
742 if (transfer->speed_hz)
743 write_BAUD(drv_data, hz_to_spi_baud(transfer->speed_hz));
744 else
745 write_BAUD(drv_data, chip->baud);
746
Bryan Wubb90eb02007-12-04 23:45:18 -0800747 write_STAT(drv_data, BIT_STAT_CLR);
748 cr = (read_CTRL(drv_data) & (~BIT_CTL_TIMOD));
749 cs_active(drv_data, chip);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700750
Bryan Wu88b40362007-05-21 18:32:16 +0800751 dev_dbg(&drv_data->pdev->dev,
752 "now pumping a transfer: width is %d, len is %d\n",
753 width, transfer->len);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700754
755 /*
Vitja Makarov8cf58582009-04-06 19:00:31 -0700756 * Try to map dma buffer and do a dma transfer. If successful use,
757 * different way to r/w according to the enable_dma settings and if
758 * we are not doing a full duplex transfer (since the hardware does
759 * not support full duplex DMA transfers).
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700760 */
Vitja Makarov8eeb12e2008-05-01 04:35:03 -0700761 if (!full_duplex && drv_data->cur_chip->enable_dma
762 && drv_data->len > 6) {
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700763
Mike Frysinger11d6f592009-04-06 19:00:41 -0700764 unsigned long dma_start_addr, flags;
Mike Frysinger7aec3562009-04-06 19:00:36 -0700765
Bryan Wubb90eb02007-12-04 23:45:18 -0800766 disable_dma(drv_data->dma_channel);
767 clear_dma_irqstat(drv_data->dma_channel);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700768
769 /* config dma channel */
Bryan Wu88b40362007-05-21 18:32:16 +0800770 dev_dbg(&drv_data->pdev->dev, "doing dma transfer\n");
Mike Frysinger7aec3562009-04-06 19:00:36 -0700771 set_dma_x_count(drv_data->dma_channel, drv_data->len);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700772 if (width == CFG_SPI_WORDSIZE16) {
Bryan Wubb90eb02007-12-04 23:45:18 -0800773 set_dma_x_modify(drv_data->dma_channel, 2);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700774 dma_width = WDSIZE_16;
775 } else {
Bryan Wubb90eb02007-12-04 23:45:18 -0800776 set_dma_x_modify(drv_data->dma_channel, 1);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700777 dma_width = WDSIZE_8;
778 }
779
Sonic Zhang3f479a62007-12-04 23:45:18 -0800780 /* poll for SPI completion before start */
Bryan Wubb90eb02007-12-04 23:45:18 -0800781 while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
Bryan Wud8c05002007-12-04 23:45:21 -0800782 cpu_relax();
Sonic Zhang3f479a62007-12-04 23:45:18 -0800783
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700784 /* dirty hack for autobuffer DMA mode */
785 if (drv_data->tx_dma == 0xFFFF) {
Bryan Wu88b40362007-05-21 18:32:16 +0800786 dev_dbg(&drv_data->pdev->dev,
787 "doing autobuffer DMA out.\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700788
789 /* no irq in autobuffer mode */
790 dma_config =
791 (DMAFLOW_AUTO | RESTART | dma_width | DI_EN);
Bryan Wubb90eb02007-12-04 23:45:18 -0800792 set_dma_config(drv_data->dma_channel, dma_config);
793 set_dma_start_addr(drv_data->dma_channel,
Bryan Wua32c6912007-12-04 23:45:15 -0800794 (unsigned long)drv_data->tx);
Bryan Wubb90eb02007-12-04 23:45:18 -0800795 enable_dma(drv_data->dma_channel);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700796
Sonic Zhang07612e52007-12-04 23:45:21 -0800797 /* start SPI transfer */
Mike Frysinger11d6f592009-04-06 19:00:41 -0700798 write_CTRL(drv_data, cr | BIT_CTL_TIMOD_DMA_TX);
Sonic Zhang07612e52007-12-04 23:45:21 -0800799
800 /* just return here, there can only be one transfer
801 * in this mode
802 */
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700803 message->status = 0;
804 giveback(drv_data);
805 return;
806 }
807
808 /* In dma mode, rx or tx must be NULL in one transfer */
Mike Frysinger7aec3562009-04-06 19:00:36 -0700809 dma_config = (RESTART | dma_width | DI_EN);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700810 if (drv_data->rx != NULL) {
811 /* set transfer mode, and enable SPI */
Mike Frysingerd24bd1d2009-04-06 19:00:38 -0700812 dev_dbg(&drv_data->pdev->dev, "doing DMA in to %p (size %zx)\n",
813 drv_data->rx, drv_data->len_in_bytes);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700814
Vitja Makarov8cf58582009-04-06 19:00:31 -0700815 /* invalidate caches, if needed */
816 if (bfin_addr_dcachable((unsigned long) drv_data->rx))
817 invalidate_dcache_range((unsigned long) drv_data->rx,
818 (unsigned long) (drv_data->rx +
Mike Frysingerace32862009-04-06 19:00:34 -0700819 drv_data->len_in_bytes));
Vitja Makarov8cf58582009-04-06 19:00:31 -0700820
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700821 /* clear tx reg soformer data is not shifted out */
Bryan Wubb90eb02007-12-04 23:45:18 -0800822 write_TDBR(drv_data, 0xFFFF);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700823
Mike Frysinger7aec3562009-04-06 19:00:36 -0700824 dma_config |= WNR;
825 dma_start_addr = (unsigned long)drv_data->rx;
Mike Frysingerb31e27a2009-04-06 19:00:39 -0700826 cr |= BIT_CTL_TIMOD_DMA_RX | BIT_CTL_SENDOPT;
Sonic Zhang07612e52007-12-04 23:45:21 -0800827
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700828 } else if (drv_data->tx != NULL) {
Bryan Wu88b40362007-05-21 18:32:16 +0800829 dev_dbg(&drv_data->pdev->dev, "doing DMA out.\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700830
Vitja Makarov8cf58582009-04-06 19:00:31 -0700831 /* flush caches, if needed */
832 if (bfin_addr_dcachable((unsigned long) drv_data->tx))
833 flush_dcache_range((unsigned long) drv_data->tx,
834 (unsigned long) (drv_data->tx +
Mike Frysingerace32862009-04-06 19:00:34 -0700835 drv_data->len_in_bytes));
Vitja Makarov8cf58582009-04-06 19:00:31 -0700836
Mike Frysinger7aec3562009-04-06 19:00:36 -0700837 dma_start_addr = (unsigned long)drv_data->tx;
Mike Frysingerb31e27a2009-04-06 19:00:39 -0700838 cr |= BIT_CTL_TIMOD_DMA_TX;
Sonic Zhang07612e52007-12-04 23:45:21 -0800839
Mike Frysinger7aec3562009-04-06 19:00:36 -0700840 } else
841 BUG();
842
Mike Frysinger11d6f592009-04-06 19:00:41 -0700843 /* oh man, here there be monsters ... and i dont mean the
844 * fluffy cute ones from pixar, i mean the kind that'll eat
845 * your data, kick your dog, and love it all. do *not* try
846 * and change these lines unless you (1) heavily test DMA
847 * with SPI flashes on a loaded system (e.g. ping floods),
848 * (2) know just how broken the DMA engine interaction with
849 * the SPI peripheral is, and (3) have someone else to blame
850 * when you screw it all up anyways.
851 */
Mike Frysinger7aec3562009-04-06 19:00:36 -0700852 set_dma_start_addr(drv_data->dma_channel, dma_start_addr);
Mike Frysinger11d6f592009-04-06 19:00:41 -0700853 set_dma_config(drv_data->dma_channel, dma_config);
854 local_irq_save(flags);
Mike Frysinger7aec3562009-04-06 19:00:36 -0700855 enable_dma(drv_data->dma_channel);
Mike Frysinger11d6f592009-04-06 19:00:41 -0700856 write_CTRL(drv_data, cr);
857 dma_enable_irq(drv_data->dma_channel);
858 local_irq_restore(flags);
Mike Frysinger7aec3562009-04-06 19:00:36 -0700859
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700860 } else {
861 /* IO mode write then read */
Bryan Wu88b40362007-05-21 18:32:16 +0800862 dev_dbg(&drv_data->pdev->dev, "doing IO transfer\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700863
Vitja Makarov8eeb12e2008-05-01 04:35:03 -0700864 if (full_duplex) {
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700865 /* full duplex mode */
866 BUG_ON((drv_data->tx_end - drv_data->tx) !=
867 (drv_data->rx_end - drv_data->rx));
Bryan Wu88b40362007-05-21 18:32:16 +0800868 dev_dbg(&drv_data->pdev->dev,
869 "IO duplex: cr is 0x%x\n", cr);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700870
Sonic Zhangcc487e72007-12-04 23:45:17 -0800871 /* set SPI transfer mode */
Bryan Wubb90eb02007-12-04 23:45:18 -0800872 write_CTRL(drv_data, (cr | CFG_SPI_WRITE));
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700873
874 drv_data->duplex(drv_data);
875
876 if (drv_data->tx != drv_data->tx_end)
877 tranf_success = 0;
878 } else if (drv_data->tx != NULL) {
879 /* write only half duplex */
Bryan Wu131b17d2007-12-04 23:45:12 -0800880 dev_dbg(&drv_data->pdev->dev,
Bryan Wu88b40362007-05-21 18:32:16 +0800881 "IO write: cr is 0x%x\n", cr);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700882
Sonic Zhangcc487e72007-12-04 23:45:17 -0800883 /* set SPI transfer mode */
Bryan Wubb90eb02007-12-04 23:45:18 -0800884 write_CTRL(drv_data, (cr | CFG_SPI_WRITE));
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700885
886 drv_data->write(drv_data);
887
888 if (drv_data->tx != drv_data->tx_end)
889 tranf_success = 0;
890 } else if (drv_data->rx != NULL) {
891 /* read only half duplex */
Bryan Wu131b17d2007-12-04 23:45:12 -0800892 dev_dbg(&drv_data->pdev->dev,
Bryan Wu88b40362007-05-21 18:32:16 +0800893 "IO read: cr is 0x%x\n", cr);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700894
Sonic Zhangcc487e72007-12-04 23:45:17 -0800895 /* set SPI transfer mode */
Bryan Wubb90eb02007-12-04 23:45:18 -0800896 write_CTRL(drv_data, (cr | CFG_SPI_READ));
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700897
898 drv_data->read(drv_data);
899 if (drv_data->rx != drv_data->rx_end)
900 tranf_success = 0;
901 }
902
903 if (!tranf_success) {
Bryan Wu131b17d2007-12-04 23:45:12 -0800904 dev_dbg(&drv_data->pdev->dev,
Bryan Wu88b40362007-05-21 18:32:16 +0800905 "IO write error!\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700906 message->state = ERROR_STATE;
907 } else {
908 /* Update total byte transfered */
Mike Frysingerace32862009-04-06 19:00:34 -0700909 message->actual_length += drv_data->len_in_bytes;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700910
911 /* Move to next transfer of this msg */
912 message->state = next_transfer(drv_data);
913 }
914
915 /* Schedule next transfer tasklet */
916 tasklet_schedule(&drv_data->pump_transfers);
917
918 }
919}
920
921/* pop a msg from queue and kick off real transfer */
922static void pump_messages(struct work_struct *work)
923{
Bryan Wu131b17d2007-12-04 23:45:12 -0800924 struct driver_data *drv_data;
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700925 unsigned long flags;
926
Bryan Wu131b17d2007-12-04 23:45:12 -0800927 drv_data = container_of(work, struct driver_data, pump_messages);
928
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700929 /* Lock queue and check for queue work */
930 spin_lock_irqsave(&drv_data->lock, flags);
931 if (list_empty(&drv_data->queue) || drv_data->run == QUEUE_STOPPED) {
932 /* pumper kicked off but no work to do */
933 drv_data->busy = 0;
934 spin_unlock_irqrestore(&drv_data->lock, flags);
935 return;
936 }
937
938 /* Make sure we are not already running a message */
939 if (drv_data->cur_msg) {
940 spin_unlock_irqrestore(&drv_data->lock, flags);
941 return;
942 }
943
944 /* Extract head of queue */
945 drv_data->cur_msg = list_entry(drv_data->queue.next,
946 struct spi_message, queue);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800947
948 /* Setup the SSP using the per chip configuration */
949 drv_data->cur_chip = spi_get_ctldata(drv_data->cur_msg->spi);
Bryan Wu8d20d0a2008-02-06 01:38:17 -0800950 restore_state(drv_data);
Bryan Wu5fec5b52007-12-04 23:45:13 -0800951
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700952 list_del_init(&drv_data->cur_msg->queue);
953
954 /* Initial message state */
955 drv_data->cur_msg->state = START_STATE;
956 drv_data->cur_transfer = list_entry(drv_data->cur_msg->transfers.next,
957 struct spi_transfer, transfer_list);
958
Bryan Wu5fec5b52007-12-04 23:45:13 -0800959 dev_dbg(&drv_data->pdev->dev, "got a message to pump, "
960 "state is set to: baud %d, flag 0x%x, ctl 0x%x\n",
961 drv_data->cur_chip->baud, drv_data->cur_chip->flag,
962 drv_data->cur_chip->ctl_reg);
Bryan Wu131b17d2007-12-04 23:45:12 -0800963
964 dev_dbg(&drv_data->pdev->dev,
Bryan Wu88b40362007-05-21 18:32:16 +0800965 "the first transfer len is %d\n",
966 drv_data->cur_transfer->len);
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700967
968 /* Mark as busy and launch transfers */
969 tasklet_schedule(&drv_data->pump_transfers);
970
971 drv_data->busy = 1;
972 spin_unlock_irqrestore(&drv_data->lock, flags);
973}
974
975/*
976 * got a msg to transfer, queue it in drv_data->queue.
977 * And kick off message pumper
978 */
979static int transfer(struct spi_device *spi, struct spi_message *msg)
980{
981 struct driver_data *drv_data = spi_master_get_devdata(spi->master);
982 unsigned long flags;
983
984 spin_lock_irqsave(&drv_data->lock, flags);
985
986 if (drv_data->run == QUEUE_STOPPED) {
987 spin_unlock_irqrestore(&drv_data->lock, flags);
988 return -ESHUTDOWN;
989 }
990
991 msg->actual_length = 0;
992 msg->status = -EINPROGRESS;
993 msg->state = START_STATE;
994
Bryan Wu88b40362007-05-21 18:32:16 +0800995 dev_dbg(&spi->dev, "adding an msg in transfer() \n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -0700996 list_add_tail(&msg->queue, &drv_data->queue);
997
998 if (drv_data->run == QUEUE_RUNNING && !drv_data->busy)
999 queue_work(drv_data->workqueue, &drv_data->pump_messages);
1000
1001 spin_unlock_irqrestore(&drv_data->lock, flags);
1002
1003 return 0;
1004}
1005
Sonic Zhang12e17c42007-12-04 23:45:16 -08001006#define MAX_SPI_SSEL 7
1007
Mike Frysinger4160bde2009-04-06 19:00:40 -07001008static u16 ssel[][MAX_SPI_SSEL] = {
Sonic Zhang12e17c42007-12-04 23:45:16 -08001009 {P_SPI0_SSEL1, P_SPI0_SSEL2, P_SPI0_SSEL3,
1010 P_SPI0_SSEL4, P_SPI0_SSEL5,
1011 P_SPI0_SSEL6, P_SPI0_SSEL7},
1012
1013 {P_SPI1_SSEL1, P_SPI1_SSEL2, P_SPI1_SSEL3,
1014 P_SPI1_SSEL4, P_SPI1_SSEL5,
1015 P_SPI1_SSEL6, P_SPI1_SSEL7},
1016
1017 {P_SPI2_SSEL1, P_SPI2_SSEL2, P_SPI2_SSEL3,
1018 P_SPI2_SSEL4, P_SPI2_SSEL5,
1019 P_SPI2_SSEL6, P_SPI2_SSEL7},
1020};
1021
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001022/* first setup for new devices */
1023static int setup(struct spi_device *spi)
1024{
1025 struct bfin5xx_spi_chip *chip_info = NULL;
1026 struct chip_data *chip;
1027 struct driver_data *drv_data = spi_master_get_devdata(spi->master);
1028 u8 spi_flg;
1029
1030 /* Abort device setup if requested features are not supported */
1031 if (spi->mode & ~(SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST)) {
1032 dev_err(&spi->dev, "requested mode not fully supported\n");
1033 return -EINVAL;
1034 }
1035
1036 /* Zero (the default) here means 8 bits */
1037 if (!spi->bits_per_word)
1038 spi->bits_per_word = 8;
1039
1040 if (spi->bits_per_word != 8 && spi->bits_per_word != 16)
1041 return -EINVAL;
1042
1043 /* Only alloc (or use chip_info) on first setup */
1044 chip = spi_get_ctldata(spi);
1045 if (chip == NULL) {
1046 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
1047 if (!chip)
1048 return -ENOMEM;
1049
1050 chip->enable_dma = 0;
1051 chip_info = spi->controller_data;
1052 }
1053
1054 /* chip_info isn't always needed */
1055 if (chip_info) {
Mike Frysinger2ed35512007-12-04 23:45:14 -08001056 /* Make sure people stop trying to set fields via ctl_reg
1057 * when they should actually be using common SPI framework.
1058 * Currently we let through: WOM EMISO PSSE GM SZ TIMOD.
1059 * Not sure if a user actually needs/uses any of these,
1060 * but let's assume (for now) they do.
1061 */
1062 if (chip_info->ctl_reg & (SPE|MSTR|CPOL|CPHA|LSBF|SIZE)) {
1063 dev_err(&spi->dev, "do not set bits in ctl_reg "
1064 "that the SPI framework manages\n");
1065 return -EINVAL;
1066 }
1067
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001068 chip->enable_dma = chip_info->enable_dma != 0
1069 && drv_data->master_info->enable_dma;
1070 chip->ctl_reg = chip_info->ctl_reg;
1071 chip->bits_per_word = chip_info->bits_per_word;
1072 chip->cs_change_per_word = chip_info->cs_change_per_word;
1073 chip->cs_chg_udelay = chip_info->cs_chg_udelay;
1074 }
1075
1076 /* translate common spi framework into our register */
1077 if (spi->mode & SPI_CPOL)
1078 chip->ctl_reg |= CPOL;
1079 if (spi->mode & SPI_CPHA)
1080 chip->ctl_reg |= CPHA;
1081 if (spi->mode & SPI_LSB_FIRST)
1082 chip->ctl_reg |= LSBF;
1083 /* we dont support running in slave mode (yet?) */
1084 chip->ctl_reg |= MSTR;
1085
1086 /*
1087 * if any one SPI chip is registered and wants DMA, request the
1088 * DMA channel for it
1089 */
Bryan Wubb90eb02007-12-04 23:45:18 -08001090 if (chip->enable_dma && !drv_data->dma_requested) {
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001091 /* register dma irq handler */
Mike Frysinger59bfcc62009-04-06 19:00:37 -07001092 if (request_dma(drv_data->dma_channel, "BFIN_SPI_DMA") < 0) {
Bryan Wu88b40362007-05-21 18:32:16 +08001093 dev_dbg(&spi->dev,
1094 "Unable to request BlackFin SPI DMA channel\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001095 return -ENODEV;
1096 }
Bryan Wubb90eb02007-12-04 23:45:18 -08001097 if (set_dma_callback(drv_data->dma_channel,
Mike Frysinger59bfcc62009-04-06 19:00:37 -07001098 dma_irq_handler, drv_data) < 0) {
Bryan Wu88b40362007-05-21 18:32:16 +08001099 dev_dbg(&spi->dev, "Unable to set dma callback\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001100 return -EPERM;
1101 }
Bryan Wubb90eb02007-12-04 23:45:18 -08001102 dma_disable_irq(drv_data->dma_channel);
1103 drv_data->dma_requested = 1;
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001104 }
1105
1106 /*
1107 * Notice: for blackfin, the speed_hz is the value of register
1108 * SPI_BAUD, not the real baudrate
1109 */
1110 chip->baud = hz_to_spi_baud(spi->max_speed_hz);
1111 spi_flg = ~(1 << (spi->chip_select));
1112 chip->flag = ((u16) spi_flg << 8) | (1 << (spi->chip_select));
1113 chip->chip_select_num = spi->chip_select;
1114
1115 switch (chip->bits_per_word) {
1116 case 8:
1117 chip->n_bytes = 1;
1118 chip->width = CFG_SPI_WORDSIZE8;
1119 chip->read = chip->cs_change_per_word ?
1120 u8_cs_chg_reader : u8_reader;
1121 chip->write = chip->cs_change_per_word ?
1122 u8_cs_chg_writer : u8_writer;
1123 chip->duplex = chip->cs_change_per_word ?
1124 u8_cs_chg_duplex : u8_duplex;
1125 break;
1126
1127 case 16:
1128 chip->n_bytes = 2;
1129 chip->width = CFG_SPI_WORDSIZE16;
1130 chip->read = chip->cs_change_per_word ?
1131 u16_cs_chg_reader : u16_reader;
1132 chip->write = chip->cs_change_per_word ?
1133 u16_cs_chg_writer : u16_writer;
1134 chip->duplex = chip->cs_change_per_word ?
1135 u16_cs_chg_duplex : u16_duplex;
1136 break;
1137
1138 default:
1139 dev_err(&spi->dev, "%d bits_per_word is not supported\n",
1140 chip->bits_per_word);
1141 kfree(chip);
1142 return -ENODEV;
1143 }
1144
Joe Perches898eb712007-10-18 03:06:30 -07001145 dev_dbg(&spi->dev, "setup spi chip %s, width is %d, dma is %d\n",
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001146 spi->modalias, chip->width, chip->enable_dma);
Bryan Wu88b40362007-05-21 18:32:16 +08001147 dev_dbg(&spi->dev, "ctl_reg is 0x%x, flag_reg is 0x%x\n",
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001148 chip->ctl_reg, chip->flag);
1149
1150 spi_set_ctldata(spi, chip);
1151
Sonic Zhang12e17c42007-12-04 23:45:16 -08001152 dev_dbg(&spi->dev, "chip select number is %d\n", chip->chip_select_num);
1153 if ((chip->chip_select_num > 0)
1154 && (chip->chip_select_num <= spi->master->num_chipselect))
1155 peripheral_request(ssel[spi->master->bus_num]
Bryan Wuaab0d832008-02-06 01:38:17 -08001156 [chip->chip_select_num-1], spi->modalias);
Sonic Zhang12e17c42007-12-04 23:45:16 -08001157
Sonic Zhang07612e52007-12-04 23:45:21 -08001158 cs_deactive(drv_data, chip);
1159
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001160 return 0;
1161}
1162
1163/*
1164 * callback for spi framework.
1165 * clean driver specific data
1166 */
Bryan Wu88b40362007-05-21 18:32:16 +08001167static void cleanup(struct spi_device *spi)
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001168{
Mike Frysinger27bb9e72007-06-11 15:31:30 +08001169 struct chip_data *chip = spi_get_ctldata(spi);
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001170
Sonic Zhang12e17c42007-12-04 23:45:16 -08001171 if ((chip->chip_select_num > 0)
1172 && (chip->chip_select_num <= spi->master->num_chipselect))
1173 peripheral_free(ssel[spi->master->bus_num]
1174 [chip->chip_select_num-1]);
1175
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001176 kfree(chip);
1177}
1178
1179static inline int init_queue(struct driver_data *drv_data)
1180{
1181 INIT_LIST_HEAD(&drv_data->queue);
1182 spin_lock_init(&drv_data->lock);
1183
1184 drv_data->run = QUEUE_STOPPED;
1185 drv_data->busy = 0;
1186
1187 /* init transfer tasklet */
1188 tasklet_init(&drv_data->pump_transfers,
1189 pump_transfers, (unsigned long)drv_data);
1190
1191 /* init messages workqueue */
1192 INIT_WORK(&drv_data->pump_messages, pump_messages);
Kay Sievers6c7377a2009-03-24 16:38:21 -07001193 drv_data->workqueue = create_singlethread_workqueue(
1194 dev_name(drv_data->master->dev.parent));
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001195 if (drv_data->workqueue == NULL)
1196 return -EBUSY;
1197
1198 return 0;
1199}
1200
1201static inline int start_queue(struct driver_data *drv_data)
1202{
1203 unsigned long flags;
1204
1205 spin_lock_irqsave(&drv_data->lock, flags);
1206
1207 if (drv_data->run == QUEUE_RUNNING || drv_data->busy) {
1208 spin_unlock_irqrestore(&drv_data->lock, flags);
1209 return -EBUSY;
1210 }
1211
1212 drv_data->run = QUEUE_RUNNING;
1213 drv_data->cur_msg = NULL;
1214 drv_data->cur_transfer = NULL;
1215 drv_data->cur_chip = NULL;
1216 spin_unlock_irqrestore(&drv_data->lock, flags);
1217
1218 queue_work(drv_data->workqueue, &drv_data->pump_messages);
1219
1220 return 0;
1221}
1222
1223static inline int stop_queue(struct driver_data *drv_data)
1224{
1225 unsigned long flags;
1226 unsigned limit = 500;
1227 int status = 0;
1228
1229 spin_lock_irqsave(&drv_data->lock, flags);
1230
1231 /*
1232 * This is a bit lame, but is optimized for the common execution path.
1233 * A wait_queue on the drv_data->busy could be used, but then the common
1234 * execution path (pump_messages) would be required to call wake_up or
1235 * friends on every SPI message. Do this instead
1236 */
1237 drv_data->run = QUEUE_STOPPED;
1238 while (!list_empty(&drv_data->queue) && drv_data->busy && limit--) {
1239 spin_unlock_irqrestore(&drv_data->lock, flags);
1240 msleep(10);
1241 spin_lock_irqsave(&drv_data->lock, flags);
1242 }
1243
1244 if (!list_empty(&drv_data->queue) || drv_data->busy)
1245 status = -EBUSY;
1246
1247 spin_unlock_irqrestore(&drv_data->lock, flags);
1248
1249 return status;
1250}
1251
1252static inline int destroy_queue(struct driver_data *drv_data)
1253{
1254 int status;
1255
1256 status = stop_queue(drv_data);
1257 if (status != 0)
1258 return status;
1259
1260 destroy_workqueue(drv_data->workqueue);
1261
1262 return 0;
1263}
1264
1265static int __init bfin5xx_spi_probe(struct platform_device *pdev)
1266{
1267 struct device *dev = &pdev->dev;
1268 struct bfin5xx_spi_master *platform_info;
1269 struct spi_master *master;
1270 struct driver_data *drv_data = 0;
Bryan Wua32c6912007-12-04 23:45:15 -08001271 struct resource *res;
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001272 int status = 0;
1273
1274 platform_info = dev->platform_data;
1275
1276 /* Allocate master with space for drv_data */
1277 master = spi_alloc_master(dev, sizeof(struct driver_data) + 16);
1278 if (!master) {
1279 dev_err(&pdev->dev, "can not alloc spi_master\n");
1280 return -ENOMEM;
1281 }
Bryan Wu131b17d2007-12-04 23:45:12 -08001282
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001283 drv_data = spi_master_get_devdata(master);
1284 drv_data->master = master;
1285 drv_data->master_info = platform_info;
1286 drv_data->pdev = pdev;
Bryan Wu003d9222007-12-04 23:45:22 -08001287 drv_data->pin_req = platform_info->pin_req;
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001288
1289 master->bus_num = pdev->id;
1290 master->num_chipselect = platform_info->num_chipselect;
1291 master->cleanup = cleanup;
1292 master->setup = setup;
1293 master->transfer = transfer;
1294
Bryan Wua32c6912007-12-04 23:45:15 -08001295 /* Find and map our resources */
1296 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1297 if (res == NULL) {
1298 dev_err(dev, "Cannot get IORESOURCE_MEM\n");
1299 status = -ENOENT;
1300 goto out_error_get_res;
1301 }
1302
Bryan Wuf4521262007-12-04 23:45:22 -08001303 drv_data->regs_base = ioremap(res->start, (res->end - res->start + 1));
1304 if (drv_data->regs_base == NULL) {
Bryan Wua32c6912007-12-04 23:45:15 -08001305 dev_err(dev, "Cannot map IO\n");
1306 status = -ENXIO;
1307 goto out_error_ioremap;
1308 }
1309
Bryan Wubb90eb02007-12-04 23:45:18 -08001310 drv_data->dma_channel = platform_get_irq(pdev, 0);
1311 if (drv_data->dma_channel < 0) {
Bryan Wua32c6912007-12-04 23:45:15 -08001312 dev_err(dev, "No DMA channel specified\n");
1313 status = -ENOENT;
1314 goto out_error_no_dma_ch;
1315 }
1316
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001317 /* Initial and start queue */
1318 status = init_queue(drv_data);
1319 if (status != 0) {
Bryan Wua32c6912007-12-04 23:45:15 -08001320 dev_err(dev, "problem initializing queue\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001321 goto out_error_queue_alloc;
1322 }
Bryan Wua32c6912007-12-04 23:45:15 -08001323
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001324 status = start_queue(drv_data);
1325 if (status != 0) {
Bryan Wua32c6912007-12-04 23:45:15 -08001326 dev_err(dev, "problem starting queue\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001327 goto out_error_queue_alloc;
1328 }
1329
Vitja Makarovf9e522c2008-04-08 17:41:57 -07001330 status = peripheral_request_list(drv_data->pin_req, DRV_NAME);
1331 if (status != 0) {
1332 dev_err(&pdev->dev, ": Requesting Peripherals failed\n");
1333 goto out_error_queue_alloc;
1334 }
1335
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001336 /* Register with the SPI framework */
1337 platform_set_drvdata(pdev, drv_data);
1338 status = spi_register_master(master);
1339 if (status != 0) {
Bryan Wua32c6912007-12-04 23:45:15 -08001340 dev_err(dev, "problem registering spi master\n");
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001341 goto out_error_queue_alloc;
1342 }
Bryan Wua32c6912007-12-04 23:45:15 -08001343
Bryan Wuf4521262007-12-04 23:45:22 -08001344 dev_info(dev, "%s, Version %s, regs_base@%p, dma channel@%d\n",
Bryan Wubb90eb02007-12-04 23:45:18 -08001345 DRV_DESC, DRV_VERSION, drv_data->regs_base,
1346 drv_data->dma_channel);
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001347 return status;
1348
Michael Hennerichcc2f81a2007-12-04 23:45:13 -08001349out_error_queue_alloc:
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001350 destroy_queue(drv_data);
Bryan Wua32c6912007-12-04 23:45:15 -08001351out_error_no_dma_ch:
Bryan Wubb90eb02007-12-04 23:45:18 -08001352 iounmap((void *) drv_data->regs_base);
Bryan Wua32c6912007-12-04 23:45:15 -08001353out_error_ioremap:
1354out_error_get_res:
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001355 spi_master_put(master);
Michael Hennerichcc2f81a2007-12-04 23:45:13 -08001356
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001357 return status;
1358}
1359
1360/* stop hardware and remove the driver */
1361static int __devexit bfin5xx_spi_remove(struct platform_device *pdev)
1362{
1363 struct driver_data *drv_data = platform_get_drvdata(pdev);
1364 int status = 0;
1365
1366 if (!drv_data)
1367 return 0;
1368
1369 /* Remove the queue */
1370 status = destroy_queue(drv_data);
1371 if (status != 0)
1372 return status;
1373
1374 /* Disable the SSP at the peripheral and SOC level */
1375 bfin_spi_disable(drv_data);
1376
1377 /* Release DMA */
1378 if (drv_data->master_info->enable_dma) {
Bryan Wubb90eb02007-12-04 23:45:18 -08001379 if (dma_channel_active(drv_data->dma_channel))
1380 free_dma(drv_data->dma_channel);
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001381 }
1382
1383 /* Disconnect from the SPI framework */
1384 spi_unregister_master(drv_data->master);
1385
Bryan Wu003d9222007-12-04 23:45:22 -08001386 peripheral_free_list(drv_data->pin_req);
Michael Hennerichcc2f81a2007-12-04 23:45:13 -08001387
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001388 /* Prevent double remove */
1389 platform_set_drvdata(pdev, NULL);
1390
1391 return 0;
1392}
1393
1394#ifdef CONFIG_PM
1395static int bfin5xx_spi_suspend(struct platform_device *pdev, pm_message_t state)
1396{
1397 struct driver_data *drv_data = platform_get_drvdata(pdev);
1398 int status = 0;
1399
1400 status = stop_queue(drv_data);
1401 if (status != 0)
1402 return status;
1403
1404 /* stop hardware */
1405 bfin_spi_disable(drv_data);
1406
1407 return 0;
1408}
1409
1410static int bfin5xx_spi_resume(struct platform_device *pdev)
1411{
1412 struct driver_data *drv_data = platform_get_drvdata(pdev);
1413 int status = 0;
1414
1415 /* Enable the SPI interface */
1416 bfin_spi_enable(drv_data);
1417
1418 /* Start the queue running */
1419 status = start_queue(drv_data);
1420 if (status != 0) {
1421 dev_err(&pdev->dev, "problem starting queue (%d)\n", status);
1422 return status;
1423 }
1424
1425 return 0;
1426}
1427#else
1428#define bfin5xx_spi_suspend NULL
1429#define bfin5xx_spi_resume NULL
1430#endif /* CONFIG_PM */
1431
Kay Sievers7e38c3c2008-04-10 21:29:20 -07001432MODULE_ALIAS("platform:bfin-spi");
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001433static struct platform_driver bfin5xx_spi_driver = {
David Brownellfc3ba952007-08-30 23:56:24 -07001434 .driver = {
Bryan Wua32c6912007-12-04 23:45:15 -08001435 .name = DRV_NAME,
Bryan Wu88b40362007-05-21 18:32:16 +08001436 .owner = THIS_MODULE,
1437 },
1438 .suspend = bfin5xx_spi_suspend,
1439 .resume = bfin5xx_spi_resume,
1440 .remove = __devexit_p(bfin5xx_spi_remove),
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001441};
1442
1443static int __init bfin5xx_spi_init(void)
1444{
Bryan Wu88b40362007-05-21 18:32:16 +08001445 return platform_driver_probe(&bfin5xx_spi_driver, bfin5xx_spi_probe);
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001446}
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001447module_init(bfin5xx_spi_init);
1448
1449static void __exit bfin5xx_spi_exit(void)
1450{
1451 platform_driver_unregister(&bfin5xx_spi_driver);
1452}
Wu, Bryana5f6abd2007-05-06 14:50:34 -07001453module_exit(bfin5xx_spi_exit);