au1xmmc.c 28.2 KB
Newer Older
1
/*
P
Pierre Ossman 已提交
2
 * linux/drivers/mmc/host/au1xmmc.c - AU1XX0 MMC driver
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 *  Copyright (c) 2005, Advanced Micro Devices, Inc.
 *
 *  Developed with help from the 2.4.30 MMC AU1XXX controller including
 *  the following copyright notices:
 *     Copyright (c) 2003-2004 Embedded Edge, LLC.
 *     Portions Copyright (C) 2002 Embedix, Inc
 *     Copyright 2002 Hewlett-Packard Company

 *  2.6 version of this driver inspired by:
 *     (drivers/mmc/wbsd.c) Copyright (C) 2004-2005 Pierre Ossman,
 *     All Rights Reserved.
 *     (drivers/mmc/pxa.c) Copyright (C) 2003 Russell King,
 *     All Rights Reserved.
 *

 * 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.
 */

24
/* Why don't we use the SD controllers' carddetect feature?
25 26 27 28 29 30 31 32 33 34 35 36
 *
 * From the AU1100 MMC application guide:
 * If the Au1100-based design is intended to support both MultiMediaCards
 * and 1- or 4-data bit SecureDigital cards, then the solution is to
 * connect a weak (560KOhm) pull-up resistor to connector pin 1.
 * In doing so, a MMC card never enters SPI-mode communications,
 * but now the SecureDigital card-detect feature of CD/DAT3 is ineffective
 * (the low to high transition will not occur).
 */

#include <linux/module.h>
#include <linux/init.h>
37
#include <linux/platform_device.h>
38 39 40
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/dma-mapping.h>
A
Al Viro 已提交
41
#include <linux/scatterlist.h>
42
#include <linux/leds.h>
43
#include <linux/mmc/host.h>
44
#include <linux/slab.h>
45

46 47 48 49 50 51 52 53
#include <asm/io.h>
#include <asm/mach-au1x00/au1000.h>
#include <asm/mach-au1x00/au1xxx_dbdma.h>
#include <asm/mach-au1x00/au1100_mmc.h>

#define DRIVER_NAME "au1xxx-mmc"

/* Set this to enable special debugging macros */
54
/* #define DEBUG */
55

56
#ifdef DEBUG
M
Manuel Lauss 已提交
57
#define DBG(fmt, idx, args...)	\
58
	pr_debug("au1xmmc(%d): DEBUG: " fmt, idx, ##args)
59
#else
M
Manuel Lauss 已提交
60
#define DBG(fmt, idx, args...) do {} while (0)
61 62
#endif

M
Manuel Lauss 已提交
63 64
/* Hardware definitions */
#define AU1XMMC_DESCRIPTOR_COUNT 1
65 66

/* max DMA seg size: 64KB on Au1100, 4MB on Au1200 */
67 68
#define AU1100_MMC_DESCRIPTOR_SIZE 0x0000ffff
#define AU1200_MMC_DESCRIPTOR_SIZE 0x003fffff
M
Manuel Lauss 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126

#define AU1XMMC_OCR (MMC_VDD_27_28 | MMC_VDD_28_29 | MMC_VDD_29_30 | \
		     MMC_VDD_30_31 | MMC_VDD_31_32 | MMC_VDD_32_33 | \
		     MMC_VDD_33_34 | MMC_VDD_34_35 | MMC_VDD_35_36)

/* This gives us a hard value for the stop command that we can write directly
 * to the command register.
 */
#define STOP_CMD	\
	(SD_CMD_RT_1B | SD_CMD_CT_7 | (0xC << SD_CMD_CI_SHIFT) | SD_CMD_GO)

/* This is the set of interrupts that we configure by default. */
#define AU1XMMC_INTERRUPTS 				\
	(SD_CONFIG_SC | SD_CONFIG_DT | SD_CONFIG_RAT |	\
	 SD_CONFIG_CR | SD_CONFIG_I)

/* The poll event (looking for insert/remove events runs twice a second. */
#define AU1XMMC_DETECT_TIMEOUT (HZ/2)

struct au1xmmc_host {
	struct mmc_host *mmc;
	struct mmc_request *mrq;

	u32 flags;
	u32 iobase;
	u32 clock;
	u32 bus_width;
	u32 power_mode;

	int status;

	struct {
		int len;
		int dir;
	} dma;

	struct {
		int index;
		int offset;
		int len;
	} pio;

	u32 tx_chan;
	u32 rx_chan;

	int irq;

	struct tasklet_struct finish_task;
	struct tasklet_struct data_task;
	struct au1xmmc_platform_data *platdata;
	struct platform_device *pdev;
	struct resource *ioarea;
};

/* Status flags used by the host structure */
#define HOST_F_XMIT	0x0001
#define HOST_F_RECV	0x0002
#define HOST_F_DMA	0x0010
127
#define HOST_F_DBDMA	0x0020
M
Manuel Lauss 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
#define HOST_F_ACTIVE	0x0100
#define HOST_F_STOP	0x1000

#define HOST_S_IDLE	0x0001
#define HOST_S_CMD	0x0002
#define HOST_S_DATA	0x0003
#define HOST_S_STOP	0x0004

/* Easy access macros */
#define HOST_STATUS(h)	((h)->iobase + SD_STATUS)
#define HOST_CONFIG(h)	((h)->iobase + SD_CONFIG)
#define HOST_ENABLE(h)	((h)->iobase + SD_ENABLE)
#define HOST_TXPORT(h)	((h)->iobase + SD_TXPORT)
#define HOST_RXPORT(h)	((h)->iobase + SD_RXPORT)
#define HOST_CMDARG(h)	((h)->iobase + SD_CMDARG)
#define HOST_BLKSIZE(h)	((h)->iobase + SD_BLKSIZE)
#define HOST_CMD(h)	((h)->iobase + SD_CMD)
#define HOST_CONFIG2(h)	((h)->iobase + SD_CONFIG2)
#define HOST_TIMEOUT(h)	((h)->iobase + SD_TIMEOUT)
#define HOST_DEBUG(h)	((h)->iobase + SD_DEBUG)

#define DMA_CHANNEL(h)	\
	(((h)->flags & HOST_F_XMIT) ? (h)->tx_chan : (h)->rx_chan)

152 153 154 155
static inline int has_dbdma(void)
{
	switch (alchemy_get_cputype()) {
	case ALCHEMY_CPU_AU1200:
M
Manuel Lauss 已提交
156
	case ALCHEMY_CPU_AU1300:
157 158 159 160 161 162
		return 1;
	default:
		return 0;
	}
}

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
static inline void IRQ_ON(struct au1xmmc_host *host, u32 mask)
{
	u32 val = au_readl(HOST_CONFIG(host));
	val |= mask;
	au_writel(val, HOST_CONFIG(host));
	au_sync();
}

static inline void FLUSH_FIFO(struct au1xmmc_host *host)
{
	u32 val = au_readl(HOST_CONFIG2(host));

	au_writel(val | SD_CONFIG2_FF, HOST_CONFIG2(host));
	au_sync_delay(1);

	/* SEND_STOP will turn off clock control - this re-enables it */
	val &= ~SD_CONFIG2_DF;

	au_writel(val, HOST_CONFIG2(host));
	au_sync();
}

static inline void IRQ_OFF(struct au1xmmc_host *host, u32 mask)
{
	u32 val = au_readl(HOST_CONFIG(host));
	val &= ~mask;
	au_writel(val, HOST_CONFIG(host));
	au_sync();
}

static inline void SEND_STOP(struct au1xmmc_host *host)
{
195
	u32 config2;
196 197 198 199

	WARN_ON(host->status != HOST_S_DATA);
	host->status = HOST_S_STOP;

200 201
	config2 = au_readl(HOST_CONFIG2(host));
	au_writel(config2 | SD_CONFIG2_DF, HOST_CONFIG2(host));
202 203
	au_sync();

204
	/* Send the stop command */
205 206 207 208 209
	au_writel(STOP_CMD, HOST_CMD(host));
}

static void au1xmmc_set_power(struct au1xmmc_host *host, int state)
{
210 211
	if (host->platdata && host->platdata->set_power)
		host->platdata->set_power(host->mmc, state);
212 213
}

214
static int au1xmmc_card_inserted(struct mmc_host *mmc)
215
{
216
	struct au1xmmc_host *host = mmc_priv(mmc);
217 218

	if (host->platdata && host->platdata->card_inserted)
219
		return !!host->platdata->card_inserted(host->mmc);
220

221
	return -ENOSYS;
222 223
}

224
static int au1xmmc_card_readonly(struct mmc_host *mmc)
225
{
226
	struct au1xmmc_host *host = mmc_priv(mmc);
227 228

	if (host->platdata && host->platdata->card_readonly)
229
		return !!host->platdata->card_readonly(mmc);
230

231
	return -ENOSYS;
232 233 234 235 236 237 238
}

static void au1xmmc_finish_request(struct au1xmmc_host *host)
{
	struct mmc_request *mrq = host->mrq;

	host->mrq = NULL;
239
	host->flags &= HOST_F_ACTIVE | HOST_F_DMA;
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259

	host->dma.len = 0;
	host->dma.dir = 0;

	host->pio.index  = 0;
	host->pio.offset = 0;
	host->pio.len = 0;

	host->status = HOST_S_IDLE;

	mmc_request_done(host->mmc, mrq);
}

static void au1xmmc_tasklet_finish(unsigned long param)
{
	struct au1xmmc_host *host = (struct au1xmmc_host *) param;
	au1xmmc_finish_request(host);
}

static int au1xmmc_send_command(struct au1xmmc_host *host, int wait,
P
Pierre Ossman 已提交
260
				struct mmc_command *cmd, struct mmc_data *data)
261 262 263
{
	u32 mmccmd = (cmd->opcode << SD_CMD_CI_SHIFT);

264
	switch (mmc_resp_type(cmd)) {
265 266
	case MMC_RSP_NONE:
		break;
267 268 269 270 271 272 273 274 275 276 277 278
	case MMC_RSP_R1:
		mmccmd |= SD_CMD_RT_1;
		break;
	case MMC_RSP_R1B:
		mmccmd |= SD_CMD_RT_1B;
		break;
	case MMC_RSP_R2:
		mmccmd |= SD_CMD_RT_2;
		break;
	case MMC_RSP_R3:
		mmccmd |= SD_CMD_RT_3;
		break;
279
	default:
280
		pr_info("au1xmmc: unhandled response type %02x\n",
281
			mmc_resp_type(cmd));
P
Pierre Ossman 已提交
282
		return -EINVAL;
283 284
	}

P
Pierre Ossman 已提交
285
	if (data) {
P
Pierre Ossman 已提交
286
		if (data->flags & MMC_DATA_READ) {
P
Pierre Ossman 已提交
287 288 289 290
			if (data->blocks > 1)
				mmccmd |= SD_CMD_CT_4;
			else
				mmccmd |= SD_CMD_CT_2;
P
Pierre Ossman 已提交
291
		} else if (data->flags & MMC_DATA_WRITE) {
P
Pierre Ossman 已提交
292 293 294 295 296
			if (data->blocks > 1)
				mmccmd |= SD_CMD_CT_3;
			else
				mmccmd |= SD_CMD_CT_1;
		}
297 298 299 300 301 302 303 304 305 306 307 308
	}

	au_writel(cmd->arg, HOST_CMDARG(host));
	au_sync();

	if (wait)
		IRQ_OFF(host, SD_CONFIG_CR);

	au_writel((mmccmd | SD_CMD_GO), HOST_CMD(host));
	au_sync();

	/* Wait for the command to go on the line */
M
Manuel Lauss 已提交
309 310
	while (au_readl(HOST_CMD(host)) & SD_CMD_GO)
		/* nop */;
311 312 313 314 315

	/* Wait for the command to come back */
	if (wait) {
		u32 status = au_readl(HOST_STATUS(host));

M
Manuel Lauss 已提交
316
		while (!(status & SD_STATUS_CR))
317 318 319 320 321 322 323 324
			status = au_readl(HOST_STATUS(host));

		/* Clear the CR status */
		au_writel(SD_STATUS_CR, HOST_STATUS(host));

		IRQ_ON(host, SD_CONFIG_CR);
	}

P
Pierre Ossman 已提交
325
	return 0;
326 327 328 329 330 331 332 333
}

static void au1xmmc_data_complete(struct au1xmmc_host *host, u32 status)
{
	struct mmc_request *mrq = host->mrq;
	struct mmc_data *data;
	u32 crc;

M
Manuel Lauss 已提交
334
	WARN_ON((host->status != HOST_S_DATA) && (host->status != HOST_S_STOP));
335 336 337 338 339 340 341 342 343 344

	if (host->mrq == NULL)
		return;

	data = mrq->cmd->data;

	if (status == 0)
		status = au_readl(HOST_STATUS(host));

	/* The transaction is really over when the SD_STATUS_DB bit is clear */
M
Manuel Lauss 已提交
345
	while ((host->flags & HOST_F_XMIT) && (status & SD_STATUS_DB))
346 347
		status = au_readl(HOST_STATUS(host));

P
Pierre Ossman 已提交
348
	data->error = 0;
349 350 351 352 353 354 355 356
	dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len, host->dma.dir);

        /* Process any errors */
	crc = (status & (SD_STATUS_WC | SD_STATUS_RC));
	if (host->flags & HOST_F_XMIT)
		crc |= ((status & 0x07) == 0x02) ? 0 : 1;

	if (crc)
P
Pierre Ossman 已提交
357
		data->error = -EILSEQ;
358 359 360 361 362 363

	/* Clear the CRC bits */
	au_writel(SD_STATUS_WC | SD_STATUS_RC, HOST_STATUS(host));

	data->bytes_xfered = 0;

P
Pierre Ossman 已提交
364
	if (!data->error) {
365
		if (host->flags & (HOST_F_DMA | HOST_F_DBDMA)) {
366 367
			u32 chan = DMA_CHANNEL(host);

M
Manuel Lauss 已提交
368
			chan_tab_t *c = *((chan_tab_t **)chan);
369 370
			au1x_dma_chan_t *cp = c->chan_ptr;
			data->bytes_xfered = cp->ddma_bytecnt;
M
Manuel Lauss 已提交
371
		} else
372
			data->bytes_xfered =
M
Manuel Lauss 已提交
373
				(data->blocks * data->blksz) - host->pio.len;
374 375 376 377 378 379 380
	}

	au1xmmc_finish_request(host);
}

static void au1xmmc_tasklet_data(unsigned long param)
{
M
Manuel Lauss 已提交
381
	struct au1xmmc_host *host = (struct au1xmmc_host *)param;
382 383 384 385 386 387 388 389 390

	u32 status = au_readl(HOST_STATUS(host));
	au1xmmc_data_complete(host, status);
}

#define AU1XMMC_MAX_TRANSFER 8

static void au1xmmc_send_pio(struct au1xmmc_host *host)
{
M
Manuel Lauss 已提交
391 392 393 394
	struct mmc_data *data;
	int sg_len, max, count;
	unsigned char *sg_ptr, val;
	u32 status;
395 396 397 398 399 400 401 402 403
	struct scatterlist *sg;

	data = host->mrq->data;

	if (!(host->flags & HOST_F_XMIT))
		return;

	/* This is the pointer to the data buffer */
	sg = &data->sg[host->pio.index];
J
Jens Axboe 已提交
404
	sg_ptr = sg_virt(sg) + host->pio.offset;
405 406 407 408

	/* This is the space left inside the buffer */
	sg_len = data->sg[host->pio.index].length - host->pio.offset;

M
Manuel Lauss 已提交
409
	/* Check if we need less than the size of the sg_buffer */
410
	max = (sg_len > host->pio.len) ? host->pio.len : sg_len;
M
Manuel Lauss 已提交
411 412
	if (max > AU1XMMC_MAX_TRANSFER)
		max = AU1XMMC_MAX_TRANSFER;
413

M
Manuel Lauss 已提交
414
	for (count = 0; count < max; count++) {
415 416 417 418 419 420 421
		status = au_readl(HOST_STATUS(host));

		if (!(status & SD_STATUS_TH))
			break;

		val = *sg_ptr++;

M
Manuel Lauss 已提交
422
		au_writel((unsigned long)val, HOST_TXPORT(host));
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
		au_sync();
	}

	host->pio.len -= count;
	host->pio.offset += count;

	if (count == sg_len) {
		host->pio.index++;
		host->pio.offset = 0;
	}

	if (host->pio.len == 0) {
		IRQ_OFF(host, SD_CONFIG_TH);

		if (host->flags & HOST_F_STOP)
			SEND_STOP(host);

		tasklet_schedule(&host->data_task);
	}
}

static void au1xmmc_receive_pio(struct au1xmmc_host *host)
{
M
Manuel Lauss 已提交
446 447 448 449
	struct mmc_data *data;
	int max, count, sg_len = 0;
	unsigned char *sg_ptr = NULL;
	u32 status, val;
450 451 452 453 454 455 456 457 458 459 460
	struct scatterlist *sg;

	data = host->mrq->data;

	if (!(host->flags & HOST_F_RECV))
		return;

	max = host->pio.len;

	if (host->pio.index < host->dma.len) {
		sg = &data->sg[host->pio.index];
J
Jens Axboe 已提交
461
		sg_ptr = sg_virt(sg) + host->pio.offset;
462 463 464 465

		/* This is the space left inside the buffer */
		sg_len = sg_dma_len(&data->sg[host->pio.index]) - host->pio.offset;

M
Manuel Lauss 已提交
466 467 468
		/* Check if we need less than the size of the sg_buffer */
		if (sg_len < max)
			max = sg_len;
469 470 471 472 473
	}

	if (max > AU1XMMC_MAX_TRANSFER)
		max = AU1XMMC_MAX_TRANSFER;

M
Manuel Lauss 已提交
474
	for (count = 0; count < max; count++) {
475 476 477 478 479 480
		status = au_readl(HOST_STATUS(host));

		if (!(status & SD_STATUS_NE))
			break;

		if (status & SD_STATUS_RC) {
481
			DBG("RX CRC Error [%d + %d].\n", host->pdev->id,
482 483 484 485 486
					host->pio.len, count);
			break;
		}

		if (status & SD_STATUS_RO) {
487
			DBG("RX Overrun [%d + %d]\n", host->pdev->id,
488 489 490 491
					host->pio.len, count);
			break;
		}
		else if (status & SD_STATUS_RU) {
492
			DBG("RX Underrun [%d + %d]\n", host->pdev->id,
493 494 495 496 497 498 499
					host->pio.len,	count);
			break;
		}

		val = au_readl(HOST_RXPORT(host));

		if (sg_ptr)
M
Manuel Lauss 已提交
500
			*sg_ptr++ = (unsigned char)(val & 0xFF);
501 502 503 504 505 506 507 508 509 510 511
	}

	host->pio.len -= count;
	host->pio.offset += count;

	if (sg_len && count == sg_len) {
		host->pio.index++;
		host->pio.offset = 0;
	}

	if (host->pio.len == 0) {
M
Manuel Lauss 已提交
512
		/* IRQ_OFF(host, SD_CONFIG_RA | SD_CONFIG_RF); */
513 514 515 516 517 518 519 520 521
		IRQ_OFF(host, SD_CONFIG_NE);

		if (host->flags & HOST_F_STOP)
			SEND_STOP(host);

		tasklet_schedule(&host->data_task);
	}
}

M
Manuel Lauss 已提交
522 523 524
/* This is called when a command has been completed - grab the response
 * and check for errors.  Then start the data transfer if it is indicated.
 */
525 526 527 528
static void au1xmmc_cmd_complete(struct au1xmmc_host *host, u32 status)
{
	struct mmc_request *mrq = host->mrq;
	struct mmc_command *cmd;
M
Manuel Lauss 已提交
529 530
	u32 r[4];
	int i, trans;
531 532 533 534 535

	if (!host->mrq)
		return;

	cmd = mrq->cmd;
P
Pierre Ossman 已提交
536
	cmd->error = 0;
537

R
Russell King 已提交
538 539 540 541 542 543 544 545 546
	if (cmd->flags & MMC_RSP_PRESENT) {
		if (cmd->flags & MMC_RSP_136) {
			r[0] = au_readl(host->iobase + SD_RESP3);
			r[1] = au_readl(host->iobase + SD_RESP2);
			r[2] = au_readl(host->iobase + SD_RESP1);
			r[3] = au_readl(host->iobase + SD_RESP0);

			/* The CRC is omitted from the response, so really
			 * we only got 120 bytes, but the engine expects
M
Manuel Lauss 已提交
547
			 * 128 bits, so we have to shift things up.
R
Russell King 已提交
548
			 */
M
Manuel Lauss 已提交
549
			for (i = 0; i < 4; i++) {
R
Russell King 已提交
550 551 552 553 554 555 556 557 558 559
				cmd->resp[i] = (r[i] & 0x00FFFFFF) << 8;
				if (i != 3)
					cmd->resp[i] |= (r[i + 1] & 0xFF000000) >> 24;
			}
		} else {
			/* Techincally, we should be getting all 48 bits of
			 * the response (SD_RESP1 + SD_RESP2), but because
			 * our response omits the CRC, our data ends up
			 * being shifted 8 bits to the right.  In this case,
			 * that means that the OSR data starts at bit 31,
M
Manuel Lauss 已提交
560
			 * so we can just read RESP0 and return that.
R
Russell King 已提交
561 562
			 */
			cmd->resp[0] = au_readl(host->iobase + SD_RESP0);
563 564 565 566 567
		}
	}

        /* Figure out errors */
	if (status & (SD_STATUS_SC | SD_STATUS_WC | SD_STATUS_RC))
P
Pierre Ossman 已提交
568
		cmd->error = -EILSEQ;
569 570 571

	trans = host->flags & (HOST_F_XMIT | HOST_F_RECV);

P
Pierre Ossman 已提交
572
	if (!trans || cmd->error) {
M
Manuel Lauss 已提交
573
		IRQ_OFF(host, SD_CONFIG_TH | SD_CONFIG_RA | SD_CONFIG_RF);
574 575 576 577 578 579
		tasklet_schedule(&host->finish_task);
		return;
	}

	host->status = HOST_S_DATA;

580
	if ((host->flags & (HOST_F_DMA | HOST_F_DBDMA))) {
581 582
		u32 channel = DMA_CHANNEL(host);

583
		/* Start the DBDMA as soon as the buffer gets something in it */
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602

		if (host->flags & HOST_F_RECV) {
			u32 mask = SD_STATUS_DB | SD_STATUS_NE;

			while((status & mask) != mask)
				status = au_readl(HOST_STATUS(host));
		}

		au1xxx_dbdma_start(channel);
	}
}

static void au1xmmc_set_clock(struct au1xmmc_host *host, int rate)
{
	unsigned int pbus = get_au1x00_speed();
	unsigned int divisor;
	u32 config;

	/* From databook:
M
Manuel Lauss 已提交
603 604
	 * divisor = ((((cpuclock / sbus_divisor) / 2) / mmcclock) / 2) - 1
	 */
605 606 607 608 609 610 611 612 613 614 615 616 617
	pbus /= ((au_readl(SYS_POWERCTRL) & 0x3) + 2);
	pbus /= 2;
	divisor = ((pbus / rate) / 2) - 1;

	config = au_readl(HOST_CONFIG(host));

	config &= ~(SD_CONFIG_DIV);
	config |= (divisor & SD_CONFIG_DIV) | SD_CONFIG_DE;

	au_writel(config, HOST_CONFIG(host));
	au_sync();
}

M
Manuel Lauss 已提交
618 619
static int au1xmmc_prepare_data(struct au1xmmc_host *host,
				struct mmc_data *data)
620
{
621
	int datalen = data->blocks * data->blksz;
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636

	if (data->flags & MMC_DATA_READ)
		host->flags |= HOST_F_RECV;
	else
		host->flags |= HOST_F_XMIT;

	if (host->mrq->stop)
		host->flags |= HOST_F_STOP;

	host->dma.dir = DMA_BIDIRECTIONAL;

	host->dma.len = dma_map_sg(mmc_dev(host->mmc), data->sg,
				   data->sg_len, host->dma.dir);

	if (host->dma.len == 0)
P
Pierre Ossman 已提交
637
		return -ETIMEDOUT;
638

639
	au_writel(data->blksz - 1, HOST_BLKSIZE(host));
640

641
	if (host->flags & (HOST_F_DMA | HOST_F_DBDMA)) {
642 643 644 645 646
		int i;
		u32 channel = DMA_CHANNEL(host);

		au1xxx_dbdma_stop(channel);

M
Manuel Lauss 已提交
647
		for (i = 0; i < host->dma.len; i++) {
648 649 650 651 652 653 654 655 656
			u32 ret = 0, flags = DDMA_FLAGS_NOIE;
			struct scatterlist *sg = &data->sg[i];
			int sg_len = sg->length;

			int len = (datalen > sg_len) ? sg_len : datalen;

			if (i == host->dma.len - 1)
				flags = DDMA_FLAGS_IE;

M
Manuel Lauss 已提交
657
			if (host->flags & HOST_F_XMIT) {
658
				ret = au1xxx_dbdma_put_source(channel,
659
					sg_phys(sg), len, flags);
M
Manuel Lauss 已提交
660
			} else {
661
				ret = au1xxx_dbdma_put_dest(channel,
662
					sg_phys(sg), len, flags);
663 664
			}

665
			if (!ret)
666 667 668 669
				goto dataerr;

			datalen -= len;
		}
M
Manuel Lauss 已提交
670
	} else {
671 672 673 674 675 676 677 678
		host->pio.index = 0;
		host->pio.offset = 0;
		host->pio.len = datalen;

		if (host->flags & HOST_F_XMIT)
			IRQ_ON(host, SD_CONFIG_TH);
		else
			IRQ_ON(host, SD_CONFIG_NE);
M
Manuel Lauss 已提交
679
			/* IRQ_ON(host, SD_CONFIG_RA | SD_CONFIG_RF); */
680 681
	}

P
Pierre Ossman 已提交
682
	return 0;
683

684 685 686
dataerr:
	dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
			host->dma.dir);
P
Pierre Ossman 已提交
687
	return -ETIMEDOUT;
688 689
}

M
Manuel Lauss 已提交
690
/* This actually starts a command or data transaction */
691 692 693
static void au1xmmc_request(struct mmc_host* mmc, struct mmc_request* mrq)
{
	struct au1xmmc_host *host = mmc_priv(mmc);
P
Pierre Ossman 已提交
694
	int ret = 0;
695 696 697 698 699 700 701

	WARN_ON(irqs_disabled());
	WARN_ON(host->status != HOST_S_IDLE);

	host->mrq = mrq;
	host->status = HOST_S_CMD;

702
	/* fail request immediately if no card is present */
703
	if (0 == au1xmmc_card_inserted(mmc)) {
704 705 706 707 708
		mrq->cmd->error = -ENOMEDIUM;
		au1xmmc_finish_request(host);
		return;
	}

709 710 711 712 713
	if (mrq->data) {
		FLUSH_FIFO(host);
		ret = au1xmmc_prepare_data(host, mrq->data);
	}

P
Pierre Ossman 已提交
714
	if (!ret)
P
Pierre Ossman 已提交
715
		ret = au1xmmc_send_command(host, 0, mrq->cmd, mrq->data);
716

P
Pierre Ossman 已提交
717
	if (ret) {
718 719 720 721 722 723 724 725 726 727 728 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
		mrq->cmd->error = ret;
		au1xmmc_finish_request(host);
	}
}

static void au1xmmc_reset_controller(struct au1xmmc_host *host)
{
	/* Apply the clock */
	au_writel(SD_ENABLE_CE, HOST_ENABLE(host));
        au_sync_delay(1);

	au_writel(SD_ENABLE_R | SD_ENABLE_CE, HOST_ENABLE(host));
	au_sync_delay(5);

	au_writel(~0, HOST_STATUS(host));
	au_sync();

	au_writel(0, HOST_BLKSIZE(host));
	au_writel(0x001fffff, HOST_TIMEOUT(host));
	au_sync();

	au_writel(SD_CONFIG2_EN, HOST_CONFIG2(host));
        au_sync();

	au_writel(SD_CONFIG2_EN | SD_CONFIG2_FF, HOST_CONFIG2(host));
	au_sync_delay(1);

	au_writel(SD_CONFIG2_EN, HOST_CONFIG2(host));
	au_sync();

	/* Configure interrupts */
	au_writel(AU1XMMC_INTERRUPTS, HOST_CONFIG(host));
	au_sync();
}


M
Manuel Lauss 已提交
754
static void au1xmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
755 756
{
	struct au1xmmc_host *host = mmc_priv(mmc);
757
	u32 config2;
758 759 760 761 762 763 764 765 766 767 768

	if (ios->power_mode == MMC_POWER_OFF)
		au1xmmc_set_power(host, 0);
	else if (ios->power_mode == MMC_POWER_ON) {
		au1xmmc_set_power(host, 1);
	}

	if (ios->clock && ios->clock != host->clock) {
		au1xmmc_set_clock(host, ios->clock);
		host->clock = ios->clock;
	}
769 770 771

	config2 = au_readl(HOST_CONFIG2(host));
	switch (ios->bus_width) {
M
Manuel Lauss 已提交
772 773 774
	case MMC_BUS_WIDTH_8:
		config2 |= SD_CONFIG2_BB;
		break;
775
	case MMC_BUS_WIDTH_4:
M
Manuel Lauss 已提交
776
		config2 &= ~SD_CONFIG2_BB;
777 778 779
		config2 |= SD_CONFIG2_WB;
		break;
	case MMC_BUS_WIDTH_1:
M
Manuel Lauss 已提交
780
		config2 &= ~(SD_CONFIG2_WB | SD_CONFIG2_BB);
781 782 783 784
		break;
	}
	au_writel(config2, HOST_CONFIG2(host));
	au_sync();
785 786 787 788 789 790
}

#define STATUS_TIMEOUT (SD_STATUS_RAT | SD_STATUS_DT)
#define STATUS_DATA_IN  (SD_STATUS_NE)
#define STATUS_DATA_OUT (SD_STATUS_TH)

791
static irqreturn_t au1xmmc_irq(int irq, void *dev_id)
792
{
793
	struct au1xmmc_host *host = dev_id;
794 795
	u32 status;

796
	status = au_readl(HOST_STATUS(host));
797

798 799
	if (!(status & SD_STATUS_I))
		return IRQ_NONE;	/* not ours */
800

M
Manuel Lauss 已提交
801 802 803
	if (status & SD_STATUS_SI)	/* SDIO */
		mmc_signal_sdio_irq(host->mmc);

804 805 806 807 808
	if (host->mrq && (status & STATUS_TIMEOUT)) {
		if (status & SD_STATUS_RAT)
			host->mrq->cmd->error = -ETIMEDOUT;
		else if (status & SD_STATUS_DT)
			host->mrq->data->error = -ETIMEDOUT;
809

810 811
		/* In PIO mode, interrupts might still be enabled */
		IRQ_OFF(host, SD_CONFIG_NE | SD_CONFIG_TH);
812

813 814 815
		/* IRQ_OFF(host, SD_CONFIG_TH | SD_CONFIG_RA | SD_CONFIG_RF); */
		tasklet_schedule(&host->finish_task);
	}
816
#if 0
817 818 819 820 821 822 823
	else if (status & SD_STATUS_DD) {
		/* Sometimes we get a DD before a NE in PIO mode */
		if (!(host->flags & HOST_F_DMA) && (status & SD_STATUS_NE))
			au1xmmc_receive_pio(host);
		else {
			au1xmmc_data_complete(host, status);
			/* tasklet_schedule(&host->data_task); */
824 825
		}
	}
826 827 828 829 830 831 832 833 834 835 836 837 838 839
#endif
	else if (status & SD_STATUS_CR) {
		if (host->status == HOST_S_CMD)
			au1xmmc_cmd_complete(host, status);

	} else if (!(host->flags & HOST_F_DMA)) {
		if ((host->flags & HOST_F_XMIT) && (status & STATUS_DATA_OUT))
			au1xmmc_send_pio(host);
		else if ((host->flags & HOST_F_RECV) && (status & STATUS_DATA_IN))
			au1xmmc_receive_pio(host);

	} else if (status & 0x203F3C70) {
			DBG("Unhandled status %8.8x\n", host->pdev->id,
				status);
840 841
	}

842 843
	au_writel(status, HOST_STATUS(host));
	au_sync();
844

845
	return IRQ_HANDLED;
846 847
}

848 849 850 851 852 853 854 855 856
/* 8bit memory DMA device */
static dbdev_tab_t au1xmmc_mem_dbdev = {
	.dev_id		= DSCR_CMD0_ALWAYS,
	.dev_flags	= DEV_FLAGS_ANYUSE,
	.dev_tsize	= 0,
	.dev_devwidth	= 8,
	.dev_physaddr	= 0x00000000,
	.dev_intlevel	= 0,
	.dev_intpolarity = 0,
857
};
858
static int memid;
859

860
static void au1xmmc_dbdma_callback(int irq, void *dev_id)
861
{
862
	struct au1xmmc_host *host = (struct au1xmmc_host *)dev_id;
863

864 865 866
	/* Avoid spurious interrupts */
	if (!host->mrq)
		return;
867

868 869
	if (host->flags & HOST_F_STOP)
		SEND_STOP(host);
870

871 872
	tasklet_schedule(&host->data_task);
}
873

874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
static int au1xmmc_dbdma_init(struct au1xmmc_host *host)
{
	struct resource *res;
	int txid, rxid;

	res = platform_get_resource(host->pdev, IORESOURCE_DMA, 0);
	if (!res)
		return -ENODEV;
	txid = res->start;

	res = platform_get_resource(host->pdev, IORESOURCE_DMA, 1);
	if (!res)
		return -ENODEV;
	rxid = res->start;

	if (!memid)
		return -ENODEV;

	host->tx_chan = au1xxx_dbdma_chan_alloc(memid, txid,
				au1xmmc_dbdma_callback, (void *)host);
	if (!host->tx_chan) {
		dev_err(&host->pdev->dev, "cannot allocate TX DMA\n");
		return -ENODEV;
	}

	host->rx_chan = au1xxx_dbdma_chan_alloc(rxid, memid,
				au1xmmc_dbdma_callback, (void *)host);
	if (!host->rx_chan) {
		dev_err(&host->pdev->dev, "cannot allocate RX DMA\n");
		au1xxx_dbdma_chan_free(host->tx_chan);
		return -ENODEV;
	}
906

907 908
	au1xxx_dbdma_set_devwidth(host->tx_chan, 8);
	au1xxx_dbdma_set_devwidth(host->rx_chan, 8);
909

910 911
	au1xxx_dbdma_ring_alloc(host->tx_chan, AU1XMMC_DESCRIPTOR_COUNT);
	au1xxx_dbdma_ring_alloc(host->rx_chan, AU1XMMC_DESCRIPTOR_COUNT);
912

913
	/* DBDMA is good to go */
914
	host->flags |= HOST_F_DMA | HOST_F_DBDMA;
915

916 917
	return 0;
}
918

919 920 921 922 923 924 925
static void au1xmmc_dbdma_shutdown(struct au1xmmc_host *host)
{
	if (host->flags & HOST_F_DMA) {
		host->flags &= ~HOST_F_DMA;
		au1xxx_dbdma_chan_free(host->tx_chan);
		au1xxx_dbdma_chan_free(host->rx_chan);
	}
926 927
}

M
Manuel Lauss 已提交
928 929 930 931 932 933 934 935 936 937
static void au1xmmc_enable_sdio_irq(struct mmc_host *mmc, int en)
{
	struct au1xmmc_host *host = mmc_priv(mmc);

	if (en)
		IRQ_ON(host, SD_CONFIG_SI);
	else
		IRQ_OFF(host, SD_CONFIG_SI);
}

Y
Yoichi Yuasa 已提交
938
static const struct mmc_host_ops au1xmmc_ops = {
939 940
	.request	= au1xmmc_request,
	.set_ios	= au1xmmc_set_ios,
941
	.get_ro		= au1xmmc_card_readonly,
942
	.get_cd		= au1xmmc_card_inserted,
M
Manuel Lauss 已提交
943
	.enable_sdio_irq = au1xmmc_enable_sdio_irq,
944 945
};

B
Bill Pemberton 已提交
946
static int au1xmmc_probe(struct platform_device *pdev)
947 948 949 950
{
	struct mmc_host *mmc;
	struct au1xmmc_host *host;
	struct resource *r;
M
Manuel Lauss 已提交
951
	int ret, iflag;
952 953 954 955 956 957

	mmc = mmc_alloc_host(sizeof(struct au1xmmc_host), &pdev->dev);
	if (!mmc) {
		dev_err(&pdev->dev, "no memory for mmc_host\n");
		ret = -ENOMEM;
		goto out0;
958 959
	}

960 961 962 963
	host = mmc_priv(mmc);
	host->mmc = mmc;
	host->platdata = pdev->dev.platform_data;
	host->pdev = pdev;
964

965 966 967 968 969 970
	ret = -ENODEV;
	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!r) {
		dev_err(&pdev->dev, "no mmio defined\n");
		goto out1;
	}
971

972
	host->ioarea = request_mem_region(r->start, resource_size(r),
973 974 975 976 977
					   pdev->name);
	if (!host->ioarea) {
		dev_err(&pdev->dev, "mmio already in use\n");
		goto out1;
	}
978

979 980 981 982 983 984 985 986 987 988 989 990
	host->iobase = (unsigned long)ioremap(r->start, 0x3c);
	if (!host->iobase) {
		dev_err(&pdev->dev, "cannot remap mmio\n");
		goto out2;
	}

	r = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (!r) {
		dev_err(&pdev->dev, "no IRQ defined\n");
		goto out3;
	}
	host->irq = r->start;
991

992
	mmc->ops = &au1xmmc_ops;
993

994 995
	mmc->f_min =   450000;
	mmc->f_max = 24000000;
996

M
Manuel Lauss 已提交
997 998 999 1000 1001 1002 1003 1004 1005
	mmc->max_blk_size = 2048;
	mmc->max_blk_count = 512;

	mmc->ocr_avail = AU1XMMC_OCR;
	mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
	mmc->max_segs = AU1XMMC_DESCRIPTOR_COUNT;

	iflag = IRQF_SHARED;	/* Au1100/Au1200: one int for both ctrls */

1006 1007 1008 1009 1010 1011
	switch (alchemy_get_cputype()) {
	case ALCHEMY_CPU_AU1100:
		mmc->max_seg_size = AU1100_MMC_DESCRIPTOR_SIZE;
		break;
	case ALCHEMY_CPU_AU1200:
		mmc->max_seg_size = AU1200_MMC_DESCRIPTOR_SIZE;
M
Manuel Lauss 已提交
1012 1013 1014 1015 1016 1017 1018
		break;
	case ALCHEMY_CPU_AU1300:
		iflag = 0;	/* nothing is shared */
		mmc->max_seg_size = AU1200_MMC_DESCRIPTOR_SIZE;
		mmc->f_max = 52000000;
		if (host->ioarea->start == AU1100_SD0_PHYS_ADDR)
			mmc->caps |= MMC_CAP_8_BIT_DATA;
1019 1020
		break;
	}
1021

M
Manuel Lauss 已提交
1022 1023 1024 1025 1026
	ret = request_irq(host->irq, au1xmmc_irq, iflag, DRIVER_NAME, host);
	if (ret) {
		dev_err(&pdev->dev, "cannot grab IRQ\n");
		goto out3;
	}
1027

1028
	host->status = HOST_S_IDLE;
1029

1030 1031 1032 1033
	/* board-specific carddetect setup, if any */
	if (host->platdata && host->platdata->cd_setup) {
		ret = host->platdata->cd_setup(mmc, 1);
		if (ret) {
1034 1035
			dev_warn(&pdev->dev, "board CD setup failed\n");
			mmc->caps |= MMC_CAP_NEEDS_POLL;
1036
		}
1037 1038
	} else
		mmc->caps |= MMC_CAP_NEEDS_POLL;
1039

1040 1041 1042 1043
	/* platform may not be able to use all advertised caps */
	if (host->platdata)
		mmc->caps &= ~(host->platdata->mask_host_caps);

1044 1045
	tasklet_init(&host->data_task, au1xmmc_tasklet_data,
			(unsigned long)host);
1046

1047 1048
	tasklet_init(&host->finish_task, au1xmmc_tasklet_finish,
			(unsigned long)host);
1049

1050 1051 1052
	if (has_dbdma()) {
		ret = au1xmmc_dbdma_init(host);
		if (ret)
1053
			pr_info(DRIVER_NAME ": DBDMA init failed; using PIO\n");
1054
	}
1055

1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
#ifdef CONFIG_LEDS_CLASS
	if (host->platdata && host->platdata->led) {
		struct led_classdev *led = host->platdata->led;
		led->name = mmc_hostname(mmc);
		led->brightness = LED_OFF;
		led->default_trigger = mmc_hostname(mmc);
		ret = led_classdev_register(mmc_dev(mmc), led);
		if (ret)
			goto out5;
	}
#endif
1067

1068
	au1xmmc_reset_controller(host);
1069

1070 1071 1072 1073 1074
	ret = mmc_add_host(mmc);
	if (ret) {
		dev_err(&pdev->dev, "cannot add mmc host\n");
		goto out6;
	}
1075

1076
	platform_set_drvdata(pdev, host);
1077

1078
	pr_info(DRIVER_NAME ": MMC Controller %d set up at %8.8X"
1079 1080
		" (mode=%s)\n", pdev->id, host->iobase,
		host->flags & HOST_F_DMA ? "dma" : "pio");
1081

1082
	return 0;	/* all ok */
1083

1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
out6:
#ifdef CONFIG_LEDS_CLASS
	if (host->platdata && host->platdata->led)
		led_classdev_unregister(host->platdata->led);
out5:
#endif
	au_writel(0, HOST_ENABLE(host));
	au_writel(0, HOST_CONFIG(host));
	au_writel(0, HOST_CONFIG2(host));
	au_sync();

1095 1096
	if (host->flags & HOST_F_DBDMA)
		au1xmmc_dbdma_shutdown(host);
1097 1098 1099 1100

	tasklet_kill(&host->data_task);
	tasklet_kill(&host->finish_task);

1101 1102
	if (host->platdata && host->platdata->cd_setup &&
	    !(mmc->caps & MMC_CAP_NEEDS_POLL))
1103
		host->platdata->cd_setup(mmc, 0);
1104

1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
	free_irq(host->irq, host);
out3:
	iounmap((void *)host->iobase);
out2:
	release_resource(host->ioarea);
	kfree(host->ioarea);
out1:
	mmc_free_host(mmc);
out0:
	return ret;
1115 1116
}

B
Bill Pemberton 已提交
1117
static int au1xmmc_remove(struct platform_device *pdev)
1118
{
1119
	struct au1xmmc_host *host = platform_get_drvdata(pdev);
1120

1121 1122
	if (host) {
		mmc_remove_host(host->mmc);
1123

1124 1125 1126 1127
#ifdef CONFIG_LEDS_CLASS
		if (host->platdata && host->platdata->led)
			led_classdev_unregister(host->platdata->led);
#endif
1128

1129
		if (host->platdata && host->platdata->cd_setup &&
1130 1131
		    !(host->mmc->caps & MMC_CAP_NEEDS_POLL))
			host->platdata->cd_setup(host->mmc, 0);
1132

1133 1134 1135 1136
		au_writel(0, HOST_ENABLE(host));
		au_writel(0, HOST_CONFIG(host));
		au_writel(0, HOST_CONFIG2(host));
		au_sync();
1137 1138 1139 1140

		tasklet_kill(&host->data_task);
		tasklet_kill(&host->finish_task);

1141 1142 1143
		if (host->flags & HOST_F_DBDMA)
			au1xmmc_dbdma_shutdown(host);

1144 1145
		au1xmmc_set_power(host, 0);

1146 1147 1148 1149
		free_irq(host->irq, host);
		iounmap((void *)host->iobase);
		release_resource(host->ioarea);
		kfree(host->ioarea);
1150

1151
		mmc_free_host(host->mmc);
1152 1153 1154 1155
	}
	return 0;
}

1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
#ifdef CONFIG_PM
static int au1xmmc_suspend(struct platform_device *pdev, pm_message_t state)
{
	struct au1xmmc_host *host = platform_get_drvdata(pdev);

	au_writel(0, HOST_CONFIG2(host));
	au_writel(0, HOST_CONFIG(host));
	au_writel(0xffffffff, HOST_STATUS(host));
	au_writel(0, HOST_ENABLE(host));
	au_sync();

	return 0;
}

static int au1xmmc_resume(struct platform_device *pdev)
{
	struct au1xmmc_host *host = platform_get_drvdata(pdev);

	au1xmmc_reset_controller(host);

1176
	return 0;
1177 1178 1179 1180 1181 1182
}
#else
#define au1xmmc_suspend NULL
#define au1xmmc_resume NULL
#endif

1183
static struct platform_driver au1xmmc_driver = {
1184 1185
	.probe         = au1xmmc_probe,
	.remove        = au1xmmc_remove,
1186 1187
	.suspend       = au1xmmc_suspend,
	.resume        = au1xmmc_resume,
1188 1189
	.driver        = {
		.name  = DRIVER_NAME,
1190
		.owner = THIS_MODULE,
1191
	},
1192 1193 1194 1195
};

static int __init au1xmmc_init(void)
{
1196 1197 1198 1199 1200 1201 1202
	if (has_dbdma()) {
		/* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride
		* of 8 bits.  And since devices are shared, we need to create
		* our own to avoid freaking out other devices.
		*/
		memid = au1xxx_ddma_add_device(&au1xmmc_mem_dbdev);
		if (!memid)
1203
			pr_err("au1xmmc: cannot add memory dbdma\n");
1204
	}
1205
	return platform_driver_register(&au1xmmc_driver);
1206 1207 1208 1209
}

static void __exit au1xmmc_exit(void)
{
1210
	if (has_dbdma() && memid)
1211
		au1xxx_ddma_del_device(memid);
1212

1213
	platform_driver_unregister(&au1xmmc_driver);
1214 1215 1216 1217 1218 1219 1220 1221
}

module_init(au1xmmc_init);
module_exit(au1xmmc_exit);

MODULE_AUTHOR("Advanced Micro Devices, Inc");
MODULE_DESCRIPTION("MMC/SD driver for the Alchemy Au1XXX");
MODULE_LICENSE("GPL");
1222
MODULE_ALIAS("platform:au1xxx-mmc");