spi_bfin5xx.c 38.2 KB
Newer Older
1
/*
2
 * Blackfin On-Chip SPI Driver
3
 *
B
Bryan Wu 已提交
4
 * Copyright 2004-2007 Analog Devices Inc.
5
 *
6
 * Enter bugs at http://blackfin.uclinux.org/
7
 *
8
 * Licensed under the GPL-2 or later.
9 10 11 12
 */

#include <linux/init.h>
#include <linux/module.h>
B
Bryan Wu 已提交
13
#include <linux/delay.h>
14
#include <linux/device.h>
B
Bryan Wu 已提交
15
#include <linux/io.h>
16
#include <linux/ioport.h>
B
Bryan Wu 已提交
17
#include <linux/irq.h>
18 19 20 21 22 23 24 25
#include <linux/errno.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>
#include <linux/spi/spi.h>
#include <linux/workqueue.h>

#include <asm/dma.h>
B
Bryan Wu 已提交
26
#include <asm/portmux.h>
27
#include <asm/bfin5xx_spi.h>
28 29
#include <asm/cacheflush.h>

30 31
#define DRV_NAME	"bfin-spi"
#define DRV_AUTHOR	"Bryan Wu, Luke Yang"
32
#define DRV_DESC	"Blackfin on-chip SPI Controller Driver"
33 34 35 36
#define DRV_VERSION	"1.0"

MODULE_AUTHOR(DRV_AUTHOR);
MODULE_DESCRIPTION(DRV_DESC);
37 38
MODULE_LICENSE("GPL");

39 40 41 42 43 44
#define START_STATE	((void *)0)
#define RUNNING_STATE	((void *)1)
#define DONE_STATE	((void *)2)
#define ERROR_STATE	((void *)-1)
#define QUEUE_RUNNING	0
#define QUEUE_STOPPED	1
45

46 47 48
/* Value to send if no TX value is supplied */
#define SPI_IDLE_TXVAL 0x0000

49 50 51 52 53 54 55
struct driver_data {
	/* Driver model hookup */
	struct platform_device *pdev;

	/* SPI framework hookup */
	struct spi_master *master;

56
	/* Regs base of SPI controller */
57
	void __iomem *regs_base;
58

59 60 61
	/* Pin request list */
	u16 *pin_req;

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
	/* BFIN hookup */
	struct bfin5xx_spi_master *master_info;

	/* Driver message queue */
	struct workqueue_struct *workqueue;
	struct work_struct pump_messages;
	spinlock_t lock;
	struct list_head queue;
	int busy;
	int run;

	/* Message Transfer pump */
	struct tasklet_struct pump_transfers;

	/* Current message transfer state info */
	struct spi_message *cur_msg;
	struct spi_transfer *cur_transfer;
	struct chip_data *cur_chip;
	size_t len_in_bytes;
	size_t len;
	void *tx;
	void *tx_end;
	void *rx;
	void *rx_end;
86 87 88

	/* DMA stuffs */
	int dma_channel;
89
	int dma_mapped;
90
	int dma_requested;
91 92
	dma_addr_t rx_dma;
	dma_addr_t tx_dma;
93

94 95 96
	size_t rx_map_len;
	size_t tx_map_len;
	u8 n_bytes;
97
	int cs_change;
98 99 100 101 102 103 104 105 106 107 108 109
	void (*write) (struct driver_data *);
	void (*read) (struct driver_data *);
	void (*duplex) (struct driver_data *);
};

struct chip_data {
	u16 ctl_reg;
	u16 baud;
	u16 flag;

	u8 chip_select_num;
	u8 n_bytes;
110
	u8 width;		/* 0 or 1 */
111 112 113
	u8 enable_dma;
	u8 bits_per_word;	/* 8 or 16 */
	u8 cs_change_per_word;
114
	u16 cs_chg_udelay;	/* Some devices require > 255usec delay */
115
	u32 cs_gpio;
116
	u16 idle_tx_val;
117 118 119 120 121
	void (*write) (struct driver_data *);
	void (*read) (struct driver_data *);
	void (*duplex) (struct driver_data *);
};

122 123 124 125 126 127 128 129 130 131 132 133 134 135
#define DEFINE_SPI_REG(reg, off) \
static inline u16 read_##reg(struct driver_data *drv_data) \
	{ return bfin_read16(drv_data->regs_base + off); } \
static inline void write_##reg(struct driver_data *drv_data, u16 v) \
	{ bfin_write16(drv_data->regs_base + off, v); }

DEFINE_SPI_REG(CTRL, 0x00)
DEFINE_SPI_REG(FLAG, 0x04)
DEFINE_SPI_REG(STAT, 0x08)
DEFINE_SPI_REG(TDBR, 0x0C)
DEFINE_SPI_REG(RDBR, 0x10)
DEFINE_SPI_REG(BAUD, 0x14)
DEFINE_SPI_REG(SHAW, 0x18)

136
static void bfin_spi_enable(struct driver_data *drv_data)
137 138 139
{
	u16 cr;

140 141
	cr = read_CTRL(drv_data);
	write_CTRL(drv_data, (cr | BIT_CTL_ENABLE));
142 143
}

144
static void bfin_spi_disable(struct driver_data *drv_data)
145 146 147
{
	u16 cr;

148 149
	cr = read_CTRL(drv_data);
	write_CTRL(drv_data, (cr & (~BIT_CTL_ENABLE)));
150 151 152 153 154 155 156 157 158 159 160
}

/* Caculate the SPI_BAUD register value based on input HZ */
static u16 hz_to_spi_baud(u32 speed_hz)
{
	u_long sclk = get_sclk();
	u16 spi_baud = (sclk / (2 * speed_hz));

	if ((sclk % (2 * speed_hz)) > 0)
		spi_baud++;

161 162 163
	if (spi_baud < MIN_SPI_BAUD_VAL)
		spi_baud = MIN_SPI_BAUD_VAL;

164 165 166
	return spi_baud;
}

167
static int bfin_spi_flush(struct driver_data *drv_data)
168 169 170 171
{
	unsigned long limit = loops_per_jiffy << 1;

	/* wait for stop and clear stat */
R
Roel Kluin 已提交
172
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF) && --limit)
173
		cpu_relax();
174

175
	write_STAT(drv_data, BIT_STAT_CLR);
176 177 178 179

	return limit;
}

180
/* Chip select operation functions for cs_change flag */
181
static void bfin_spi_cs_active(struct driver_data *drv_data, struct chip_data *chip)
182
{
183 184
	if (likely(chip->chip_select_num)) {
		u16 flag = read_FLAG(drv_data);
185

186 187
		flag |= chip->flag;
		flag &= ~(chip->flag << 8);
188

189 190 191 192
		write_FLAG(drv_data, flag);
	} else {
		gpio_set_value(chip->cs_gpio, 0);
	}
193 194
}

195
static void bfin_spi_cs_deactive(struct driver_data *drv_data, struct chip_data *chip)
196
{
197 198
	if (likely(chip->chip_select_num)) {
		u16 flag = read_FLAG(drv_data);
199

200 201
		flag &= ~chip->flag;
		flag |= (chip->flag << 8);
202

203 204 205 206
		write_FLAG(drv_data, flag);
	} else {
		gpio_set_value(chip->cs_gpio, 1);
	}
207 208 209 210

	/* Move delay here for consistency */
	if (chip->cs_chg_udelay)
		udelay(chip->cs_chg_udelay);
211 212
}

213
/* stop controller and re-config current chip*/
214
static void bfin_spi_restore_state(struct driver_data *drv_data)
215 216
{
	struct chip_data *chip = drv_data->cur_chip;
217

218
	/* Clear status and disable clock */
219
	write_STAT(drv_data, BIT_STAT_CLR);
220
	bfin_spi_disable(drv_data);
221
	dev_dbg(&drv_data->pdev->dev, "restoring spi ctl state\n");
222

B
Bryan Wu 已提交
223
	/* Load the registers */
224
	write_CTRL(drv_data, chip->ctl_reg);
225
	write_BAUD(drv_data, chip->baud);
226 227

	bfin_spi_enable(drv_data);
228
	bfin_spi_cs_active(drv_data, chip);
229 230
}

231 232
/* used to kick off transfer in rx mode and read unwanted RX data */
static inline void bfin_spi_dummy_read(struct driver_data *drv_data)
233
{
234
	(void) read_RDBR(drv_data);
235 236
}

237
static void bfin_spi_null_writer(struct driver_data *drv_data)
238 239
{
	u8 n_bytes = drv_data->n_bytes;
240 241 242 243
	u16 tx_val = drv_data->cur_chip->idle_tx_val;

	/* clear RXS (we check for RXS inside the loop) */
	bfin_spi_dummy_read(drv_data);
244 245

	while (drv_data->tx < drv_data->tx_end) {
246
		write_TDBR(drv_data, tx_val);
247
		drv_data->tx += n_bytes;
248 249 250 251 252 253
		/* wait until transfer finished.
		   checking SPIF or TXS may not guarantee transfer completion */
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
			cpu_relax();
		/* discard RX data and clear RXS */
		bfin_spi_dummy_read(drv_data);
254 255 256
	}
}

257
static void bfin_spi_null_reader(struct driver_data *drv_data)
258 259
{
	u8 n_bytes = drv_data->n_bytes;
260 261 262
	u16 tx_val = drv_data->cur_chip->idle_tx_val;

	/* discard old RX data and clear RXS */
263
	bfin_spi_dummy_read(drv_data);
264 265

	while (drv_data->rx < drv_data->rx_end) {
266 267
		write_TDBR(drv_data, tx_val);
		drv_data->rx += n_bytes;
268
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
269
			cpu_relax();
270
		bfin_spi_dummy_read(drv_data);
271 272 273
	}
}

274
static void bfin_spi_u8_writer(struct driver_data *drv_data)
275
{
276 277
	/* clear RXS (we check for RXS inside the loop) */
	bfin_spi_dummy_read(drv_data);
278

279
	while (drv_data->tx < drv_data->tx_end) {
280 281 282 283
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx++)));
		/* wait until transfer finished.
		   checking SPIF or TXS may not guarantee transfer completion */
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
284
			cpu_relax();
285 286
		/* discard RX data and clear RXS */
		bfin_spi_dummy_read(drv_data);
287 288 289
	}
}

290
static void bfin_spi_u8_cs_chg_writer(struct driver_data *drv_data)
291 292 293
{
	struct chip_data *chip = drv_data->cur_chip;

294 295 296
	/* clear RXS (we check for RXS inside the loop) */
	bfin_spi_dummy_read(drv_data);

297
	while (drv_data->tx < drv_data->tx_end) {
298
		bfin_spi_cs_active(drv_data, chip);
299 300 301
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx++)));
		/* make sure transfer finished before deactiving CS */
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
302
			cpu_relax();
303
		bfin_spi_dummy_read(drv_data);
304
		bfin_spi_cs_deactive(drv_data, chip);
305 306 307
	}
}

308
static void bfin_spi_u8_reader(struct driver_data *drv_data)
309
{
310
	u16 tx_val = drv_data->cur_chip->idle_tx_val;
311

312
	/* discard old RX data and clear RXS */
313
	bfin_spi_dummy_read(drv_data);
314

315 316
	while (drv_data->rx < drv_data->rx_end) {
		write_TDBR(drv_data, tx_val);
317
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
318
			cpu_relax();
319
		*(u8 *) (drv_data->rx++) = read_RDBR(drv_data);
320 321 322
	}
}

323
static void bfin_spi_u8_cs_chg_reader(struct driver_data *drv_data)
324 325
{
	struct chip_data *chip = drv_data->cur_chip;
326 327 328 329
	u16 tx_val = chip->idle_tx_val;

	/* discard old RX data and clear RXS */
	bfin_spi_dummy_read(drv_data);
330

331
	while (drv_data->rx < drv_data->rx_end) {
332
		bfin_spi_cs_active(drv_data, chip);
333
		write_TDBR(drv_data, tx_val);
334 335
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
			cpu_relax();
336
		*(u8 *) (drv_data->rx++) = read_RDBR(drv_data);
337
		bfin_spi_cs_deactive(drv_data, chip);
338 339 340
	}
}

341
static void bfin_spi_u8_duplex(struct driver_data *drv_data)
342
{
343 344 345
	/* discard old RX data and clear RXS */
	bfin_spi_dummy_read(drv_data);

346
	while (drv_data->rx < drv_data->rx_end) {
347
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx++)));
348
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
349
			cpu_relax();
350
		*(u8 *) (drv_data->rx++) = read_RDBR(drv_data);
351 352 353
	}
}

354
static void bfin_spi_u8_cs_chg_duplex(struct driver_data *drv_data)
355 356 357
{
	struct chip_data *chip = drv_data->cur_chip;

358 359 360
	/* discard old RX data and clear RXS */
	bfin_spi_dummy_read(drv_data);

361
	while (drv_data->rx < drv_data->rx_end) {
362
		bfin_spi_cs_active(drv_data, chip);
363
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx++)));
364
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
365
			cpu_relax();
366
		*(u8 *) (drv_data->rx++) = read_RDBR(drv_data);
367
		bfin_spi_cs_deactive(drv_data, chip);
368 369 370
	}
}

371
static void bfin_spi_u16_writer(struct driver_data *drv_data)
372
{
373 374
	/* clear RXS (we check for RXS inside the loop) */
	bfin_spi_dummy_read(drv_data);
375

376
	while (drv_data->tx < drv_data->tx_end) {
377
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
378
		drv_data->tx += 2;
379 380 381 382 383 384
		/* wait until transfer finished.
		   checking SPIF or TXS may not guarantee transfer completion */
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
			cpu_relax();
		/* discard RX data and clear RXS */
		bfin_spi_dummy_read(drv_data);
385 386 387
	}
}

388
static void bfin_spi_u16_cs_chg_writer(struct driver_data *drv_data)
389 390 391
{
	struct chip_data *chip = drv_data->cur_chip;

392 393 394
	/* clear RXS (we check for RXS inside the loop) */
	bfin_spi_dummy_read(drv_data);

395
	while (drv_data->tx < drv_data->tx_end) {
396
		bfin_spi_cs_active(drv_data, chip);
397
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
398 399 400
		drv_data->tx += 2;
		/* make sure transfer finished before deactiving CS */
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
401
			cpu_relax();
402
		bfin_spi_dummy_read(drv_data);
403
		bfin_spi_cs_deactive(drv_data, chip);
404 405 406
	}
}

407
static void bfin_spi_u16_reader(struct driver_data *drv_data)
408
{
409
	u16 tx_val = drv_data->cur_chip->idle_tx_val;
410

411
	/* discard old RX data and clear RXS */
412
	bfin_spi_dummy_read(drv_data);
413

414 415
	while (drv_data->rx < drv_data->rx_end) {
		write_TDBR(drv_data, tx_val);
416
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
417
			cpu_relax();
418
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
419 420 421 422
		drv_data->rx += 2;
	}
}

423
static void bfin_spi_u16_cs_chg_reader(struct driver_data *drv_data)
424 425
{
	struct chip_data *chip = drv_data->cur_chip;
426
	u16 tx_val = chip->idle_tx_val;
427

428
	/* discard old RX data and clear RXS */
429
	bfin_spi_dummy_read(drv_data);
430

431 432 433
	while (drv_data->rx < drv_data->rx_end) {
		bfin_spi_cs_active(drv_data, chip);
		write_TDBR(drv_data, tx_val);
434
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
435
			cpu_relax();
436
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
437
		drv_data->rx += 2;
438
		bfin_spi_cs_deactive(drv_data, chip);
439 440 441
	}
}

442
static void bfin_spi_u16_duplex(struct driver_data *drv_data)
443
{
444 445 446 447
	/* discard old RX data and clear RXS */
	bfin_spi_dummy_read(drv_data);

	while (drv_data->rx < drv_data->rx_end) {
448
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
449
		drv_data->tx += 2;
450
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
451
			cpu_relax();
452
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
453 454 455 456
		drv_data->rx += 2;
	}
}

457
static void bfin_spi_u16_cs_chg_duplex(struct driver_data *drv_data)
458 459 460
{
	struct chip_data *chip = drv_data->cur_chip;

461 462
	/* discard old RX data and clear RXS */
	bfin_spi_dummy_read(drv_data);
463

464 465
	while (drv_data->rx < drv_data->rx_end) {
		bfin_spi_cs_active(drv_data, chip);
466
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
467
		drv_data->tx += 2;
468
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
469
			cpu_relax();
470
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
471
		drv_data->rx += 2;
472
		bfin_spi_cs_deactive(drv_data, chip);
473 474 475 476
	}
}

/* test if ther is more transfer to be done */
477
static void *bfin_spi_next_transfer(struct driver_data *drv_data)
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
{
	struct spi_message *msg = drv_data->cur_msg;
	struct spi_transfer *trans = drv_data->cur_transfer;

	/* Move to next transfer */
	if (trans->transfer_list.next != &msg->transfers) {
		drv_data->cur_transfer =
		    list_entry(trans->transfer_list.next,
			       struct spi_transfer, transfer_list);
		return RUNNING_STATE;
	} else
		return DONE_STATE;
}

/*
 * caller already set message->status;
 * dma and pio irqs are blocked give finished message back
 */
496
static void bfin_spi_giveback(struct driver_data *drv_data)
497
{
498
	struct chip_data *chip = drv_data->cur_chip;
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
	struct spi_transfer *last_transfer;
	unsigned long flags;
	struct spi_message *msg;

	spin_lock_irqsave(&drv_data->lock, flags);
	msg = drv_data->cur_msg;
	drv_data->cur_msg = NULL;
	drv_data->cur_transfer = NULL;
	drv_data->cur_chip = NULL;
	queue_work(drv_data->workqueue, &drv_data->pump_messages);
	spin_unlock_irqrestore(&drv_data->lock, flags);

	last_transfer = list_entry(msg->transfers.prev,
				   struct spi_transfer, transfer_list);

	msg->state = NULL;

516
	if (!drv_data->cs_change)
517
		bfin_spi_cs_deactive(drv_data, chip);
518

519 520 521 522
	/* Not stop spi in autobuffer mode */
	if (drv_data->tx_dma != 0xFFFF)
		bfin_spi_disable(drv_data);

523 524 525 526
	if (msg->complete)
		msg->complete(msg->context);
}

527
static irqreturn_t bfin_spi_dma_irq_handler(int irq, void *dev_id)
528
{
529
	struct driver_data *drv_data = dev_id;
530
	struct chip_data *chip = drv_data->cur_chip;
531
	struct spi_message *msg = drv_data->cur_msg;
532
	unsigned long timeout;
533
	unsigned short dmastat = get_dma_curr_irqstat(drv_data->dma_channel);
534
	u16 spistat = read_STAT(drv_data);
535

536 537 538 539
	dev_dbg(&drv_data->pdev->dev,
		"in dma_irq_handler dmastat:0x%x spistat:0x%x\n",
		dmastat, spistat);

540
	clear_dma_irqstat(drv_data->dma_channel);
541

542
	/* Wait for DMA to complete */
543
	while (get_dma_curr_irqstat(drv_data->dma_channel) & DMA_RUN)
544
		cpu_relax();
545

546
	/*
547 548 549 550
	 * wait for the last transaction shifted out.  HRM states:
	 * at this point there may still be data in the SPI DMA FIFO waiting
	 * to be transmitted ... software needs to poll TXS in the SPI_STAT
	 * register until it goes low for 2 successive reads
551 552
	 */
	if (drv_data->tx != NULL) {
553 554
		while ((read_STAT(drv_data) & TXS) ||
		       (read_STAT(drv_data) & TXS))
555
			cpu_relax();
556 557
	}

558 559 560 561 562
	dev_dbg(&drv_data->pdev->dev,
		"in dma_irq_handler dmastat:0x%x spistat:0x%x\n",
		dmastat, read_STAT(drv_data));

	timeout = jiffies + HZ;
563
	while (!(read_STAT(drv_data) & SPIF))
564 565 566 567 568
		if (!time_before(jiffies, timeout)) {
			dev_warn(&drv_data->pdev->dev, "timeout waiting for SPIF");
			break;
		} else
			cpu_relax();
569

570
	if ((dmastat & DMA_ERR) && (spistat & RBSY)) {
571 572 573 574
		msg->state = ERROR_STATE;
		dev_err(&drv_data->pdev->dev, "dma receive: fifo/buffer overflow\n");
	} else {
		msg->actual_length += drv_data->len_in_bytes;
575

576
		if (drv_data->cs_change)
577
			bfin_spi_cs_deactive(drv_data, chip);
578

579
		/* Move to next transfer */
580
		msg->state = bfin_spi_next_transfer(drv_data);
581
	}
582 583 584 585 586

	/* Schedule transfer tasklet */
	tasklet_schedule(&drv_data->pump_transfers);

	/* free the irq handler before next transfer */
587 588
	dev_dbg(&drv_data->pdev->dev,
		"disable dma channel irq%d\n",
589 590
		drv_data->dma_channel);
	dma_disable_irq(drv_data->dma_channel);
591 592 593 594

	return IRQ_HANDLED;
}

595
static void bfin_spi_pump_transfers(unsigned long data)
596 597 598 599 600 601
{
	struct driver_data *drv_data = (struct driver_data *)data;
	struct spi_message *message = NULL;
	struct spi_transfer *transfer = NULL;
	struct spi_transfer *previous = NULL;
	struct chip_data *chip = NULL;
602 603
	u8 width;
	u16 cr, dma_width, dma_config;
604
	u32 tranf_success = 1;
605
	u8 full_duplex = 0;
606 607 608 609 610

	/* Get current state information */
	message = drv_data->cur_msg;
	transfer = drv_data->cur_transfer;
	chip = drv_data->cur_chip;
611

612 613 614 615 616 617
	/*
	 * if msg is error or done, report it back using complete() callback
	 */

	 /* Handle for abort */
	if (message->state == ERROR_STATE) {
618
		dev_dbg(&drv_data->pdev->dev, "transfer: we've hit an error\n");
619
		message->status = -EIO;
620
		bfin_spi_giveback(drv_data);
621 622 623 624 625
		return;
	}

	/* Handle end of message */
	if (message->state == DONE_STATE) {
626
		dev_dbg(&drv_data->pdev->dev, "transfer: all done!\n");
627
		message->status = 0;
628
		bfin_spi_giveback(drv_data);
629 630 631 632 633
		return;
	}

	/* Delay if requested at end of transfer */
	if (message->state == RUNNING_STATE) {
634
		dev_dbg(&drv_data->pdev->dev, "transfer: still running ...\n");
635 636 637 638 639 640 641
		previous = list_entry(transfer->transfer_list.prev,
				      struct spi_transfer, transfer_list);
		if (previous->delay_usecs)
			udelay(previous->delay_usecs);
	}

	/* Setup the transfer state based on the type of transfer */
642
	if (bfin_spi_flush(drv_data) == 0) {
643 644
		dev_err(&drv_data->pdev->dev, "pump_transfers: flush failed\n");
		message->status = -EIO;
645
		bfin_spi_giveback(drv_data);
646 647 648
		return;
	}

649 650 651 652 653 654 655
	if (transfer->len == 0) {
		/* Move to next transfer of this msg */
		message->state = bfin_spi_next_transfer(drv_data);
		/* Schedule next transfer tasklet */
		tasklet_schedule(&drv_data->pump_transfers);
	}

656 657 658
	if (transfer->tx_buf != NULL) {
		drv_data->tx = (void *)transfer->tx_buf;
		drv_data->tx_end = drv_data->tx + transfer->len;
659 660
		dev_dbg(&drv_data->pdev->dev, "tx_buf is %p, tx_end is %p\n",
			transfer->tx_buf, drv_data->tx_end);
661 662 663 664 665
	} else {
		drv_data->tx = NULL;
	}

	if (transfer->rx_buf != NULL) {
666
		full_duplex = transfer->tx_buf != NULL;
667 668
		drv_data->rx = transfer->rx_buf;
		drv_data->rx_end = drv_data->rx + transfer->len;
669 670
		dev_dbg(&drv_data->pdev->dev, "rx_buf is %p, rx_end is %p\n",
			transfer->rx_buf, drv_data->rx_end);
671 672 673 674 675 676 677
	} else {
		drv_data->rx = NULL;
	}

	drv_data->rx_dma = transfer->rx_dma;
	drv_data->tx_dma = transfer->tx_dma;
	drv_data->len_in_bytes = transfer->len;
678
	drv_data->cs_change = transfer->cs_change;
679

680 681 682 683 684 685
	/* Bits per word setup */
	switch (transfer->bits_per_word) {
	case 8:
		drv_data->n_bytes = 1;
		width = CFG_SPI_WORDSIZE8;
		drv_data->read = chip->cs_change_per_word ?
686
			bfin_spi_u8_cs_chg_reader : bfin_spi_u8_reader;
687
		drv_data->write = chip->cs_change_per_word ?
688
			bfin_spi_u8_cs_chg_writer : bfin_spi_u8_writer;
689
		drv_data->duplex = chip->cs_change_per_word ?
690
			bfin_spi_u8_cs_chg_duplex : bfin_spi_u8_duplex;
691 692 693 694 695 696
		break;

	case 16:
		drv_data->n_bytes = 2;
		width = CFG_SPI_WORDSIZE16;
		drv_data->read = chip->cs_change_per_word ?
697
			bfin_spi_u16_cs_chg_reader : bfin_spi_u16_reader;
698
		drv_data->write = chip->cs_change_per_word ?
699
			bfin_spi_u16_cs_chg_writer : bfin_spi_u16_writer;
700
		drv_data->duplex = chip->cs_change_per_word ?
701
			bfin_spi_u16_cs_chg_duplex : bfin_spi_u16_duplex;
702 703 704 705 706 707
		break;

	default:
		/* No change, the same as default setting */
		drv_data->n_bytes = chip->n_bytes;
		width = chip->width;
708 709 710
		drv_data->write = drv_data->tx ? chip->write : bfin_spi_null_writer;
		drv_data->read = drv_data->rx ? chip->read : bfin_spi_null_reader;
		drv_data->duplex = chip->duplex ? chip->duplex : bfin_spi_null_writer;
711 712 713 714 715 716
		break;
	}
	cr = (read_CTRL(drv_data) & (~BIT_CTL_TIMOD));
	cr |= (width << 8);
	write_CTRL(drv_data, cr);

717 718 719 720 721
	if (width == CFG_SPI_WORDSIZE16) {
		drv_data->len = (transfer->len) >> 1;
	} else {
		drv_data->len = transfer->len;
	}
M
Mike Frysinger 已提交
722 723
	dev_dbg(&drv_data->pdev->dev,
		"transfer: drv_data->write is %p, chip->write is %p, null_wr is %p\n",
724
		drv_data->write, chip->write, bfin_spi_null_writer);
725 726 727 728 729

	/* speed and width has been set on per message */
	message->state = RUNNING_STATE;
	dma_config = 0;

730 731 732 733 734 735
	/* Speed setup (surely valid because already checked) */
	if (transfer->speed_hz)
		write_BAUD(drv_data, hz_to_spi_baud(transfer->speed_hz));
	else
		write_BAUD(drv_data, chip->baud);

736 737
	write_STAT(drv_data, BIT_STAT_CLR);
	cr = (read_CTRL(drv_data) & (~BIT_CTL_TIMOD));
738
	if (drv_data->cs_change)
739
		bfin_spi_cs_active(drv_data, chip);
740

741 742 743
	dev_dbg(&drv_data->pdev->dev,
		"now pumping a transfer: width is %d, len is %d\n",
		width, transfer->len);
744 745

	/*
746 747 748 749
	 * Try to map dma buffer and do a dma transfer.  If successful use,
	 * different way to r/w according to the enable_dma settings and if
	 * we are not doing a full duplex transfer (since the hardware does
	 * not support full duplex DMA transfers).
750
	 */
751 752
	if (!full_duplex && drv_data->cur_chip->enable_dma
				&& drv_data->len > 6) {
753

754
		unsigned long dma_start_addr, flags;
755

756 757
		disable_dma(drv_data->dma_channel);
		clear_dma_irqstat(drv_data->dma_channel);
758 759

		/* config dma channel */
760
		dev_dbg(&drv_data->pdev->dev, "doing dma transfer\n");
761
		set_dma_x_count(drv_data->dma_channel, drv_data->len);
762
		if (width == CFG_SPI_WORDSIZE16) {
763
			set_dma_x_modify(drv_data->dma_channel, 2);
764 765
			dma_width = WDSIZE_16;
		} else {
766
			set_dma_x_modify(drv_data->dma_channel, 1);
767 768 769
			dma_width = WDSIZE_8;
		}

S
Sonic Zhang 已提交
770
		/* poll for SPI completion before start */
771
		while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
772
			cpu_relax();
S
Sonic Zhang 已提交
773

774 775
		/* dirty hack for autobuffer DMA mode */
		if (drv_data->tx_dma == 0xFFFF) {
776 777
			dev_dbg(&drv_data->pdev->dev,
				"doing autobuffer DMA out.\n");
778 779 780 781

			/* no irq in autobuffer mode */
			dma_config =
			    (DMAFLOW_AUTO | RESTART | dma_width | DI_EN);
782 783
			set_dma_config(drv_data->dma_channel, dma_config);
			set_dma_start_addr(drv_data->dma_channel,
784
					(unsigned long)drv_data->tx);
785
			enable_dma(drv_data->dma_channel);
786

787
			/* start SPI transfer */
788
			write_CTRL(drv_data, cr | BIT_CTL_TIMOD_DMA_TX);
789 790 791 792

			/* just return here, there can only be one transfer
			 * in this mode
			 */
793
			message->status = 0;
794
			bfin_spi_giveback(drv_data);
795 796 797 798
			return;
		}

		/* In dma mode, rx or tx must be NULL in one transfer */
799
		dma_config = (RESTART | dma_width | DI_EN);
800 801
		if (drv_data->rx != NULL) {
			/* set transfer mode, and enable SPI */
802 803
			dev_dbg(&drv_data->pdev->dev, "doing DMA in to %p (size %zx)\n",
				drv_data->rx, drv_data->len_in_bytes);
804

805
			/* invalidate caches, if needed */
806
			if (bfin_addr_dcacheable((unsigned long) drv_data->rx))
807 808
				invalidate_dcache_range((unsigned long) drv_data->rx,
							(unsigned long) (drv_data->rx +
809
							drv_data->len_in_bytes));
810

811 812
			dma_config |= WNR;
			dma_start_addr = (unsigned long)drv_data->rx;
813
			cr |= BIT_CTL_TIMOD_DMA_RX | BIT_CTL_SENDOPT;
814

815
		} else if (drv_data->tx != NULL) {
816
			dev_dbg(&drv_data->pdev->dev, "doing DMA out.\n");
817

818
			/* flush caches, if needed */
819
			if (bfin_addr_dcacheable((unsigned long) drv_data->tx))
820 821
				flush_dcache_range((unsigned long) drv_data->tx,
						(unsigned long) (drv_data->tx +
822
						drv_data->len_in_bytes));
823

824
			dma_start_addr = (unsigned long)drv_data->tx;
825
			cr |= BIT_CTL_TIMOD_DMA_TX;
826 827 828 829

		} else
			BUG();

830 831 832 833 834 835 836 837 838
		/* oh man, here there be monsters ... and i dont mean the
		 * fluffy cute ones from pixar, i mean the kind that'll eat
		 * your data, kick your dog, and love it all.  do *not* try
		 * and change these lines unless you (1) heavily test DMA
		 * with SPI flashes on a loaded system (e.g. ping floods),
		 * (2) know just how broken the DMA engine interaction with
		 * the SPI peripheral is, and (3) have someone else to blame
		 * when you screw it all up anyways.
		 */
839
		set_dma_start_addr(drv_data->dma_channel, dma_start_addr);
840 841
		set_dma_config(drv_data->dma_channel, dma_config);
		local_irq_save(flags);
842
		SSYNC();
843
		write_CTRL(drv_data, cr);
844
		enable_dma(drv_data->dma_channel);
845 846
		dma_enable_irq(drv_data->dma_channel);
		local_irq_restore(flags);
847

848 849
	} else {
		/* IO mode write then read */
850
		dev_dbg(&drv_data->pdev->dev, "doing IO transfer\n");
851

852 853 854 855 856
		/* we always use SPI_WRITE mode. SPI_READ mode
		   seems to have problems with setting up the
		   output value in TDBR prior to the transfer. */
		write_CTRL(drv_data, (cr | CFG_SPI_WRITE));

857
		if (full_duplex) {
858 859 860
			/* full duplex mode */
			BUG_ON((drv_data->tx_end - drv_data->tx) !=
			       (drv_data->rx_end - drv_data->rx));
861 862
			dev_dbg(&drv_data->pdev->dev,
				"IO duplex: cr is 0x%x\n", cr);
863 864 865 866 867 868 869

			drv_data->duplex(drv_data);

			if (drv_data->tx != drv_data->tx_end)
				tranf_success = 0;
		} else if (drv_data->tx != NULL) {
			/* write only half duplex */
B
Bryan Wu 已提交
870
			dev_dbg(&drv_data->pdev->dev,
871
				"IO write: cr is 0x%x\n", cr);
872 873 874 875 876 877 878

			drv_data->write(drv_data);

			if (drv_data->tx != drv_data->tx_end)
				tranf_success = 0;
		} else if (drv_data->rx != NULL) {
			/* read only half duplex */
B
Bryan Wu 已提交
879
			dev_dbg(&drv_data->pdev->dev,
880
				"IO read: cr is 0x%x\n", cr);
881 882 883 884 885 886 887

			drv_data->read(drv_data);
			if (drv_data->rx != drv_data->rx_end)
				tranf_success = 0;
		}

		if (!tranf_success) {
B
Bryan Wu 已提交
888
			dev_dbg(&drv_data->pdev->dev,
889
				"IO write error!\n");
890 891 892
			message->state = ERROR_STATE;
		} else {
			/* Update total byte transfered */
893
			message->actual_length += drv_data->len_in_bytes;
894
			/* Move to next transfer of this msg */
895
			message->state = bfin_spi_next_transfer(drv_data);
896
			if (drv_data->cs_change)
897
				bfin_spi_cs_deactive(drv_data, chip);
898 899 900 901 902 903 904
		}
		/* Schedule next transfer tasklet */
		tasklet_schedule(&drv_data->pump_transfers);
	}
}

/* pop a msg from queue and kick off real transfer */
905
static void bfin_spi_pump_messages(struct work_struct *work)
906
{
B
Bryan Wu 已提交
907
	struct driver_data *drv_data;
908 909
	unsigned long flags;

B
Bryan Wu 已提交
910 911
	drv_data = container_of(work, struct driver_data, pump_messages);

912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
	/* Lock queue and check for queue work */
	spin_lock_irqsave(&drv_data->lock, flags);
	if (list_empty(&drv_data->queue) || drv_data->run == QUEUE_STOPPED) {
		/* pumper kicked off but no work to do */
		drv_data->busy = 0;
		spin_unlock_irqrestore(&drv_data->lock, flags);
		return;
	}

	/* Make sure we are not already running a message */
	if (drv_data->cur_msg) {
		spin_unlock_irqrestore(&drv_data->lock, flags);
		return;
	}

	/* Extract head of queue */
	drv_data->cur_msg = list_entry(drv_data->queue.next,
				       struct spi_message, queue);
B
Bryan Wu 已提交
930 931 932

	/* Setup the SSP using the per chip configuration */
	drv_data->cur_chip = spi_get_ctldata(drv_data->cur_msg->spi);
933
	bfin_spi_restore_state(drv_data);
B
Bryan Wu 已提交
934

935 936 937 938 939 940 941
	list_del_init(&drv_data->cur_msg->queue);

	/* Initial message state */
	drv_data->cur_msg->state = START_STATE;
	drv_data->cur_transfer = list_entry(drv_data->cur_msg->transfers.next,
					    struct spi_transfer, transfer_list);

B
Bryan Wu 已提交
942 943 944 945
	dev_dbg(&drv_data->pdev->dev, "got a message to pump, "
		"state is set to: baud %d, flag 0x%x, ctl 0x%x\n",
		drv_data->cur_chip->baud, drv_data->cur_chip->flag,
		drv_data->cur_chip->ctl_reg);
B
Bryan Wu 已提交
946 947

	dev_dbg(&drv_data->pdev->dev,
948 949
		"the first transfer len is %d\n",
		drv_data->cur_transfer->len);
950 951 952 953 954 955 956 957 958 959 960 961

	/* Mark as busy and launch transfers */
	tasklet_schedule(&drv_data->pump_transfers);

	drv_data->busy = 1;
	spin_unlock_irqrestore(&drv_data->lock, flags);
}

/*
 * got a msg to transfer, queue it in drv_data->queue.
 * And kick off message pumper
 */
962
static int bfin_spi_transfer(struct spi_device *spi, struct spi_message *msg)
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
{
	struct driver_data *drv_data = spi_master_get_devdata(spi->master);
	unsigned long flags;

	spin_lock_irqsave(&drv_data->lock, flags);

	if (drv_data->run == QUEUE_STOPPED) {
		spin_unlock_irqrestore(&drv_data->lock, flags);
		return -ESHUTDOWN;
	}

	msg->actual_length = 0;
	msg->status = -EINPROGRESS;
	msg->state = START_STATE;

978
	dev_dbg(&spi->dev, "adding an msg in transfer() \n");
979 980 981 982 983 984 985 986 987 988
	list_add_tail(&msg->queue, &drv_data->queue);

	if (drv_data->run == QUEUE_RUNNING && !drv_data->busy)
		queue_work(drv_data->workqueue, &drv_data->pump_messages);

	spin_unlock_irqrestore(&drv_data->lock, flags);

	return 0;
}

989 990
#define MAX_SPI_SSEL	7

991
static u16 ssel[][MAX_SPI_SSEL] = {
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
	{P_SPI0_SSEL1, P_SPI0_SSEL2, P_SPI0_SSEL3,
	P_SPI0_SSEL4, P_SPI0_SSEL5,
	P_SPI0_SSEL6, P_SPI0_SSEL7},

	{P_SPI1_SSEL1, P_SPI1_SSEL2, P_SPI1_SSEL3,
	P_SPI1_SSEL4, P_SPI1_SSEL5,
	P_SPI1_SSEL6, P_SPI1_SSEL7},

	{P_SPI2_SSEL1, P_SPI2_SSEL2, P_SPI2_SSEL3,
	P_SPI2_SSEL4, P_SPI2_SSEL5,
	P_SPI2_SSEL6, P_SPI2_SSEL7},
};

1005
/* first setup for new devices */
1006
static int bfin_spi_setup(struct spi_device *spi)
1007 1008 1009 1010
{
	struct bfin5xx_spi_chip *chip_info = NULL;
	struct chip_data *chip;
	struct driver_data *drv_data = spi_master_get_devdata(spi->master);
1011
	int ret;
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028

	if (spi->bits_per_word != 8 && spi->bits_per_word != 16)
		return -EINVAL;

	/* Only alloc (or use chip_info) on first setup */
	chip = spi_get_ctldata(spi);
	if (chip == NULL) {
		chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
		if (!chip)
			return -ENOMEM;

		chip->enable_dma = 0;
		chip_info = spi->controller_data;
	}

	/* chip_info isn't always needed */
	if (chip_info) {
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
		/* Make sure people stop trying to set fields via ctl_reg
		 * when they should actually be using common SPI framework.
		 * Currently we let through: WOM EMISO PSSE GM SZ TIMOD.
		 * Not sure if a user actually needs/uses any of these,
		 * but let's assume (for now) they do.
		 */
		if (chip_info->ctl_reg & (SPE|MSTR|CPOL|CPHA|LSBF|SIZE)) {
			dev_err(&spi->dev, "do not set bits in ctl_reg "
				"that the SPI framework manages\n");
			return -EINVAL;
		}

1041 1042 1043 1044 1045 1046
		chip->enable_dma = chip_info->enable_dma != 0
		    && drv_data->master_info->enable_dma;
		chip->ctl_reg = chip_info->ctl_reg;
		chip->bits_per_word = chip_info->bits_per_word;
		chip->cs_change_per_word = chip_info->cs_change_per_word;
		chip->cs_chg_udelay = chip_info->cs_chg_udelay;
1047
		chip->cs_gpio = chip_info->cs_gpio;
1048
		chip->idle_tx_val = chip_info->idle_tx_val;
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
	}

	/* translate common spi framework into our register */
	if (spi->mode & SPI_CPOL)
		chip->ctl_reg |= CPOL;
	if (spi->mode & SPI_CPHA)
		chip->ctl_reg |= CPHA;
	if (spi->mode & SPI_LSB_FIRST)
		chip->ctl_reg |= LSBF;
	/* we dont support running in slave mode (yet?) */
	chip->ctl_reg |= MSTR;

	/*
	 * if any one SPI chip is registered and wants DMA, request the
	 * DMA channel for it
	 */
1065
	if (chip->enable_dma && !drv_data->dma_requested) {
1066
		/* register dma irq handler */
1067
		if (request_dma(drv_data->dma_channel, "BFIN_SPI_DMA") < 0) {
1068 1069
			dev_dbg(&spi->dev,
				"Unable to request BlackFin SPI DMA channel\n");
1070 1071
			return -ENODEV;
		}
1072
		if (set_dma_callback(drv_data->dma_channel,
1073
		    bfin_spi_dma_irq_handler, drv_data) < 0) {
1074
			dev_dbg(&spi->dev, "Unable to set dma callback\n");
1075 1076
			return -EPERM;
		}
1077 1078
		dma_disable_irq(drv_data->dma_channel);
		drv_data->dma_requested = 1;
1079 1080 1081 1082 1083 1084 1085
	}

	/*
	 * Notice: for blackfin, the speed_hz is the value of register
	 * SPI_BAUD, not the real baudrate
	 */
	chip->baud = hz_to_spi_baud(spi->max_speed_hz);
1086
	chip->flag = 1 << (spi->chip_select);
1087 1088
	chip->chip_select_num = spi->chip_select;

1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
	if (chip->chip_select_num == 0) {
		ret = gpio_request(chip->cs_gpio, spi->modalias);
		if (ret) {
			if (drv_data->dma_requested)
				free_dma(drv_data->dma_channel);
			return ret;
		}
		gpio_direction_output(chip->cs_gpio, 1);
	}

1099 1100 1101 1102 1103
	switch (chip->bits_per_word) {
	case 8:
		chip->n_bytes = 1;
		chip->width = CFG_SPI_WORDSIZE8;
		chip->read = chip->cs_change_per_word ?
1104
			bfin_spi_u8_cs_chg_reader : bfin_spi_u8_reader;
1105
		chip->write = chip->cs_change_per_word ?
1106
			bfin_spi_u8_cs_chg_writer : bfin_spi_u8_writer;
1107
		chip->duplex = chip->cs_change_per_word ?
1108
			bfin_spi_u8_cs_chg_duplex : bfin_spi_u8_duplex;
1109 1110 1111 1112 1113 1114
		break;

	case 16:
		chip->n_bytes = 2;
		chip->width = CFG_SPI_WORDSIZE16;
		chip->read = chip->cs_change_per_word ?
1115
			bfin_spi_u16_cs_chg_reader : bfin_spi_u16_reader;
1116
		chip->write = chip->cs_change_per_word ?
1117
			bfin_spi_u16_cs_chg_writer : bfin_spi_u16_writer;
1118
		chip->duplex = chip->cs_change_per_word ?
1119
			bfin_spi_u16_cs_chg_duplex : bfin_spi_u16_duplex;
1120 1121 1122 1123 1124
		break;

	default:
		dev_err(&spi->dev, "%d bits_per_word is not supported\n",
				chip->bits_per_word);
1125 1126
		if (chip_info)
			kfree(chip);
1127 1128 1129
		return -ENODEV;
	}

1130
	dev_dbg(&spi->dev, "setup spi chip %s, width is %d, dma is %d\n",
1131
			spi->modalias, chip->width, chip->enable_dma);
1132
	dev_dbg(&spi->dev, "ctl_reg is 0x%x, flag_reg is 0x%x\n",
1133 1134 1135 1136
			chip->ctl_reg, chip->flag);

	spi_set_ctldata(spi, chip);

1137 1138 1139 1140
	dev_dbg(&spi->dev, "chip select number is %d\n", chip->chip_select_num);
	if ((chip->chip_select_num > 0)
		&& (chip->chip_select_num <= spi->master->num_chipselect))
		peripheral_request(ssel[spi->master->bus_num]
B
Bryan Wu 已提交
1141
			[chip->chip_select_num-1], spi->modalias);
1142

1143
	bfin_spi_cs_deactive(drv_data, chip);
1144

1145 1146 1147 1148 1149 1150 1151
	return 0;
}

/*
 * callback for spi framework.
 * clean driver specific data
 */
1152
static void bfin_spi_cleanup(struct spi_device *spi)
1153
{
1154
	struct chip_data *chip = spi_get_ctldata(spi);
1155

1156 1157 1158
	if (!chip)
		return;

1159 1160 1161 1162 1163
	if ((chip->chip_select_num > 0)
		&& (chip->chip_select_num <= spi->master->num_chipselect))
		peripheral_free(ssel[spi->master->bus_num]
					[chip->chip_select_num-1]);

1164 1165 1166
	if (chip->chip_select_num == 0)
		gpio_free(chip->cs_gpio);

1167 1168 1169
	kfree(chip);
}

1170
static inline int bfin_spi_init_queue(struct driver_data *drv_data)
1171 1172 1173 1174 1175 1176 1177 1178 1179
{
	INIT_LIST_HEAD(&drv_data->queue);
	spin_lock_init(&drv_data->lock);

	drv_data->run = QUEUE_STOPPED;
	drv_data->busy = 0;

	/* init transfer tasklet */
	tasklet_init(&drv_data->pump_transfers,
1180
		     bfin_spi_pump_transfers, (unsigned long)drv_data);
1181 1182

	/* init messages workqueue */
1183
	INIT_WORK(&drv_data->pump_messages, bfin_spi_pump_messages);
1184 1185
	drv_data->workqueue = create_singlethread_workqueue(
				dev_name(drv_data->master->dev.parent));
1186 1187 1188 1189 1190 1191
	if (drv_data->workqueue == NULL)
		return -EBUSY;

	return 0;
}

1192
static inline int bfin_spi_start_queue(struct driver_data *drv_data)
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
{
	unsigned long flags;

	spin_lock_irqsave(&drv_data->lock, flags);

	if (drv_data->run == QUEUE_RUNNING || drv_data->busy) {
		spin_unlock_irqrestore(&drv_data->lock, flags);
		return -EBUSY;
	}

	drv_data->run = QUEUE_RUNNING;
	drv_data->cur_msg = NULL;
	drv_data->cur_transfer = NULL;
	drv_data->cur_chip = NULL;
	spin_unlock_irqrestore(&drv_data->lock, flags);

	queue_work(drv_data->workqueue, &drv_data->pump_messages);

	return 0;
}

1214
static inline int bfin_spi_stop_queue(struct driver_data *drv_data)
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
{
	unsigned long flags;
	unsigned limit = 500;
	int status = 0;

	spin_lock_irqsave(&drv_data->lock, flags);

	/*
	 * This is a bit lame, but is optimized for the common execution path.
	 * A wait_queue on the drv_data->busy could be used, but then the common
	 * execution path (pump_messages) would be required to call wake_up or
	 * friends on every SPI message. Do this instead
	 */
	drv_data->run = QUEUE_STOPPED;
	while (!list_empty(&drv_data->queue) && drv_data->busy && limit--) {
		spin_unlock_irqrestore(&drv_data->lock, flags);
		msleep(10);
		spin_lock_irqsave(&drv_data->lock, flags);
	}

	if (!list_empty(&drv_data->queue) || drv_data->busy)
		status = -EBUSY;

	spin_unlock_irqrestore(&drv_data->lock, flags);

	return status;
}

1243
static inline int bfin_spi_destroy_queue(struct driver_data *drv_data)
1244 1245 1246
{
	int status;

1247
	status = bfin_spi_stop_queue(drv_data);
1248 1249 1250 1251 1252 1253 1254 1255
	if (status != 0)
		return status;

	destroy_workqueue(drv_data->workqueue);

	return 0;
}

1256
static int __init bfin_spi_probe(struct platform_device *pdev)
1257 1258 1259 1260 1261
{
	struct device *dev = &pdev->dev;
	struct bfin5xx_spi_master *platform_info;
	struct spi_master *master;
	struct driver_data *drv_data = 0;
1262
	struct resource *res;
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
	int status = 0;

	platform_info = dev->platform_data;

	/* Allocate master with space for drv_data */
	master = spi_alloc_master(dev, sizeof(struct driver_data) + 16);
	if (!master) {
		dev_err(&pdev->dev, "can not alloc spi_master\n");
		return -ENOMEM;
	}
B
Bryan Wu 已提交
1273

1274 1275 1276 1277
	drv_data = spi_master_get_devdata(master);
	drv_data->master = master;
	drv_data->master_info = platform_info;
	drv_data->pdev = pdev;
1278
	drv_data->pin_req = platform_info->pin_req;
1279

1280 1281 1282
	/* the spi->mode bits supported by this driver: */
	master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST;

1283 1284
	master->bus_num = pdev->id;
	master->num_chipselect = platform_info->num_chipselect;
1285 1286 1287
	master->cleanup = bfin_spi_cleanup;
	master->setup = bfin_spi_setup;
	master->transfer = bfin_spi_transfer;
1288

1289 1290 1291 1292 1293 1294 1295 1296
	/* Find and map our resources */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (res == NULL) {
		dev_err(dev, "Cannot get IORESOURCE_MEM\n");
		status = -ENOENT;
		goto out_error_get_res;
	}

1297 1298
	drv_data->regs_base = ioremap(res->start, (res->end - res->start + 1));
	if (drv_data->regs_base == NULL) {
1299 1300 1301 1302 1303
		dev_err(dev, "Cannot map IO\n");
		status = -ENXIO;
		goto out_error_ioremap;
	}

1304 1305
	drv_data->dma_channel = platform_get_irq(pdev, 0);
	if (drv_data->dma_channel < 0) {
1306 1307 1308 1309 1310
		dev_err(dev, "No DMA channel specified\n");
		status = -ENOENT;
		goto out_error_no_dma_ch;
	}

1311
	/* Initial and start queue */
1312
	status = bfin_spi_init_queue(drv_data);
1313
	if (status != 0) {
1314
		dev_err(dev, "problem initializing queue\n");
1315 1316
		goto out_error_queue_alloc;
	}
1317

1318
	status = bfin_spi_start_queue(drv_data);
1319
	if (status != 0) {
1320
		dev_err(dev, "problem starting queue\n");
1321 1322 1323
		goto out_error_queue_alloc;
	}

1324 1325 1326 1327 1328 1329
	status = peripheral_request_list(drv_data->pin_req, DRV_NAME);
	if (status != 0) {
		dev_err(&pdev->dev, ": Requesting Peripherals failed\n");
		goto out_error_queue_alloc;
	}

1330 1331 1332 1333
	/* Register with the SPI framework */
	platform_set_drvdata(pdev, drv_data);
	status = spi_register_master(master);
	if (status != 0) {
1334
		dev_err(dev, "problem registering spi master\n");
1335 1336
		goto out_error_queue_alloc;
	}
1337

1338
	dev_info(dev, "%s, Version %s, regs_base@%p, dma channel@%d\n",
1339 1340
		DRV_DESC, DRV_VERSION, drv_data->regs_base,
		drv_data->dma_channel);
1341 1342
	return status;

1343
out_error_queue_alloc:
1344
	bfin_spi_destroy_queue(drv_data);
1345
out_error_no_dma_ch:
1346
	iounmap((void *) drv_data->regs_base);
1347 1348
out_error_ioremap:
out_error_get_res:
1349
	spi_master_put(master);
1350

1351 1352 1353 1354
	return status;
}

/* stop hardware and remove the driver */
1355
static int __devexit bfin_spi_remove(struct platform_device *pdev)
1356 1357 1358 1359 1360 1361 1362 1363
{
	struct driver_data *drv_data = platform_get_drvdata(pdev);
	int status = 0;

	if (!drv_data)
		return 0;

	/* Remove the queue */
1364
	status = bfin_spi_destroy_queue(drv_data);
1365 1366 1367 1368 1369 1370 1371 1372
	if (status != 0)
		return status;

	/* Disable the SSP at the peripheral and SOC level */
	bfin_spi_disable(drv_data);

	/* Release DMA */
	if (drv_data->master_info->enable_dma) {
1373 1374
		if (dma_channel_active(drv_data->dma_channel))
			free_dma(drv_data->dma_channel);
1375 1376 1377 1378 1379
	}

	/* Disconnect from the SPI framework */
	spi_unregister_master(drv_data->master);

1380
	peripheral_free_list(drv_data->pin_req);
1381

1382 1383 1384 1385 1386 1387 1388
	/* Prevent double remove */
	platform_set_drvdata(pdev, NULL);

	return 0;
}

#ifdef CONFIG_PM
1389
static int bfin_spi_suspend(struct platform_device *pdev, pm_message_t state)
1390 1391 1392 1393
{
	struct driver_data *drv_data = platform_get_drvdata(pdev);
	int status = 0;

1394
	status = bfin_spi_stop_queue(drv_data);
1395 1396 1397 1398 1399 1400 1401 1402 1403
	if (status != 0)
		return status;

	/* stop hardware */
	bfin_spi_disable(drv_data);

	return 0;
}

1404
static int bfin_spi_resume(struct platform_device *pdev)
1405 1406 1407 1408 1409 1410 1411 1412
{
	struct driver_data *drv_data = platform_get_drvdata(pdev);
	int status = 0;

	/* Enable the SPI interface */
	bfin_spi_enable(drv_data);

	/* Start the queue running */
1413
	status = bfin_spi_start_queue(drv_data);
1414 1415 1416 1417 1418 1419 1420 1421
	if (status != 0) {
		dev_err(&pdev->dev, "problem starting queue (%d)\n", status);
		return status;
	}

	return 0;
}
#else
1422 1423
#define bfin_spi_suspend NULL
#define bfin_spi_resume NULL
1424 1425
#endif				/* CONFIG_PM */

1426
MODULE_ALIAS("platform:bfin-spi");
1427
static struct platform_driver bfin_spi_driver = {
1428
	.driver	= {
1429
		.name	= DRV_NAME,
1430 1431
		.owner	= THIS_MODULE,
	},
1432 1433 1434
	.suspend	= bfin_spi_suspend,
	.resume		= bfin_spi_resume,
	.remove		= __devexit_p(bfin_spi_remove),
1435 1436
};

1437
static int __init bfin_spi_init(void)
1438
{
1439
	return platform_driver_probe(&bfin_spi_driver, bfin_spi_probe);
1440
}
1441
module_init(bfin_spi_init);
1442

1443
static void __exit bfin_spi_exit(void)
1444
{
1445
	platform_driver_unregister(&bfin_spi_driver);
1446
}
1447
module_exit(bfin_spi_exit);