spi_bfin5xx.c 37.5 KB
Newer Older
1
/*
B
Bryan Wu 已提交
2 3 4 5 6
 * File:	drivers/spi/bfin5xx_spi.c
 * Maintainer:
 *		Bryan Wu <bryan.wu@analog.com>
 * Original Author:
 *		Luke Yang (Analog Devices Inc.)
7
 *
B
Bryan Wu 已提交
8 9 10
 * Created:	March. 10th 2006
 * Description:	SPI controller driver for Blackfin BF5xx
 * Bugs:	Enter bugs at http://blackfin.uclinux.org/
11 12 13 14
 *
 * Modified:
 *	March 10, 2006  bfin5xx_spi.c Created. (Luke Yang)
 *      August 7, 2006  added full duplex mode (Axel Weiss & Luke Yang)
B
Bryan Wu 已提交
15
 *      July  17, 2007  add support for BF54x SPI0 controller (Bryan Wu)
16 17
 *      July  30, 2007  add platfrom_resource interface to support multi-port
 *                      SPI controller (Bryan Wu)
18
 *
B
Bryan Wu 已提交
19
 * Copyright 2004-2007 Analog Devices Inc.
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 *
 * This program is free software ;  you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation ;  either version 2, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY ;  without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program ;  see the file COPYING.
 * If not, write to the Free Software Foundation,
 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <linux/init.h>
#include <linux/module.h>
B
Bryan Wu 已提交
39
#include <linux/delay.h>
40
#include <linux/device.h>
B
Bryan Wu 已提交
41
#include <linux/io.h>
42
#include <linux/ioport.h>
B
Bryan Wu 已提交
43
#include <linux/irq.h>
44 45 46 47 48 49 50 51
#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 已提交
52
#include <asm/portmux.h>
53 54
#include <asm/bfin5xx_spi.h>

55 56
#define DRV_NAME	"bfin-spi"
#define DRV_AUTHOR	"Bryan Wu, Luke Yang"
W
Will Newton 已提交
57
#define DRV_DESC	"Blackfin BF5xx on-chip SPI Controller Driver"
58 59 60 61
#define DRV_VERSION	"1.0"

MODULE_AUTHOR(DRV_AUTHOR);
MODULE_DESCRIPTION(DRV_DESC);
62 63
MODULE_LICENSE("GPL");

64
#define IS_DMA_ALIGNED(x) (((u32)(x)&0x07) == 0)
65

66 67 68 69 70 71
#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
72 73 74 75 76 77 78 79

struct driver_data {
	/* Driver model hookup */
	struct platform_device *pdev;

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

80
	/* Regs base of SPI controller */
81
	void __iomem *regs_base;
82

83 84 85
	/* Pin request list */
	u16 *pin_req;

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
	/* 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;
110 111 112

	/* DMA stuffs */
	int dma_channel;
113
	int dma_mapped;
114
	int dma_requested;
115 116
	dma_addr_t rx_dma;
	dma_addr_t tx_dma;
117

118 119 120
	size_t rx_map_len;
	size_t tx_map_len;
	u8 n_bytes;
121
	int cs_change;
122 123 124 125 126 127 128 129 130 131 132 133
	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;
134
	u8 width;		/* 0 or 1 */
135 136 137
	u8 enable_dma;
	u8 bits_per_word;	/* 8 or 16 */
	u8 cs_change_per_word;
138
	u16 cs_chg_udelay;	/* Some devices require > 255usec delay */
139 140 141 142 143
	void (*write) (struct driver_data *);
	void (*read) (struct driver_data *);
	void (*duplex) (struct driver_data *);
};

144 145 146 147 148 149 150 151 152 153 154 155 156 157
#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)

158
static void bfin_spi_enable(struct driver_data *drv_data)
159 160 161
{
	u16 cr;

162 163
	cr = read_CTRL(drv_data);
	write_CTRL(drv_data, (cr | BIT_CTL_ENABLE));
164 165
}

166
static void bfin_spi_disable(struct driver_data *drv_data)
167 168 169
{
	u16 cr;

170 171
	cr = read_CTRL(drv_data);
	write_CTRL(drv_data, (cr & (~BIT_CTL_ENABLE)));
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
}

/* 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++;

	return spi_baud;
}

static int flush(struct driver_data *drv_data)
{
	unsigned long limit = loops_per_jiffy << 1;

	/* wait for stop and clear stat */
191
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF) && limit--)
192
		cpu_relax();
193

194
	write_STAT(drv_data, BIT_STAT_CLR);
195 196 197 198

	return limit;
}

199
/* Chip select operation functions for cs_change flag */
200
static void cs_active(struct driver_data *drv_data, struct chip_data *chip)
201
{
202
	u16 flag = read_FLAG(drv_data);
203 204 205 206

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

207
	write_FLAG(drv_data, flag);
208 209
}

210
static void cs_deactive(struct driver_data *drv_data, struct chip_data *chip)
211
{
212
	u16 flag = read_FLAG(drv_data);
213 214 215

	flag |= (chip->flag << 8);

216
	write_FLAG(drv_data, flag);
217 218 219 220

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

223
#define MAX_SPI_SSEL	7
B
Bryan Wu 已提交
224

225
/* stop controller and re-config current chip*/
B
Bryan Wu 已提交
226
static void restore_state(struct driver_data *drv_data)
227 228
{
	struct chip_data *chip = drv_data->cur_chip;
229

230
	/* Clear status and disable clock */
231
	write_STAT(drv_data, BIT_STAT_CLR);
232
	bfin_spi_disable(drv_data);
233
	dev_dbg(&drv_data->pdev->dev, "restoring spi ctl state\n");
234

B
Bryan Wu 已提交
235
	/* Load the registers */
236
	write_CTRL(drv_data, chip->ctl_reg);
237
	write_BAUD(drv_data, chip->baud);
238 239

	bfin_spi_enable(drv_data);
240
	cs_active(drv_data, chip);
241 242 243
}

/* used to kick off transfer in rx mode */
244
static unsigned short dummy_read(struct driver_data *drv_data)
245 246
{
	unsigned short tmp;
247
	tmp = read_RDBR(drv_data);
248 249 250 251 252 253 254 255
	return tmp;
}

static void null_writer(struct driver_data *drv_data)
{
	u8 n_bytes = drv_data->n_bytes;

	while (drv_data->tx < drv_data->tx_end) {
256 257
		write_TDBR(drv_data, 0);
		while ((read_STAT(drv_data) & BIT_STAT_TXS))
258
			cpu_relax();
259 260 261 262 263 264 265
		drv_data->tx += n_bytes;
	}
}

static void null_reader(struct driver_data *drv_data)
{
	u8 n_bytes = drv_data->n_bytes;
266
	dummy_read(drv_data);
267 268

	while (drv_data->rx < drv_data->rx_end) {
269
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
270
			cpu_relax();
271
		dummy_read(drv_data);
272 273 274 275 276 277
		drv_data->rx += n_bytes;
	}
}

static void u8_writer(struct driver_data *drv_data)
{
B
Bryan Wu 已提交
278
	dev_dbg(&drv_data->pdev->dev,
279
		"cr8-s is 0x%x\n", read_STAT(drv_data));
280

S
Sonic Zhang 已提交
281
	/* poll for SPI completion before start */
282
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
283
		cpu_relax();
S
Sonic Zhang 已提交
284

285
	while (drv_data->tx < drv_data->tx_end) {
286 287
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
		while (read_STAT(drv_data) & BIT_STAT_TXS)
288
			cpu_relax();
289 290 291 292 293 294 295 296
		++drv_data->tx;
	}
}

static void u8_cs_chg_writer(struct driver_data *drv_data)
{
	struct chip_data *chip = drv_data->cur_chip;

S
Sonic Zhang 已提交
297
	/* poll for SPI completion before start */
298
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
299
		cpu_relax();
S
Sonic Zhang 已提交
300

301
	while (drv_data->tx < drv_data->tx_end) {
302
		cs_active(drv_data, chip);
303

304 305
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
		while (read_STAT(drv_data) & BIT_STAT_TXS)
306
			cpu_relax();
307

308
		cs_deactive(drv_data, chip);
B
Bryan Wu 已提交
309

310 311 312 313 314 315
		++drv_data->tx;
	}
}

static void u8_reader(struct driver_data *drv_data)
{
B
Bryan Wu 已提交
316
	dev_dbg(&drv_data->pdev->dev,
317
		"cr-8 is 0x%x\n", read_STAT(drv_data));
318

S
Sonic Zhang 已提交
319
	/* poll for SPI completion before start */
320
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
321
		cpu_relax();
S
Sonic Zhang 已提交
322

323
	/* clear TDBR buffer before read(else it will be shifted out) */
324
	write_TDBR(drv_data, 0xFFFF);
325

326
	dummy_read(drv_data);
327

328
	while (drv_data->rx < drv_data->rx_end - 1) {
329
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
330
			cpu_relax();
331
		*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
332 333 334
		++drv_data->rx;
	}

335
	while (!(read_STAT(drv_data) & BIT_STAT_RXS))
336
		cpu_relax();
337
	*(u8 *) (drv_data->rx) = read_SHAW(drv_data);
338 339 340 341 342 343 344
	++drv_data->rx;
}

static void u8_cs_chg_reader(struct driver_data *drv_data)
{
	struct chip_data *chip = drv_data->cur_chip;

S
Sonic Zhang 已提交
345
	/* poll for SPI completion before start */
346
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
347
		cpu_relax();
S
Sonic Zhang 已提交
348

349
	/* clear TDBR buffer before read(else it will be shifted out) */
350
	write_TDBR(drv_data, 0xFFFF);
351

352 353
	cs_active(drv_data, chip);
	dummy_read(drv_data);
354 355

	while (drv_data->rx < drv_data->rx_end - 1) {
356
		cs_deactive(drv_data, chip);
B
Bryan Wu 已提交
357

358
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
359
			cpu_relax();
360 361
		cs_active(drv_data, chip);
		*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
362 363
		++drv_data->rx;
	}
364
	cs_deactive(drv_data, chip);
B
Bryan Wu 已提交
365

366
	while (!(read_STAT(drv_data) & BIT_STAT_RXS))
367
		cpu_relax();
368
	*(u8 *) (drv_data->rx) = read_SHAW(drv_data);
369
	++drv_data->rx;
370 371 372 373
}

static void u8_duplex(struct driver_data *drv_data)
{
S
Sonic Zhang 已提交
374
	/* poll for SPI completion before start */
375
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
376
		cpu_relax();
S
Sonic Zhang 已提交
377

378 379
	/* in duplex mode, clk is triggered by writing of TDBR */
	while (drv_data->rx < drv_data->rx_end) {
380 381
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
		while (read_STAT(drv_data) & BIT_STAT_TXS)
382
			cpu_relax();
383
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
384
			cpu_relax();
385
		*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
386 387 388 389 390 391 392 393 394
		++drv_data->rx;
		++drv_data->tx;
	}
}

static void u8_cs_chg_duplex(struct driver_data *drv_data)
{
	struct chip_data *chip = drv_data->cur_chip;

S
Sonic Zhang 已提交
395
	/* poll for SPI completion before start */
396
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
397
		cpu_relax();
S
Sonic Zhang 已提交
398

399
	while (drv_data->rx < drv_data->rx_end) {
400
		cs_active(drv_data, chip);
B
Bryan Wu 已提交
401

402 403
		write_TDBR(drv_data, (*(u8 *) (drv_data->tx)));
		while (read_STAT(drv_data) & BIT_STAT_TXS)
404
			cpu_relax();
405
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
406
			cpu_relax();
407
		*(u8 *) (drv_data->rx) = read_RDBR(drv_data);
408

409
		cs_deactive(drv_data, chip);
B
Bryan Wu 已提交
410

411 412 413 414 415 416 417
		++drv_data->rx;
		++drv_data->tx;
	}
}

static void u16_writer(struct driver_data *drv_data)
{
B
Bryan Wu 已提交
418
	dev_dbg(&drv_data->pdev->dev,
419
		"cr16 is 0x%x\n", read_STAT(drv_data));
420

S
Sonic Zhang 已提交
421
	/* poll for SPI completion before start */
422
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
423
		cpu_relax();
S
Sonic Zhang 已提交
424

425
	while (drv_data->tx < drv_data->tx_end) {
426 427
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
		while ((read_STAT(drv_data) & BIT_STAT_TXS))
428
			cpu_relax();
429 430 431 432 433 434 435 436
		drv_data->tx += 2;
	}
}

static void u16_cs_chg_writer(struct driver_data *drv_data)
{
	struct chip_data *chip = drv_data->cur_chip;

S
Sonic Zhang 已提交
437
	/* poll for SPI completion before start */
438
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
439
		cpu_relax();
S
Sonic Zhang 已提交
440

441
	while (drv_data->tx < drv_data->tx_end) {
442
		cs_active(drv_data, chip);
443

444 445
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
		while ((read_STAT(drv_data) & BIT_STAT_TXS))
446
			cpu_relax();
447

448
		cs_deactive(drv_data, chip);
B
Bryan Wu 已提交
449

450 451 452 453 454 455
		drv_data->tx += 2;
	}
}

static void u16_reader(struct driver_data *drv_data)
{
456
	dev_dbg(&drv_data->pdev->dev,
457
		"cr-16 is 0x%x\n", read_STAT(drv_data));
458

S
Sonic Zhang 已提交
459
	/* poll for SPI completion before start */
460
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
461
		cpu_relax();
S
Sonic Zhang 已提交
462

463
	/* clear TDBR buffer before read(else it will be shifted out) */
464
	write_TDBR(drv_data, 0xFFFF);
465

466
	dummy_read(drv_data);
467 468

	while (drv_data->rx < (drv_data->rx_end - 2)) {
469
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
470
			cpu_relax();
471
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
472 473 474
		drv_data->rx += 2;
	}

475
	while (!(read_STAT(drv_data) & BIT_STAT_RXS))
476
		cpu_relax();
477
	*(u16 *) (drv_data->rx) = read_SHAW(drv_data);
478 479 480 481 482 483 484
	drv_data->rx += 2;
}

static void u16_cs_chg_reader(struct driver_data *drv_data)
{
	struct chip_data *chip = drv_data->cur_chip;

S
Sonic Zhang 已提交
485
	/* poll for SPI completion before start */
486
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
487
		cpu_relax();
S
Sonic Zhang 已提交
488

489
	/* clear TDBR buffer before read(else it will be shifted out) */
490
	write_TDBR(drv_data, 0xFFFF);
491

492 493
	cs_active(drv_data, chip);
	dummy_read(drv_data);
494

495
	while (drv_data->rx < drv_data->rx_end - 2) {
496
		cs_deactive(drv_data, chip);
B
Bryan Wu 已提交
497

498
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
499
			cpu_relax();
500 501
		cs_active(drv_data, chip);
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
502 503
		drv_data->rx += 2;
	}
504
	cs_deactive(drv_data, chip);
505

506
	while (!(read_STAT(drv_data) & BIT_STAT_RXS))
507
		cpu_relax();
508
	*(u16 *) (drv_data->rx) = read_SHAW(drv_data);
509
	drv_data->rx += 2;
510 511 512 513
}

static void u16_duplex(struct driver_data *drv_data)
{
S
Sonic Zhang 已提交
514
	/* poll for SPI completion before start */
515
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
516
		cpu_relax();
S
Sonic Zhang 已提交
517

518 519
	/* in duplex mode, clk is triggered by writing of TDBR */
	while (drv_data->tx < drv_data->tx_end) {
520 521
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
		while (read_STAT(drv_data) & BIT_STAT_TXS)
522
			cpu_relax();
523
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
524
			cpu_relax();
525
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
526 527 528 529 530 531 532 533 534
		drv_data->rx += 2;
		drv_data->tx += 2;
	}
}

static void u16_cs_chg_duplex(struct driver_data *drv_data)
{
	struct chip_data *chip = drv_data->cur_chip;

S
Sonic Zhang 已提交
535
	/* poll for SPI completion before start */
536
	while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
537
		cpu_relax();
S
Sonic Zhang 已提交
538

539
	while (drv_data->tx < drv_data->tx_end) {
540
		cs_active(drv_data, chip);
541

542 543
		write_TDBR(drv_data, (*(u16 *) (drv_data->tx)));
		while (read_STAT(drv_data) & BIT_STAT_TXS)
544
			cpu_relax();
545
		while (!(read_STAT(drv_data) & BIT_STAT_RXS))
546
			cpu_relax();
547
		*(u16 *) (drv_data->rx) = read_RDBR(drv_data);
548

549
		cs_deactive(drv_data, chip);
B
Bryan Wu 已提交
550

551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
		drv_data->rx += 2;
		drv_data->tx += 2;
	}
}

/* test if ther is more transfer to be done */
static void *next_transfer(struct driver_data *drv_data)
{
	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
 */
static void giveback(struct driver_data *drv_data)
{
578
	struct chip_data *chip = drv_data->cur_chip;
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
	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;

	/* disable chip select signal. And not stop spi in autobuffer mode */
	if (drv_data->tx_dma != 0xFFFF) {
598
		cs_deactive(drv_data, chip);
599 600 601
		bfin_spi_disable(drv_data);
	}

602
	if (!drv_data->cs_change)
603
		cs_deactive(drv_data, chip);
604

605 606 607 608
	if (msg->complete)
		msg->complete(msg->context);
}

609
static irqreturn_t dma_irq_handler(int irq, void *dev_id)
610
{
611
	struct driver_data *drv_data = dev_id;
612
	struct chip_data *chip = drv_data->cur_chip;
613
	struct spi_message *msg = drv_data->cur_msg;
614

615
	dev_dbg(&drv_data->pdev->dev, "in dma_irq_handler\n");
616
	clear_dma_irqstat(drv_data->dma_channel);
617

618
	/* Wait for DMA to complete */
619
	while (get_dma_curr_irqstat(drv_data->dma_channel) & DMA_RUN)
620
		cpu_relax();
621

622
	/*
623 624 625 626
	 * 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
627 628
	 */
	if (drv_data->tx != NULL) {
629 630
		while ((read_STAT(drv_data) & TXS) ||
		       (read_STAT(drv_data) & TXS))
631
			cpu_relax();
632 633
	}

634
	while (!(read_STAT(drv_data) & SPIF))
635
		cpu_relax();
636 637 638

	msg->actual_length += drv_data->len_in_bytes;

639
	if (drv_data->cs_change)
640
		cs_deactive(drv_data, chip);
641

642 643 644 645 646 647 648
	/* Move to next transfer */
	msg->state = next_transfer(drv_data);

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

	/* free the irq handler before next transfer */
649 650
	dev_dbg(&drv_data->pdev->dev,
		"disable dma channel irq%d\n",
651 652
		drv_data->dma_channel);
	dma_disable_irq(drv_data->dma_channel);
653 654 655 656 657 658 659 660 661 662 663

	return IRQ_HANDLED;
}

static void pump_transfers(unsigned long data)
{
	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;
664 665
	u8 width;
	u16 cr, dma_width, dma_config;
666 667 668 669 670 671
	u32 tranf_success = 1;

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

673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
	/*
	 * if msg is error or done, report it back using complete() callback
	 */

	 /* Handle for abort */
	if (message->state == ERROR_STATE) {
		message->status = -EIO;
		giveback(drv_data);
		return;
	}

	/* Handle end of message */
	if (message->state == DONE_STATE) {
		message->status = 0;
		giveback(drv_data);
		return;
	}

	/* Delay if requested at end of transfer */
	if (message->state == RUNNING_STATE) {
		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 */
	if (flush(drv_data) == 0) {
		dev_err(&drv_data->pdev->dev, "pump_transfers: flush failed\n");
		message->status = -EIO;
		giveback(drv_data);
		return;
	}

	if (transfer->tx_buf != NULL) {
		drv_data->tx = (void *)transfer->tx_buf;
		drv_data->tx_end = drv_data->tx + transfer->len;
710 711
		dev_dbg(&drv_data->pdev->dev, "tx_buf is %p, tx_end is %p\n",
			transfer->tx_buf, drv_data->tx_end);
712 713 714 715 716 717 718
	} else {
		drv_data->tx = NULL;
	}

	if (transfer->rx_buf != NULL) {
		drv_data->rx = transfer->rx_buf;
		drv_data->rx_end = drv_data->rx + transfer->len;
719 720
		dev_dbg(&drv_data->pdev->dev, "rx_buf is %p, rx_end is %p\n",
			transfer->rx_buf, drv_data->rx_end);
721 722 723 724 725 726 727
	} 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;
728
	drv_data->cs_change = transfer->cs_change;
729

730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
	/* 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 ?
			u8_cs_chg_reader : u8_reader;
		drv_data->write = chip->cs_change_per_word ?
			u8_cs_chg_writer : u8_writer;
		drv_data->duplex = chip->cs_change_per_word ?
			u8_cs_chg_duplex : u8_duplex;
		break;

	case 16:
		drv_data->n_bytes = 2;
		width = CFG_SPI_WORDSIZE16;
		drv_data->read = chip->cs_change_per_word ?
			u16_cs_chg_reader : u16_reader;
		drv_data->write = chip->cs_change_per_word ?
			u16_cs_chg_writer : u16_writer;
		drv_data->duplex = chip->cs_change_per_word ?
			u16_cs_chg_duplex : u16_duplex;
		break;

	default:
		/* No change, the same as default setting */
		drv_data->n_bytes = chip->n_bytes;
		width = chip->width;
		drv_data->write = drv_data->tx ? chip->write : null_writer;
		drv_data->read = drv_data->rx ? chip->read : null_reader;
		drv_data->duplex = chip->duplex ? chip->duplex : null_writer;
		break;
	}
	cr = (read_CTRL(drv_data) & (~BIT_CTL_TIMOD));
	cr |= (width << 8);
	write_CTRL(drv_data, cr);

767 768 769 770 771
	if (width == CFG_SPI_WORDSIZE16) {
		drv_data->len = (transfer->len) >> 1;
	} else {
		drv_data->len = transfer->len;
	}
B
Bryan Wu 已提交
772 773 774
	dev_dbg(&drv_data->pdev->dev, "transfer: ",
		"drv_data->write is %p, chip->write is %p, null_wr is %p\n",
		drv_data->write, chip->write, null_writer);
775 776 777 778 779

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

780 781 782 783 784 785
	/* 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);

786 787 788
	write_STAT(drv_data, BIT_STAT_CLR);
	cr = (read_CTRL(drv_data) & (~BIT_CTL_TIMOD));
	cs_active(drv_data, chip);
789

790 791 792
	dev_dbg(&drv_data->pdev->dev,
		"now pumping a transfer: width is %d, len is %d\n",
		width, transfer->len);
793 794 795 796 797 798 799 800

	/*
	 * Try to map dma buffer and do a dma transfer if
	 * successful use different way to r/w according to
	 * drv_data->cur_chip->enable_dma
	 */
	if (drv_data->cur_chip->enable_dma && drv_data->len > 6) {

801 802
		disable_dma(drv_data->dma_channel);
		clear_dma_irqstat(drv_data->dma_channel);
803
		bfin_spi_disable(drv_data);
804 805

		/* config dma channel */
806
		dev_dbg(&drv_data->pdev->dev, "doing dma transfer\n");
807
		if (width == CFG_SPI_WORDSIZE16) {
808 809
			set_dma_x_count(drv_data->dma_channel, drv_data->len);
			set_dma_x_modify(drv_data->dma_channel, 2);
810 811
			dma_width = WDSIZE_16;
		} else {
812 813
			set_dma_x_count(drv_data->dma_channel, drv_data->len);
			set_dma_x_modify(drv_data->dma_channel, 1);
814 815 816
			dma_width = WDSIZE_8;
		}

S
Sonic Zhang 已提交
817
		/* poll for SPI completion before start */
818
		while (!(read_STAT(drv_data) & BIT_STAT_SPIF))
819
			cpu_relax();
S
Sonic Zhang 已提交
820

821 822
		/* dirty hack for autobuffer DMA mode */
		if (drv_data->tx_dma == 0xFFFF) {
823 824
			dev_dbg(&drv_data->pdev->dev,
				"doing autobuffer DMA out.\n");
825 826 827 828

			/* no irq in autobuffer mode */
			dma_config =
			    (DMAFLOW_AUTO | RESTART | dma_width | DI_EN);
829 830
			set_dma_config(drv_data->dma_channel, dma_config);
			set_dma_start_addr(drv_data->dma_channel,
831
					(unsigned long)drv_data->tx);
832
			enable_dma(drv_data->dma_channel);
833

834 835 836 837 838 839 840
			/* start SPI transfer */
			write_CTRL(drv_data,
				(cr | CFG_SPI_DMAWRITE | BIT_CTL_ENABLE));

			/* just return here, there can only be one transfer
			 * in this mode
			 */
841 842 843 844 845 846 847 848
			message->status = 0;
			giveback(drv_data);
			return;
		}

		/* In dma mode, rx or tx must be NULL in one transfer */
		if (drv_data->rx != NULL) {
			/* set transfer mode, and enable SPI */
849
			dev_dbg(&drv_data->pdev->dev, "doing DMA in.\n");
850 851

			/* clear tx reg soformer data is not shifted out */
852
			write_TDBR(drv_data, 0xFFFF);
853

854
			set_dma_x_count(drv_data->dma_channel, drv_data->len);
855 856

			/* start dma */
857
			dma_enable_irq(drv_data->dma_channel);
858
			dma_config = (WNR | RESTART | dma_width | DI_EN);
859 860
			set_dma_config(drv_data->dma_channel, dma_config);
			set_dma_start_addr(drv_data->dma_channel,
861
					(unsigned long)drv_data->rx);
862
			enable_dma(drv_data->dma_channel);
863

864 865 866 867
			/* start SPI transfer */
			write_CTRL(drv_data,
				(cr | CFG_SPI_DMAREAD | BIT_CTL_ENABLE));

868
		} else if (drv_data->tx != NULL) {
869
			dev_dbg(&drv_data->pdev->dev, "doing DMA out.\n");
870 871

			/* start dma */
872
			dma_enable_irq(drv_data->dma_channel);
873
			dma_config = (RESTART | dma_width | DI_EN);
874 875
			set_dma_config(drv_data->dma_channel, dma_config);
			set_dma_start_addr(drv_data->dma_channel,
876
					(unsigned long)drv_data->tx);
877
			enable_dma(drv_data->dma_channel);
878 879 880 881

			/* start SPI transfer */
			write_CTRL(drv_data,
				(cr | CFG_SPI_DMAWRITE | BIT_CTL_ENABLE));
882 883 884
		}
	} else {
		/* IO mode write then read */
885
		dev_dbg(&drv_data->pdev->dev, "doing IO transfer\n");
886 887 888 889 890

		if (drv_data->tx != NULL && drv_data->rx != NULL) {
			/* full duplex mode */
			BUG_ON((drv_data->tx_end - drv_data->tx) !=
			       (drv_data->rx_end - drv_data->rx));
891 892
			dev_dbg(&drv_data->pdev->dev,
				"IO duplex: cr is 0x%x\n", cr);
893

894
			/* set SPI transfer mode */
895
			write_CTRL(drv_data, (cr | CFG_SPI_WRITE));
896 897 898 899 900 901 902

			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 已提交
903
			dev_dbg(&drv_data->pdev->dev,
904
				"IO write: cr is 0x%x\n", cr);
905

906
			/* set SPI transfer mode */
907
			write_CTRL(drv_data, (cr | CFG_SPI_WRITE));
908 909 910 911 912 913 914

			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 已提交
915
			dev_dbg(&drv_data->pdev->dev,
916
				"IO read: cr is 0x%x\n", cr);
917

918
			/* set SPI transfer mode */
919
			write_CTRL(drv_data, (cr | CFG_SPI_READ));
920 921 922 923 924 925 926

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

		if (!tranf_success) {
B
Bryan Wu 已提交
927
			dev_dbg(&drv_data->pdev->dev,
928
				"IO write error!\n");
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
			message->state = ERROR_STATE;
		} else {
			/* Update total byte transfered */
			message->actual_length += drv_data->len;

			/* Move to next transfer of this msg */
			message->state = next_transfer(drv_data);
		}

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

	}
}

/* pop a msg from queue and kick off real transfer */
static void pump_messages(struct work_struct *work)
{
B
Bryan Wu 已提交
947
	struct driver_data *drv_data;
948 949
	unsigned long flags;

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

952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969
	/* 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 已提交
970 971 972

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

975 976 977 978 979 980 981
	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 已提交
982 983 984 985
	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 已提交
986 987

	dev_dbg(&drv_data->pdev->dev,
988 989
		"the first transfer len is %d\n",
		drv_data->cur_transfer->len);
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017

	/* 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
 */
static int transfer(struct spi_device *spi, struct spi_message *msg)
{
	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;

1018
	dev_dbg(&spi->dev, "adding an msg in transfer() \n");
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
	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;
}

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
#define MAX_SPI_SSEL	7

static u16 ssel[3][MAX_SPI_SSEL] = {
	{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},
};

1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
/* first setup for new devices */
static int setup(struct spi_device *spi)
{
	struct bfin5xx_spi_chip *chip_info = NULL;
	struct chip_data *chip;
	struct driver_data *drv_data = spi_master_get_devdata(spi->master);
	u8 spi_flg;

	/* Abort device setup if requested features are not supported */
	if (spi->mode & ~(SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST)) {
		dev_err(&spi->dev, "requested mode not fully supported\n");
		return -EINVAL;
	}

	/* Zero (the default) here means 8 bits */
	if (!spi->bits_per_word)
		spi->bits_per_word = 8;

	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) {
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
		/* 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;
		}

1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
		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;
	}

	/* 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
	 */
1113
	if (chip->enable_dma && !drv_data->dma_requested) {
1114
		/* register dma irq handler */
1115
		if (request_dma(drv_data->dma_channel, "BF53x_SPI_DMA") < 0) {
1116 1117
			dev_dbg(&spi->dev,
				"Unable to request BlackFin SPI DMA channel\n");
1118 1119
			return -ENODEV;
		}
1120 1121
		if (set_dma_callback(drv_data->dma_channel,
			(void *)dma_irq_handler, drv_data) < 0) {
1122
			dev_dbg(&spi->dev, "Unable to set dma callback\n");
1123 1124
			return -EPERM;
		}
1125 1126
		dma_disable_irq(drv_data->dma_channel);
		drv_data->dma_requested = 1;
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
	}

	/*
	 * 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);
	spi_flg = ~(1 << (spi->chip_select));
	chip->flag = ((u16) spi_flg << 8) | (1 << (spi->chip_select));
	chip->chip_select_num = spi->chip_select;

	switch (chip->bits_per_word) {
	case 8:
		chip->n_bytes = 1;
		chip->width = CFG_SPI_WORDSIZE8;
		chip->read = chip->cs_change_per_word ?
			u8_cs_chg_reader : u8_reader;
		chip->write = chip->cs_change_per_word ?
			u8_cs_chg_writer : u8_writer;
		chip->duplex = chip->cs_change_per_word ?
			u8_cs_chg_duplex : u8_duplex;
		break;

	case 16:
		chip->n_bytes = 2;
		chip->width = CFG_SPI_WORDSIZE16;
		chip->read = chip->cs_change_per_word ?
			u16_cs_chg_reader : u16_reader;
		chip->write = chip->cs_change_per_word ?
			u16_cs_chg_writer : u16_writer;
		chip->duplex = chip->cs_change_per_word ?
			u16_cs_chg_duplex : u16_duplex;
		break;

	default:
		dev_err(&spi->dev, "%d bits_per_word is not supported\n",
				chip->bits_per_word);
		kfree(chip);
		return -ENODEV;
	}

1168
	dev_dbg(&spi->dev, "setup spi chip %s, width is %d, dma is %d\n",
1169
			spi->modalias, chip->width, chip->enable_dma);
1170
	dev_dbg(&spi->dev, "ctl_reg is 0x%x, flag_reg is 0x%x\n",
1171 1172 1173 1174
			chip->ctl_reg, chip->flag);

	spi_set_ctldata(spi, chip);

1175 1176 1177 1178
	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 已提交
1179
			[chip->chip_select_num-1], spi->modalias);
1180

1181 1182
	cs_deactive(drv_data, chip);

1183 1184 1185 1186 1187 1188 1189
	return 0;
}

/*
 * callback for spi framework.
 * clean driver specific data
 */
1190
static void cleanup(struct spi_device *spi)
1191
{
1192
	struct chip_data *chip = spi_get_ctldata(spi);
1193

1194 1195 1196 1197 1198
	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]);

1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
	kfree(chip);
}

static inline int init_queue(struct driver_data *drv_data)
{
	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,
		     pump_transfers, (unsigned long)drv_data);

	/* init messages workqueue */
	INIT_WORK(&drv_data->pump_messages, pump_messages);
	drv_data->workqueue =
T
Tony Jones 已提交
1217
	    create_singlethread_workqueue(drv_data->master->dev.parent->bus_id);
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 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
	if (drv_data->workqueue == NULL)
		return -EBUSY;

	return 0;
}

static inline int start_queue(struct driver_data *drv_data)
{
	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;
}

static inline int stop_queue(struct driver_data *drv_data)
{
	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;
}

static inline int destroy_queue(struct driver_data *drv_data)
{
	int status;

	status = stop_queue(drv_data);
	if (status != 0)
		return status;

	destroy_workqueue(drv_data->workqueue);

	return 0;
}

static int __init bfin5xx_spi_probe(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
	struct bfin5xx_spi_master *platform_info;
	struct spi_master *master;
	struct driver_data *drv_data = 0;
1294
	struct resource *res;
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
	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 已提交
1305

1306 1307 1308 1309
	drv_data = spi_master_get_devdata(master);
	drv_data->master = master;
	drv_data->master_info = platform_info;
	drv_data->pdev = pdev;
1310
	drv_data->pin_req = platform_info->pin_req;
1311 1312 1313 1314 1315 1316 1317

	master->bus_num = pdev->id;
	master->num_chipselect = platform_info->num_chipselect;
	master->cleanup = cleanup;
	master->setup = setup;
	master->transfer = transfer;

1318 1319 1320 1321 1322 1323 1324 1325
	/* 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;
	}

1326 1327
	drv_data->regs_base = ioremap(res->start, (res->end - res->start + 1));
	if (drv_data->regs_base == NULL) {
1328 1329 1330 1331 1332
		dev_err(dev, "Cannot map IO\n");
		status = -ENXIO;
		goto out_error_ioremap;
	}

1333 1334
	drv_data->dma_channel = platform_get_irq(pdev, 0);
	if (drv_data->dma_channel < 0) {
1335 1336 1337 1338 1339
		dev_err(dev, "No DMA channel specified\n");
		status = -ENOENT;
		goto out_error_no_dma_ch;
	}

1340 1341 1342
	/* Initial and start queue */
	status = init_queue(drv_data);
	if (status != 0) {
1343
		dev_err(dev, "problem initializing queue\n");
1344 1345
		goto out_error_queue_alloc;
	}
1346

1347 1348
	status = start_queue(drv_data);
	if (status != 0) {
1349
		dev_err(dev, "problem starting queue\n");
1350 1351 1352 1353 1354 1355 1356
		goto out_error_queue_alloc;
	}

	/* Register with the SPI framework */
	platform_set_drvdata(pdev, drv_data);
	status = spi_register_master(master);
	if (status != 0) {
1357
		dev_err(dev, "problem registering spi master\n");
1358 1359
		goto out_error_queue_alloc;
	}
1360

1361 1362
	status = peripheral_request_list(drv_data->pin_req, DRV_NAME);
	if (status != 0) {
1363 1364 1365 1366
		dev_err(&pdev->dev, ": Requesting Peripherals failed\n");
		goto out_error;
	}

1367
	dev_info(dev, "%s, Version %s, regs_base@%p, dma channel@%d\n",
1368 1369
		DRV_DESC, DRV_VERSION, drv_data->regs_base,
		drv_data->dma_channel);
1370 1371
	return status;

1372
out_error_queue_alloc:
1373
	destroy_queue(drv_data);
1374
out_error_no_dma_ch:
1375
	iounmap((void *) drv_data->regs_base);
1376 1377
out_error_ioremap:
out_error_get_res:
1378
out_error:
1379
	spi_master_put(master);
1380

1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
	return status;
}

/* stop hardware and remove the driver */
static int __devexit bfin5xx_spi_remove(struct platform_device *pdev)
{
	struct driver_data *drv_data = platform_get_drvdata(pdev);
	int status = 0;

	if (!drv_data)
		return 0;

	/* Remove the queue */
	status = destroy_queue(drv_data);
	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) {
1403 1404
		if (dma_channel_active(drv_data->dma_channel))
			free_dma(drv_data->dma_channel);
1405 1406 1407 1408 1409
	}

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

1410
	peripheral_free_list(drv_data->pin_req);
1411

1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
	/* Prevent double remove */
	platform_set_drvdata(pdev, NULL);

	return 0;
}

#ifdef CONFIG_PM
static int bfin5xx_spi_suspend(struct platform_device *pdev, pm_message_t state)
{
	struct driver_data *drv_data = platform_get_drvdata(pdev);
	int status = 0;

	status = stop_queue(drv_data);
	if (status != 0)
		return status;

	/* stop hardware */
	bfin_spi_disable(drv_data);

	return 0;
}

static int bfin5xx_spi_resume(struct platform_device *pdev)
{
	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 */
	status = start_queue(drv_data);
	if (status != 0) {
		dev_err(&pdev->dev, "problem starting queue (%d)\n", status);
		return status;
	}

	return 0;
}
#else
#define bfin5xx_spi_suspend NULL
#define bfin5xx_spi_resume NULL
#endif				/* CONFIG_PM */

1456
MODULE_ALIAS("bfin-spi-master");	/* for platform bus hotplug */
1457
static struct platform_driver bfin5xx_spi_driver = {
1458
	.driver	= {
1459
		.name	= DRV_NAME,
1460 1461 1462 1463 1464
		.owner	= THIS_MODULE,
	},
	.suspend	= bfin5xx_spi_suspend,
	.resume		= bfin5xx_spi_resume,
	.remove		= __devexit_p(bfin5xx_spi_remove),
1465 1466 1467 1468
};

static int __init bfin5xx_spi_init(void)
{
1469
	return platform_driver_probe(&bfin5xx_spi_driver, bfin5xx_spi_probe);
1470 1471 1472 1473 1474 1475 1476 1477
}
module_init(bfin5xx_spi_init);

static void __exit bfin5xx_spi_exit(void)
{
	platform_driver_unregister(&bfin5xx_spi_driver);
}
module_exit(bfin5xx_spi_exit);