sh_mmcif.c 37.8 KB
Newer Older
Y
Yusuke Goda 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * MMCIF eMMC driver.
 *
 * Copyright (C) 2010 Renesas Solutions Corp.
 * Yusuke Goda <yusuke.goda.sx@renesas.com>
 *
 * 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 of the License.
 *
 *
 * TODO
 *  1. DMA
 *  2. Power management
 *  3. Handle MMC errors better
 *
 */

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * The MMCIF driver is now processing MMC requests asynchronously, according
 * to the Linux MMC API requirement.
 *
 * The MMCIF driver processes MMC requests in up to 3 stages: command, optional
 * data, and optional stop. To achieve asynchronous processing each of these
 * stages is split into two halves: a top and a bottom half. The top half
 * initialises the hardware, installs a timeout handler to handle completion
 * timeouts, and returns. In case of the command stage this immediately returns
 * control to the caller, leaving all further processing to run asynchronously.
 * All further request processing is performed by the bottom halves.
 *
 * The bottom half further consists of a "hard" IRQ handler, an IRQ handler
 * thread, a DMA completion callback, if DMA is used, a timeout work, and
 * request- and stage-specific handler methods.
 *
 * Each bottom half run begins with either a hardware interrupt, a DMA callback
 * invocation, or a timeout work run. In case of an error or a successful
 * processing completion, the MMC core is informed and the request processing is
 * finished. In case processing has to continue, i.e., if data has to be read
 * from or written to the card, or if a stop command has to be sent, the next
 * top half is called, which performs the necessary hardware handling and
 * reschedules the timeout work. This returns the driver state machine into the
 * bottom half waiting state.
 */

45
#include <linux/bitops.h>
46 47
#include <linux/clk.h>
#include <linux/completion.h>
48
#include <linux/delay.h>
Y
Yusuke Goda 已提交
49
#include <linux/dma-mapping.h>
50
#include <linux/dmaengine.h>
Y
Yusuke Goda 已提交
51 52
#include <linux/mmc/card.h>
#include <linux/mmc/core.h>
53
#include <linux/mmc/host.h>
Y
Yusuke Goda 已提交
54 55 56
#include <linux/mmc/mmc.h>
#include <linux/mmc/sdio.h>
#include <linux/mmc/sh_mmcif.h>
57
#include <linux/pagemap.h>
58
#include <linux/platform_device.h>
59
#include <linux/pm_qos.h>
60
#include <linux/pm_runtime.h>
61
#include <linux/spinlock.h>
62
#include <linux/module.h>
Y
Yusuke Goda 已提交
63 64 65 66 67 68 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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

#define DRIVER_NAME	"sh_mmcif"
#define DRIVER_VERSION	"2010-04-28"

/* CE_CMD_SET */
#define CMD_MASK		0x3f000000
#define CMD_SET_RTYP_NO		((0 << 23) | (0 << 22))
#define CMD_SET_RTYP_6B		((0 << 23) | (1 << 22)) /* R1/R1b/R3/R4/R5 */
#define CMD_SET_RTYP_17B	((1 << 23) | (0 << 22)) /* R2 */
#define CMD_SET_RBSY		(1 << 21) /* R1b */
#define CMD_SET_CCSEN		(1 << 20)
#define CMD_SET_WDAT		(1 << 19) /* 1: on data, 0: no data */
#define CMD_SET_DWEN		(1 << 18) /* 1: write, 0: read */
#define CMD_SET_CMLTE		(1 << 17) /* 1: multi block trans, 0: single */
#define CMD_SET_CMD12EN		(1 << 16) /* 1: CMD12 auto issue */
#define CMD_SET_RIDXC_INDEX	((0 << 15) | (0 << 14)) /* index check */
#define CMD_SET_RIDXC_BITS	((0 << 15) | (1 << 14)) /* check bits check */
#define CMD_SET_RIDXC_NO	((1 << 15) | (0 << 14)) /* no check */
#define CMD_SET_CRC7C		((0 << 13) | (0 << 12)) /* CRC7 check*/
#define CMD_SET_CRC7C_BITS	((0 << 13) | (1 << 12)) /* check bits check*/
#define CMD_SET_CRC7C_INTERNAL	((1 << 13) | (0 << 12)) /* internal CRC7 check*/
#define CMD_SET_CRC16C		(1 << 10) /* 0: CRC16 check*/
#define CMD_SET_CRCSTE		(1 << 8) /* 1: not receive CRC status */
#define CMD_SET_TBIT		(1 << 7) /* 1: tran mission bit "Low" */
#define CMD_SET_OPDM		(1 << 6) /* 1: open/drain */
#define CMD_SET_CCSH		(1 << 5)
#define CMD_SET_DATW_1		((0 << 1) | (0 << 0)) /* 1bit */
#define CMD_SET_DATW_4		((0 << 1) | (1 << 0)) /* 4bit */
#define CMD_SET_DATW_8		((1 << 1) | (0 << 0)) /* 8bit */

/* CE_CMD_CTRL */
#define CMD_CTRL_BREAK		(1 << 0)

/* CE_BLOCK_SET */
#define BLOCK_SIZE_MASK		0x0000ffff

/* CE_INT */
#define INT_CCSDE		(1 << 29)
#define INT_CMD12DRE		(1 << 26)
#define INT_CMD12RBE		(1 << 25)
#define INT_CMD12CRE		(1 << 24)
#define INT_DTRANE		(1 << 23)
#define INT_BUFRE		(1 << 22)
#define INT_BUFWEN		(1 << 21)
#define INT_BUFREN		(1 << 20)
#define INT_CCSRCV		(1 << 19)
#define INT_RBSYE		(1 << 17)
#define INT_CRSPE		(1 << 16)
#define INT_CMDVIO		(1 << 15)
#define INT_BUFVIO		(1 << 14)
#define INT_WDATERR		(1 << 11)
#define INT_RDATERR		(1 << 10)
#define INT_RIDXERR		(1 << 9)
#define INT_RSPERR		(1 << 8)
#define INT_CCSTO		(1 << 5)
#define INT_CRCSTO		(1 << 4)
#define INT_WDATTO		(1 << 3)
#define INT_RDATTO		(1 << 2)
#define INT_RBSYTO		(1 << 1)
#define INT_RSPTO		(1 << 0)
#define INT_ERR_STS		(INT_CMDVIO | INT_BUFVIO | INT_WDATERR |  \
				 INT_RDATERR | INT_RIDXERR | INT_RSPERR | \
				 INT_CCSTO | INT_CRCSTO | INT_WDATTO |	  \
				 INT_RDATTO | INT_RBSYTO | INT_RSPTO)

/* CE_INT_MASK */
#define MASK_ALL		0x00000000
#define MASK_MCCSDE		(1 << 29)
#define MASK_MCMD12DRE		(1 << 26)
#define MASK_MCMD12RBE		(1 << 25)
#define MASK_MCMD12CRE		(1 << 24)
#define MASK_MDTRANE		(1 << 23)
#define MASK_MBUFRE		(1 << 22)
#define MASK_MBUFWEN		(1 << 21)
#define MASK_MBUFREN		(1 << 20)
#define MASK_MCCSRCV		(1 << 19)
#define MASK_MRBSYE		(1 << 17)
#define MASK_MCRSPE		(1 << 16)
#define MASK_MCMDVIO		(1 << 15)
#define MASK_MBUFVIO		(1 << 14)
#define MASK_MWDATERR		(1 << 11)
#define MASK_MRDATERR		(1 << 10)
#define MASK_MRIDXERR		(1 << 9)
#define MASK_MRSPERR		(1 << 8)
#define MASK_MCCSTO		(1 << 5)
#define MASK_MCRCSTO		(1 << 4)
#define MASK_MWDATTO		(1 << 3)
#define MASK_MRDATTO		(1 << 2)
#define MASK_MRBSYTO		(1 << 1)
#define MASK_MRSPTO		(1 << 0)

154 155 156 157 158
#define MASK_START_CMD		(MASK_MCMDVIO | MASK_MBUFVIO | MASK_MWDATERR | \
				 MASK_MRDATERR | MASK_MRIDXERR | MASK_MRSPERR | \
				 MASK_MCCSTO | MASK_MCRCSTO | MASK_MWDATTO | \
				 MASK_MRDATTO | MASK_MRBSYTO | MASK_MRSPTO)

Y
Yusuke Goda 已提交
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 187 188 189 190 191
/* CE_HOST_STS1 */
#define STS1_CMDSEQ		(1 << 31)

/* CE_HOST_STS2 */
#define STS2_CRCSTE		(1 << 31)
#define STS2_CRC16E		(1 << 30)
#define STS2_AC12CRCE		(1 << 29)
#define STS2_RSPCRC7E		(1 << 28)
#define STS2_CRCSTEBE		(1 << 27)
#define STS2_RDATEBE		(1 << 26)
#define STS2_AC12REBE		(1 << 25)
#define STS2_RSPEBE		(1 << 24)
#define STS2_AC12IDXE		(1 << 23)
#define STS2_RSPIDXE		(1 << 22)
#define STS2_CCSTO		(1 << 15)
#define STS2_RDATTO		(1 << 14)
#define STS2_DATBSYTO		(1 << 13)
#define STS2_CRCSTTO		(1 << 12)
#define STS2_AC12BSYTO		(1 << 11)
#define STS2_RSPBSYTO		(1 << 10)
#define STS2_AC12RSPTO		(1 << 9)
#define STS2_RSPTO		(1 << 8)
#define STS2_CRC_ERR		(STS2_CRCSTE | STS2_CRC16E |		\
				 STS2_AC12CRCE | STS2_RSPCRC7E | STS2_CRCSTEBE)
#define STS2_TIMEOUT_ERR	(STS2_CCSTO | STS2_RDATTO |		\
				 STS2_DATBSYTO | STS2_CRCSTTO |		\
				 STS2_AC12BSYTO | STS2_RSPBSYTO |	\
				 STS2_AC12RSPTO | STS2_RSPTO)

#define CLKDEV_EMMC_DATA	52000000 /* 52MHz */
#define CLKDEV_MMC_DATA		20000000 /* 20MHz */
#define CLKDEV_INIT		400000   /* 400 KHz */

192 193 194 195 196 197
enum mmcif_state {
	STATE_IDLE,
	STATE_REQUEST,
	STATE_IOS,
};

198 199 200 201 202 203 204 205 206 207 208 209
enum mmcif_wait_for {
	MMCIF_WAIT_FOR_REQUEST,
	MMCIF_WAIT_FOR_CMD,
	MMCIF_WAIT_FOR_MREAD,
	MMCIF_WAIT_FOR_MWRITE,
	MMCIF_WAIT_FOR_READ,
	MMCIF_WAIT_FOR_WRITE,
	MMCIF_WAIT_FOR_READ_END,
	MMCIF_WAIT_FOR_WRITE_END,
	MMCIF_WAIT_FOR_STOP,
};

Y
Yusuke Goda 已提交
210 211
struct sh_mmcif_host {
	struct mmc_host *mmc;
212
	struct mmc_request *mrq;
Y
Yusuke Goda 已提交
213
	struct platform_device *pd;
214 215
	struct sh_dmae_slave dma_slave_tx;
	struct sh_dmae_slave dma_slave_rx;
Y
Yusuke Goda 已提交
216 217 218
	struct clk *hclk;
	unsigned int clk;
	int bus_width;
219
	bool sd_error;
220
	bool dying;
Y
Yusuke Goda 已提交
221 222
	long timeout;
	void __iomem *addr;
223
	u32 *pio_ptr;
224
	spinlock_t lock;		/* protect sh_mmcif_host::state */
225
	enum mmcif_state state;
226 227 228 229 230
	enum mmcif_wait_for wait_for;
	struct delayed_work timeout_work;
	size_t blocksize;
	int sg_idx;
	int sg_blkidx;
231
	bool power;
232
	bool card_present;
Y
Yusuke Goda 已提交
233

234 235 236 237
	/* DMA support */
	struct dma_chan		*chan_rx;
	struct dma_chan		*chan_tx;
	struct completion	dma_complete;
238
	bool			dma_active;
239
};
Y
Yusuke Goda 已提交
240 241 242 243

static inline void sh_mmcif_bitset(struct sh_mmcif_host *host,
					unsigned int reg, u32 val)
{
244
	writel(val | readl(host->addr + reg), host->addr + reg);
Y
Yusuke Goda 已提交
245 246 247 248 249
}

static inline void sh_mmcif_bitclr(struct sh_mmcif_host *host,
					unsigned int reg, u32 val)
{
250
	writel(~val & readl(host->addr + reg), host->addr + reg);
Y
Yusuke Goda 已提交
251 252
}

253 254 255
static void mmcif_dma_complete(void *arg)
{
	struct sh_mmcif_host *host = arg;
256 257
	struct mmc_data *data = host->mrq->data;

258 259
	dev_dbg(&host->pd->dev, "Command completed\n");

260
	if (WARN(!data, "%s: NULL data in DMA completion!\n",
261 262 263
		 dev_name(&host->pd->dev)))
		return;

264
	if (data->flags & MMC_DATA_READ)
265
		dma_unmap_sg(host->chan_rx->device->dev,
266
			     data->sg, data->sg_len,
267 268
			     DMA_FROM_DEVICE);
	else
269
		dma_unmap_sg(host->chan_tx->device->dev,
270
			     data->sg, data->sg_len,
271 272 273 274 275 276 277
			     DMA_TO_DEVICE);

	complete(&host->dma_complete);
}

static void sh_mmcif_start_dma_rx(struct sh_mmcif_host *host)
{
278 279
	struct mmc_data *data = host->mrq->data;
	struct scatterlist *sg = data->sg;
280 281 282 283 284
	struct dma_async_tx_descriptor *desc = NULL;
	struct dma_chan *chan = host->chan_rx;
	dma_cookie_t cookie = -EINVAL;
	int ret;

285
	ret = dma_map_sg(chan->device->dev, sg, data->sg_len,
286
			 DMA_FROM_DEVICE);
287
	if (ret > 0) {
288
		host->dma_active = true;
289
		desc = dmaengine_prep_slave_sg(chan, sg, ret,
290
			DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
291 292 293 294 295
	}

	if (desc) {
		desc->callback = mmcif_dma_complete;
		desc->callback_param = host;
296 297 298
		cookie = dmaengine_submit(desc);
		sh_mmcif_bitset(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN);
		dma_async_issue_pending(chan);
299 300
	}
	dev_dbg(&host->pd->dev, "%s(): mapped %d -> %d, cookie %d\n",
301
		__func__, data->sg_len, ret, cookie);
302 303 304 305 306 307

	if (!desc) {
		/* DMA failed, fall back to PIO */
		if (ret >= 0)
			ret = -EIO;
		host->chan_rx = NULL;
308
		host->dma_active = false;
309 310 311 312 313 314 315 316 317 318 319 320 321
		dma_release_channel(chan);
		/* Free the Tx channel too */
		chan = host->chan_tx;
		if (chan) {
			host->chan_tx = NULL;
			dma_release_channel(chan);
		}
		dev_warn(&host->pd->dev,
			 "DMA failed: %d, falling back to PIO\n", ret);
		sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
	}

	dev_dbg(&host->pd->dev, "%s(): desc %p, cookie %d, sg[%d]\n", __func__,
322
		desc, cookie, data->sg_len);
323 324 325 326
}

static void sh_mmcif_start_dma_tx(struct sh_mmcif_host *host)
{
327 328
	struct mmc_data *data = host->mrq->data;
	struct scatterlist *sg = data->sg;
329 330 331 332 333
	struct dma_async_tx_descriptor *desc = NULL;
	struct dma_chan *chan = host->chan_tx;
	dma_cookie_t cookie = -EINVAL;
	int ret;

334
	ret = dma_map_sg(chan->device->dev, sg, data->sg_len,
335
			 DMA_TO_DEVICE);
336
	if (ret > 0) {
337
		host->dma_active = true;
338
		desc = dmaengine_prep_slave_sg(chan, sg, ret,
339
			DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
340 341 342 343 344
	}

	if (desc) {
		desc->callback = mmcif_dma_complete;
		desc->callback_param = host;
345 346 347
		cookie = dmaengine_submit(desc);
		sh_mmcif_bitset(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAWEN);
		dma_async_issue_pending(chan);
348 349
	}
	dev_dbg(&host->pd->dev, "%s(): mapped %d -> %d, cookie %d\n",
350
		__func__, data->sg_len, ret, cookie);
351 352 353 354 355 356

	if (!desc) {
		/* DMA failed, fall back to PIO */
		if (ret >= 0)
			ret = -EIO;
		host->chan_tx = NULL;
357
		host->dma_active = false;
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
		dma_release_channel(chan);
		/* Free the Rx channel too */
		chan = host->chan_rx;
		if (chan) {
			host->chan_rx = NULL;
			dma_release_channel(chan);
		}
		dev_warn(&host->pd->dev,
			 "DMA failed: %d, falling back to PIO\n", ret);
		sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
	}

	dev_dbg(&host->pd->dev, "%s(): desc %p, cookie %d\n", __func__,
		desc, cookie);
}

static bool sh_mmcif_filter(struct dma_chan *chan, void *arg)
{
	dev_dbg(chan->device->dev, "%s: slave data %p\n", __func__, arg);
	chan->private = arg;
	return true;
}

static void sh_mmcif_request_dma(struct sh_mmcif_host *host,
				 struct sh_mmcif_plat_data *pdata)
{
384
	struct sh_dmae_slave *tx, *rx;
385
	host->dma_active = false;
386 387

	/* We can only either use DMA for both Tx and Rx or not use it at all */
388 389 390 391 392 393
	tx = &host->dma_slave_tx;
	tx->shdma_slave.slave_id = pdata->slave_id_tx;
	rx = &host->dma_slave_rx;
	rx->shdma_slave.slave_id = pdata->slave_id_rx;

	if (tx->shdma_slave.slave_id > 0 && rx->shdma_slave.slave_id > 0) {
394 395 396 397 398
		dma_cap_mask_t mask;

		dma_cap_zero(mask);
		dma_cap_set(DMA_SLAVE, mask);

399 400
		host->chan_tx = dma_request_channel(mask, sh_mmcif_filter,
						    &tx->shdma_slave);
401 402 403 404 405 406
		dev_dbg(&host->pd->dev, "%s: TX: got channel %p\n", __func__,
			host->chan_tx);

		if (!host->chan_tx)
			return;

407 408
		host->chan_rx = dma_request_channel(mask, sh_mmcif_filter,
						    &rx->shdma_slave);
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
		dev_dbg(&host->pd->dev, "%s: RX: got channel %p\n", __func__,
			host->chan_rx);

		if (!host->chan_rx) {
			dma_release_channel(host->chan_tx);
			host->chan_tx = NULL;
			return;
		}

		init_completion(&host->dma_complete);
	}
}

static void sh_mmcif_release_dma(struct sh_mmcif_host *host)
{
	sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
	/* Descriptors are freed automatically */
	if (host->chan_tx) {
		struct dma_chan *chan = host->chan_tx;
		host->chan_tx = NULL;
		dma_release_channel(chan);
	}
	if (host->chan_rx) {
		struct dma_chan *chan = host->chan_rx;
		host->chan_rx = NULL;
		dma_release_channel(chan);
	}

437
	host->dma_active = false;
438
}
Y
Yusuke Goda 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452

static void sh_mmcif_clock_control(struct sh_mmcif_host *host, unsigned int clk)
{
	struct sh_mmcif_plat_data *p = host->pd->dev.platform_data;

	sh_mmcif_bitclr(host, MMCIF_CE_CLK_CTRL, CLK_ENABLE);
	sh_mmcif_bitclr(host, MMCIF_CE_CLK_CTRL, CLK_CLEAR);

	if (!clk)
		return;
	if (p->sup_pclk && clk == host->clk)
		sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, CLK_SUP_PCLK);
	else
		sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, CLK_CLEAR &
S
Simon Horman 已提交
453 454
				((fls(DIV_ROUND_UP(host->clk,
						   clk) - 1) - 1) << 16));
Y
Yusuke Goda 已提交
455 456 457 458 459 460 461 462

	sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, CLK_ENABLE);
}

static void sh_mmcif_sync_reset(struct sh_mmcif_host *host)
{
	u32 tmp;

463
	tmp = 0x010f0000 & sh_mmcif_readl(host->addr, MMCIF_CE_CLK_CTRL);
Y
Yusuke Goda 已提交
464

465 466
	sh_mmcif_writel(host->addr, MMCIF_CE_VERSION, SOFT_RST_ON);
	sh_mmcif_writel(host->addr, MMCIF_CE_VERSION, SOFT_RST_OFF);
Y
Yusuke Goda 已提交
467 468 469 470 471 472 473 474 475
	sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, tmp |
		SRSPTO_256 | SRBSYTO_29 | SRWDTO_29 | SCCSTO_29);
	/* byte swap on */
	sh_mmcif_bitset(host, MMCIF_CE_BUF_ACC, BUF_ACC_ATYP);
}

static int sh_mmcif_error_manage(struct sh_mmcif_host *host)
{
	u32 state1, state2;
476
	int ret, timeout;
Y
Yusuke Goda 已提交
477

478
	host->sd_error = false;
Y
Yusuke Goda 已提交
479

480 481
	state1 = sh_mmcif_readl(host->addr, MMCIF_CE_HOST_STS1);
	state2 = sh_mmcif_readl(host->addr, MMCIF_CE_HOST_STS2);
482 483
	dev_dbg(&host->pd->dev, "ERR HOST_STS1 = %08x\n", state1);
	dev_dbg(&host->pd->dev, "ERR HOST_STS2 = %08x\n", state2);
Y
Yusuke Goda 已提交
484 485 486 487

	if (state1 & STS1_CMDSEQ) {
		sh_mmcif_bitset(host, MMCIF_CE_CMD_CTRL, CMD_CTRL_BREAK);
		sh_mmcif_bitset(host, MMCIF_CE_CMD_CTRL, ~CMD_CTRL_BREAK);
488
		for (timeout = 10000000; timeout; timeout--) {
489
			if (!(sh_mmcif_readl(host->addr, MMCIF_CE_HOST_STS1)
490
			      & STS1_CMDSEQ))
Y
Yusuke Goda 已提交
491 492 493
				break;
			mdelay(1);
		}
494 495 496 497 498
		if (!timeout) {
			dev_err(&host->pd->dev,
				"Forced end of command sequence timeout err\n");
			return -EIO;
		}
Y
Yusuke Goda 已提交
499
		sh_mmcif_sync_reset(host);
500
		dev_dbg(&host->pd->dev, "Forced end of command sequence\n");
Y
Yusuke Goda 已提交
501 502 503 504
		return -EIO;
	}

	if (state2 & STS2_CRC_ERR) {
505
		dev_dbg(&host->pd->dev, ": CRC error\n");
Y
Yusuke Goda 已提交
506 507
		ret = -EIO;
	} else if (state2 & STS2_TIMEOUT_ERR) {
508
		dev_dbg(&host->pd->dev, ": Timeout\n");
Y
Yusuke Goda 已提交
509 510
		ret = -ETIMEDOUT;
	} else {
511
		dev_dbg(&host->pd->dev, ": End/Index error\n");
Y
Yusuke Goda 已提交
512 513 514 515 516
		ret = -EIO;
	}
	return ret;
}

517
static bool sh_mmcif_next_block(struct sh_mmcif_host *host, u32 *p)
Y
Yusuke Goda 已提交
518
{
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
	struct mmc_data *data = host->mrq->data;

	host->sg_blkidx += host->blocksize;

	/* data->sg->length must be a multiple of host->blocksize? */
	BUG_ON(host->sg_blkidx > data->sg->length);

	if (host->sg_blkidx == data->sg->length) {
		host->sg_blkidx = 0;
		if (++host->sg_idx < data->sg_len)
			host->pio_ptr = sg_virt(++data->sg);
	} else {
		host->pio_ptr = p;
	}

	if (host->sg_idx == data->sg_len)
		return false;

	return true;
}

static void sh_mmcif_single_read(struct sh_mmcif_host *host,
				 struct mmc_request *mrq)
{
	host->blocksize = (sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
			   BLOCK_SIZE_MASK) + 3;

	host->wait_for = MMCIF_WAIT_FOR_READ;
	schedule_delayed_work(&host->timeout_work, host->timeout);
Y
Yusuke Goda 已提交
548 549 550

	/* buf read enable */
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFREN);
551 552 553 554 555 556 557 558 559 560 561 562 563 564
}

static bool sh_mmcif_read_block(struct sh_mmcif_host *host)
{
	struct mmc_data *data = host->mrq->data;
	u32 *p = sg_virt(data->sg);
	int i;

	if (host->sd_error) {
		data->error = sh_mmcif_error_manage(host);
		return false;
	}

	for (i = 0; i < host->blocksize / 4; i++)
565
		*p++ = sh_mmcif_readl(host->addr, MMCIF_CE_DATA);
Y
Yusuke Goda 已提交
566 567 568

	/* buffer read end */
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFRE);
569
	host->wait_for = MMCIF_WAIT_FOR_READ_END;
Y
Yusuke Goda 已提交
570

571
	return true;
Y
Yusuke Goda 已提交
572 573
}

574 575
static void sh_mmcif_multi_read(struct sh_mmcif_host *host,
				struct mmc_request *mrq)
Y
Yusuke Goda 已提交
576 577
{
	struct mmc_data *data = mrq->data;
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601

	if (!data->sg_len || !data->sg->length)
		return;

	host->blocksize = sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
		BLOCK_SIZE_MASK;

	host->wait_for = MMCIF_WAIT_FOR_MREAD;
	host->sg_idx = 0;
	host->sg_blkidx = 0;
	host->pio_ptr = sg_virt(data->sg);
	schedule_delayed_work(&host->timeout_work, host->timeout);
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFREN);
}

static bool sh_mmcif_mread_block(struct sh_mmcif_host *host)
{
	struct mmc_data *data = host->mrq->data;
	u32 *p = host->pio_ptr;
	int i;

	if (host->sd_error) {
		data->error = sh_mmcif_error_manage(host);
		return false;
Y
Yusuke Goda 已提交
602
	}
603 604 605 606 607 608 609 610 611 612 613 614 615

	BUG_ON(!data->sg->length);

	for (i = 0; i < host->blocksize / 4; i++)
		*p++ = sh_mmcif_readl(host->addr, MMCIF_CE_DATA);

	if (!sh_mmcif_next_block(host, p))
		return false;

	schedule_delayed_work(&host->timeout_work, host->timeout);
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFREN);

	return true;
Y
Yusuke Goda 已提交
616 617
}

618
static void sh_mmcif_single_write(struct sh_mmcif_host *host,
Y
Yusuke Goda 已提交
619 620
					struct mmc_request *mrq)
{
621 622
	host->blocksize = (sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
			   BLOCK_SIZE_MASK) + 3;
Y
Yusuke Goda 已提交
623

624 625
	host->wait_for = MMCIF_WAIT_FOR_WRITE;
	schedule_delayed_work(&host->timeout_work, host->timeout);
Y
Yusuke Goda 已提交
626 627

	/* buf write enable */
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFWEN);
}

static bool sh_mmcif_write_block(struct sh_mmcif_host *host)
{
	struct mmc_data *data = host->mrq->data;
	u32 *p = sg_virt(data->sg);
	int i;

	if (host->sd_error) {
		data->error = sh_mmcif_error_manage(host);
		return false;
	}

	for (i = 0; i < host->blocksize / 4; i++)
643
		sh_mmcif_writel(host->addr, MMCIF_CE_DATA, *p++);
Y
Yusuke Goda 已提交
644 645 646

	/* buffer write end */
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MDTRANE);
647
	host->wait_for = MMCIF_WAIT_FOR_WRITE_END;
Y
Yusuke Goda 已提交
648

649
	return true;
Y
Yusuke Goda 已提交
650 651
}

652 653
static void sh_mmcif_multi_write(struct sh_mmcif_host *host,
				struct mmc_request *mrq)
Y
Yusuke Goda 已提交
654 655 656
{
	struct mmc_data *data = mrq->data;

657 658
	if (!data->sg_len || !data->sg->length)
		return;
Y
Yusuke Goda 已提交
659

660 661
	host->blocksize = sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
		BLOCK_SIZE_MASK;
Y
Yusuke Goda 已提交
662

663 664 665 666 667 668 669
	host->wait_for = MMCIF_WAIT_FOR_MWRITE;
	host->sg_idx = 0;
	host->sg_blkidx = 0;
	host->pio_ptr = sg_virt(data->sg);
	schedule_delayed_work(&host->timeout_work, host->timeout);
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFWEN);
}
Y
Yusuke Goda 已提交
670

671 672 673 674 675 676 677 678 679
static bool sh_mmcif_mwrite_block(struct sh_mmcif_host *host)
{
	struct mmc_data *data = host->mrq->data;
	u32 *p = host->pio_ptr;
	int i;

	if (host->sd_error) {
		data->error = sh_mmcif_error_manage(host);
		return false;
Y
Yusuke Goda 已提交
680
	}
681 682 683 684 685 686 687 688 689 690 691 692 693

	BUG_ON(!data->sg->length);

	for (i = 0; i < host->blocksize / 4; i++)
		sh_mmcif_writel(host->addr, MMCIF_CE_DATA, *p++);

	if (!sh_mmcif_next_block(host, p))
		return false;

	schedule_delayed_work(&host->timeout_work, host->timeout);
	sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFWEN);

	return true;
Y
Yusuke Goda 已提交
694 695 696 697 698 699
}

static void sh_mmcif_get_response(struct sh_mmcif_host *host,
						struct mmc_command *cmd)
{
	if (cmd->flags & MMC_RSP_136) {
700 701 702 703
		cmd->resp[0] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP3);
		cmd->resp[1] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP2);
		cmd->resp[2] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP1);
		cmd->resp[3] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP0);
Y
Yusuke Goda 已提交
704
	} else
705
		cmd->resp[0] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP0);
Y
Yusuke Goda 已提交
706 707 708 709 710
}

static void sh_mmcif_get_cmd12response(struct sh_mmcif_host *host,
						struct mmc_command *cmd)
{
711
	cmd->resp[0] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP_CMD12);
Y
Yusuke Goda 已提交
712 713 714
}

static u32 sh_mmcif_set_cmd(struct sh_mmcif_host *host,
715
			    struct mmc_request *mrq)
Y
Yusuke Goda 已提交
716
{
717 718 719
	struct mmc_data *data = mrq->data;
	struct mmc_command *cmd = mrq->cmd;
	u32 opc = cmd->opcode;
Y
Yusuke Goda 已提交
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
	u32 tmp = 0;

	/* Response Type check */
	switch (mmc_resp_type(cmd)) {
	case MMC_RSP_NONE:
		tmp |= CMD_SET_RTYP_NO;
		break;
	case MMC_RSP_R1:
	case MMC_RSP_R1B:
	case MMC_RSP_R3:
		tmp |= CMD_SET_RTYP_6B;
		break;
	case MMC_RSP_R2:
		tmp |= CMD_SET_RTYP_17B;
		break;
	default:
736
		dev_err(&host->pd->dev, "Unsupported response type.\n");
Y
Yusuke Goda 已提交
737 738 739 740 741 742 743 744 745 746 747 748 749
		break;
	}
	switch (opc) {
	/* RBSY */
	case MMC_SWITCH:
	case MMC_STOP_TRANSMISSION:
	case MMC_SET_WRITE_PROT:
	case MMC_CLR_WRITE_PROT:
	case MMC_ERASE:
		tmp |= CMD_SET_RBSY;
		break;
	}
	/* WDAT / DATW */
750
	if (data) {
Y
Yusuke Goda 已提交
751 752 753 754 755 756 757 758 759 760 761 762
		tmp |= CMD_SET_WDAT;
		switch (host->bus_width) {
		case MMC_BUS_WIDTH_1:
			tmp |= CMD_SET_DATW_1;
			break;
		case MMC_BUS_WIDTH_4:
			tmp |= CMD_SET_DATW_4;
			break;
		case MMC_BUS_WIDTH_8:
			tmp |= CMD_SET_DATW_8;
			break;
		default:
763
			dev_err(&host->pd->dev, "Unsupported bus width.\n");
Y
Yusuke Goda 已提交
764 765 766 767 768 769 770 771 772 773
			break;
		}
	}
	/* DWEN */
	if (opc == MMC_WRITE_BLOCK || opc == MMC_WRITE_MULTIPLE_BLOCK)
		tmp |= CMD_SET_DWEN;
	/* CMLTE/CMD12EN */
	if (opc == MMC_READ_MULTIPLE_BLOCK || opc == MMC_WRITE_MULTIPLE_BLOCK) {
		tmp |= CMD_SET_CMLTE | CMD_SET_CMD12EN;
		sh_mmcif_bitset(host, MMCIF_CE_BLOCK_SET,
774
				data->blocks << 16);
Y
Yusuke Goda 已提交
775 776 777 778 779 780 781 782 783 784 785 786 787
	}
	/* RIDXC[1:0] check bits */
	if (opc == MMC_SEND_OP_COND || opc == MMC_ALL_SEND_CID ||
	    opc == MMC_SEND_CSD || opc == MMC_SEND_CID)
		tmp |= CMD_SET_RIDXC_BITS;
	/* RCRC7C[1:0] check bits */
	if (opc == MMC_SEND_OP_COND)
		tmp |= CMD_SET_CRC7C_BITS;
	/* RCRC7C[1:0] internal CRC7 */
	if (opc == MMC_ALL_SEND_CID ||
		opc == MMC_SEND_CSD || opc == MMC_SEND_CID)
		tmp |= CMD_SET_CRC7C_INTERNAL;

788
	return (opc << 24) | tmp;
Y
Yusuke Goda 已提交
789 790
}

791
static int sh_mmcif_data_trans(struct sh_mmcif_host *host,
792
			       struct mmc_request *mrq, u32 opc)
Y
Yusuke Goda 已提交
793 794 795
{
	switch (opc) {
	case MMC_READ_MULTIPLE_BLOCK:
796 797
		sh_mmcif_multi_read(host, mrq);
		return 0;
Y
Yusuke Goda 已提交
798
	case MMC_WRITE_MULTIPLE_BLOCK:
799 800
		sh_mmcif_multi_write(host, mrq);
		return 0;
Y
Yusuke Goda 已提交
801
	case MMC_WRITE_BLOCK:
802 803
		sh_mmcif_single_write(host, mrq);
		return 0;
Y
Yusuke Goda 已提交
804 805
	case MMC_READ_SINGLE_BLOCK:
	case MMC_SEND_EXT_CSD:
806 807
		sh_mmcif_single_read(host, mrq);
		return 0;
Y
Yusuke Goda 已提交
808
	default:
809
		dev_err(&host->pd->dev, "UNSUPPORTED CMD = d'%08d\n", opc);
810
		return -EINVAL;
Y
Yusuke Goda 已提交
811 812 813 814
	}
}

static void sh_mmcif_start_cmd(struct sh_mmcif_host *host,
815
			       struct mmc_request *mrq)
Y
Yusuke Goda 已提交
816
{
817
	struct mmc_command *cmd = mrq->cmd;
818 819
	u32 opc = cmd->opcode;
	u32 mask;
Y
Yusuke Goda 已提交
820 821

	switch (opc) {
822
	/* response busy check */
Y
Yusuke Goda 已提交
823 824 825 826 827
	case MMC_SWITCH:
	case MMC_STOP_TRANSMISSION:
	case MMC_SET_WRITE_PROT:
	case MMC_CLR_WRITE_PROT:
	case MMC_ERASE:
828
		mask = MASK_START_CMD | MASK_MRBSYE;
Y
Yusuke Goda 已提交
829 830
		break;
	default:
831
		mask = MASK_START_CMD | MASK_MCRSPE;
Y
Yusuke Goda 已提交
832 833 834
		break;
	}

835
	if (mrq->data) {
836 837 838
		sh_mmcif_writel(host->addr, MMCIF_CE_BLOCK_SET, 0);
		sh_mmcif_writel(host->addr, MMCIF_CE_BLOCK_SET,
				mrq->data->blksz);
Y
Yusuke Goda 已提交
839
	}
840
	opc = sh_mmcif_set_cmd(host, mrq);
Y
Yusuke Goda 已提交
841

842 843
	sh_mmcif_writel(host->addr, MMCIF_CE_INT, 0xD80430C0);
	sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, mask);
Y
Yusuke Goda 已提交
844
	/* set arg */
845
	sh_mmcif_writel(host->addr, MMCIF_CE_ARG, cmd->arg);
Y
Yusuke Goda 已提交
846
	/* set cmd */
847
	sh_mmcif_writel(host->addr, MMCIF_CE_CMD_SET, opc);
Y
Yusuke Goda 已提交
848

849 850
	host->wait_for = MMCIF_WAIT_FOR_CMD;
	schedule_delayed_work(&host->timeout_work, host->timeout);
Y
Yusuke Goda 已提交
851 852 853
}

static void sh_mmcif_stop_cmd(struct sh_mmcif_host *host,
854
			      struct mmc_request *mrq)
Y
Yusuke Goda 已提交
855
{
856 857
	switch (mrq->cmd->opcode) {
	case MMC_READ_MULTIPLE_BLOCK:
Y
Yusuke Goda 已提交
858
		sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MCMD12DRE);
859 860
		break;
	case MMC_WRITE_MULTIPLE_BLOCK:
Y
Yusuke Goda 已提交
861
		sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MCMD12RBE);
862 863
		break;
	default:
864
		dev_err(&host->pd->dev, "unsupported stop cmd\n");
865
		mrq->stop->error = sh_mmcif_error_manage(host);
Y
Yusuke Goda 已提交
866 867 868
		return;
	}

869 870
	host->wait_for = MMCIF_WAIT_FOR_STOP;
	schedule_delayed_work(&host->timeout_work, host->timeout);
Y
Yusuke Goda 已提交
871 872 873 874 875
}

static void sh_mmcif_request(struct mmc_host *mmc, struct mmc_request *mrq)
{
	struct sh_mmcif_host *host = mmc_priv(mmc);
876 877 878 879 880 881 882 883 884 885 886 887
	unsigned long flags;

	spin_lock_irqsave(&host->lock, flags);
	if (host->state != STATE_IDLE) {
		spin_unlock_irqrestore(&host->lock, flags);
		mrq->cmd->error = -EAGAIN;
		mmc_request_done(mmc, mrq);
		return;
	}

	host->state = STATE_REQUEST;
	spin_unlock_irqrestore(&host->lock, flags);
Y
Yusuke Goda 已提交
888 889 890 891 892

	switch (mrq->cmd->opcode) {
	/* MMCIF does not support SD/SDIO command */
	case SD_IO_SEND_OP_COND:
	case MMC_APP_CMD:
893
		host->state = STATE_IDLE;
Y
Yusuke Goda 已提交
894 895 896 897 898 899
		mrq->cmd->error = -ETIMEDOUT;
		mmc_request_done(mmc, mrq);
		return;
	case MMC_SEND_EXT_CSD: /* = SD_SEND_IF_COND (8) */
		if (!mrq->data) {
			/* send_if_cond cmd (not support) */
900
			host->state = STATE_IDLE;
Y
Yusuke Goda 已提交
901 902 903 904 905 906 907 908
			mrq->cmd->error = -ETIMEDOUT;
			mmc_request_done(mmc, mrq);
			return;
		}
		break;
	default:
		break;
	}
909 910

	host->mrq = mrq;
Y
Yusuke Goda 已提交
911

912
	sh_mmcif_start_cmd(host, mrq);
Y
Yusuke Goda 已提交
913 914 915 916 917 918
}

static void sh_mmcif_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
{
	struct sh_mmcif_host *host = mmc_priv(mmc);
	struct sh_mmcif_plat_data *p = host->pd->dev.platform_data;
919 920 921 922 923 924 925 926 927 928
	unsigned long flags;

	spin_lock_irqsave(&host->lock, flags);
	if (host->state != STATE_IDLE) {
		spin_unlock_irqrestore(&host->lock, flags);
		return;
	}

	host->state = STATE_IOS;
	spin_unlock_irqrestore(&host->lock, flags);
Y
Yusuke Goda 已提交
929

930
	if (ios->power_mode == MMC_POWER_UP) {
931
		if (!host->card_present) {
932 933
			/* See if we also get DMA */
			sh_mmcif_request_dma(host, host->pd->dev.platform_data);
934
			host->card_present = true;
935
		}
936
	} else if (ios->power_mode == MMC_POWER_OFF || !ios->clock) {
Y
Yusuke Goda 已提交
937 938
		/* clock stop */
		sh_mmcif_clock_control(host, 0);
939
		if (ios->power_mode == MMC_POWER_OFF) {
940
			if (host->card_present) {
941
				sh_mmcif_release_dma(host);
942
				host->card_present = false;
943
			}
944 945 946 947
		}
		if (host->power) {
			pm_runtime_put(&host->pd->dev);
			host->power = false;
948
			if (p->down_pwr && ios->power_mode == MMC_POWER_OFF)
949 950
				p->down_pwr(host->pd);
		}
951
		host->state = STATE_IDLE;
Y
Yusuke Goda 已提交
952 953 954
		return;
	}

955 956 957 958 959 960 961 962
	if (ios->clock) {
		if (!host->power) {
			if (p->set_pwr)
				p->set_pwr(host->pd, ios->power_mode);
			pm_runtime_get_sync(&host->pd->dev);
			host->power = true;
			sh_mmcif_sync_reset(host);
		}
Y
Yusuke Goda 已提交
963
		sh_mmcif_clock_control(host, ios->clock);
964
	}
Y
Yusuke Goda 已提交
965 966

	host->bus_width = ios->bus_width;
967
	host->state = STATE_IDLE;
Y
Yusuke Goda 已提交
968 969
}

970 971 972 973 974 975 976 977 978 979 980
static int sh_mmcif_get_cd(struct mmc_host *mmc)
{
	struct sh_mmcif_host *host = mmc_priv(mmc);
	struct sh_mmcif_plat_data *p = host->pd->dev.platform_data;

	if (!p->get_cd)
		return -ENOSYS;
	else
		return p->get_cd(host->pd);
}

Y
Yusuke Goda 已提交
981 982 983
static struct mmc_host_ops sh_mmcif_ops = {
	.request	= sh_mmcif_request,
	.set_ios	= sh_mmcif_set_ios,
984
	.get_cd		= sh_mmcif_get_cd,
Y
Yusuke Goda 已提交
985 986
};

987 988 989
static bool sh_mmcif_end_cmd(struct sh_mmcif_host *host)
{
	struct mmc_command *cmd = host->mrq->cmd;
990
	struct mmc_data *data = host->mrq->data;
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
	long time;

	if (host->sd_error) {
		switch (cmd->opcode) {
		case MMC_ALL_SEND_CID:
		case MMC_SELECT_CARD:
		case MMC_APP_CMD:
			cmd->error = -ETIMEDOUT;
			host->sd_error = false;
			break;
		default:
			cmd->error = sh_mmcif_error_manage(host);
			dev_dbg(&host->pd->dev, "Cmd(d'%d) error %d\n",
				cmd->opcode, cmd->error);
			break;
		}
		return false;
	}
	if (!(cmd->flags & MMC_RSP_PRESENT)) {
		cmd->error = 0;
		return false;
	}

	sh_mmcif_get_response(host, cmd);

1016
	if (!data)
1017 1018
		return false;

1019
	if (data->flags & MMC_DATA_READ) {
1020 1021 1022 1023 1024 1025 1026 1027
		if (host->chan_rx)
			sh_mmcif_start_dma_rx(host);
	} else {
		if (host->chan_tx)
			sh_mmcif_start_dma_tx(host);
	}

	if (!host->dma_active) {
1028 1029
		data->error = sh_mmcif_data_trans(host, host->mrq, cmd->opcode);
		if (!data->error)
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
			return true;
		return false;
	}

	/* Running in the IRQ thread, can sleep */
	time = wait_for_completion_interruptible_timeout(&host->dma_complete,
							 host->timeout);
	if (host->sd_error) {
		dev_err(host->mmc->parent,
			"Error IRQ while waiting for DMA completion!\n");
		/* Woken up by an error IRQ: abort DMA */
1041
		if (data->flags & MMC_DATA_READ)
1042 1043 1044
			dmaengine_terminate_all(host->chan_rx);
		else
			dmaengine_terminate_all(host->chan_tx);
1045
		data->error = sh_mmcif_error_manage(host);
1046
	} else if (!time) {
1047
		data->error = -ETIMEDOUT;
1048
	} else if (time < 0) {
1049
		data->error = time;
1050 1051 1052 1053 1054
	}
	sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC,
			BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
	host->dma_active = false;

1055 1056
	if (data->error)
		data->bytes_xfered = 0;
1057 1058 1059 1060 1061 1062 1063 1064

	return false;
}

static irqreturn_t sh_mmcif_irqt(int irq, void *dev_id)
{
	struct sh_mmcif_host *host = dev_id;
	struct mmc_request *mrq = host->mrq;
1065
	struct mmc_data *data = mrq->data;
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112

	cancel_delayed_work_sync(&host->timeout_work);

	/*
	 * All handlers return true, if processing continues, and false, if the
	 * request has to be completed - successfully or not
	 */
	switch (host->wait_for) {
	case MMCIF_WAIT_FOR_REQUEST:
		/* We're too late, the timeout has already kicked in */
		return IRQ_HANDLED;
	case MMCIF_WAIT_FOR_CMD:
		if (sh_mmcif_end_cmd(host))
			/* Wait for data */
			return IRQ_HANDLED;
		break;
	case MMCIF_WAIT_FOR_MREAD:
		if (sh_mmcif_mread_block(host))
			/* Wait for more data */
			return IRQ_HANDLED;
		break;
	case MMCIF_WAIT_FOR_READ:
		if (sh_mmcif_read_block(host))
			/* Wait for data end */
			return IRQ_HANDLED;
		break;
	case MMCIF_WAIT_FOR_MWRITE:
		if (sh_mmcif_mwrite_block(host))
			/* Wait data to write */
			return IRQ_HANDLED;
		break;
	case MMCIF_WAIT_FOR_WRITE:
		if (sh_mmcif_write_block(host))
			/* Wait for data end */
			return IRQ_HANDLED;
		break;
	case MMCIF_WAIT_FOR_STOP:
		if (host->sd_error) {
			mrq->stop->error = sh_mmcif_error_manage(host);
			break;
		}
		sh_mmcif_get_cmd12response(host, mrq->stop);
		mrq->stop->error = 0;
		break;
	case MMCIF_WAIT_FOR_READ_END:
	case MMCIF_WAIT_FOR_WRITE_END:
		if (host->sd_error)
1113
			data->error = sh_mmcif_error_manage(host);
1114 1115 1116 1117 1118 1119
		break;
	default:
		BUG();
	}

	if (host->wait_for != MMCIF_WAIT_FOR_STOP) {
1120 1121 1122
		if (!mrq->cmd->error && data && !data->error)
			data->bytes_xfered =
				data->blocks * data->blksz;
1123

1124
		if (mrq->stop && !mrq->cmd->error && (!data || !data->error)) {
1125 1126 1127 1128 1129 1130 1131 1132
			sh_mmcif_stop_cmd(host, mrq);
			if (!mrq->stop->error)
				return IRQ_HANDLED;
		}
	}

	host->wait_for = MMCIF_WAIT_FOR_REQUEST;
	host->state = STATE_IDLE;
1133
	host->mrq = NULL;
1134 1135 1136 1137 1138
	mmc_request_done(host->mmc, mrq);

	return IRQ_HANDLED;
}

Y
Yusuke Goda 已提交
1139 1140 1141
static irqreturn_t sh_mmcif_intr(int irq, void *dev_id)
{
	struct sh_mmcif_host *host = dev_id;
1142
	u32 state;
Y
Yusuke Goda 已提交
1143 1144
	int err = 0;

1145
	state = sh_mmcif_readl(host->addr, MMCIF_CE_INT);
Y
Yusuke Goda 已提交
1146

1147 1148 1149 1150 1151 1152
	if (state & INT_ERR_STS) {
		/* error interrupts - process first */
		sh_mmcif_writel(host->addr, MMCIF_CE_INT, ~state);
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, state);
		err = 1;
	} else if (state & INT_RBSYE) {
1153 1154
		sh_mmcif_writel(host->addr, MMCIF_CE_INT,
				~(INT_RBSYE | INT_CRSPE));
Y
Yusuke Goda 已提交
1155 1156
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MRBSYE);
	} else if (state & INT_CRSPE) {
1157
		sh_mmcif_writel(host->addr, MMCIF_CE_INT, ~INT_CRSPE);
Y
Yusuke Goda 已提交
1158 1159
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MCRSPE);
	} else if (state & INT_BUFREN) {
1160
		sh_mmcif_writel(host->addr, MMCIF_CE_INT, ~INT_BUFREN);
Y
Yusuke Goda 已提交
1161 1162
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MBUFREN);
	} else if (state & INT_BUFWEN) {
1163
		sh_mmcif_writel(host->addr, MMCIF_CE_INT, ~INT_BUFWEN);
Y
Yusuke Goda 已提交
1164 1165
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MBUFWEN);
	} else if (state & INT_CMD12DRE) {
1166
		sh_mmcif_writel(host->addr, MMCIF_CE_INT,
Y
Yusuke Goda 已提交
1167 1168 1169 1170
			~(INT_CMD12DRE | INT_CMD12RBE |
			  INT_CMD12CRE | INT_BUFRE));
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MCMD12DRE);
	} else if (state & INT_BUFRE) {
1171
		sh_mmcif_writel(host->addr, MMCIF_CE_INT, ~INT_BUFRE);
Y
Yusuke Goda 已提交
1172 1173
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MBUFRE);
	} else if (state & INT_DTRANE) {
1174
		sh_mmcif_writel(host->addr, MMCIF_CE_INT, ~INT_DTRANE);
Y
Yusuke Goda 已提交
1175 1176
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MDTRANE);
	} else if (state & INT_CMD12RBE) {
1177
		sh_mmcif_writel(host->addr, MMCIF_CE_INT,
Y
Yusuke Goda 已提交
1178 1179 1180
				~(INT_CMD12RBE | INT_CMD12CRE));
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, MASK_MCMD12RBE);
	} else {
1181
		dev_dbg(&host->pd->dev, "Unsupported interrupt: 0x%x\n", state);
1182
		sh_mmcif_writel(host->addr, MMCIF_CE_INT, ~state);
Y
Yusuke Goda 已提交
1183 1184 1185 1186
		sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, state);
		err = 1;
	}
	if (err) {
1187
		host->sd_error = true;
1188
		dev_dbg(&host->pd->dev, "int err state = %08x\n", state);
Y
Yusuke Goda 已提交
1189
	}
1190 1191 1192 1193 1194 1195
	if (state & ~(INT_CMD12RBE | INT_CMD12CRE)) {
		if (!host->dma_active)
			return IRQ_WAKE_THREAD;
		else if (host->sd_error)
			mmcif_dma_complete(host);
	} else {
1196
		dev_dbg(&host->pd->dev, "Unexpected IRQ 0x%x\n", state);
1197
	}
Y
Yusuke Goda 已提交
1198 1199 1200 1201

	return IRQ_HANDLED;
}

1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
static void mmcif_timeout_work(struct work_struct *work)
{
	struct delayed_work *d = container_of(work, struct delayed_work, work);
	struct sh_mmcif_host *host = container_of(d, struct sh_mmcif_host, timeout_work);
	struct mmc_request *mrq = host->mrq;

	if (host->dying)
		/* Don't run after mmc_remove_host() */
		return;

	/*
	 * Handle races with cancel_delayed_work(), unless
	 * cancel_delayed_work_sync() is used
	 */
	switch (host->wait_for) {
	case MMCIF_WAIT_FOR_CMD:
		mrq->cmd->error = sh_mmcif_error_manage(host);
		break;
	case MMCIF_WAIT_FOR_STOP:
		mrq->stop->error = sh_mmcif_error_manage(host);
		break;
	case MMCIF_WAIT_FOR_MREAD:
	case MMCIF_WAIT_FOR_MWRITE:
	case MMCIF_WAIT_FOR_READ:
	case MMCIF_WAIT_FOR_WRITE:
	case MMCIF_WAIT_FOR_READ_END:
	case MMCIF_WAIT_FOR_WRITE_END:
1229
		mrq->data->error = sh_mmcif_error_manage(host);
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240
		break;
	default:
		BUG();
	}

	host->state = STATE_IDLE;
	host->wait_for = MMCIF_WAIT_FOR_REQUEST;
	host->mrq = NULL;
	mmc_request_done(host->mmc, mrq);
}

Y
Yusuke Goda 已提交
1241 1242 1243 1244
static int __devinit sh_mmcif_probe(struct platform_device *pdev)
{
	int ret = 0, irq[2];
	struct mmc_host *mmc;
1245 1246
	struct sh_mmcif_host *host;
	struct sh_mmcif_plat_data *pd;
Y
Yusuke Goda 已提交
1247 1248 1249 1250 1251 1252 1253
	struct resource *res;
	void __iomem *reg;
	char clk_name[8];

	irq[0] = platform_get_irq(pdev, 0);
	irq[1] = platform_get_irq(pdev, 1);
	if (irq[0] < 0 || irq[1] < 0) {
1254
		dev_err(&pdev->dev, "Get irq error\n");
Y
Yusuke Goda 已提交
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
		return -ENXIO;
	}
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res) {
		dev_err(&pdev->dev, "platform_get_resource error.\n");
		return -ENXIO;
	}
	reg = ioremap(res->start, resource_size(res));
	if (!reg) {
		dev_err(&pdev->dev, "ioremap error.\n");
		return -ENOMEM;
	}
1267
	pd = pdev->dev.platform_data;
Y
Yusuke Goda 已提交
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 (!pd) {
		dev_err(&pdev->dev, "sh_mmcif plat data error.\n");
		ret = -ENXIO;
		goto clean_up;
	}
	mmc = mmc_alloc_host(sizeof(struct sh_mmcif_host), &pdev->dev);
	if (!mmc) {
		ret = -ENOMEM;
		goto clean_up;
	}
	host		= mmc_priv(mmc);
	host->mmc	= mmc;
	host->addr	= reg;
	host->timeout	= 1000;

	snprintf(clk_name, sizeof(clk_name), "mmc%d", pdev->id);
	host->hclk = clk_get(&pdev->dev, clk_name);
	if (IS_ERR(host->hclk)) {
		dev_err(&pdev->dev, "cannot get clock \"%s\"\n", clk_name);
		ret = PTR_ERR(host->hclk);
		goto clean_up1;
	}
	clk_enable(host->hclk);
	host->clk = clk_get_rate(host->hclk);
	host->pd = pdev;

1294
	spin_lock_init(&host->lock);
Y
Yusuke Goda 已提交
1295 1296

	mmc->ops = &sh_mmcif_ops;
1297
	mmc->f_max = host->clk / 2;
1298
	mmc->f_min = host->clk / 512;
Y
Yusuke Goda 已提交
1299 1300 1301 1302 1303
	if (pd->ocr)
		mmc->ocr_avail = pd->ocr;
	mmc->caps = MMC_CAP_MMC_HIGHSPEED;
	if (pd->caps)
		mmc->caps |= pd->caps;
1304
	mmc->max_segs = 32;
Y
Yusuke Goda 已提交
1305
	mmc->max_blk_size = 512;
1306 1307
	mmc->max_req_size = PAGE_CACHE_SIZE * mmc->max_segs;
	mmc->max_blk_count = mmc->max_req_size / mmc->max_blk_size;
Y
Yusuke Goda 已提交
1308 1309 1310 1311
	mmc->max_seg_size = mmc->max_req_size;

	sh_mmcif_sync_reset(host);
	platform_set_drvdata(pdev, host);
1312

1313 1314 1315 1316 1317 1318
	pm_runtime_enable(&pdev->dev);
	host->power = false;

	ret = pm_runtime_resume(&pdev->dev);
	if (ret < 0)
		goto clean_up2;
1319

1320
	INIT_DELAYED_WORK(&host->timeout_work, mmcif_timeout_work);
Y
Yusuke Goda 已提交
1321

1322 1323
	sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, MASK_ALL);

1324
	ret = request_threaded_irq(irq[0], sh_mmcif_intr, sh_mmcif_irqt, 0, "sh_mmc:error", host);
Y
Yusuke Goda 已提交
1325
	if (ret) {
1326
		dev_err(&pdev->dev, "request_irq error (sh_mmc:error)\n");
1327
		goto clean_up3;
Y
Yusuke Goda 已提交
1328
	}
1329
	ret = request_threaded_irq(irq[1], sh_mmcif_intr, sh_mmcif_irqt, 0, "sh_mmc:int", host);
Y
Yusuke Goda 已提交
1330
	if (ret) {
1331
		dev_err(&pdev->dev, "request_irq error (sh_mmc:int)\n");
1332
		goto clean_up4;
Y
Yusuke Goda 已提交
1333 1334
	}

1335 1336 1337
	ret = mmc_add_host(mmc);
	if (ret < 0)
		goto clean_up5;
Y
Yusuke Goda 已提交
1338

1339 1340
	dev_pm_qos_expose_latency_limit(&pdev->dev, 100);

1341 1342
	dev_info(&pdev->dev, "driver version %s\n", DRIVER_VERSION);
	dev_dbg(&pdev->dev, "chip ver H'%04x\n",
1343
		sh_mmcif_readl(host->addr, MMCIF_CE_VERSION) & 0x0000ffff);
Y
Yusuke Goda 已提交
1344 1345
	return ret;

1346 1347 1348 1349
clean_up5:
	free_irq(irq[1], host);
clean_up4:
	free_irq(irq[0], host);
1350 1351
clean_up3:
	pm_runtime_suspend(&pdev->dev);
Y
Yusuke Goda 已提交
1352
clean_up2:
1353
	pm_runtime_disable(&pdev->dev);
Y
Yusuke Goda 已提交
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
	clk_disable(host->hclk);
clean_up1:
	mmc_free_host(mmc);
clean_up:
	if (reg)
		iounmap(reg);
	return ret;
}

static int __devexit sh_mmcif_remove(struct platform_device *pdev)
{
	struct sh_mmcif_host *host = platform_get_drvdata(pdev);
	int irq[2];

1368
	host->dying = true;
1369
	pm_runtime_get_sync(&pdev->dev);
Y
Yusuke Goda 已提交
1370

1371 1372
	dev_pm_qos_hide_latency_limit(&pdev->dev);

1373
	mmc_remove_host(host->mmc);
1374 1375
	sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, MASK_ALL);

1376 1377 1378 1379 1380 1381 1382
	/*
	 * FIXME: cancel_delayed_work(_sync)() and free_irq() race with the
	 * mmc_remove_host() call above. But swapping order doesn't help either
	 * (a query on the linux-mmc mailing list didn't bring any replies).
	 */
	cancel_delayed_work_sync(&host->timeout_work);

Y
Yusuke Goda 已提交
1383 1384 1385
	if (host->addr)
		iounmap(host->addr);

1386 1387
	irq[0] = platform_get_irq(pdev, 0);
	irq[1] = platform_get_irq(pdev, 1);
Y
Yusuke Goda 已提交
1388 1389 1390 1391

	free_irq(irq[0], host);
	free_irq(irq[1], host);

1392 1393
	platform_set_drvdata(pdev, NULL);

Y
Yusuke Goda 已提交
1394 1395
	clk_disable(host->hclk);
	mmc_free_host(host->mmc);
1396 1397
	pm_runtime_put_sync(&pdev->dev);
	pm_runtime_disable(&pdev->dev);
Y
Yusuke Goda 已提交
1398 1399 1400 1401

	return 0;
}

1402 1403 1404 1405 1406 1407 1408 1409 1410 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
#ifdef CONFIG_PM
static int sh_mmcif_suspend(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct sh_mmcif_host *host = platform_get_drvdata(pdev);
	int ret = mmc_suspend_host(host->mmc);

	if (!ret) {
		sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, MASK_ALL);
		clk_disable(host->hclk);
	}

	return ret;
}

static int sh_mmcif_resume(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct sh_mmcif_host *host = platform_get_drvdata(pdev);

	clk_enable(host->hclk);

	return mmc_resume_host(host->mmc);
}
#else
#define sh_mmcif_suspend	NULL
#define sh_mmcif_resume		NULL
#endif	/* CONFIG_PM */

static const struct dev_pm_ops sh_mmcif_dev_pm_ops = {
	.suspend = sh_mmcif_suspend,
	.resume = sh_mmcif_resume,
};

Y
Yusuke Goda 已提交
1436 1437 1438 1439 1440
static struct platform_driver sh_mmcif_driver = {
	.probe		= sh_mmcif_probe,
	.remove		= sh_mmcif_remove,
	.driver		= {
		.name	= DRIVER_NAME,
1441
		.pm	= &sh_mmcif_dev_pm_ops,
Y
Yusuke Goda 已提交
1442 1443 1444
	},
};

1445
module_platform_driver(sh_mmcif_driver);
Y
Yusuke Goda 已提交
1446 1447 1448

MODULE_DESCRIPTION("SuperH on-chip MMC/eMMC interface driver");
MODULE_LICENSE("GPL");
1449
MODULE_ALIAS("platform:" DRIVER_NAME);
Y
Yusuke Goda 已提交
1450
MODULE_AUTHOR("Yusuke Goda <yusuke.goda.sx@renesas.com>");