at91_mci.c 30.5 KB
Newer Older
1
/*
P
Pierre Ossman 已提交
2
 *  linux/drivers/mmc/host/at91_mci.c - ATMEL AT91 MCI Driver
3 4 5 6 7 8 9 10 11 12 13
 *
 *  Copyright (C) 2005 Cougar Creek Computing Devices Ltd, All Rights Reserved
 *
 *  Copyright (C) 2006 Malcolm Noyes
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

/*
A
Andrew Victor 已提交
14
   This is the AT91 MCI driver that has been tested with both MMC cards
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
   and SD-cards.  Boards that support write protect are now supported.
   The CCAT91SBC001 board does not support SD cards.

   The three entry points are at91_mci_request, at91_mci_set_ios
   and at91_mci_get_ro.

   SET IOS
     This configures the device to put it into the correct mode and clock speed
     required.

   MCI REQUEST
     MCI request processes the commands sent in the mmc_request structure. This
     can consist of a processing command and a stop command in the case of
     multiple block transfers.

     There are three main types of request, commands, reads and writes.

     Commands are straight forward. The command is submitted to the controller and
     the request function returns. When the controller generates an interrupt to indicate
     the command is finished, the response to the command are read and the mmc_request_done
     function called to end the request.

     Reads and writes work in a similar manner to normal commands but involve the PDC (DMA)
     controller to manage the transfers.

     A read is done from the controller directly to the scatterlist passed in from the request.
A
Andrew Victor 已提交
41 42
     Due to a bug in the AT91RM9200 controller, when a read is completed, all the words are byte
     swapped in the scatterlist buffers.  AT91SAM926x are not affected by this bug.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

     The sequence of read interrupts is: ENDRX, RXBUFF, CMDRDY

     A write is slightly different in that the bytes to write are read from the scatterlist
     into a dma memory buffer (this is in case the source buffer should be read only). The
     entire write buffer is then done from this single dma memory buffer.

     The sequence of write interrupts is: ENDTX, TXBUFE, NOTBUSY, CMDRDY

   GET RO
     Gets the status of the write protect pin, if available.
*/

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/platform_device.h>
#include <linux/interrupt.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
#include <linux/err.h>
#include <linux/dma-mapping.h>
#include <linux/clk.h>
67
#include <linux/atmel_pdc.h>
68
#include <linux/gfp.h>
69
#include <linux/highmem.h>
70 71

#include <linux/mmc/host.h>
72
#include <linux/mmc/sdio.h>
73 74 75

#include <asm/io.h>
#include <asm/irq.h>
76 77
#include <asm/gpio.h>

78 79 80
#include <mach/board.h>
#include <mach/cpu.h>
#include <mach/at91_mci.h>
81 82 83

#define DRIVER_NAME "at91_mci"

84 85 86 87 88 89 90 91 92 93 94
static inline int at91mci_is_mci1rev2xx(void)
{
	return (   cpu_is_at91sam9260()
		|| cpu_is_at91sam9263()
		|| cpu_is_at91cap9()
		|| cpu_is_at91sam9rl()
		|| cpu_is_at91sam9g10()
		|| cpu_is_at91sam9g20()
		);
}

95 96
#define FL_SENT_COMMAND	(1 << 0)
#define FL_SENT_STOP	(1 << 1)
97

98 99
#define AT91_MCI_ERRORS	(AT91_MCI_RINDE | AT91_MCI_RDIRE | AT91_MCI_RCRCE	\
		| AT91_MCI_RENDE | AT91_MCI_RTOE | AT91_MCI_DCRCE		\
100
		| AT91_MCI_DTOE | AT91_MCI_OVRE | AT91_MCI_UNRE)
101

A
Andrew Victor 已提交
102 103
#define at91_mci_read(host, reg)	__raw_readl((host)->baseaddr + (reg))
#define at91_mci_write(host, reg, val)	__raw_writel((val), (host)->baseaddr + (reg))
104

105 106 107 108
#define MCI_BLKSIZE 		512
#define MCI_MAXBLKSIZE 		4095
#define MCI_BLKATONCE 		256
#define MCI_BUFSIZE 		(MCI_BLKSIZE * MCI_BLKATONCE)
109 110 111 112 113 114 115 116 117 118

/*
 * Low level type for this driver
 */
struct at91mci_host
{
	struct mmc_host *mmc;
	struct mmc_command *cmd;
	struct mmc_request *request;

A
Andrew Victor 已提交
119
	void __iomem *baseaddr;
120
	int irq;
A
Andrew Victor 已提交
121

122 123 124
	struct at91_mmc_data *board;
	int present;

125 126
	struct clk *mci_clk;

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
	/*
	 * Flag indicating when the command has been sent. This is used to
	 * work out whether or not to send the stop
	 */
	unsigned int flags;
	/* flag for current bus settings */
	u32 bus_mode;

	/* DMA buffer used for transmitting */
	unsigned int* buffer;
	dma_addr_t physical_address;
	unsigned int total_length;

	/* Latest in the scatterlist that has been enabled for transfer, but not freed */
	int in_use_index;

	/* Latest in the scatterlist that has been enabled for transfer */
	int transfer_index;
M
Marc Pignat 已提交
145 146 147

	/* Timer for timeouts */
	struct timer_list timer;
148 149
};

M
Marc Pignat 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
/*
 * Reset the controller and restore most of the state
 */
static void at91_reset_host(struct at91mci_host *host)
{
	unsigned long flags;
	u32 mr;
	u32 sdcr;
	u32 dtor;
	u32 imr;

	local_irq_save(flags);
	imr = at91_mci_read(host, AT91_MCI_IMR);

	at91_mci_write(host, AT91_MCI_IDR, 0xffffffff);

	/* save current state */
	mr = at91_mci_read(host, AT91_MCI_MR) & 0x7fff;
	sdcr = at91_mci_read(host, AT91_MCI_SDCR);
	dtor = at91_mci_read(host, AT91_MCI_DTOR);

	/* reset the controller */
	at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIDIS | AT91_MCI_SWRST);

	/* restore state */
	at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIEN);
	at91_mci_write(host, AT91_MCI_MR, mr);
	at91_mci_write(host, AT91_MCI_SDCR, sdcr);
	at91_mci_write(host, AT91_MCI_DTOR, dtor);
	at91_mci_write(host, AT91_MCI_IER, imr);

	/* make sure sdio interrupts will fire */
	at91_mci_read(host, AT91_MCI_SR);

	local_irq_restore(flags);
}

M
Marc Pignat 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
static void at91_timeout_timer(unsigned long data)
{
	struct at91mci_host *host;

	host = (struct at91mci_host *)data;

	if (host->request) {
		dev_err(host->mmc->parent, "Timeout waiting end of packet\n");

		if (host->cmd && host->cmd->data) {
			host->cmd->data->error = -ETIMEDOUT;
		} else {
			if (host->cmd)
				host->cmd->error = -ETIMEDOUT;
			else
				host->request->cmd->error = -ETIMEDOUT;
		}

M
Marc Pignat 已提交
205
		at91_reset_host(host);
M
Marc Pignat 已提交
206 207 208 209
		mmc_request_done(host->mmc, host->request);
	}
}

210 211 212
/*
 * Copy from sg to a dma block - used for transfers
 */
N
Nicolas Ferre 已提交
213
static inline void at91_mci_sg_to_dma(struct at91mci_host *host, struct mmc_data *data)
214 215 216 217
{
	unsigned int len, i, size;
	unsigned *dmabuf = host->buffer;

218
	size = data->blksz * data->blocks;
219 220
	len = data->sg_len;

221 222
	/* MCI1 rev2xx Data Write Operation and number of bytes erratum */
	if (at91mci_is_mci1rev2xx())
223 224 225
		if (host->total_length == 12)
			memset(dmabuf, 0, 12);

226 227 228 229 230 231 232 233 234 235 236 237
	/*
	 * Just loop through all entries. Size might not
	 * be the entire list though so make sure that
	 * we do not transfer too much.
	 */
	for (i = 0; i < len; i++) {
		struct scatterlist *sg;
		int amount;
		unsigned int *sgbuffer;

		sg = &data->sg[i];

J
Jens Axboe 已提交
238
		sgbuffer = kmap_atomic(sg_page(sg), KM_BIO_SRC_IRQ) + sg->offset;
239 240 241
		amount = min(size, sg->length);
		size -= amount;

A
Andrew Victor 已提交
242 243 244 245 246
		if (cpu_is_at91rm9200()) {	/* AT91RM9200 errata */
			int index;

			for (index = 0; index < (amount / 4); index++)
				*dmabuf++ = swab32(sgbuffer[index]);
247
		} else {
248 249 250 251
			char *tmpv = (char *)dmabuf;
			memcpy(tmpv, sgbuffer, amount);
			tmpv += amount;
			dmabuf = (unsigned *)tmpv;
252
		}
253

254
		kunmap_atomic(sgbuffer, KM_BIO_SRC_IRQ);
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269

		if (size == 0)
			break;
	}

	/*
	 * Check that we didn't get a request to transfer
	 * more data than can fit into the SG list.
	 */
	BUG_ON(size != 0);
}

/*
 * Handle after a dma read
 */
N
Nicolas Ferre 已提交
270
static void at91_mci_post_dma_read(struct at91mci_host *host)
271 272 273
{
	struct mmc_command *cmd;
	struct mmc_data *data;
274 275
	unsigned int len, i, size;
	unsigned *dmabuf = host->buffer;
276

277
	pr_debug("post dma read\n");
278 279 280

	cmd = host->cmd;
	if (!cmd) {
281
		pr_debug("no command\n");
282 283 284 285 286
		return;
	}

	data = cmd->data;
	if (!data) {
287
		pr_debug("no data\n");
288 289 290
		return;
	}

291 292
	size = data->blksz * data->blocks;
	len = data->sg_len;
293

294 295
	at91_mci_write(host, AT91_MCI_IDR, AT91_MCI_ENDRX);
	at91_mci_write(host, AT91_MCI_IER, AT91_MCI_RXBUFF);
296

297 298 299 300
	for (i = 0; i < len; i++) {
		struct scatterlist *sg;
		int amount;
		unsigned int *sgbuffer;
301

302
		sg = &data->sg[i];
303

304 305 306
		sgbuffer = kmap_atomic(sg_page(sg), KM_BIO_SRC_IRQ) + sg->offset;
		amount = min(size, sg->length);
		size -= amount;
307

A
Andrew Victor 已提交
308 309
		if (cpu_is_at91rm9200()) {	/* AT91RM9200 errata */
			int index;
310 311 312 313 314 315 316
			for (index = 0; index < (amount / 4); index++)
				sgbuffer[index] = swab32(*dmabuf++);
		} else {
			char *tmpv = (char *)dmabuf;
			memcpy(sgbuffer, tmpv, amount);
			tmpv += amount;
			dmabuf = (unsigned *)tmpv;
317
		}
A
Andrew Victor 已提交
318

319
		flush_kernel_dcache_page(sg_page(sg));
320
		kunmap_atomic(sgbuffer, KM_BIO_SRC_IRQ);
321 322 323
		data->bytes_xfered += amount;
		if (size == 0)
			break;
324 325
	}

326
	pr_debug("post dma read done\n");
327 328 329 330 331 332 333 334 335 336
}

/*
 * Handle transmitted data
 */
static void at91_mci_handle_transmitted(struct at91mci_host *host)
{
	struct mmc_command *cmd;
	struct mmc_data *data;

337
	pr_debug("Handling the transmit\n");
338 339

	/* Disable the transfer */
340
	at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
341 342

	/* Now wait for cmd ready */
A
Andrew Victor 已提交
343
	at91_mci_write(host, AT91_MCI_IDR, AT91_MCI_TXBUFE);
344 345 346 347 348 349 350

	cmd = host->cmd;
	if (!cmd) return;

	data = cmd->data;
	if (!data) return;

P
Pierre Ossman 已提交
351
	if (cmd->data->blocks > 1) {
352 353 354 355
		pr_debug("multiple write : wait for BLKE...\n");
		at91_mci_write(host, AT91_MCI_IER, AT91_MCI_BLKE);
	} else
		at91_mci_write(host, AT91_MCI_IER, AT91_MCI_NOTBUSY);
356 357 358 359 360 361 362 363
}

/*
 * Update bytes tranfered count during a write operation
 */
static void at91_mci_update_bytes_xfered(struct at91mci_host *host)
{
	struct mmc_data *data;
364

365 366 367 368 369 370 371 372 373 374 375
	/* always deal with the effective request (and not the current cmd) */

	if (host->request->cmd && host->request->cmd->error != 0)
		return;

	if (host->request->data) {
		data = host->request->data;
		if (data->flags & MMC_DATA_WRITE) {
			/* card is in IDLE mode now */
			pr_debug("-> bytes_xfered %d, total_length = %d\n",
				data->bytes_xfered, host->total_length);
376
			data->bytes_xfered = data->blksz * data->blocks;
377 378
		}
	}
379 380
}

381

382 383 384 385 386 387 388 389 390 391 392 393
/*Handle after command sent ready*/
static int at91_mci_handle_cmdrdy(struct at91mci_host *host)
{
	if (!host->cmd)
		return 1;
	else if (!host->cmd->data) {
		if (host->flags & FL_SENT_STOP) {
			/*After multi block write, we must wait for NOTBUSY*/
			at91_mci_write(host, AT91_MCI_IER, AT91_MCI_NOTBUSY);
		} else return 1;
	} else if (host->cmd->data->flags & MMC_DATA_WRITE) {
		/*After sendding multi-block-write command, start DMA transfer*/
394
		at91_mci_write(host, AT91_MCI_IER, AT91_MCI_TXBUFE | AT91_MCI_BLKE);
395 396 397 398 399 400 401 402
		at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
	}

	/* command not completed, have to wait */
	return 0;
}


403 404 405
/*
 * Enable the controller
 */
A
Andrew Victor 已提交
406
static void at91_mci_enable(struct at91mci_host *host)
407
{
408 409
	unsigned int mr;

A
Andrew Victor 已提交
410
	at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIEN);
A
Andrew Victor 已提交
411
	at91_mci_write(host, AT91_MCI_IDR, 0xffffffff);
A
Andrew Victor 已提交
412
	at91_mci_write(host, AT91_MCI_DTOR, AT91_MCI_DTOMUL_1M | AT91_MCI_DTOCYC);
413 414
	mr = AT91_MCI_PDCMODE | 0x34a;

415
	if (at91mci_is_mci1rev2xx())
416 417 418
		mr |= AT91_MCI_RDPROOF | AT91_MCI_WRPROOF;

	at91_mci_write(host, AT91_MCI_MR, mr);
A
Andrew Victor 已提交
419 420 421

	/* use Slot A or B (only one at same time) */
	at91_mci_write(host, AT91_MCI_SDCR, host->board->slot_b);
422 423 424 425 426
}

/*
 * Disable the controller
 */
A
Andrew Victor 已提交
427
static void at91_mci_disable(struct at91mci_host *host)
428
{
A
Andrew Victor 已提交
429
	at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIDIS | AT91_MCI_SWRST);
430 431 432 433 434
}

/*
 * Send a command
 */
435
static void at91_mci_send_command(struct at91mci_host *host, struct mmc_command *cmd)
436 437 438 439 440 441 442 443 444 445
{
	unsigned int cmdr, mr;
	unsigned int block_length;
	struct mmc_data *data = cmd->data;

	unsigned int blocks;
	unsigned int ier = 0;

	host->cmd = cmd;

446
	/* Needed for leaving busy state before CMD1 */
A
Andrew Victor 已提交
447
	if ((at91_mci_read(host, AT91_MCI_SR) & AT91_MCI_RTOE) && (cmd->opcode == 1)) {
448
		pr_debug("Clearing timeout\n");
A
Andrew Victor 已提交
449 450 451
		at91_mci_write(host, AT91_MCI_ARGR, 0);
		at91_mci_write(host, AT91_MCI_CMDR, AT91_MCI_OPDCMD);
		while (!(at91_mci_read(host, AT91_MCI_SR) & AT91_MCI_CMDRDY)) {
452
			/* spin */
A
Andrew Victor 已提交
453
			pr_debug("Clearing: SR = %08X\n", at91_mci_read(host, AT91_MCI_SR));
454 455
		}
	}
456

457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
	cmdr = cmd->opcode;

	if (mmc_resp_type(cmd) == MMC_RSP_NONE)
		cmdr |= AT91_MCI_RSPTYP_NONE;
	else {
		/* if a response is expected then allow maximum response latancy */
		cmdr |= AT91_MCI_MAXLAT;
		/* set 136 bit response for R2, 48 bit response otherwise */
		if (mmc_resp_type(cmd) == MMC_RSP_R2)
			cmdr |= AT91_MCI_RSPTYP_136;
		else
			cmdr |= AT91_MCI_RSPTYP_48;
	}

	if (data) {
472

473 474 475 476 477 478 479 480 481 482 483 484 485
		if (cpu_is_at91rm9200() || cpu_is_at91sam9261()) {
			if (data->blksz & 0x3) {
				pr_debug("Unsupported block size\n");
				cmd->error = -EINVAL;
				mmc_request_done(host->mmc, host->request);
				return;
			}
			if (data->flags & MMC_DATA_STREAM) {
				pr_debug("Stream commands not supported\n");
				cmd->error = -EINVAL;
				mmc_request_done(host->mmc, host->request);
				return;
			}
486 487
		}

488
		block_length = data->blksz;
489 490 491 492 493 494 495 496
		blocks = data->blocks;

		/* always set data start - also set direction flag for read */
		if (data->flags & MMC_DATA_READ)
			cmdr |= (AT91_MCI_TRDIR | AT91_MCI_TRCMD_START);
		else if (data->flags & MMC_DATA_WRITE)
			cmdr |= AT91_MCI_TRCMD_START;

497 498 499 500 501 502 503 504
		if (cmd->opcode == SD_IO_RW_EXTENDED) {
			cmdr |= AT91_MCI_TRTYP_SDIO_BLOCK;
		} else {
			if (data->flags & MMC_DATA_STREAM)
				cmdr |= AT91_MCI_TRTYP_STREAM;
			if (data->blocks > 1)
				cmdr |= AT91_MCI_TRTYP_MULTIPLE;
		}
505 506 507 508 509 510
	}
	else {
		block_length = 0;
		blocks = 0;
	}

511
	if (host->flags & FL_SENT_STOP)
512 513 514 515 516 517 518 519
		cmdr |= AT91_MCI_TRCMD_STOP;

	if (host->bus_mode == MMC_BUSMODE_OPENDRAIN)
		cmdr |= AT91_MCI_OPDCMD;

	/*
	 * Set the arguments and send the command
	 */
A
Andrew Victor 已提交
520
	pr_debug("Sending command %d as %08X, arg = %08X, blocks = %d, length = %d (MR = %08X)\n",
A
Andrew Victor 已提交
521
		cmd->opcode, cmdr, cmd->arg, blocks, block_length, at91_mci_read(host, AT91_MCI_MR));
522 523

	if (!data) {
524 525 526 527 528 529 530 531 532
		at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS | ATMEL_PDC_RXTDIS);
		at91_mci_write(host, ATMEL_PDC_RPR, 0);
		at91_mci_write(host, ATMEL_PDC_RCR, 0);
		at91_mci_write(host, ATMEL_PDC_RNPR, 0);
		at91_mci_write(host, ATMEL_PDC_RNCR, 0);
		at91_mci_write(host, ATMEL_PDC_TPR, 0);
		at91_mci_write(host, ATMEL_PDC_TCR, 0);
		at91_mci_write(host, ATMEL_PDC_TNPR, 0);
		at91_mci_write(host, ATMEL_PDC_TNCR, 0);
533 534 535
		ier = AT91_MCI_CMDRDY;
	} else {
		/* zero block length and PDC mode */
536
		mr = at91_mci_read(host, AT91_MCI_MR) & 0x5fff;
537 538 539 540
		mr |= (data->blksz & 0x3) ? AT91_MCI_PDCFBYTE : 0;
		mr |= (block_length << 16);
		mr |= AT91_MCI_PDCMODE;
		at91_mci_write(host, AT91_MCI_MR, mr);
A
Andrew Victor 已提交
541

542
		if (!(cpu_is_at91rm9200() || cpu_is_at91sam9261()))
M
Marc Pignat 已提交
543 544 545 546
			at91_mci_write(host, AT91_MCI_BLKR,
				AT91_MCI_BLKR_BCNT(blocks) |
				AT91_MCI_BLKR_BLKLEN(block_length));

547 548 549 550
		/*
		 * Disable the PDC controller
		 */
		at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
551

552 553 554 555 556 557 558 559 560 561
		if (cmdr & AT91_MCI_TRCMD_START) {
			data->bytes_xfered = 0;
			host->transfer_index = 0;
			host->in_use_index = 0;
			if (cmdr & AT91_MCI_TRDIR) {
				/*
				 * Handle a read
				 */
				host->total_length = 0;

562 563 564 565 566 567
				at91_mci_write(host, ATMEL_PDC_RPR, host->physical_address);
				at91_mci_write(host, ATMEL_PDC_RCR, (data->blksz & 0x3) ?
					(blocks * block_length) : (blocks * block_length) / 4);
				at91_mci_write(host, ATMEL_PDC_RNPR, 0);
				at91_mci_write(host, ATMEL_PDC_RNCR, 0);

568 569 570 571 572 573 574
				ier = AT91_MCI_ENDRX /* | AT91_MCI_RXBUFF */;
			}
			else {
				/*
				 * Handle a write
				 */
				host->total_length = block_length * blocks;
575
				/*
576
				 * MCI1 rev2xx Data Write Operation and
577 578
				 * number of bytes erratum
				 */
579
				if (at91mci_is_mci1rev2xx())
580 581
					if (host->total_length < 12)
						host->total_length = 12;
582

583 584 585 586 587
				at91_mci_sg_to_dma(host, data);

				pr_debug("Transmitting %d bytes\n", host->total_length);

				at91_mci_write(host, ATMEL_PDC_TPR, host->physical_address);
588 589 590
				at91_mci_write(host, ATMEL_PDC_TCR, (data->blksz & 0x3) ?
						host->total_length : host->total_length / 4);

591 592
				ier = AT91_MCI_CMDRDY;
			}
593 594 595 596 597 598 599 600
		}
	}

	/*
	 * Send the command and then enable the PDC - not the other way round as
	 * the data sheet says
	 */

A
Andrew Victor 已提交
601 602
	at91_mci_write(host, AT91_MCI_ARGR, cmd->arg);
	at91_mci_write(host, AT91_MCI_CMDR, cmdr);
603 604 605

	if (cmdr & AT91_MCI_TRCMD_START) {
		if (cmdr & AT91_MCI_TRDIR)
606
			at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
607 608
	}

609
	/* Enable selected interrupts */
610
	at91_mci_write(host, AT91_MCI_IER, AT91_MCI_ERRORS | ier);
611 612 613 614 615
}

/*
 * Process the next step in the request
 */
N
Nicolas Ferre 已提交
616
static void at91_mci_process_next(struct at91mci_host *host)
617 618 619
{
	if (!(host->flags & FL_SENT_COMMAND)) {
		host->flags |= FL_SENT_COMMAND;
620
		at91_mci_send_command(host, host->request->cmd);
621 622 623
	}
	else if ((!(host->flags & FL_SENT_STOP)) && host->request->stop) {
		host->flags |= FL_SENT_STOP;
624
		at91_mci_send_command(host, host->request->stop);
M
Marc Pignat 已提交
625 626
	} else {
		del_timer(&host->timer);
M
Marc Pignat 已提交
627 628 629 630 631
		/* the at91rm9200 mci controller hangs after some transfers,
		 * and the workaround is to reset it after each transfer.
		 */
		if (cpu_is_at91rm9200())
			at91_reset_host(host);
632
		mmc_request_done(host->mmc, host->request);
M
Marc Pignat 已提交
633
	}
634 635 636 637 638
}

/*
 * Handle a command that has been completed
 */
639
static void at91_mci_completed_command(struct at91mci_host *host, unsigned int status)
640 641
{
	struct mmc_command *cmd = host->cmd;
642
	struct mmc_data *data = cmd->data;
643

644
	at91_mci_write(host, AT91_MCI_IDR, 0xffffffff & ~(AT91_MCI_SDIOIRQA | AT91_MCI_SDIOIRQB));
645

A
Andrew Victor 已提交
646 647 648 649
	cmd->resp[0] = at91_mci_read(host, AT91_MCI_RSPR(0));
	cmd->resp[1] = at91_mci_read(host, AT91_MCI_RSPR(1));
	cmd->resp[2] = at91_mci_read(host, AT91_MCI_RSPR(2));
	cmd->resp[3] = at91_mci_read(host, AT91_MCI_RSPR(3));
650

651 652 653
	pr_debug("Status = %08X/%08x [%08X %08X %08X %08X]\n",
		 status, at91_mci_read(host, AT91_MCI_SR),
		 cmd->resp[0], cmd->resp[1], cmd->resp[2], cmd->resp[3]);
654

655
	if (status & AT91_MCI_ERRORS) {
656
		if ((status & AT91_MCI_RCRCE) && !(mmc_resp_type(cmd) & MMC_RSP_CRC)) {
P
Pierre Ossman 已提交
657
			cmd->error = 0;
658 659
		}
		else {
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
			if (status & (AT91_MCI_DTOE | AT91_MCI_DCRCE)) {
				if (data) {
					if (status & AT91_MCI_DTOE)
						data->error = -ETIMEDOUT;
					else if (status & AT91_MCI_DCRCE)
						data->error = -EILSEQ;
				}
			} else {
				if (status & AT91_MCI_RTOE)
					cmd->error = -ETIMEDOUT;
				else if (status & AT91_MCI_RCRCE)
					cmd->error = -EILSEQ;
				else
					cmd->error = -EIO;
			}
675

676 677 678
			pr_debug("Error detected and set to %d/%d (cmd = %d, retries = %d)\n",
				cmd->error, data ? data->error : 0,
				 cmd->opcode, cmd->retries);
679 680 681
		}
	}
	else
P
Pierre Ossman 已提交
682
		cmd->error = 0;
683

N
Nicolas Ferre 已提交
684
	at91_mci_process_next(host);
685 686 687 688 689 690 691 692 693 694 695
}

/*
 * Handle an MMC request
 */
static void at91_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
{
	struct at91mci_host *host = mmc_priv(mmc);
	host->request = mrq;
	host->flags = 0;

696 697
	/* more than 1s timeout needed with slow SD cards */
	mod_timer(&host->timer, jiffies +  msecs_to_jiffies(2000));
M
Marc Pignat 已提交
698

N
Nicolas Ferre 已提交
699
	at91_mci_process_next(host);
700 701 702 703 704 705 706 707 708
}

/*
 * Set the IOS
 */
static void at91_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
{
	int clkdiv;
	struct at91mci_host *host = mmc_priv(mmc);
709
	unsigned long at91_master_clock = clk_get_rate(host->mci_clk);
710

711
	host->bus_mode = ios->bus_mode;
712 713 714

	if (ios->clock == 0) {
		/* Disable the MCI controller */
A
Andrew Victor 已提交
715
		at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIDIS);
716 717 718 719
		clkdiv = 0;
	}
	else {
		/* Enable the MCI controller */
A
Andrew Victor 已提交
720
		at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIEN);
721 722 723 724 725 726

		if ((at91_master_clock % (ios->clock * 2)) == 0)
			clkdiv = ((at91_master_clock / ios->clock) / 2) - 1;
		else
			clkdiv = (at91_master_clock / ios->clock) / 2;

727
		pr_debug("clkdiv = %d. mcck = %ld\n", clkdiv,
728 729 730
			at91_master_clock / (2 * (clkdiv + 1)));
	}
	if (ios->bus_width == MMC_BUS_WIDTH_4 && host->board->wire4) {
731
		pr_debug("MMC: Setting controller bus width to 4\n");
A
Andrew Victor 已提交
732
		at91_mci_write(host, AT91_MCI_SDCR, at91_mci_read(host, AT91_MCI_SDCR) | AT91_MCI_SDCBUS);
733 734
	}
	else {
735
		pr_debug("MMC: Setting controller bus width to 1\n");
A
Andrew Victor 已提交
736
		at91_mci_write(host, AT91_MCI_SDCR, at91_mci_read(host, AT91_MCI_SDCR) & ~AT91_MCI_SDCBUS);
737 738 739
	}

	/* Set the clock divider */
A
Andrew Victor 已提交
740
	at91_mci_write(host, AT91_MCI_MR, (at91_mci_read(host, AT91_MCI_MR) & ~AT91_MCI_CLKDIV) | clkdiv);
741 742

	/* maybe switch power to the card */
743
	if (host->board->vcc_pin) {
744 745
		switch (ios->power_mode) {
			case MMC_POWER_OFF:
746
				gpio_set_value(host->board->vcc_pin, 0);
747 748
				break;
			case MMC_POWER_UP:
749
				gpio_set_value(host->board->vcc_pin, 1);
750
				break;
M
Marc Pignat 已提交
751 752 753 754
			case MMC_POWER_ON:
				break;
			default:
				WARN_ON(1);
755 756 757 758 759 760 761
		}
	}
}

/*
 * Handle an interrupt
 */
762
static irqreturn_t at91_mci_irq(int irq, void *devid)
763 764 765
{
	struct at91mci_host *host = devid;
	int completed = 0;
766
	unsigned int int_status, int_mask;
767

A
Andrew Victor 已提交
768
	int_status = at91_mci_read(host, AT91_MCI_SR);
769
	int_mask = at91_mci_read(host, AT91_MCI_IMR);
770

A
Andrew Victor 已提交
771
	pr_debug("MCI irq: status = %08X, %08X, %08X\n", int_status, int_mask,
772
		int_status & int_mask);
773

774 775 776
	int_status = int_status & int_mask;

	if (int_status & AT91_MCI_ERRORS) {
777
		completed = 1;
778

779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
		if (int_status & AT91_MCI_UNRE)
			pr_debug("MMC: Underrun error\n");
		if (int_status & AT91_MCI_OVRE)
			pr_debug("MMC: Overrun error\n");
		if (int_status & AT91_MCI_DTOE)
			pr_debug("MMC: Data timeout\n");
		if (int_status & AT91_MCI_DCRCE)
			pr_debug("MMC: CRC error in data\n");
		if (int_status & AT91_MCI_RTOE)
			pr_debug("MMC: Response timeout\n");
		if (int_status & AT91_MCI_RENDE)
			pr_debug("MMC: Response end bit error\n");
		if (int_status & AT91_MCI_RCRCE)
			pr_debug("MMC: Response CRC error\n");
		if (int_status & AT91_MCI_RDIRE)
			pr_debug("MMC: Response direction error\n");
		if (int_status & AT91_MCI_RINDE)
			pr_debug("MMC: Response index error\n");
	} else {
		/* Only continue processing if no errors */
799 800

		if (int_status & AT91_MCI_TXBUFE) {
801
			pr_debug("TX buffer empty\n");
802 803 804
			at91_mci_handle_transmitted(host);
		}

805 806 807 808 809
		if (int_status & AT91_MCI_ENDRX) {
			pr_debug("ENDRX\n");
			at91_mci_post_dma_read(host);
		}

810
		if (int_status & AT91_MCI_RXBUFF) {
811
			pr_debug("RX buffer full\n");
812 813 814
			at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
			at91_mci_write(host, AT91_MCI_IDR, AT91_MCI_RXBUFF | AT91_MCI_ENDRX);
			completed = 1;
815 816
		}

817
		if (int_status & AT91_MCI_ENDTX)
818
			pr_debug("Transmit has ended\n");
819 820

		if (int_status & AT91_MCI_NOTBUSY) {
821
			pr_debug("Card is ready\n");
822
			at91_mci_update_bytes_xfered(host);
823
			completed = 1;
824 825
		}

826
		if (int_status & AT91_MCI_DTIP)
827
			pr_debug("Data transfer in progress\n");
828

829
		if (int_status & AT91_MCI_BLKE) {
830
			pr_debug("Block transfer has ended\n");
831 832 833 834 835 836 837
			if (host->request->data && host->request->data->blocks > 1) {
				/* multi block write : complete multi write
				 * command and send stop */
				completed = 1;
			} else {
				at91_mci_write(host, AT91_MCI_IER, AT91_MCI_NOTBUSY);
			}
838
		}
839

840 841 842 843 844 845
		if (int_status & AT91_MCI_SDIOIRQA)
			mmc_signal_sdio_irq(host->mmc);

		if (int_status & AT91_MCI_SDIOIRQB)
			mmc_signal_sdio_irq(host->mmc);

846
		if (int_status & AT91_MCI_TXRDY)
847
			pr_debug("Ready to transmit\n");
848

849
		if (int_status & AT91_MCI_RXRDY)
850
			pr_debug("Ready to receive\n");
851 852

		if (int_status & AT91_MCI_CMDRDY) {
853
			pr_debug("Command ready\n");
854
			completed = at91_mci_handle_cmdrdy(host);
855 856 857 858
		}
	}

	if (completed) {
859
		pr_debug("Completed command\n");
860
		at91_mci_write(host, AT91_MCI_IDR, 0xffffffff & ~(AT91_MCI_SDIOIRQA | AT91_MCI_SDIOIRQB));
861
		at91_mci_completed_command(host, int_status);
862
	} else
863
		at91_mci_write(host, AT91_MCI_IDR, int_status & ~(AT91_MCI_SDIOIRQA | AT91_MCI_SDIOIRQB));
864 865 866 867

	return IRQ_HANDLED;
}

868
static irqreturn_t at91_mmc_det_irq(int irq, void *_host)
869 870
{
	struct at91mci_host *host = _host;
871
	int present = !gpio_get_value(irq_to_gpio(irq));
872 873 874 875 876 877 878

	/*
	 * we expect this irq on both insert and remove,
	 * and use a short delay to debounce.
	 */
	if (present != host->present) {
		host->present = present;
879
		pr_debug("%s: card %s\n", mmc_hostname(host->mmc),
880 881
			present ? "insert" : "remove");
		if (!present) {
882
			pr_debug("****** Resetting SD-card bus width ******\n");
A
Andrew Victor 已提交
883
			at91_mci_write(host, AT91_MCI_SDCR, at91_mci_read(host, AT91_MCI_SDCR) & ~AT91_MCI_SDCBUS);
884
		}
885 886
		/* 0.5s needed because of early card detect switch firing */
		mmc_detect_change(host->mmc, msecs_to_jiffies(500));
887 888 889 890
	}
	return IRQ_HANDLED;
}

D
David Brownell 已提交
891
static int at91_mci_get_ro(struct mmc_host *mmc)
892 893 894
{
	struct at91mci_host *host = mmc_priv(mmc);

895 896 897 898 899 900 901
	if (host->board->wp_pin)
		return !!gpio_get_value(host->board->wp_pin);
	/*
	 * Board doesn't support read only detection; let the mmc core
	 * decide what to do.
	 */
	return -ENOSYS;
902 903
}

904 905 906 907 908 909 910 911 912 913 914
static void at91_mci_enable_sdio_irq(struct mmc_host *mmc, int enable)
{
	struct at91mci_host *host = mmc_priv(mmc);

	pr_debug("%s: sdio_irq %c : %s\n", mmc_hostname(host->mmc),
		host->board->slot_b ? 'B':'A', enable ? "enable" : "disable");
	at91_mci_write(host, enable ? AT91_MCI_IER : AT91_MCI_IDR,
		host->board->slot_b ? AT91_MCI_SDIOIRQB : AT91_MCI_SDIOIRQA);

}

915
static const struct mmc_host_ops at91_mci_ops = {
916 917 918
	.request	= at91_mci_request,
	.set_ios	= at91_mci_set_ios,
	.get_ro		= at91_mci_get_ro,
919
	.enable_sdio_irq = at91_mci_enable_sdio_irq,
920 921 922 923 924
};

/*
 * Probe for the device
 */
D
David Brownell 已提交
925
static int __init at91_mci_probe(struct platform_device *pdev)
926 927 928
{
	struct mmc_host *mmc;
	struct at91mci_host *host;
929
	struct resource *res;
930 931
	int ret;

932 933 934 935
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		return -ENXIO;

936
	if (!request_mem_region(res->start, resource_size(res), DRIVER_NAME))
937 938
		return -EBUSY;

939 940
	mmc = mmc_alloc_host(sizeof(struct at91mci_host), &pdev->dev);
	if (!mmc) {
941 942 943
		ret = -ENOMEM;
		dev_dbg(&pdev->dev, "couldn't allocate mmc host\n");
		goto fail6;
944 945 946 947 948 949
	}

	mmc->ops = &at91_mci_ops;
	mmc->f_min = 375000;
	mmc->f_max = 25000000;
	mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
950
	mmc->caps = 0;
951

952 953 954
	mmc->max_blk_size  = MCI_MAXBLKSIZE;
	mmc->max_blk_count = MCI_BLKATONCE;
	mmc->max_req_size  = MCI_BUFSIZE;
955
	mmc->max_segs      = MCI_BLKATONCE;
956
	mmc->max_seg_size  = MCI_BUFSIZE;
957

958 959 960 961 962
	host = mmc_priv(mmc);
	host->mmc = mmc;
	host->bus_mode = 0;
	host->board = pdev->dev.platform_data;
	if (host->board->wire4) {
963
		if (at91mci_is_mci1rev2xx())
964 965
			mmc->caps |= MMC_CAP_4_BIT_DATA;
		else
966
			dev_warn(&pdev->dev, "4 wire bus mode not supported"
967
				" - using 1 wire\n");
968 969
	}

970 971 972 973 974 975 976 977
	host->buffer = dma_alloc_coherent(&pdev->dev, MCI_BUFSIZE,
					&host->physical_address, GFP_KERNEL);
	if (!host->buffer) {
		ret = -ENOMEM;
		dev_err(&pdev->dev, "Can't allocate transmit buffer\n");
		goto fail5;
	}

978
	/* Add SDIO capability when available */
979 980
	if (at91mci_is_mci1rev2xx()) {
		/* at91mci MCI1 rev2xx sdio interrupt erratum */
981 982 983 984
		if (host->board->wire4 || !host->board->slot_b)
			mmc->caps |= MMC_CAP_SDIO_IRQ;
	}

985 986 987 988 989 990 991 992
	/*
	 * Reserve GPIOs ... board init code makes sure these pins are set
	 * up as GPIOs with the right direction (input, except for vcc)
	 */
	if (host->board->det_pin) {
		ret = gpio_request(host->board->det_pin, "mmc_detect");
		if (ret < 0) {
			dev_dbg(&pdev->dev, "couldn't claim card detect pin\n");
993
			goto fail4b;
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
		}
	}
	if (host->board->wp_pin) {
		ret = gpio_request(host->board->wp_pin, "mmc_wp");
		if (ret < 0) {
			dev_dbg(&pdev->dev, "couldn't claim wp sense pin\n");
			goto fail4;
		}
	}
	if (host->board->vcc_pin) {
		ret = gpio_request(host->board->vcc_pin, "mmc_vcc");
		if (ret < 0) {
			dev_dbg(&pdev->dev, "couldn't claim vcc switch pin\n");
			goto fail3;
		}
	}

1011 1012 1013
	/*
	 * Get Clock
	 */
1014 1015
	host->mci_clk = clk_get(&pdev->dev, "mci_clk");
	if (IS_ERR(host->mci_clk)) {
1016 1017 1018
		ret = -ENODEV;
		dev_dbg(&pdev->dev, "no mci_clk?\n");
		goto fail2;
1019 1020
	}

1021 1022 1023
	/*
	 * Map I/O region
	 */
1024
	host->baseaddr = ioremap(res->start, resource_size(res));
1025
	if (!host->baseaddr) {
1026 1027
		ret = -ENOMEM;
		goto fail1;
1028
	}
A
Andrew Victor 已提交
1029 1030 1031 1032

	/*
	 * Reset hardware
	 */
1033
	clk_enable(host->mci_clk);		/* Enable the peripheral clock */
A
Andrew Victor 已提交
1034 1035 1036
	at91_mci_disable(host);
	at91_mci_enable(host);

1037 1038 1039
	/*
	 * Allocate the MCI interrupt
	 */
1040
	host->irq = platform_get_irq(pdev, 0);
1041 1042
	ret = request_irq(host->irq, at91_mci_irq, IRQF_SHARED,
			mmc_hostname(mmc), host);
1043
	if (ret) {
1044 1045
		dev_dbg(&pdev->dev, "request MCI interrupt failed\n");
		goto fail0;
1046 1047
	}

1048 1049
	setup_timer(&host->timer, at91_timeout_timer, (unsigned long)host);

1050 1051 1052 1053 1054
	platform_set_drvdata(pdev, mmc);

	/*
	 * Add host to MMC layer
	 */
1055
	if (host->board->det_pin) {
1056
		host->present = !gpio_get_value(host->board->det_pin);
1057
	}
1058 1059 1060 1061 1062 1063 1064 1065 1066
	else
		host->present = -1;

	mmc_add_host(mmc);

	/*
	 * monitor card insertion/removal if we can
	 */
	if (host->board->det_pin) {
1067 1068
		ret = request_irq(gpio_to_irq(host->board->det_pin),
				at91_mmc_det_irq, 0, mmc_hostname(mmc), host);
1069
		if (ret)
1070 1071 1072
			dev_warn(&pdev->dev, "request MMC detect irq failed\n");
		else
			device_init_wakeup(&pdev->dev, 1);
1073 1074
	}

A
Andrew Victor 已提交
1075
	pr_debug("Added MCI driver\n");
1076 1077

	return 0;
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092

fail0:
	clk_disable(host->mci_clk);
	iounmap(host->baseaddr);
fail1:
	clk_put(host->mci_clk);
fail2:
	if (host->board->vcc_pin)
		gpio_free(host->board->vcc_pin);
fail3:
	if (host->board->wp_pin)
		gpio_free(host->board->wp_pin);
fail4:
	if (host->board->det_pin)
		gpio_free(host->board->det_pin);
1093 1094 1095 1096
fail4b:
	if (host->buffer)
		dma_free_coherent(&pdev->dev, MCI_BUFSIZE,
				host->buffer, host->physical_address);
1097 1098 1099
fail5:
	mmc_free_host(mmc);
fail6:
1100
	release_mem_region(res->start, resource_size(res));
1101 1102
	dev_err(&pdev->dev, "probe failed, err %d\n", ret);
	return ret;
1103 1104 1105 1106 1107
}

/*
 * Remove a device
 */
D
David Brownell 已提交
1108
static int __exit at91_mci_remove(struct platform_device *pdev)
1109 1110 1111
{
	struct mmc_host *mmc = platform_get_drvdata(pdev);
	struct at91mci_host *host;
1112
	struct resource *res;
1113 1114 1115 1116 1117 1118

	if (!mmc)
		return -1;

	host = mmc_priv(mmc);

1119 1120 1121 1122
	if (host->buffer)
		dma_free_coherent(&pdev->dev, MCI_BUFSIZE,
				host->buffer, host->physical_address);

A
Anti Sullin 已提交
1123
	if (host->board->det_pin) {
1124 1125
		if (device_can_wakeup(&pdev->dev))
			free_irq(gpio_to_irq(host->board->det_pin), host);
1126
		device_init_wakeup(&pdev->dev, 0);
1127
		gpio_free(host->board->det_pin);
1128 1129
	}

A
Andrew Victor 已提交
1130
	at91_mci_disable(host);
M
Marc Pignat 已提交
1131
	del_timer_sync(&host->timer);
1132 1133
	mmc_remove_host(mmc);
	free_irq(host->irq, host);
1134

1135 1136
	clk_disable(host->mci_clk);			/* Disable the peripheral clock */
	clk_put(host->mci_clk);
1137

1138 1139 1140 1141 1142
	if (host->board->vcc_pin)
		gpio_free(host->board->vcc_pin);
	if (host->board->wp_pin)
		gpio_free(host->board->wp_pin);

1143 1144
	iounmap(host->baseaddr);
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1145
	release_mem_region(res->start, resource_size(res));
1146

1147 1148
	mmc_free_host(mmc);
	platform_set_drvdata(pdev, NULL);
1149
	pr_debug("MCI Removed\n");
1150 1151 1152 1153 1154 1155 1156 1157

	return 0;
}

#ifdef CONFIG_PM
static int at91_mci_suspend(struct platform_device *pdev, pm_message_t state)
{
	struct mmc_host *mmc = platform_get_drvdata(pdev);
1158
	struct at91mci_host *host = mmc_priv(mmc);
1159 1160
	int ret = 0;

A
Anti Sullin 已提交
1161
	if (host->board->det_pin && device_may_wakeup(&pdev->dev))
1162 1163
		enable_irq_wake(host->board->det_pin);

1164
	if (mmc)
1165
		ret = mmc_suspend_host(mmc);
1166 1167 1168 1169 1170 1171 1172

	return ret;
}

static int at91_mci_resume(struct platform_device *pdev)
{
	struct mmc_host *mmc = platform_get_drvdata(pdev);
1173
	struct at91mci_host *host = mmc_priv(mmc);
1174 1175
	int ret = 0;

A
Anti Sullin 已提交
1176
	if (host->board->det_pin && device_may_wakeup(&pdev->dev))
1177 1178
		disable_irq_wake(host->board->det_pin);

1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
	if (mmc)
		ret = mmc_resume_host(mmc);

	return ret;
}
#else
#define at91_mci_suspend	NULL
#define at91_mci_resume		NULL
#endif

static struct platform_driver at91_mci_driver = {
D
David Brownell 已提交
1190
	.remove		= __exit_p(at91_mci_remove),
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
	.suspend	= at91_mci_suspend,
	.resume		= at91_mci_resume,
	.driver		= {
		.name	= DRIVER_NAME,
		.owner	= THIS_MODULE,
	},
};

static int __init at91_mci_init(void)
{
D
David Brownell 已提交
1201
	return platform_driver_probe(&at91_mci_driver, at91_mci_probe);
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
}

static void __exit at91_mci_exit(void)
{
	platform_driver_unregister(&at91_mci_driver);
}

module_init(at91_mci_init);
module_exit(at91_mci_exit);

MODULE_DESCRIPTION("AT91 Multimedia Card Interface driver");
MODULE_AUTHOR("Nick Randell");
MODULE_LICENSE("GPL");
1215
MODULE_ALIAS("platform:at91_mci");