blob: 885194a07418f85e94f733b3ecf2953d11d0e4ce [file] [log] [blame]
Stephen Streete0c99052006-03-07 23:53:24 -08001/*
2 * Copyright (C) 2005 Stephen Street / StreetFire Sound Labs
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19#include <linux/init.h>
20#include <linux/module.h>
21#include <linux/device.h>
22#include <linux/ioport.h>
23#include <linux/errno.h>
24#include <linux/interrupt.h>
25#include <linux/platform_device.h>
26#include <linux/dma-mapping.h>
27#include <linux/spi/spi.h>
28#include <linux/workqueue.h>
Stephen Streete0c99052006-03-07 23:53:24 -080029#include <linux/delay.h>
eric miao2f1a74e2007-11-21 18:50:53 +080030#include <linux/clk.h>
Eric Miaoa7bb3902009-04-06 19:00:54 -070031#include <linux/gpio.h>
Stephen Streete0c99052006-03-07 23:53:24 -080032
33#include <asm/io.h>
34#include <asm/irq.h>
Stephen Streete0c99052006-03-07 23:53:24 -080035#include <asm/delay.h>
Stephen Streete0c99052006-03-07 23:53:24 -080036
Russell Kingdcea83a2008-11-29 11:40:28 +000037#include <mach/dma.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010038#include <mach/regs-ssp.h>
39#include <mach/ssp.h>
40#include <mach/pxa2xx_spi.h>
Stephen Streete0c99052006-03-07 23:53:24 -080041
42MODULE_AUTHOR("Stephen Street");
Will Newton037cdaf2007-12-10 15:49:25 -080043MODULE_DESCRIPTION("PXA2xx SSP SPI Controller");
Stephen Streete0c99052006-03-07 23:53:24 -080044MODULE_LICENSE("GPL");
Kay Sievers7e38c3c2008-04-10 21:29:20 -070045MODULE_ALIAS("platform:pxa2xx-spi");
Stephen Streete0c99052006-03-07 23:53:24 -080046
47#define MAX_BUSES 3
48
Vernon Sauderf1f640a2008-10-15 22:02:43 -070049#define RX_THRESH_DFLT 8
50#define TX_THRESH_DFLT 8
51#define TIMOUT_DFLT 1000
52
Ned Forrester7e964452008-09-13 02:33:18 -070053#define DMA_INT_MASK (DCSR_ENDINTR | DCSR_STARTINTR | DCSR_BUSERR)
54#define RESET_DMA_CHANNEL (DCSR_NODESC | DMA_INT_MASK)
Mike Rapoport20b918d2008-10-01 10:39:24 -070055#define IS_DMA_ALIGNED(x) ((((u32)(x)) & 0x07) == 0)
Ned Forrester7e964452008-09-13 02:33:18 -070056#define MAX_DMA_LEN 8191
Mike Rapoport7ad0ba92009-04-06 19:00:57 -070057#define DMA_ALIGNMENT 8
Stephen Streete0c99052006-03-07 23:53:24 -080058
Ned Forresterb97c74b2008-02-23 15:23:40 -080059/*
60 * for testing SSCR1 changes that require SSP restart, basically
61 * everything except the service and interrupt enables, the pxa270 developer
62 * manual says only SSCR1_SCFR, SSCR1_SPH, SSCR1_SPO need to be in this
63 * list, but the PXA255 dev man says all bits without really meaning the
64 * service and interrupt enables
65 */
66#define SSCR1_CHANGE_MASK (SSCR1_TTELP | SSCR1_TTE | SSCR1_SCFR \
Stephen Street8d94cc52006-12-10 02:18:54 -080067 | SSCR1_ECRA | SSCR1_ECRB | SSCR1_SCLKDIR \
Ned Forresterb97c74b2008-02-23 15:23:40 -080068 | SSCR1_SFRMDIR | SSCR1_RWOT | SSCR1_TRAIL \
69 | SSCR1_IFS | SSCR1_STRF | SSCR1_EFWR \
70 | SSCR1_RFT | SSCR1_TFT | SSCR1_MWDS \
71 | SSCR1_SPH | SSCR1_SPO | SSCR1_LBM)
Stephen Street8d94cc52006-12-10 02:18:54 -080072
Stephen Streete0c99052006-03-07 23:53:24 -080073#define DEFINE_SSP_REG(reg, off) \
David Brownellcf433692008-04-28 02:14:17 -070074static inline u32 read_##reg(void const __iomem *p) \
75{ return __raw_readl(p + (off)); } \
76\
77static inline void write_##reg(u32 v, void __iomem *p) \
78{ __raw_writel(v, p + (off)); }
Stephen Streete0c99052006-03-07 23:53:24 -080079
80DEFINE_SSP_REG(SSCR0, 0x00)
81DEFINE_SSP_REG(SSCR1, 0x04)
82DEFINE_SSP_REG(SSSR, 0x08)
83DEFINE_SSP_REG(SSITR, 0x0c)
84DEFINE_SSP_REG(SSDR, 0x10)
85DEFINE_SSP_REG(SSTO, 0x28)
86DEFINE_SSP_REG(SSPSP, 0x2c)
87
88#define START_STATE ((void*)0)
89#define RUNNING_STATE ((void*)1)
90#define DONE_STATE ((void*)2)
91#define ERROR_STATE ((void*)-1)
92
93#define QUEUE_RUNNING 0
94#define QUEUE_STOPPED 1
95
96struct driver_data {
97 /* Driver model hookup */
98 struct platform_device *pdev;
99
eric miao2f1a74e2007-11-21 18:50:53 +0800100 /* SSP Info */
101 struct ssp_device *ssp;
102
Stephen Streete0c99052006-03-07 23:53:24 -0800103 /* SPI framework hookup */
104 enum pxa_ssp_type ssp_type;
105 struct spi_master *master;
106
107 /* PXA hookup */
108 struct pxa2xx_spi_master *master_info;
109
110 /* DMA setup stuff */
111 int rx_channel;
112 int tx_channel;
113 u32 *null_dma_buf;
114
115 /* SSP register addresses */
David Brownellcf433692008-04-28 02:14:17 -0700116 void __iomem *ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800117 u32 ssdr_physical;
118
119 /* SSP masks*/
120 u32 dma_cr1;
121 u32 int_cr1;
122 u32 clear_sr;
123 u32 mask_sr;
124
125 /* Driver message queue */
126 struct workqueue_struct *workqueue;
127 struct work_struct pump_messages;
128 spinlock_t lock;
129 struct list_head queue;
130 int busy;
131 int run;
132
133 /* Message Transfer pump */
134 struct tasklet_struct pump_transfers;
135
136 /* Current message transfer state info */
137 struct spi_message* cur_msg;
138 struct spi_transfer* cur_transfer;
139 struct chip_data *cur_chip;
140 size_t len;
141 void *tx;
142 void *tx_end;
143 void *rx;
144 void *rx_end;
145 int dma_mapped;
146 dma_addr_t rx_dma;
147 dma_addr_t tx_dma;
148 size_t rx_map_len;
149 size_t tx_map_len;
Stephen Street9708c122006-03-28 14:05:23 -0800150 u8 n_bytes;
151 u32 dma_width;
Stephen Street8d94cc52006-12-10 02:18:54 -0800152 int (*write)(struct driver_data *drv_data);
153 int (*read)(struct driver_data *drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800154 irqreturn_t (*transfer_handler)(struct driver_data *drv_data);
155 void (*cs_control)(u32 command);
156};
157
158struct chip_data {
159 u32 cr0;
160 u32 cr1;
Stephen Streete0c99052006-03-07 23:53:24 -0800161 u32 psp;
162 u32 timeout;
163 u8 n_bytes;
164 u32 dma_width;
165 u32 dma_burst_size;
166 u32 threshold;
167 u32 dma_threshold;
168 u8 enable_dma;
Stephen Street9708c122006-03-28 14:05:23 -0800169 u8 bits_per_word;
170 u32 speed_hz;
Eric Miaoa7bb3902009-04-06 19:00:54 -0700171 int gpio_cs;
172 int gpio_cs_inverted;
Stephen Street8d94cc52006-12-10 02:18:54 -0800173 int (*write)(struct driver_data *drv_data);
174 int (*read)(struct driver_data *drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800175 void (*cs_control)(u32 command);
176};
177
David Howells6d5aefb2006-12-05 19:36:26 +0000178static void pump_messages(struct work_struct *work);
Stephen Streete0c99052006-03-07 23:53:24 -0800179
Eric Miaoa7bb3902009-04-06 19:00:54 -0700180static void cs_assert(struct driver_data *drv_data)
181{
182 struct chip_data *chip = drv_data->cur_chip;
183
184 if (chip->cs_control) {
185 chip->cs_control(PXA2XX_CS_ASSERT);
186 return;
187 }
188
189 if (gpio_is_valid(chip->gpio_cs))
190 gpio_set_value(chip->gpio_cs, chip->gpio_cs_inverted);
191}
192
193static void cs_deassert(struct driver_data *drv_data)
194{
195 struct chip_data *chip = drv_data->cur_chip;
196
197 if (chip->cs_control) {
Daniel Ribeiro2b2562d2009-04-08 22:48:03 -0300198 chip->cs_control(PXA2XX_CS_DEASSERT);
Eric Miaoa7bb3902009-04-06 19:00:54 -0700199 return;
200 }
201
202 if (gpio_is_valid(chip->gpio_cs))
203 gpio_set_value(chip->gpio_cs, !chip->gpio_cs_inverted);
204}
205
Stephen Streete0c99052006-03-07 23:53:24 -0800206static int flush(struct driver_data *drv_data)
207{
208 unsigned long limit = loops_per_jiffy << 1;
209
David Brownellcf433692008-04-28 02:14:17 -0700210 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800211
212 do {
213 while (read_SSSR(reg) & SSSR_RNE) {
214 read_SSDR(reg);
215 }
Roel Kluin306c68a2009-04-21 12:24:46 -0700216 } while ((read_SSSR(reg) & SSSR_BSY) && --limit);
Stephen Streete0c99052006-03-07 23:53:24 -0800217 write_SSSR(SSSR_ROR, reg);
218
219 return limit;
220}
221
Stephen Street8d94cc52006-12-10 02:18:54 -0800222static int null_writer(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800223{
David Brownellcf433692008-04-28 02:14:17 -0700224 void __iomem *reg = drv_data->ioaddr;
Stephen Street9708c122006-03-28 14:05:23 -0800225 u8 n_bytes = drv_data->n_bytes;
Stephen Streete0c99052006-03-07 23:53:24 -0800226
Stephen Street8d94cc52006-12-10 02:18:54 -0800227 if (((read_SSSR(reg) & 0x00000f00) == 0x00000f00)
228 || (drv_data->tx == drv_data->tx_end))
229 return 0;
230
231 write_SSDR(0, reg);
232 drv_data->tx += n_bytes;
233
234 return 1;
Stephen Streete0c99052006-03-07 23:53:24 -0800235}
236
Stephen Street8d94cc52006-12-10 02:18:54 -0800237static int null_reader(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800238{
David Brownellcf433692008-04-28 02:14:17 -0700239 void __iomem *reg = drv_data->ioaddr;
Stephen Street9708c122006-03-28 14:05:23 -0800240 u8 n_bytes = drv_data->n_bytes;
Stephen Streete0c99052006-03-07 23:53:24 -0800241
242 while ((read_SSSR(reg) & SSSR_RNE)
Stephen Street8d94cc52006-12-10 02:18:54 -0800243 && (drv_data->rx < drv_data->rx_end)) {
Stephen Streete0c99052006-03-07 23:53:24 -0800244 read_SSDR(reg);
245 drv_data->rx += n_bytes;
246 }
Stephen Street8d94cc52006-12-10 02:18:54 -0800247
248 return drv_data->rx == drv_data->rx_end;
Stephen Streete0c99052006-03-07 23:53:24 -0800249}
250
Stephen Street8d94cc52006-12-10 02:18:54 -0800251static int u8_writer(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800252{
David Brownellcf433692008-04-28 02:14:17 -0700253 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800254
Stephen Street8d94cc52006-12-10 02:18:54 -0800255 if (((read_SSSR(reg) & 0x00000f00) == 0x00000f00)
256 || (drv_data->tx == drv_data->tx_end))
257 return 0;
258
259 write_SSDR(*(u8 *)(drv_data->tx), reg);
260 ++drv_data->tx;
261
262 return 1;
Stephen Streete0c99052006-03-07 23:53:24 -0800263}
264
Stephen Street8d94cc52006-12-10 02:18:54 -0800265static int u8_reader(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800266{
David Brownellcf433692008-04-28 02:14:17 -0700267 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800268
269 while ((read_SSSR(reg) & SSSR_RNE)
Stephen Street8d94cc52006-12-10 02:18:54 -0800270 && (drv_data->rx < drv_data->rx_end)) {
Stephen Streete0c99052006-03-07 23:53:24 -0800271 *(u8 *)(drv_data->rx) = read_SSDR(reg);
272 ++drv_data->rx;
273 }
Stephen Street8d94cc52006-12-10 02:18:54 -0800274
275 return drv_data->rx == drv_data->rx_end;
Stephen Streete0c99052006-03-07 23:53:24 -0800276}
277
Stephen Street8d94cc52006-12-10 02:18:54 -0800278static int u16_writer(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800279{
David Brownellcf433692008-04-28 02:14:17 -0700280 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800281
Stephen Street8d94cc52006-12-10 02:18:54 -0800282 if (((read_SSSR(reg) & 0x00000f00) == 0x00000f00)
283 || (drv_data->tx == drv_data->tx_end))
284 return 0;
285
286 write_SSDR(*(u16 *)(drv_data->tx), reg);
287 drv_data->tx += 2;
288
289 return 1;
Stephen Streete0c99052006-03-07 23:53:24 -0800290}
291
Stephen Street8d94cc52006-12-10 02:18:54 -0800292static int u16_reader(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800293{
David Brownellcf433692008-04-28 02:14:17 -0700294 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800295
296 while ((read_SSSR(reg) & SSSR_RNE)
Stephen Street8d94cc52006-12-10 02:18:54 -0800297 && (drv_data->rx < drv_data->rx_end)) {
Stephen Streete0c99052006-03-07 23:53:24 -0800298 *(u16 *)(drv_data->rx) = read_SSDR(reg);
299 drv_data->rx += 2;
300 }
Stephen Street8d94cc52006-12-10 02:18:54 -0800301
302 return drv_data->rx == drv_data->rx_end;
Stephen Streete0c99052006-03-07 23:53:24 -0800303}
Stephen Street8d94cc52006-12-10 02:18:54 -0800304
305static int u32_writer(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800306{
David Brownellcf433692008-04-28 02:14:17 -0700307 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800308
Stephen Street8d94cc52006-12-10 02:18:54 -0800309 if (((read_SSSR(reg) & 0x00000f00) == 0x00000f00)
310 || (drv_data->tx == drv_data->tx_end))
311 return 0;
312
313 write_SSDR(*(u32 *)(drv_data->tx), reg);
314 drv_data->tx += 4;
315
316 return 1;
Stephen Streete0c99052006-03-07 23:53:24 -0800317}
318
Stephen Street8d94cc52006-12-10 02:18:54 -0800319static int u32_reader(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800320{
David Brownellcf433692008-04-28 02:14:17 -0700321 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800322
323 while ((read_SSSR(reg) & SSSR_RNE)
Stephen Street8d94cc52006-12-10 02:18:54 -0800324 && (drv_data->rx < drv_data->rx_end)) {
Stephen Streete0c99052006-03-07 23:53:24 -0800325 *(u32 *)(drv_data->rx) = read_SSDR(reg);
326 drv_data->rx += 4;
327 }
Stephen Street8d94cc52006-12-10 02:18:54 -0800328
329 return drv_data->rx == drv_data->rx_end;
Stephen Streete0c99052006-03-07 23:53:24 -0800330}
331
332static void *next_transfer(struct driver_data *drv_data)
333{
334 struct spi_message *msg = drv_data->cur_msg;
335 struct spi_transfer *trans = drv_data->cur_transfer;
336
337 /* Move to next transfer */
338 if (trans->transfer_list.next != &msg->transfers) {
339 drv_data->cur_transfer =
340 list_entry(trans->transfer_list.next,
341 struct spi_transfer,
342 transfer_list);
343 return RUNNING_STATE;
344 } else
345 return DONE_STATE;
346}
347
348static int map_dma_buffers(struct driver_data *drv_data)
349{
350 struct spi_message *msg = drv_data->cur_msg;
351 struct device *dev = &msg->spi->dev;
352
353 if (!drv_data->cur_chip->enable_dma)
354 return 0;
355
356 if (msg->is_dma_mapped)
357 return drv_data->rx_dma && drv_data->tx_dma;
358
359 if (!IS_DMA_ALIGNED(drv_data->rx) || !IS_DMA_ALIGNED(drv_data->tx))
360 return 0;
361
362 /* Modify setup if rx buffer is null */
363 if (drv_data->rx == NULL) {
364 *drv_data->null_dma_buf = 0;
365 drv_data->rx = drv_data->null_dma_buf;
366 drv_data->rx_map_len = 4;
367 } else
368 drv_data->rx_map_len = drv_data->len;
369
370
371 /* Modify setup if tx buffer is null */
372 if (drv_data->tx == NULL) {
373 *drv_data->null_dma_buf = 0;
374 drv_data->tx = drv_data->null_dma_buf;
375 drv_data->tx_map_len = 4;
376 } else
377 drv_data->tx_map_len = drv_data->len;
378
Ned Forrester393df742008-11-19 15:36:21 -0800379 /* Stream map the tx buffer. Always do DMA_TO_DEVICE first
380 * so we flush the cache *before* invalidating it, in case
381 * the tx and rx buffers overlap.
382 */
383 drv_data->tx_dma = dma_map_single(dev, drv_data->tx,
384 drv_data->tx_map_len, DMA_TO_DEVICE);
385 if (dma_mapping_error(dev, drv_data->tx_dma))
Stephen Streete0c99052006-03-07 23:53:24 -0800386 return 0;
387
Ned Forrester393df742008-11-19 15:36:21 -0800388 /* Stream map the rx buffer */
389 drv_data->rx_dma = dma_map_single(dev, drv_data->rx,
Stephen Streete0c99052006-03-07 23:53:24 -0800390 drv_data->rx_map_len, DMA_FROM_DEVICE);
Ned Forrester393df742008-11-19 15:36:21 -0800391 if (dma_mapping_error(dev, drv_data->rx_dma)) {
392 dma_unmap_single(dev, drv_data->tx_dma,
393 drv_data->tx_map_len, DMA_TO_DEVICE);
Stephen Streete0c99052006-03-07 23:53:24 -0800394 return 0;
395 }
396
397 return 1;
398}
399
400static void unmap_dma_buffers(struct driver_data *drv_data)
401{
402 struct device *dev;
403
404 if (!drv_data->dma_mapped)
405 return;
406
407 if (!drv_data->cur_msg->is_dma_mapped) {
408 dev = &drv_data->cur_msg->spi->dev;
409 dma_unmap_single(dev, drv_data->rx_dma,
410 drv_data->rx_map_len, DMA_FROM_DEVICE);
411 dma_unmap_single(dev, drv_data->tx_dma,
412 drv_data->tx_map_len, DMA_TO_DEVICE);
413 }
414
415 drv_data->dma_mapped = 0;
416}
417
418/* caller already set message->status; dma and pio irqs are blocked */
Stephen Street5daa3ba2006-05-20 15:00:19 -0700419static void giveback(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -0800420{
421 struct spi_transfer* last_transfer;
Stephen Street5daa3ba2006-05-20 15:00:19 -0700422 unsigned long flags;
423 struct spi_message *msg;
Stephen Streete0c99052006-03-07 23:53:24 -0800424
Stephen Street5daa3ba2006-05-20 15:00:19 -0700425 spin_lock_irqsave(&drv_data->lock, flags);
426 msg = drv_data->cur_msg;
427 drv_data->cur_msg = NULL;
428 drv_data->cur_transfer = NULL;
Stephen Street5daa3ba2006-05-20 15:00:19 -0700429 queue_work(drv_data->workqueue, &drv_data->pump_messages);
430 spin_unlock_irqrestore(&drv_data->lock, flags);
431
432 last_transfer = list_entry(msg->transfers.prev,
Stephen Streete0c99052006-03-07 23:53:24 -0800433 struct spi_transfer,
434 transfer_list);
435
Ned Forrester84235972008-09-13 02:33:17 -0700436 /* Delay if requested before any change in chip select */
437 if (last_transfer->delay_usecs)
438 udelay(last_transfer->delay_usecs);
439
440 /* Drop chip select UNLESS cs_change is true or we are returning
441 * a message with an error, or next message is for another chip
442 */
Stephen Streete0c99052006-03-07 23:53:24 -0800443 if (!last_transfer->cs_change)
Eric Miaoa7bb3902009-04-06 19:00:54 -0700444 cs_deassert(drv_data);
Ned Forrester84235972008-09-13 02:33:17 -0700445 else {
446 struct spi_message *next_msg;
447
448 /* Holding of cs was hinted, but we need to make sure
449 * the next message is for the same chip. Don't waste
450 * time with the following tests unless this was hinted.
451 *
452 * We cannot postpone this until pump_messages, because
453 * after calling msg->complete (below) the driver that
454 * sent the current message could be unloaded, which
455 * could invalidate the cs_control() callback...
456 */
457
458 /* get a pointer to the next message, if any */
459 spin_lock_irqsave(&drv_data->lock, flags);
460 if (list_empty(&drv_data->queue))
461 next_msg = NULL;
462 else
463 next_msg = list_entry(drv_data->queue.next,
464 struct spi_message, queue);
465 spin_unlock_irqrestore(&drv_data->lock, flags);
466
467 /* see if the next and current messages point
468 * to the same chip
469 */
470 if (next_msg && next_msg->spi != msg->spi)
471 next_msg = NULL;
472 if (!next_msg || msg->state == ERROR_STATE)
Eric Miaoa7bb3902009-04-06 19:00:54 -0700473 cs_deassert(drv_data);
Ned Forrester84235972008-09-13 02:33:17 -0700474 }
Stephen Streete0c99052006-03-07 23:53:24 -0800475
Stephen Street5daa3ba2006-05-20 15:00:19 -0700476 msg->state = NULL;
477 if (msg->complete)
478 msg->complete(msg->context);
Eric Miaoa7bb3902009-04-06 19:00:54 -0700479
480 drv_data->cur_chip = NULL;
Stephen Streete0c99052006-03-07 23:53:24 -0800481}
482
David Brownellcf433692008-04-28 02:14:17 -0700483static int wait_ssp_rx_stall(void const __iomem *ioaddr)
Stephen Streete0c99052006-03-07 23:53:24 -0800484{
485 unsigned long limit = loops_per_jiffy << 1;
486
Roel Kluin306c68a2009-04-21 12:24:46 -0700487 while ((read_SSSR(ioaddr) & SSSR_BSY) && --limit)
Stephen Streete0c99052006-03-07 23:53:24 -0800488 cpu_relax();
489
490 return limit;
491}
492
493static int wait_dma_channel_stop(int channel)
494{
495 unsigned long limit = loops_per_jiffy << 1;
496
Roel Kluin306c68a2009-04-21 12:24:46 -0700497 while (!(DCSR(channel) & DCSR_STOPSTATE) && --limit)
Stephen Streete0c99052006-03-07 23:53:24 -0800498 cpu_relax();
499
500 return limit;
501}
502
David Brownellcf433692008-04-28 02:14:17 -0700503static void dma_error_stop(struct driver_data *drv_data, const char *msg)
Stephen Street8d94cc52006-12-10 02:18:54 -0800504{
David Brownellcf433692008-04-28 02:14:17 -0700505 void __iomem *reg = drv_data->ioaddr;
Stephen Street8d94cc52006-12-10 02:18:54 -0800506
507 /* Stop and reset */
508 DCSR(drv_data->rx_channel) = RESET_DMA_CHANNEL;
509 DCSR(drv_data->tx_channel) = RESET_DMA_CHANNEL;
510 write_SSSR(drv_data->clear_sr, reg);
511 write_SSCR1(read_SSCR1(reg) & ~drv_data->dma_cr1, reg);
512 if (drv_data->ssp_type != PXA25x_SSP)
513 write_SSTO(0, reg);
514 flush(drv_data);
515 write_SSCR0(read_SSCR0(reg) & ~SSCR0_SSE, reg);
516
517 unmap_dma_buffers(drv_data);
518
519 dev_err(&drv_data->pdev->dev, "%s\n", msg);
520
521 drv_data->cur_msg->state = ERROR_STATE;
522 tasklet_schedule(&drv_data->pump_transfers);
523}
524
525static void dma_transfer_complete(struct driver_data *drv_data)
526{
David Brownellcf433692008-04-28 02:14:17 -0700527 void __iomem *reg = drv_data->ioaddr;
Stephen Street8d94cc52006-12-10 02:18:54 -0800528 struct spi_message *msg = drv_data->cur_msg;
529
530 /* Clear and disable interrupts on SSP and DMA channels*/
531 write_SSCR1(read_SSCR1(reg) & ~drv_data->dma_cr1, reg);
532 write_SSSR(drv_data->clear_sr, reg);
533 DCSR(drv_data->tx_channel) = RESET_DMA_CHANNEL;
534 DCSR(drv_data->rx_channel) = RESET_DMA_CHANNEL;
535
536 if (wait_dma_channel_stop(drv_data->rx_channel) == 0)
537 dev_err(&drv_data->pdev->dev,
538 "dma_handler: dma rx channel stop failed\n");
539
540 if (wait_ssp_rx_stall(drv_data->ioaddr) == 0)
541 dev_err(&drv_data->pdev->dev,
542 "dma_transfer: ssp rx stall failed\n");
543
544 unmap_dma_buffers(drv_data);
545
546 /* update the buffer pointer for the amount completed in dma */
547 drv_data->rx += drv_data->len -
548 (DCMD(drv_data->rx_channel) & DCMD_LENGTH);
549
550 /* read trailing data from fifo, it does not matter how many
551 * bytes are in the fifo just read until buffer is full
552 * or fifo is empty, which ever occurs first */
553 drv_data->read(drv_data);
554
555 /* return count of what was actually read */
556 msg->actual_length += drv_data->len -
557 (drv_data->rx_end - drv_data->rx);
558
Ned Forrester84235972008-09-13 02:33:17 -0700559 /* Transfer delays and chip select release are
560 * handled in pump_transfers or giveback
561 */
Stephen Street8d94cc52006-12-10 02:18:54 -0800562
563 /* Move to next transfer */
564 msg->state = next_transfer(drv_data);
565
566 /* Schedule transfer tasklet */
567 tasklet_schedule(&drv_data->pump_transfers);
568}
569
David Howells7d12e782006-10-05 14:55:46 +0100570static void dma_handler(int channel, void *data)
Stephen Streete0c99052006-03-07 23:53:24 -0800571{
572 struct driver_data *drv_data = data;
Stephen Streete0c99052006-03-07 23:53:24 -0800573 u32 irq_status = DCSR(channel) & DMA_INT_MASK;
Stephen Streete0c99052006-03-07 23:53:24 -0800574
575 if (irq_status & DCSR_BUSERR) {
576
Stephen Streete0c99052006-03-07 23:53:24 -0800577 if (channel == drv_data->tx_channel)
Stephen Street8d94cc52006-12-10 02:18:54 -0800578 dma_error_stop(drv_data,
579 "dma_handler: "
580 "bad bus address on tx channel");
Stephen Streete0c99052006-03-07 23:53:24 -0800581 else
Stephen Street8d94cc52006-12-10 02:18:54 -0800582 dma_error_stop(drv_data,
583 "dma_handler: "
584 "bad bus address on rx channel");
585 return;
Stephen Streete0c99052006-03-07 23:53:24 -0800586 }
587
588 /* PXA255x_SSP has no timeout interrupt, wait for tailing bytes */
Stephen Street8d94cc52006-12-10 02:18:54 -0800589 if ((channel == drv_data->tx_channel)
590 && (irq_status & DCSR_ENDINTR)
591 && (drv_data->ssp_type == PXA25x_SSP)) {
Stephen Streete0c99052006-03-07 23:53:24 -0800592
593 /* Wait for rx to stall */
594 if (wait_ssp_rx_stall(drv_data->ioaddr) == 0)
595 dev_err(&drv_data->pdev->dev,
596 "dma_handler: ssp rx stall failed\n");
597
Stephen Street8d94cc52006-12-10 02:18:54 -0800598 /* finish this transfer, start the next */
599 dma_transfer_complete(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800600 }
601}
602
603static irqreturn_t dma_transfer(struct driver_data *drv_data)
604{
605 u32 irq_status;
David Brownellcf433692008-04-28 02:14:17 -0700606 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800607
608 irq_status = read_SSSR(reg) & drv_data->mask_sr;
609 if (irq_status & SSSR_ROR) {
Stephen Street8d94cc52006-12-10 02:18:54 -0800610 dma_error_stop(drv_data, "dma_transfer: fifo overrun");
Stephen Streete0c99052006-03-07 23:53:24 -0800611 return IRQ_HANDLED;
612 }
613
614 /* Check for false positive timeout */
Stephen Street8d94cc52006-12-10 02:18:54 -0800615 if ((irq_status & SSSR_TINT)
616 && (DCSR(drv_data->tx_channel) & DCSR_RUN)) {
Stephen Streete0c99052006-03-07 23:53:24 -0800617 write_SSSR(SSSR_TINT, reg);
618 return IRQ_HANDLED;
619 }
620
621 if (irq_status & SSSR_TINT || drv_data->rx == drv_data->rx_end) {
622
Stephen Street8d94cc52006-12-10 02:18:54 -0800623 /* Clear and disable timeout interrupt, do the rest in
624 * dma_transfer_complete */
Stephen Streete0c99052006-03-07 23:53:24 -0800625 if (drv_data->ssp_type != PXA25x_SSP)
626 write_SSTO(0, reg);
Stephen Streete0c99052006-03-07 23:53:24 -0800627
Stephen Street8d94cc52006-12-10 02:18:54 -0800628 /* finish this transfer, start the next */
629 dma_transfer_complete(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800630
631 return IRQ_HANDLED;
632 }
633
634 /* Opps problem detected */
635 return IRQ_NONE;
636}
637
Stephen Street8d94cc52006-12-10 02:18:54 -0800638static void int_error_stop(struct driver_data *drv_data, const char* msg)
639{
David Brownellcf433692008-04-28 02:14:17 -0700640 void __iomem *reg = drv_data->ioaddr;
Stephen Street8d94cc52006-12-10 02:18:54 -0800641
642 /* Stop and reset SSP */
643 write_SSSR(drv_data->clear_sr, reg);
644 write_SSCR1(read_SSCR1(reg) & ~drv_data->int_cr1, reg);
645 if (drv_data->ssp_type != PXA25x_SSP)
646 write_SSTO(0, reg);
647 flush(drv_data);
648 write_SSCR0(read_SSCR0(reg) & ~SSCR0_SSE, reg);
649
650 dev_err(&drv_data->pdev->dev, "%s\n", msg);
651
652 drv_data->cur_msg->state = ERROR_STATE;
653 tasklet_schedule(&drv_data->pump_transfers);
654}
655
656static void int_transfer_complete(struct driver_data *drv_data)
657{
David Brownellcf433692008-04-28 02:14:17 -0700658 void __iomem *reg = drv_data->ioaddr;
Stephen Street8d94cc52006-12-10 02:18:54 -0800659
660 /* Stop SSP */
661 write_SSSR(drv_data->clear_sr, reg);
662 write_SSCR1(read_SSCR1(reg) & ~drv_data->int_cr1, reg);
663 if (drv_data->ssp_type != PXA25x_SSP)
664 write_SSTO(0, reg);
665
666 /* Update total byte transfered return count actual bytes read */
667 drv_data->cur_msg->actual_length += drv_data->len -
668 (drv_data->rx_end - drv_data->rx);
669
Ned Forrester84235972008-09-13 02:33:17 -0700670 /* Transfer delays and chip select release are
671 * handled in pump_transfers or giveback
672 */
Stephen Street8d94cc52006-12-10 02:18:54 -0800673
674 /* Move to next transfer */
675 drv_data->cur_msg->state = next_transfer(drv_data);
676
677 /* Schedule transfer tasklet */
678 tasklet_schedule(&drv_data->pump_transfers);
679}
680
Stephen Streete0c99052006-03-07 23:53:24 -0800681static irqreturn_t interrupt_transfer(struct driver_data *drv_data)
682{
David Brownellcf433692008-04-28 02:14:17 -0700683 void __iomem *reg = drv_data->ioaddr;
Stephen Street8d94cc52006-12-10 02:18:54 -0800684
Stephen Street5daa3ba2006-05-20 15:00:19 -0700685 u32 irq_mask = (read_SSCR1(reg) & SSCR1_TIE) ?
686 drv_data->mask_sr : drv_data->mask_sr & ~SSSR_TFS;
Stephen Streete0c99052006-03-07 23:53:24 -0800687
Stephen Street8d94cc52006-12-10 02:18:54 -0800688 u32 irq_status = read_SSSR(reg) & irq_mask;
Stephen Streete0c99052006-03-07 23:53:24 -0800689
Stephen Street8d94cc52006-12-10 02:18:54 -0800690 if (irq_status & SSSR_ROR) {
691 int_error_stop(drv_data, "interrupt_transfer: fifo overrun");
692 return IRQ_HANDLED;
693 }
Stephen Streete0c99052006-03-07 23:53:24 -0800694
Stephen Street8d94cc52006-12-10 02:18:54 -0800695 if (irq_status & SSSR_TINT) {
696 write_SSSR(SSSR_TINT, reg);
697 if (drv_data->read(drv_data)) {
698 int_transfer_complete(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800699 return IRQ_HANDLED;
700 }
Stephen Street8d94cc52006-12-10 02:18:54 -0800701 }
Stephen Streete0c99052006-03-07 23:53:24 -0800702
Stephen Street8d94cc52006-12-10 02:18:54 -0800703 /* Drain rx fifo, Fill tx fifo and prevent overruns */
704 do {
705 if (drv_data->read(drv_data)) {
706 int_transfer_complete(drv_data);
707 return IRQ_HANDLED;
Stephen Streete0c99052006-03-07 23:53:24 -0800708 }
Stephen Street8d94cc52006-12-10 02:18:54 -0800709 } while (drv_data->write(drv_data));
Stephen Streete0c99052006-03-07 23:53:24 -0800710
Stephen Street8d94cc52006-12-10 02:18:54 -0800711 if (drv_data->read(drv_data)) {
712 int_transfer_complete(drv_data);
713 return IRQ_HANDLED;
714 }
Stephen Streete0c99052006-03-07 23:53:24 -0800715
Stephen Street8d94cc52006-12-10 02:18:54 -0800716 if (drv_data->tx == drv_data->tx_end) {
717 write_SSCR1(read_SSCR1(reg) & ~SSCR1_TIE, reg);
718 /* PXA25x_SSP has no timeout, read trailing bytes */
719 if (drv_data->ssp_type == PXA25x_SSP) {
720 if (!wait_ssp_rx_stall(reg))
721 {
722 int_error_stop(drv_data, "interrupt_transfer: "
723 "rx stall failed");
724 return IRQ_HANDLED;
725 }
726 if (!drv_data->read(drv_data))
727 {
728 int_error_stop(drv_data,
729 "interrupt_transfer: "
730 "trailing byte read failed");
731 return IRQ_HANDLED;
732 }
733 int_transfer_complete(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800734 }
Stephen Streete0c99052006-03-07 23:53:24 -0800735 }
736
Stephen Street5daa3ba2006-05-20 15:00:19 -0700737 /* We did something */
738 return IRQ_HANDLED;
Stephen Streete0c99052006-03-07 23:53:24 -0800739}
740
David Howells7d12e782006-10-05 14:55:46 +0100741static irqreturn_t ssp_int(int irq, void *dev_id)
Stephen Streete0c99052006-03-07 23:53:24 -0800742{
Jeff Garzikc7bec5a2006-10-06 15:00:58 -0400743 struct driver_data *drv_data = dev_id;
David Brownellcf433692008-04-28 02:14:17 -0700744 void __iomem *reg = drv_data->ioaddr;
Stephen Streete0c99052006-03-07 23:53:24 -0800745
746 if (!drv_data->cur_msg) {
Stephen Street5daa3ba2006-05-20 15:00:19 -0700747
748 write_SSCR0(read_SSCR0(reg) & ~SSCR0_SSE, reg);
749 write_SSCR1(read_SSCR1(reg) & ~drv_data->int_cr1, reg);
750 if (drv_data->ssp_type != PXA25x_SSP)
751 write_SSTO(0, reg);
752 write_SSSR(drv_data->clear_sr, reg);
753
Stephen Streete0c99052006-03-07 23:53:24 -0800754 dev_err(&drv_data->pdev->dev, "bad message state "
Stephen Street8d94cc52006-12-10 02:18:54 -0800755 "in interrupt handler\n");
Stephen Street5daa3ba2006-05-20 15:00:19 -0700756
Stephen Streete0c99052006-03-07 23:53:24 -0800757 /* Never fail */
758 return IRQ_HANDLED;
759 }
760
761 return drv_data->transfer_handler(drv_data);
762}
763
David Brownellcf433692008-04-28 02:14:17 -0700764static int set_dma_burst_and_threshold(struct chip_data *chip,
765 struct spi_device *spi,
Stephen Street8d94cc52006-12-10 02:18:54 -0800766 u8 bits_per_word, u32 *burst_code,
767 u32 *threshold)
768{
769 struct pxa2xx_spi_chip *chip_info =
770 (struct pxa2xx_spi_chip *)spi->controller_data;
771 int bytes_per_word;
772 int burst_bytes;
773 int thresh_words;
774 int req_burst_size;
775 int retval = 0;
776
777 /* Set the threshold (in registers) to equal the same amount of data
778 * as represented by burst size (in bytes). The computation below
779 * is (burst_size rounded up to nearest 8 byte, word or long word)
780 * divided by (bytes/register); the tx threshold is the inverse of
781 * the rx, so that there will always be enough data in the rx fifo
782 * to satisfy a burst, and there will always be enough space in the
783 * tx fifo to accept a burst (a tx burst will overwrite the fifo if
784 * there is not enough space), there must always remain enough empty
785 * space in the rx fifo for any data loaded to the tx fifo.
786 * Whenever burst_size (in bytes) equals bits/word, the fifo threshold
787 * will be 8, or half the fifo;
788 * The threshold can only be set to 2, 4 or 8, but not 16, because
789 * to burst 16 to the tx fifo, the fifo would have to be empty;
790 * however, the minimum fifo trigger level is 1, and the tx will
791 * request service when the fifo is at this level, with only 15 spaces.
792 */
793
794 /* find bytes/word */
795 if (bits_per_word <= 8)
796 bytes_per_word = 1;
797 else if (bits_per_word <= 16)
798 bytes_per_word = 2;
799 else
800 bytes_per_word = 4;
801
802 /* use struct pxa2xx_spi_chip->dma_burst_size if available */
803 if (chip_info)
804 req_burst_size = chip_info->dma_burst_size;
805 else {
806 switch (chip->dma_burst_size) {
807 default:
808 /* if the default burst size is not set,
809 * do it now */
810 chip->dma_burst_size = DCMD_BURST8;
811 case DCMD_BURST8:
812 req_burst_size = 8;
813 break;
814 case DCMD_BURST16:
815 req_burst_size = 16;
816 break;
817 case DCMD_BURST32:
818 req_burst_size = 32;
819 break;
820 }
821 }
822 if (req_burst_size <= 8) {
823 *burst_code = DCMD_BURST8;
824 burst_bytes = 8;
825 } else if (req_burst_size <= 16) {
826 if (bytes_per_word == 1) {
827 /* don't burst more than 1/2 the fifo */
828 *burst_code = DCMD_BURST8;
829 burst_bytes = 8;
830 retval = 1;
831 } else {
832 *burst_code = DCMD_BURST16;
833 burst_bytes = 16;
834 }
835 } else {
836 if (bytes_per_word == 1) {
837 /* don't burst more than 1/2 the fifo */
838 *burst_code = DCMD_BURST8;
839 burst_bytes = 8;
840 retval = 1;
841 } else if (bytes_per_word == 2) {
842 /* don't burst more than 1/2 the fifo */
843 *burst_code = DCMD_BURST16;
844 burst_bytes = 16;
845 retval = 1;
846 } else {
847 *burst_code = DCMD_BURST32;
848 burst_bytes = 32;
849 }
850 }
851
852 thresh_words = burst_bytes / bytes_per_word;
853
854 /* thresh_words will be between 2 and 8 */
855 *threshold = (SSCR1_RxTresh(thresh_words) & SSCR1_RFT)
856 | (SSCR1_TxTresh(16-thresh_words) & SSCR1_TFT);
857
858 return retval;
859}
860
eric miao2f1a74e2007-11-21 18:50:53 +0800861static unsigned int ssp_get_clk_div(struct ssp_device *ssp, int rate)
862{
863 unsigned long ssp_clk = clk_get_rate(ssp->clk);
864
865 if (ssp->type == PXA25x_SSP)
866 return ((ssp_clk / (2 * rate) - 1) & 0xff) << 8;
867 else
868 return ((ssp_clk / rate - 1) & 0xfff) << 8;
869}
870
Stephen Streete0c99052006-03-07 23:53:24 -0800871static void pump_transfers(unsigned long data)
872{
873 struct driver_data *drv_data = (struct driver_data *)data;
874 struct spi_message *message = NULL;
875 struct spi_transfer *transfer = NULL;
876 struct spi_transfer *previous = NULL;
877 struct chip_data *chip = NULL;
eric miao2f1a74e2007-11-21 18:50:53 +0800878 struct ssp_device *ssp = drv_data->ssp;
David Brownellcf433692008-04-28 02:14:17 -0700879 void __iomem *reg = drv_data->ioaddr;
Stephen Street9708c122006-03-28 14:05:23 -0800880 u32 clk_div = 0;
881 u8 bits = 0;
882 u32 speed = 0;
883 u32 cr0;
Stephen Street8d94cc52006-12-10 02:18:54 -0800884 u32 cr1;
885 u32 dma_thresh = drv_data->cur_chip->dma_threshold;
886 u32 dma_burst = drv_data->cur_chip->dma_burst_size;
Stephen Streete0c99052006-03-07 23:53:24 -0800887
888 /* Get current state information */
889 message = drv_data->cur_msg;
890 transfer = drv_data->cur_transfer;
891 chip = drv_data->cur_chip;
892
893 /* Handle for abort */
894 if (message->state == ERROR_STATE) {
895 message->status = -EIO;
Stephen Street5daa3ba2006-05-20 15:00:19 -0700896 giveback(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800897 return;
898 }
899
900 /* Handle end of message */
901 if (message->state == DONE_STATE) {
902 message->status = 0;
Stephen Street5daa3ba2006-05-20 15:00:19 -0700903 giveback(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800904 return;
905 }
906
Ned Forrester84235972008-09-13 02:33:17 -0700907 /* Delay if requested at end of transfer before CS change */
Stephen Streete0c99052006-03-07 23:53:24 -0800908 if (message->state == RUNNING_STATE) {
909 previous = list_entry(transfer->transfer_list.prev,
910 struct spi_transfer,
911 transfer_list);
912 if (previous->delay_usecs)
913 udelay(previous->delay_usecs);
Ned Forrester84235972008-09-13 02:33:17 -0700914
915 /* Drop chip select only if cs_change is requested */
916 if (previous->cs_change)
Eric Miaoa7bb3902009-04-06 19:00:54 -0700917 cs_deassert(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800918 }
919
Ned Forrester7e964452008-09-13 02:33:18 -0700920 /* Check for transfers that need multiple DMA segments */
921 if (transfer->len > MAX_DMA_LEN && chip->enable_dma) {
922
923 /* reject already-mapped transfers; PIO won't always work */
924 if (message->is_dma_mapped
925 || transfer->rx_dma || transfer->tx_dma) {
926 dev_err(&drv_data->pdev->dev,
927 "pump_transfers: mapped transfer length "
Mike Rapoport20b918d2008-10-01 10:39:24 -0700928 "of %u is greater than %d\n",
Ned Forrester7e964452008-09-13 02:33:18 -0700929 transfer->len, MAX_DMA_LEN);
930 message->status = -EINVAL;
931 giveback(drv_data);
932 return;
933 }
934
935 /* warn ... we force this to PIO mode */
936 if (printk_ratelimit())
937 dev_warn(&message->spi->dev, "pump_transfers: "
938 "DMA disabled for transfer length %ld "
939 "greater than %d\n",
940 (long)drv_data->len, MAX_DMA_LEN);
Stephen Street8d94cc52006-12-10 02:18:54 -0800941 }
942
Stephen Streete0c99052006-03-07 23:53:24 -0800943 /* Setup the transfer state based on the type of transfer */
944 if (flush(drv_data) == 0) {
945 dev_err(&drv_data->pdev->dev, "pump_transfers: flush failed\n");
946 message->status = -EIO;
Stephen Street5daa3ba2006-05-20 15:00:19 -0700947 giveback(drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -0800948 return;
949 }
Stephen Street9708c122006-03-28 14:05:23 -0800950 drv_data->n_bytes = chip->n_bytes;
951 drv_data->dma_width = chip->dma_width;
Stephen Streete0c99052006-03-07 23:53:24 -0800952 drv_data->tx = (void *)transfer->tx_buf;
953 drv_data->tx_end = drv_data->tx + transfer->len;
954 drv_data->rx = transfer->rx_buf;
955 drv_data->rx_end = drv_data->rx + transfer->len;
956 drv_data->rx_dma = transfer->rx_dma;
957 drv_data->tx_dma = transfer->tx_dma;
Stephen Street8d94cc52006-12-10 02:18:54 -0800958 drv_data->len = transfer->len & DCMD_LENGTH;
Stephen Streete0c99052006-03-07 23:53:24 -0800959 drv_data->write = drv_data->tx ? chip->write : null_writer;
960 drv_data->read = drv_data->rx ? chip->read : null_reader;
Stephen Street9708c122006-03-28 14:05:23 -0800961
962 /* Change speed and bit per word on a per transfer */
Stephen Street8d94cc52006-12-10 02:18:54 -0800963 cr0 = chip->cr0;
Stephen Street9708c122006-03-28 14:05:23 -0800964 if (transfer->speed_hz || transfer->bits_per_word) {
965
Stephen Street9708c122006-03-28 14:05:23 -0800966 bits = chip->bits_per_word;
967 speed = chip->speed_hz;
968
969 if (transfer->speed_hz)
970 speed = transfer->speed_hz;
971
972 if (transfer->bits_per_word)
973 bits = transfer->bits_per_word;
974
eric miao2f1a74e2007-11-21 18:50:53 +0800975 clk_div = ssp_get_clk_div(ssp, speed);
Stephen Street9708c122006-03-28 14:05:23 -0800976
977 if (bits <= 8) {
978 drv_data->n_bytes = 1;
979 drv_data->dma_width = DCMD_WIDTH1;
980 drv_data->read = drv_data->read != null_reader ?
981 u8_reader : null_reader;
982 drv_data->write = drv_data->write != null_writer ?
983 u8_writer : null_writer;
984 } else if (bits <= 16) {
985 drv_data->n_bytes = 2;
986 drv_data->dma_width = DCMD_WIDTH2;
987 drv_data->read = drv_data->read != null_reader ?
988 u16_reader : null_reader;
989 drv_data->write = drv_data->write != null_writer ?
990 u16_writer : null_writer;
991 } else if (bits <= 32) {
992 drv_data->n_bytes = 4;
993 drv_data->dma_width = DCMD_WIDTH4;
994 drv_data->read = drv_data->read != null_reader ?
995 u32_reader : null_reader;
996 drv_data->write = drv_data->write != null_writer ?
997 u32_writer : null_writer;
998 }
Stephen Street8d94cc52006-12-10 02:18:54 -0800999 /* if bits/word is changed in dma mode, then must check the
1000 * thresholds and burst also */
1001 if (chip->enable_dma) {
1002 if (set_dma_burst_and_threshold(chip, message->spi,
1003 bits, &dma_burst,
1004 &dma_thresh))
1005 if (printk_ratelimit())
1006 dev_warn(&message->spi->dev,
Ned Forrester7e964452008-09-13 02:33:18 -07001007 "pump_transfers: "
Stephen Street8d94cc52006-12-10 02:18:54 -08001008 "DMA burst size reduced to "
1009 "match bits_per_word\n");
1010 }
Stephen Street9708c122006-03-28 14:05:23 -08001011
1012 cr0 = clk_div
1013 | SSCR0_Motorola
Stephen Street5daa3ba2006-05-20 15:00:19 -07001014 | SSCR0_DataSize(bits > 16 ? bits - 16 : bits)
Stephen Street9708c122006-03-28 14:05:23 -08001015 | SSCR0_SSE
1016 | (bits > 16 ? SSCR0_EDSS : 0);
Stephen Street9708c122006-03-28 14:05:23 -08001017 }
1018
Stephen Streete0c99052006-03-07 23:53:24 -08001019 message->state = RUNNING_STATE;
1020
Ned Forrester7e964452008-09-13 02:33:18 -07001021 /* Try to map dma buffer and do a dma transfer if successful, but
1022 * only if the length is non-zero and less than MAX_DMA_LEN.
1023 *
1024 * Zero-length non-descriptor DMA is illegal on PXA2xx; force use
1025 * of PIO instead. Care is needed above because the transfer may
1026 * have have been passed with buffers that are already dma mapped.
1027 * A zero-length transfer in PIO mode will not try to write/read
1028 * to/from the buffers
1029 *
1030 * REVISIT large transfers are exactly where we most want to be
1031 * using DMA. If this happens much, split those transfers into
1032 * multiple DMA segments rather than forcing PIO.
1033 */
1034 drv_data->dma_mapped = 0;
1035 if (drv_data->len > 0 && drv_data->len <= MAX_DMA_LEN)
1036 drv_data->dma_mapped = map_dma_buffers(drv_data);
1037 if (drv_data->dma_mapped) {
Stephen Streete0c99052006-03-07 23:53:24 -08001038
1039 /* Ensure we have the correct interrupt handler */
1040 drv_data->transfer_handler = dma_transfer;
1041
1042 /* Setup rx DMA Channel */
1043 DCSR(drv_data->rx_channel) = RESET_DMA_CHANNEL;
1044 DSADR(drv_data->rx_channel) = drv_data->ssdr_physical;
1045 DTADR(drv_data->rx_channel) = drv_data->rx_dma;
1046 if (drv_data->rx == drv_data->null_dma_buf)
1047 /* No target address increment */
1048 DCMD(drv_data->rx_channel) = DCMD_FLOWSRC
Stephen Street9708c122006-03-28 14:05:23 -08001049 | drv_data->dma_width
Stephen Street8d94cc52006-12-10 02:18:54 -08001050 | dma_burst
Stephen Streete0c99052006-03-07 23:53:24 -08001051 | drv_data->len;
1052 else
1053 DCMD(drv_data->rx_channel) = DCMD_INCTRGADDR
1054 | DCMD_FLOWSRC
Stephen Street9708c122006-03-28 14:05:23 -08001055 | drv_data->dma_width
Stephen Street8d94cc52006-12-10 02:18:54 -08001056 | dma_burst
Stephen Streete0c99052006-03-07 23:53:24 -08001057 | drv_data->len;
1058
1059 /* Setup tx DMA Channel */
1060 DCSR(drv_data->tx_channel) = RESET_DMA_CHANNEL;
1061 DSADR(drv_data->tx_channel) = drv_data->tx_dma;
1062 DTADR(drv_data->tx_channel) = drv_data->ssdr_physical;
1063 if (drv_data->tx == drv_data->null_dma_buf)
1064 /* No source address increment */
1065 DCMD(drv_data->tx_channel) = DCMD_FLOWTRG
Stephen Street9708c122006-03-28 14:05:23 -08001066 | drv_data->dma_width
Stephen Street8d94cc52006-12-10 02:18:54 -08001067 | dma_burst
Stephen Streete0c99052006-03-07 23:53:24 -08001068 | drv_data->len;
1069 else
1070 DCMD(drv_data->tx_channel) = DCMD_INCSRCADDR
1071 | DCMD_FLOWTRG
Stephen Street9708c122006-03-28 14:05:23 -08001072 | drv_data->dma_width
Stephen Street8d94cc52006-12-10 02:18:54 -08001073 | dma_burst
Stephen Streete0c99052006-03-07 23:53:24 -08001074 | drv_data->len;
1075
1076 /* Enable dma end irqs on SSP to detect end of transfer */
1077 if (drv_data->ssp_type == PXA25x_SSP)
1078 DCMD(drv_data->tx_channel) |= DCMD_ENDIRQEN;
1079
Stephen Street8d94cc52006-12-10 02:18:54 -08001080 /* Clear status and start DMA engine */
1081 cr1 = chip->cr1 | dma_thresh | drv_data->dma_cr1;
Stephen Streete0c99052006-03-07 23:53:24 -08001082 write_SSSR(drv_data->clear_sr, reg);
1083 DCSR(drv_data->rx_channel) |= DCSR_RUN;
1084 DCSR(drv_data->tx_channel) |= DCSR_RUN;
Stephen Streete0c99052006-03-07 23:53:24 -08001085 } else {
1086 /* Ensure we have the correct interrupt handler */
1087 drv_data->transfer_handler = interrupt_transfer;
1088
Stephen Street8d94cc52006-12-10 02:18:54 -08001089 /* Clear status */
1090 cr1 = chip->cr1 | chip->threshold | drv_data->int_cr1;
Stephen Streete0c99052006-03-07 23:53:24 -08001091 write_SSSR(drv_data->clear_sr, reg);
Stephen Street8d94cc52006-12-10 02:18:54 -08001092 }
1093
1094 /* see if we need to reload the config registers */
1095 if ((read_SSCR0(reg) != cr0)
1096 || (read_SSCR1(reg) & SSCR1_CHANGE_MASK) !=
1097 (cr1 & SSCR1_CHANGE_MASK)) {
1098
Ned Forresterb97c74b2008-02-23 15:23:40 -08001099 /* stop the SSP, and update the other bits */
Stephen Street8d94cc52006-12-10 02:18:54 -08001100 write_SSCR0(cr0 & ~SSCR0_SSE, reg);
Stephen Streete0c99052006-03-07 23:53:24 -08001101 if (drv_data->ssp_type != PXA25x_SSP)
1102 write_SSTO(chip->timeout, reg);
Ned Forresterb97c74b2008-02-23 15:23:40 -08001103 /* first set CR1 without interrupt and service enables */
1104 write_SSCR1(cr1 & SSCR1_CHANGE_MASK, reg);
1105 /* restart the SSP */
Stephen Street8d94cc52006-12-10 02:18:54 -08001106 write_SSCR0(cr0, reg);
Ned Forresterb97c74b2008-02-23 15:23:40 -08001107
Stephen Street8d94cc52006-12-10 02:18:54 -08001108 } else {
1109 if (drv_data->ssp_type != PXA25x_SSP)
1110 write_SSTO(chip->timeout, reg);
Stephen Streete0c99052006-03-07 23:53:24 -08001111 }
Ned Forresterb97c74b2008-02-23 15:23:40 -08001112
Eric Miaoa7bb3902009-04-06 19:00:54 -07001113 cs_assert(drv_data);
Ned Forresterb97c74b2008-02-23 15:23:40 -08001114
1115 /* after chip select, release the data by enabling service
1116 * requests and interrupts, without changing any mode bits */
1117 write_SSCR1(cr1, reg);
Stephen Streete0c99052006-03-07 23:53:24 -08001118}
1119
David Howells6d5aefb2006-12-05 19:36:26 +00001120static void pump_messages(struct work_struct *work)
Stephen Streete0c99052006-03-07 23:53:24 -08001121{
David Howells6d5aefb2006-12-05 19:36:26 +00001122 struct driver_data *drv_data =
1123 container_of(work, struct driver_data, pump_messages);
Stephen Streete0c99052006-03-07 23:53:24 -08001124 unsigned long flags;
1125
1126 /* Lock queue and check for queue work */
1127 spin_lock_irqsave(&drv_data->lock, flags);
1128 if (list_empty(&drv_data->queue) || drv_data->run == QUEUE_STOPPED) {
1129 drv_data->busy = 0;
1130 spin_unlock_irqrestore(&drv_data->lock, flags);
1131 return;
1132 }
1133
1134 /* Make sure we are not already running a message */
1135 if (drv_data->cur_msg) {
1136 spin_unlock_irqrestore(&drv_data->lock, flags);
1137 return;
1138 }
1139
1140 /* Extract head of queue */
1141 drv_data->cur_msg = list_entry(drv_data->queue.next,
1142 struct spi_message, queue);
1143 list_del_init(&drv_data->cur_msg->queue);
Stephen Streete0c99052006-03-07 23:53:24 -08001144
1145 /* Initial message state*/
1146 drv_data->cur_msg->state = START_STATE;
1147 drv_data->cur_transfer = list_entry(drv_data->cur_msg->transfers.next,
1148 struct spi_transfer,
1149 transfer_list);
1150
Stephen Street8d94cc52006-12-10 02:18:54 -08001151 /* prepare to setup the SSP, in pump_transfers, using the per
1152 * chip configuration */
Stephen Streete0c99052006-03-07 23:53:24 -08001153 drv_data->cur_chip = spi_get_ctldata(drv_data->cur_msg->spi);
Stephen Streete0c99052006-03-07 23:53:24 -08001154
1155 /* Mark as busy and launch transfers */
1156 tasklet_schedule(&drv_data->pump_transfers);
Stephen Street5daa3ba2006-05-20 15:00:19 -07001157
1158 drv_data->busy = 1;
1159 spin_unlock_irqrestore(&drv_data->lock, flags);
Stephen Streete0c99052006-03-07 23:53:24 -08001160}
1161
1162static int transfer(struct spi_device *spi, struct spi_message *msg)
1163{
1164 struct driver_data *drv_data = spi_master_get_devdata(spi->master);
1165 unsigned long flags;
1166
1167 spin_lock_irqsave(&drv_data->lock, flags);
1168
1169 if (drv_data->run == QUEUE_STOPPED) {
1170 spin_unlock_irqrestore(&drv_data->lock, flags);
1171 return -ESHUTDOWN;
1172 }
1173
1174 msg->actual_length = 0;
1175 msg->status = -EINPROGRESS;
1176 msg->state = START_STATE;
1177
1178 list_add_tail(&msg->queue, &drv_data->queue);
1179
1180 if (drv_data->run == QUEUE_RUNNING && !drv_data->busy)
1181 queue_work(drv_data->workqueue, &drv_data->pump_messages);
1182
1183 spin_unlock_irqrestore(&drv_data->lock, flags);
1184
1185 return 0;
1186}
1187
David Brownelldccd5732007-07-17 04:04:02 -07001188/* the spi->mode bits understood by this driver: */
1189#define MODEBITS (SPI_CPOL | SPI_CPHA)
1190
Eric Miaoa7bb3902009-04-06 19:00:54 -07001191static int setup_cs(struct spi_device *spi, struct chip_data *chip,
1192 struct pxa2xx_spi_chip *chip_info)
1193{
1194 int err = 0;
1195
1196 if (chip == NULL || chip_info == NULL)
1197 return 0;
1198
1199 /* NOTE: setup() can be called multiple times, possibly with
1200 * different chip_info, release previously requested GPIO
1201 */
1202 if (gpio_is_valid(chip->gpio_cs))
1203 gpio_free(chip->gpio_cs);
1204
1205 /* If (*cs_control) is provided, ignore GPIO chip select */
1206 if (chip_info->cs_control) {
1207 chip->cs_control = chip_info->cs_control;
1208 return 0;
1209 }
1210
1211 if (gpio_is_valid(chip_info->gpio_cs)) {
1212 err = gpio_request(chip_info->gpio_cs, "SPI_CS");
1213 if (err) {
1214 dev_err(&spi->dev, "failed to request chip select "
1215 "GPIO%d\n", chip_info->gpio_cs);
1216 return err;
1217 }
1218
1219 chip->gpio_cs = chip_info->gpio_cs;
1220 chip->gpio_cs_inverted = spi->mode & SPI_CS_HIGH;
1221
1222 err = gpio_direction_output(chip->gpio_cs,
1223 !chip->gpio_cs_inverted);
1224 }
1225
1226 return err;
1227}
1228
Stephen Streete0c99052006-03-07 23:53:24 -08001229static int setup(struct spi_device *spi)
1230{
1231 struct pxa2xx_spi_chip *chip_info = NULL;
1232 struct chip_data *chip;
1233 struct driver_data *drv_data = spi_master_get_devdata(spi->master);
eric miao2f1a74e2007-11-21 18:50:53 +08001234 struct ssp_device *ssp = drv_data->ssp;
Stephen Streete0c99052006-03-07 23:53:24 -08001235 unsigned int clk_div;
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001236 uint tx_thres = TX_THRESH_DFLT;
1237 uint rx_thres = RX_THRESH_DFLT;
Stephen Streete0c99052006-03-07 23:53:24 -08001238
1239 if (!spi->bits_per_word)
1240 spi->bits_per_word = 8;
1241
1242 if (drv_data->ssp_type != PXA25x_SSP
Stephen Street8d94cc52006-12-10 02:18:54 -08001243 && (spi->bits_per_word < 4 || spi->bits_per_word > 32)) {
1244 dev_err(&spi->dev, "failed setup: ssp_type=%d, bits/wrd=%d "
1245 "b/w not 4-32 for type non-PXA25x_SSP\n",
1246 drv_data->ssp_type, spi->bits_per_word);
Stephen Streete0c99052006-03-07 23:53:24 -08001247 return -EINVAL;
Stephen Street8d94cc52006-12-10 02:18:54 -08001248 }
1249 else if (drv_data->ssp_type == PXA25x_SSP
1250 && (spi->bits_per_word < 4
1251 || spi->bits_per_word > 16)) {
1252 dev_err(&spi->dev, "failed setup: ssp_type=%d, bits/wrd=%d "
1253 "b/w not 4-16 for type PXA25x_SSP\n",
1254 drv_data->ssp_type, spi->bits_per_word);
Stephen Streete0c99052006-03-07 23:53:24 -08001255 return -EINVAL;
Stephen Street8d94cc52006-12-10 02:18:54 -08001256 }
Stephen Streete0c99052006-03-07 23:53:24 -08001257
David Brownelldccd5732007-07-17 04:04:02 -07001258 if (spi->mode & ~MODEBITS) {
1259 dev_dbg(&spi->dev, "setup: unsupported mode bits %x\n",
1260 spi->mode & ~MODEBITS);
1261 return -EINVAL;
1262 }
1263
Stephen Street8d94cc52006-12-10 02:18:54 -08001264 /* Only alloc on first setup */
Stephen Streete0c99052006-03-07 23:53:24 -08001265 chip = spi_get_ctldata(spi);
Stephen Street8d94cc52006-12-10 02:18:54 -08001266 if (!chip) {
Stephen Streete0c99052006-03-07 23:53:24 -08001267 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
Stephen Street8d94cc52006-12-10 02:18:54 -08001268 if (!chip) {
1269 dev_err(&spi->dev,
1270 "failed setup: can't allocate chip data\n");
Stephen Streete0c99052006-03-07 23:53:24 -08001271 return -ENOMEM;
Stephen Street8d94cc52006-12-10 02:18:54 -08001272 }
Stephen Streete0c99052006-03-07 23:53:24 -08001273
Eric Miaoa7bb3902009-04-06 19:00:54 -07001274 chip->gpio_cs = -1;
Stephen Streete0c99052006-03-07 23:53:24 -08001275 chip->enable_dma = 0;
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001276 chip->timeout = TIMOUT_DFLT;
Stephen Streete0c99052006-03-07 23:53:24 -08001277 chip->dma_burst_size = drv_data->master_info->enable_dma ?
1278 DCMD_BURST8 : 0;
Stephen Streete0c99052006-03-07 23:53:24 -08001279 }
1280
Stephen Street8d94cc52006-12-10 02:18:54 -08001281 /* protocol drivers may change the chip settings, so...
1282 * if chip_info exists, use it */
1283 chip_info = spi->controller_data;
1284
Stephen Streete0c99052006-03-07 23:53:24 -08001285 /* chip_info isn't always needed */
Stephen Street8d94cc52006-12-10 02:18:54 -08001286 chip->cr1 = 0;
Stephen Streete0c99052006-03-07 23:53:24 -08001287 if (chip_info) {
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001288 if (chip_info->timeout)
1289 chip->timeout = chip_info->timeout;
1290 if (chip_info->tx_threshold)
1291 tx_thres = chip_info->tx_threshold;
1292 if (chip_info->rx_threshold)
1293 rx_thres = chip_info->rx_threshold;
1294 chip->enable_dma = drv_data->master_info->enable_dma;
Stephen Streete0c99052006-03-07 23:53:24 -08001295 chip->dma_threshold = 0;
Stephen Streete0c99052006-03-07 23:53:24 -08001296 if (chip_info->enable_loopback)
1297 chip->cr1 = SSCR1_LBM;
1298 }
1299
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001300 chip->threshold = (SSCR1_RxTresh(rx_thres) & SSCR1_RFT) |
1301 (SSCR1_TxTresh(tx_thres) & SSCR1_TFT);
1302
Stephen Street8d94cc52006-12-10 02:18:54 -08001303 /* set dma burst and threshold outside of chip_info path so that if
1304 * chip_info goes away after setting chip->enable_dma, the
1305 * burst and threshold can still respond to changes in bits_per_word */
1306 if (chip->enable_dma) {
1307 /* set up legal burst and threshold for dma */
1308 if (set_dma_burst_and_threshold(chip, spi, spi->bits_per_word,
1309 &chip->dma_burst_size,
1310 &chip->dma_threshold)) {
1311 dev_warn(&spi->dev, "in setup: DMA burst size reduced "
1312 "to match bits_per_word\n");
1313 }
1314 }
1315
eric miao2f1a74e2007-11-21 18:50:53 +08001316 clk_div = ssp_get_clk_div(ssp, spi->max_speed_hz);
Stephen Street9708c122006-03-28 14:05:23 -08001317 chip->speed_hz = spi->max_speed_hz;
Stephen Streete0c99052006-03-07 23:53:24 -08001318
1319 chip->cr0 = clk_div
1320 | SSCR0_Motorola
Stephen Street5daa3ba2006-05-20 15:00:19 -07001321 | SSCR0_DataSize(spi->bits_per_word > 16 ?
1322 spi->bits_per_word - 16 : spi->bits_per_word)
Stephen Streete0c99052006-03-07 23:53:24 -08001323 | SSCR0_SSE
1324 | (spi->bits_per_word > 16 ? SSCR0_EDSS : 0);
Justin Clacherty7f6ee1a2007-01-26 00:56:44 -08001325 chip->cr1 &= ~(SSCR1_SPO | SSCR1_SPH);
1326 chip->cr1 |= (((spi->mode & SPI_CPHA) != 0) ? SSCR1_SPH : 0)
1327 | (((spi->mode & SPI_CPOL) != 0) ? SSCR1_SPO : 0);
Stephen Streete0c99052006-03-07 23:53:24 -08001328
1329 /* NOTE: PXA25x_SSP _could_ use external clocking ... */
1330 if (drv_data->ssp_type != PXA25x_SSP)
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001331 dev_dbg(&spi->dev, "%d bits/word, %ld Hz, mode %d, %s\n",
Stephen Streete0c99052006-03-07 23:53:24 -08001332 spi->bits_per_word,
eric miao2f1a74e2007-11-21 18:50:53 +08001333 clk_get_rate(ssp->clk)
Stephen Streete0c99052006-03-07 23:53:24 -08001334 / (1 + ((chip->cr0 & SSCR0_SCR) >> 8)),
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001335 spi->mode & 0x3,
1336 chip->enable_dma ? "DMA" : "PIO");
Stephen Streete0c99052006-03-07 23:53:24 -08001337 else
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001338 dev_dbg(&spi->dev, "%d bits/word, %ld Hz, mode %d, %s\n",
Stephen Streete0c99052006-03-07 23:53:24 -08001339 spi->bits_per_word,
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001340 clk_get_rate(ssp->clk) / 2
Stephen Streete0c99052006-03-07 23:53:24 -08001341 / (1 + ((chip->cr0 & SSCR0_SCR) >> 8)),
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001342 spi->mode & 0x3,
1343 chip->enable_dma ? "DMA" : "PIO");
Stephen Streete0c99052006-03-07 23:53:24 -08001344
1345 if (spi->bits_per_word <= 8) {
1346 chip->n_bytes = 1;
1347 chip->dma_width = DCMD_WIDTH1;
1348 chip->read = u8_reader;
1349 chip->write = u8_writer;
1350 } else if (spi->bits_per_word <= 16) {
1351 chip->n_bytes = 2;
1352 chip->dma_width = DCMD_WIDTH2;
1353 chip->read = u16_reader;
1354 chip->write = u16_writer;
1355 } else if (spi->bits_per_word <= 32) {
1356 chip->cr0 |= SSCR0_EDSS;
1357 chip->n_bytes = 4;
1358 chip->dma_width = DCMD_WIDTH4;
1359 chip->read = u32_reader;
1360 chip->write = u32_writer;
1361 } else {
1362 dev_err(&spi->dev, "invalid wordsize\n");
Stephen Streete0c99052006-03-07 23:53:24 -08001363 return -ENODEV;
1364 }
Stephen Street9708c122006-03-28 14:05:23 -08001365 chip->bits_per_word = spi->bits_per_word;
Stephen Streete0c99052006-03-07 23:53:24 -08001366
1367 spi_set_ctldata(spi, chip);
1368
Eric Miaoa7bb3902009-04-06 19:00:54 -07001369 return setup_cs(spi, chip, chip_info);
Stephen Streete0c99052006-03-07 23:53:24 -08001370}
1371
Hans-Peter Nilsson0ffa0282007-02-12 00:52:45 -08001372static void cleanup(struct spi_device *spi)
Stephen Streete0c99052006-03-07 23:53:24 -08001373{
Hans-Peter Nilsson0ffa0282007-02-12 00:52:45 -08001374 struct chip_data *chip = spi_get_ctldata(spi);
Stephen Streete0c99052006-03-07 23:53:24 -08001375
Eric Miaoa7bb3902009-04-06 19:00:54 -07001376 if (gpio_is_valid(chip->gpio_cs))
1377 gpio_free(chip->gpio_cs);
1378
Stephen Streete0c99052006-03-07 23:53:24 -08001379 kfree(chip);
1380}
1381
David Brownelld1e44d92007-10-16 01:27:46 -07001382static int __init init_queue(struct driver_data *drv_data)
Stephen Streete0c99052006-03-07 23:53:24 -08001383{
1384 INIT_LIST_HEAD(&drv_data->queue);
1385 spin_lock_init(&drv_data->lock);
1386
1387 drv_data->run = QUEUE_STOPPED;
1388 drv_data->busy = 0;
1389
1390 tasklet_init(&drv_data->pump_transfers,
1391 pump_transfers, (unsigned long)drv_data);
1392
David Howells6d5aefb2006-12-05 19:36:26 +00001393 INIT_WORK(&drv_data->pump_messages, pump_messages);
Stephen Streete0c99052006-03-07 23:53:24 -08001394 drv_data->workqueue = create_singlethread_workqueue(
Kay Sievers6c7377a2009-03-24 16:38:21 -07001395 dev_name(drv_data->master->dev.parent));
Stephen Streete0c99052006-03-07 23:53:24 -08001396 if (drv_data->workqueue == NULL)
1397 return -EBUSY;
1398
1399 return 0;
1400}
1401
1402static int start_queue(struct driver_data *drv_data)
1403{
1404 unsigned long flags;
1405
1406 spin_lock_irqsave(&drv_data->lock, flags);
1407
1408 if (drv_data->run == QUEUE_RUNNING || drv_data->busy) {
1409 spin_unlock_irqrestore(&drv_data->lock, flags);
1410 return -EBUSY;
1411 }
1412
1413 drv_data->run = QUEUE_RUNNING;
1414 drv_data->cur_msg = NULL;
1415 drv_data->cur_transfer = NULL;
1416 drv_data->cur_chip = NULL;
1417 spin_unlock_irqrestore(&drv_data->lock, flags);
1418
1419 queue_work(drv_data->workqueue, &drv_data->pump_messages);
1420
1421 return 0;
1422}
1423
1424static int stop_queue(struct driver_data *drv_data)
1425{
1426 unsigned long flags;
1427 unsigned limit = 500;
1428 int status = 0;
1429
1430 spin_lock_irqsave(&drv_data->lock, flags);
1431
1432 /* This is a bit lame, but is optimized for the common execution path.
1433 * A wait_queue on the drv_data->busy could be used, but then the common
1434 * execution path (pump_messages) would be required to call wake_up or
1435 * friends on every SPI message. Do this instead */
1436 drv_data->run = QUEUE_STOPPED;
1437 while (!list_empty(&drv_data->queue) && drv_data->busy && limit--) {
1438 spin_unlock_irqrestore(&drv_data->lock, flags);
1439 msleep(10);
1440 spin_lock_irqsave(&drv_data->lock, flags);
1441 }
1442
1443 if (!list_empty(&drv_data->queue) || drv_data->busy)
1444 status = -EBUSY;
1445
1446 spin_unlock_irqrestore(&drv_data->lock, flags);
1447
1448 return status;
1449}
1450
1451static int destroy_queue(struct driver_data *drv_data)
1452{
1453 int status;
1454
1455 status = stop_queue(drv_data);
Stephen Street8d94cc52006-12-10 02:18:54 -08001456 /* we are unloading the module or failing to load (only two calls
1457 * to this routine), and neither call can handle a return value.
1458 * However, destroy_workqueue calls flush_workqueue, and that will
1459 * block until all work is done. If the reason that stop_queue
1460 * timed out is that the work will never finish, then it does no
1461 * good to call destroy_workqueue, so return anyway. */
Stephen Streete0c99052006-03-07 23:53:24 -08001462 if (status != 0)
1463 return status;
1464
1465 destroy_workqueue(drv_data->workqueue);
1466
1467 return 0;
1468}
1469
David Brownelld1e44d92007-10-16 01:27:46 -07001470static int __init pxa2xx_spi_probe(struct platform_device *pdev)
Stephen Streete0c99052006-03-07 23:53:24 -08001471{
1472 struct device *dev = &pdev->dev;
1473 struct pxa2xx_spi_master *platform_info;
1474 struct spi_master *master;
Guennadi Liakhovetski65a00a22008-10-15 22:02:42 -07001475 struct driver_data *drv_data;
eric miao2f1a74e2007-11-21 18:50:53 +08001476 struct ssp_device *ssp;
Guennadi Liakhovetski65a00a22008-10-15 22:02:42 -07001477 int status;
Stephen Streete0c99052006-03-07 23:53:24 -08001478
1479 platform_info = dev->platform_data;
1480
eric miao2f1a74e2007-11-21 18:50:53 +08001481 ssp = ssp_request(pdev->id, pdev->name);
1482 if (ssp == NULL) {
1483 dev_err(&pdev->dev, "failed to request SSP%d\n", pdev->id);
Stephen Streete0c99052006-03-07 23:53:24 -08001484 return -ENODEV;
1485 }
1486
1487 /* Allocate master with space for drv_data and null dma buffer */
1488 master = spi_alloc_master(dev, sizeof(struct driver_data) + 16);
1489 if (!master) {
Guennadi Liakhovetski65a00a22008-10-15 22:02:42 -07001490 dev_err(&pdev->dev, "cannot alloc spi_master\n");
eric miao2f1a74e2007-11-21 18:50:53 +08001491 ssp_free(ssp);
Stephen Streete0c99052006-03-07 23:53:24 -08001492 return -ENOMEM;
1493 }
1494 drv_data = spi_master_get_devdata(master);
1495 drv_data->master = master;
1496 drv_data->master_info = platform_info;
1497 drv_data->pdev = pdev;
eric miao2f1a74e2007-11-21 18:50:53 +08001498 drv_data->ssp = ssp;
Stephen Streete0c99052006-03-07 23:53:24 -08001499
1500 master->bus_num = pdev->id;
1501 master->num_chipselect = platform_info->num_chipselect;
Mike Rapoport7ad0ba92009-04-06 19:00:57 -07001502 master->dma_alignment = DMA_ALIGNMENT;
Stephen Streete0c99052006-03-07 23:53:24 -08001503 master->cleanup = cleanup;
1504 master->setup = setup;
1505 master->transfer = transfer;
1506
eric miao2f1a74e2007-11-21 18:50:53 +08001507 drv_data->ssp_type = ssp->type;
Stephen Streete0c99052006-03-07 23:53:24 -08001508 drv_data->null_dma_buf = (u32 *)ALIGN((u32)(drv_data +
1509 sizeof(struct driver_data)), 8);
1510
eric miao2f1a74e2007-11-21 18:50:53 +08001511 drv_data->ioaddr = ssp->mmio_base;
1512 drv_data->ssdr_physical = ssp->phys_base + SSDR;
1513 if (ssp->type == PXA25x_SSP) {
Stephen Streete0c99052006-03-07 23:53:24 -08001514 drv_data->int_cr1 = SSCR1_TIE | SSCR1_RIE;
1515 drv_data->dma_cr1 = 0;
1516 drv_data->clear_sr = SSSR_ROR;
1517 drv_data->mask_sr = SSSR_RFS | SSSR_TFS | SSSR_ROR;
1518 } else {
1519 drv_data->int_cr1 = SSCR1_TIE | SSCR1_RIE | SSCR1_TINTE;
1520 drv_data->dma_cr1 = SSCR1_TSRE | SSCR1_RSRE | SSCR1_TINTE;
1521 drv_data->clear_sr = SSSR_ROR | SSSR_TINT;
1522 drv_data->mask_sr = SSSR_TINT | SSSR_RFS | SSSR_TFS | SSSR_ROR;
1523 }
1524
Kay Sievers6c7377a2009-03-24 16:38:21 -07001525 status = request_irq(ssp->irq, ssp_int, 0, dev_name(dev), drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -08001526 if (status < 0) {
Guennadi Liakhovetski65a00a22008-10-15 22:02:42 -07001527 dev_err(&pdev->dev, "cannot get IRQ %d\n", ssp->irq);
Stephen Streete0c99052006-03-07 23:53:24 -08001528 goto out_error_master_alloc;
1529 }
1530
1531 /* Setup DMA if requested */
1532 drv_data->tx_channel = -1;
1533 drv_data->rx_channel = -1;
1534 if (platform_info->enable_dma) {
1535
1536 /* Get two DMA channels (rx and tx) */
1537 drv_data->rx_channel = pxa_request_dma("pxa2xx_spi_ssp_rx",
1538 DMA_PRIO_HIGH,
1539 dma_handler,
1540 drv_data);
1541 if (drv_data->rx_channel < 0) {
1542 dev_err(dev, "problem (%d) requesting rx channel\n",
1543 drv_data->rx_channel);
1544 status = -ENODEV;
1545 goto out_error_irq_alloc;
1546 }
1547 drv_data->tx_channel = pxa_request_dma("pxa2xx_spi_ssp_tx",
1548 DMA_PRIO_MEDIUM,
1549 dma_handler,
1550 drv_data);
1551 if (drv_data->tx_channel < 0) {
1552 dev_err(dev, "problem (%d) requesting tx channel\n",
1553 drv_data->tx_channel);
1554 status = -ENODEV;
1555 goto out_error_dma_alloc;
1556 }
1557
eric miao2f1a74e2007-11-21 18:50:53 +08001558 DRCMR(ssp->drcmr_rx) = DRCMR_MAPVLD | drv_data->rx_channel;
1559 DRCMR(ssp->drcmr_tx) = DRCMR_MAPVLD | drv_data->tx_channel;
Stephen Streete0c99052006-03-07 23:53:24 -08001560 }
1561
1562 /* Enable SOC clock */
eric miao2f1a74e2007-11-21 18:50:53 +08001563 clk_enable(ssp->clk);
Stephen Streete0c99052006-03-07 23:53:24 -08001564
1565 /* Load default SSP configuration */
1566 write_SSCR0(0, drv_data->ioaddr);
Vernon Sauderf1f640a2008-10-15 22:02:43 -07001567 write_SSCR1(SSCR1_RxTresh(RX_THRESH_DFLT) |
1568 SSCR1_TxTresh(TX_THRESH_DFLT),
1569 drv_data->ioaddr);
Stephen Streete0c99052006-03-07 23:53:24 -08001570 write_SSCR0(SSCR0_SerClkDiv(2)
1571 | SSCR0_Motorola
1572 | SSCR0_DataSize(8),
1573 drv_data->ioaddr);
1574 if (drv_data->ssp_type != PXA25x_SSP)
1575 write_SSTO(0, drv_data->ioaddr);
1576 write_SSPSP(0, drv_data->ioaddr);
1577
1578 /* Initial and start queue */
1579 status = init_queue(drv_data);
1580 if (status != 0) {
1581 dev_err(&pdev->dev, "problem initializing queue\n");
1582 goto out_error_clock_enabled;
1583 }
1584 status = start_queue(drv_data);
1585 if (status != 0) {
1586 dev_err(&pdev->dev, "problem starting queue\n");
1587 goto out_error_clock_enabled;
1588 }
1589
1590 /* Register with the SPI framework */
1591 platform_set_drvdata(pdev, drv_data);
1592 status = spi_register_master(master);
1593 if (status != 0) {
1594 dev_err(&pdev->dev, "problem registering spi master\n");
1595 goto out_error_queue_alloc;
1596 }
1597
1598 return status;
1599
1600out_error_queue_alloc:
1601 destroy_queue(drv_data);
1602
1603out_error_clock_enabled:
eric miao2f1a74e2007-11-21 18:50:53 +08001604 clk_disable(ssp->clk);
Stephen Streete0c99052006-03-07 23:53:24 -08001605
1606out_error_dma_alloc:
1607 if (drv_data->tx_channel != -1)
1608 pxa_free_dma(drv_data->tx_channel);
1609 if (drv_data->rx_channel != -1)
1610 pxa_free_dma(drv_data->rx_channel);
1611
1612out_error_irq_alloc:
eric miao2f1a74e2007-11-21 18:50:53 +08001613 free_irq(ssp->irq, drv_data);
Stephen Streete0c99052006-03-07 23:53:24 -08001614
1615out_error_master_alloc:
1616 spi_master_put(master);
eric miao2f1a74e2007-11-21 18:50:53 +08001617 ssp_free(ssp);
Stephen Streete0c99052006-03-07 23:53:24 -08001618 return status;
1619}
1620
1621static int pxa2xx_spi_remove(struct platform_device *pdev)
1622{
1623 struct driver_data *drv_data = platform_get_drvdata(pdev);
Julia Lawall51e911e2009-01-06 14:41:45 -08001624 struct ssp_device *ssp;
Stephen Streete0c99052006-03-07 23:53:24 -08001625 int status = 0;
1626
1627 if (!drv_data)
1628 return 0;
Julia Lawall51e911e2009-01-06 14:41:45 -08001629 ssp = drv_data->ssp;
Stephen Streete0c99052006-03-07 23:53:24 -08001630
1631 /* Remove the queue */
1632 status = destroy_queue(drv_data);
1633 if (status != 0)
Stephen Street8d94cc52006-12-10 02:18:54 -08001634 /* the kernel does not check the return status of this
1635 * this routine (mod->exit, within the kernel). Therefore
1636 * nothing is gained by returning from here, the module is
1637 * going away regardless, and we should not leave any more
1638 * resources allocated than necessary. We cannot free the
1639 * message memory in drv_data->queue, but we can release the
1640 * resources below. I think the kernel should honor -EBUSY
1641 * returns but... */
1642 dev_err(&pdev->dev, "pxa2xx_spi_remove: workqueue will not "
1643 "complete, message memory not freed\n");
Stephen Streete0c99052006-03-07 23:53:24 -08001644
1645 /* Disable the SSP at the peripheral and SOC level */
1646 write_SSCR0(0, drv_data->ioaddr);
eric miao2f1a74e2007-11-21 18:50:53 +08001647 clk_disable(ssp->clk);
Stephen Streete0c99052006-03-07 23:53:24 -08001648
1649 /* Release DMA */
1650 if (drv_data->master_info->enable_dma) {
eric miao2f1a74e2007-11-21 18:50:53 +08001651 DRCMR(ssp->drcmr_rx) = 0;
1652 DRCMR(ssp->drcmr_tx) = 0;
Stephen Streete0c99052006-03-07 23:53:24 -08001653 pxa_free_dma(drv_data->tx_channel);
1654 pxa_free_dma(drv_data->rx_channel);
1655 }
1656
1657 /* Release IRQ */
eric miao2f1a74e2007-11-21 18:50:53 +08001658 free_irq(ssp->irq, drv_data);
1659
1660 /* Release SSP */
1661 ssp_free(ssp);
Stephen Streete0c99052006-03-07 23:53:24 -08001662
1663 /* Disconnect from the SPI framework */
1664 spi_unregister_master(drv_data->master);
1665
1666 /* Prevent double remove */
1667 platform_set_drvdata(pdev, NULL);
1668
1669 return 0;
1670}
1671
1672static void pxa2xx_spi_shutdown(struct platform_device *pdev)
1673{
1674 int status = 0;
1675
1676 if ((status = pxa2xx_spi_remove(pdev)) != 0)
1677 dev_err(&pdev->dev, "shutdown failed with %d\n", status);
1678}
1679
1680#ifdef CONFIG_PM
Stephen Streete0c99052006-03-07 23:53:24 -08001681
1682static int pxa2xx_spi_suspend(struct platform_device *pdev, pm_message_t state)
1683{
1684 struct driver_data *drv_data = platform_get_drvdata(pdev);
eric miao2f1a74e2007-11-21 18:50:53 +08001685 struct ssp_device *ssp = drv_data->ssp;
Stephen Streete0c99052006-03-07 23:53:24 -08001686 int status = 0;
1687
Stephen Streete0c99052006-03-07 23:53:24 -08001688 status = stop_queue(drv_data);
1689 if (status != 0)
1690 return status;
1691 write_SSCR0(0, drv_data->ioaddr);
eric miao2f1a74e2007-11-21 18:50:53 +08001692 clk_disable(ssp->clk);
Stephen Streete0c99052006-03-07 23:53:24 -08001693
1694 return 0;
1695}
1696
1697static int pxa2xx_spi_resume(struct platform_device *pdev)
1698{
1699 struct driver_data *drv_data = platform_get_drvdata(pdev);
eric miao2f1a74e2007-11-21 18:50:53 +08001700 struct ssp_device *ssp = drv_data->ssp;
Stephen Streete0c99052006-03-07 23:53:24 -08001701 int status = 0;
1702
Daniel Ribeiro148da332009-04-21 12:24:43 -07001703 if (drv_data->rx_channel != -1)
1704 DRCMR(drv_data->ssp->drcmr_rx) =
1705 DRCMR_MAPVLD | drv_data->rx_channel;
1706 if (drv_data->tx_channel != -1)
1707 DRCMR(drv_data->ssp->drcmr_tx) =
1708 DRCMR_MAPVLD | drv_data->tx_channel;
1709
Stephen Streete0c99052006-03-07 23:53:24 -08001710 /* Enable the SSP clock */
Eric BENARD0cf942d2008-05-12 14:02:01 -07001711 clk_enable(ssp->clk);
Stephen Streete0c99052006-03-07 23:53:24 -08001712
1713 /* Start the queue running */
1714 status = start_queue(drv_data);
1715 if (status != 0) {
1716 dev_err(&pdev->dev, "problem starting queue (%d)\n", status);
1717 return status;
1718 }
1719
1720 return 0;
1721}
1722#else
1723#define pxa2xx_spi_suspend NULL
1724#define pxa2xx_spi_resume NULL
1725#endif /* CONFIG_PM */
1726
1727static struct platform_driver driver = {
1728 .driver = {
1729 .name = "pxa2xx-spi",
Stephen Streete0c99052006-03-07 23:53:24 -08001730 .owner = THIS_MODULE,
1731 },
David Brownelld1e44d92007-10-16 01:27:46 -07001732 .remove = pxa2xx_spi_remove,
Stephen Streete0c99052006-03-07 23:53:24 -08001733 .shutdown = pxa2xx_spi_shutdown,
1734 .suspend = pxa2xx_spi_suspend,
1735 .resume = pxa2xx_spi_resume,
1736};
1737
1738static int __init pxa2xx_spi_init(void)
1739{
David Brownelld1e44d92007-10-16 01:27:46 -07001740 return platform_driver_probe(&driver, pxa2xx_spi_probe);
Stephen Streete0c99052006-03-07 23:53:24 -08001741}
1742module_init(pxa2xx_spi_init);
1743
1744static void __exit pxa2xx_spi_exit(void)
1745{
1746 platform_driver_unregister(&driver);
1747}
1748module_exit(pxa2xx_spi_exit);