atmel-mci.c 56.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * Atmel MultiMedia Card Interface driver
 *
 * Copyright (C) 2004-2008 Atmel Corporation
 *
 * 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.
 */
#include <linux/blkdev.h>
#include <linux/clk.h>
H
Haavard Skinnemoen 已提交
12
#include <linux/debugfs.h>
13
#include <linux/device.h>
14 15
#include <linux/dmaengine.h>
#include <linux/dma-mapping.h>
B
Ben Nizette 已提交
16
#include <linux/err.h>
D
David Brownell 已提交
17
#include <linux/gpio.h>
18 19 20 21 22 23
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/scatterlist.h>
H
Haavard Skinnemoen 已提交
24
#include <linux/seq_file.h>
25
#include <linux/slab.h>
H
Haavard Skinnemoen 已提交
26
#include <linux/stat.h>
27 28

#include <linux/mmc/host.h>
29
#include <linux/mmc/sdio.h>
30 31

#include <mach/atmel-mci.h>
32
#include <linux/atmel-mci.h>
33
#include <linux/atmel_pdc.h>
34 35 36 37

#include <asm/io.h>
#include <asm/unaligned.h>

38
#include <mach/cpu.h>
39
#include <mach/board.h>
40 41 42

#include "atmel-mci-regs.h"

43
#define ATMCI_DATA_ERROR_FLAGS	(ATMCI_DCRCE | ATMCI_DTOE | ATMCI_OVRE | ATMCI_UNRE)
44
#define ATMCI_DMA_THRESHOLD	16
45 46 47 48

enum {
	EVENT_CMD_COMPLETE = 0,
	EVENT_XFER_COMPLETE,
49 50 51 52 53
	EVENT_DATA_COMPLETE,
	EVENT_DATA_ERROR,
};

enum atmel_mci_state {
54 55
	STATE_IDLE = 0,
	STATE_SENDING_CMD,
56 57 58 59
	STATE_SENDING_DATA,
	STATE_DATA_BUSY,
	STATE_SENDING_STOP,
	STATE_DATA_ERROR,
60 61
};

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
enum atmci_xfer_dir {
	XFER_RECEIVE = 0,
	XFER_TRANSMIT,
};

enum atmci_pdc_buf {
	PDC_FIRST_BUF = 0,
	PDC_SECOND_BUF,
};

struct atmel_mci_caps {
	bool    has_dma;
	bool    has_pdc;
	bool    has_cfg_reg;
	bool    has_cstor_reg;
	bool    has_highspeed;
	bool    has_rwproof;
};

81 82 83 84 85
struct atmel_mci_dma {
	struct dma_chan			*chan;
	struct dma_async_tx_descriptor	*data_desc;
};

86 87 88 89
/**
 * struct atmel_mci - MMC controller state shared between all slots
 * @lock: Spinlock protecting the queue and associated data.
 * @regs: Pointer to MMIO registers.
90
 * @sg: Scatterlist entry currently being processed by PIO or PDC code.
91 92 93 94 95 96 97
 * @pio_offset: Offset into the current scatterlist entry.
 * @cur_slot: The slot which is currently using the controller.
 * @mrq: The request currently being processed on @cur_slot,
 *	or NULL if the controller is idle.
 * @cmd: The command currently being sent to the card, or NULL.
 * @data: The data currently being transferred, or NULL if no data
 *	transfer is in progress.
98
 * @data_size: just data->blocks * data->blksz.
99 100
 * @dma: DMA client state.
 * @data_chan: DMA channel being used for the current data transfer.
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
 * @cmd_status: Snapshot of SR taken upon completion of the current
 *	command. Only valid when EVENT_CMD_COMPLETE is pending.
 * @data_status: Snapshot of SR taken upon completion of the current
 *	data transfer. Only valid when EVENT_DATA_COMPLETE or
 *	EVENT_DATA_ERROR is pending.
 * @stop_cmdr: Value to be loaded into CMDR when the stop command is
 *	to be sent.
 * @tasklet: Tasklet running the request state machine.
 * @pending_events: Bitmask of events flagged by the interrupt handler
 *	to be processed by the tasklet.
 * @completed_events: Bitmask of events which the state machine has
 *	processed.
 * @state: Tasklet state.
 * @queue: List of slots waiting for access to the controller.
 * @need_clock_update: Update the clock rate before the next request.
 * @need_reset: Reset controller before next request.
 * @mode_reg: Value of the MR register.
118
 * @cfg_reg: Value of the CFG register.
119 120 121 122 123 124
 * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
 *	rate and timeout calculations.
 * @mapbase: Physical address of the MMIO registers.
 * @mck: The peripheral bus clock hooked up to the MMC controller.
 * @pdev: Platform device associated with the MMC controller.
 * @slot: Slots sharing this MMC controller.
125 126 127 128 129 130 131
 * @caps: MCI capabilities depending on MCI version.
 * @prepare_data: function to setup MCI before data transfer which
 * depends on MCI capabilities.
 * @submit_data: function to start data transfer which depends on MCI
 * capabilities.
 * @stop_transfer: function to stop data transfer which depends on MCI
 * capabilities.
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
 *
 * Locking
 * =======
 *
 * @lock is a softirq-safe spinlock protecting @queue as well as
 * @cur_slot, @mrq and @state. These must always be updated
 * at the same time while holding @lock.
 *
 * @lock also protects mode_reg and need_clock_update since these are
 * used to synchronize mode register updates with the queue
 * processing.
 *
 * The @mrq field of struct atmel_mci_slot is also protected by @lock,
 * and must always be written at the same time as the slot is added to
 * @queue.
 *
 * @pending_events and @completed_events are accessed using atomic bit
 * operations, so they don't need any locking.
 *
 * None of the fields touched by the interrupt handler need any
 * locking. However, ordering is important: Before EVENT_DATA_ERROR or
 * EVENT_DATA_COMPLETE is set in @pending_events, all data-related
 * interrupts must be disabled and @data_status updated with a
 * snapshot of SR. Similarly, before EVENT_CMD_COMPLETE is set, the
L
Lucas De Marchi 已提交
156
 * CMDRDY interrupt must be disabled and @cmd_status updated with a
157 158 159 160
 * snapshot of SR, and before EVENT_XFER_COMPLETE can be set, the
 * bytes_xfered field of @data must be written. This is ensured by
 * using barriers.
 */
161
struct atmel_mci {
162
	spinlock_t		lock;
163 164 165 166 167
	void __iomem		*regs;

	struct scatterlist	*sg;
	unsigned int		pio_offset;

168
	struct atmel_mci_slot	*cur_slot;
169 170 171
	struct mmc_request	*mrq;
	struct mmc_command	*cmd;
	struct mmc_data		*data;
172
	unsigned int		data_size;
173

174 175 176
	struct atmel_mci_dma	dma;
	struct dma_chan		*data_chan;

177 178 179 180 181 182 183
	u32			cmd_status;
	u32			data_status;
	u32			stop_cmdr;

	struct tasklet_struct	tasklet;
	unsigned long		pending_events;
	unsigned long		completed_events;
184
	enum atmel_mci_state	state;
185
	struct list_head	queue;
186

187 188 189
	bool			need_clock_update;
	bool			need_reset;
	u32			mode_reg;
190
	u32			cfg_reg;
191 192 193 194
	unsigned long		bus_hz;
	unsigned long		mapbase;
	struct clk		*mck;
	struct platform_device	*pdev;
195

196
	struct atmel_mci_slot	*slot[ATMCI_MAX_NR_SLOTS];
197 198 199 200 201 202

	struct atmel_mci_caps   caps;

	u32 (*prepare_data)(struct atmel_mci *host, struct mmc_data *data);
	void (*submit_data)(struct atmel_mci *host, struct mmc_data *data);
	void (*stop_transfer)(struct atmel_mci *host);
203 204 205 206 207 208 209
};

/**
 * struct atmel_mci_slot - MMC slot state
 * @mmc: The mmc_host representing this slot.
 * @host: The MMC controller this slot is using.
 * @sdc_reg: Value of SDCR to be written before using this slot.
210
 * @sdio_irq: SDIO irq mask for this slot.
211 212 213 214 215 216 217 218 219 220
 * @mrq: mmc_request currently being processed or waiting to be
 *	processed, or NULL when the slot is idle.
 * @queue_node: List node for placing this node in the @queue list of
 *	&struct atmel_mci.
 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
 * @flags: Random state bits associated with the slot.
 * @detect_pin: GPIO pin used for card detection, or negative if not
 *	available.
 * @wp_pin: GPIO pin used for card write protect sending, or negative
 *	if not available.
221
 * @detect_is_active_high: The state of the detect pin when it is active.
222 223 224 225 226 227 228
 * @detect_timer: Timer used for debouncing @detect_pin interrupts.
 */
struct atmel_mci_slot {
	struct mmc_host		*mmc;
	struct atmel_mci	*host;

	u32			sdc_reg;
229
	u32			sdio_irq;
230 231 232 233 234 235 236 237 238

	struct mmc_request	*mrq;
	struct list_head	queue_node;

	unsigned int		clock;
	unsigned long		flags;
#define ATMCI_CARD_PRESENT	0
#define ATMCI_CARD_NEED_INIT	1
#define ATMCI_SHUTDOWN		2
239
#define ATMCI_SUSPENDED		3
240 241 242

	int			detect_pin;
	int			wp_pin;
243
	bool			detect_is_active_high;
244 245

	struct timer_list	detect_timer;
246 247 248 249 250 251 252 253 254
};

#define atmci_test_and_clear_pending(host, event)		\
	test_and_clear_bit(event, &host->pending_events)
#define atmci_set_completed(host, event)			\
	set_bit(event, &host->completed_events)
#define atmci_set_pending(host, event)				\
	set_bit(event, &host->pending_events)

H
Haavard Skinnemoen 已提交
255 256 257 258 259 260
/*
 * The debugfs stuff below is mostly optimized away when
 * CONFIG_DEBUG_FS is not set.
 */
static int atmci_req_show(struct seq_file *s, void *v)
{
261 262
	struct atmel_mci_slot	*slot = s->private;
	struct mmc_request	*mrq;
H
Haavard Skinnemoen 已提交
263 264 265 266 267
	struct mmc_command	*cmd;
	struct mmc_command	*stop;
	struct mmc_data		*data;

	/* Make sure we get a consistent snapshot */
268 269
	spin_lock_bh(&slot->host->lock);
	mrq = slot->mrq;
H
Haavard Skinnemoen 已提交
270 271 272 273 274 275 276 277 278 279 280

	if (mrq) {
		cmd = mrq->cmd;
		data = mrq->data;
		stop = mrq->stop;

		if (cmd)
			seq_printf(s,
				"CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
				cmd->opcode, cmd->arg, cmd->flags,
				cmd->resp[0], cmd->resp[1], cmd->resp[2],
281
				cmd->resp[3], cmd->error);
H
Haavard Skinnemoen 已提交
282 283 284 285 286 287 288 289 290
		if (data)
			seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
				data->bytes_xfered, data->blocks,
				data->blksz, data->flags, data->error);
		if (stop)
			seq_printf(s,
				"CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
				stop->opcode, stop->arg, stop->flags,
				stop->resp[0], stop->resp[1], stop->resp[2],
291
				stop->resp[3], stop->error);
H
Haavard Skinnemoen 已提交
292 293
	}

294
	spin_unlock_bh(&slot->host->lock);
H
Haavard Skinnemoen 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321

	return 0;
}

static int atmci_req_open(struct inode *inode, struct file *file)
{
	return single_open(file, atmci_req_show, inode->i_private);
}

static const struct file_operations atmci_req_fops = {
	.owner		= THIS_MODULE,
	.open		= atmci_req_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static void atmci_show_status_reg(struct seq_file *s,
		const char *regname, u32 value)
{
	static const char	*sr_bit[] = {
		[0]	= "CMDRDY",
		[1]	= "RXRDY",
		[2]	= "TXRDY",
		[3]	= "BLKE",
		[4]	= "DTIP",
		[5]	= "NOTBUSY",
322 323
		[6]	= "ENDRX",
		[7]	= "ENDTX",
H
Haavard Skinnemoen 已提交
324 325
		[8]	= "SDIOIRQA",
		[9]	= "SDIOIRQB",
326 327 328
		[12]	= "SDIOWAIT",
		[14]	= "RXBUFF",
		[15]	= "TXBUFE",
H
Haavard Skinnemoen 已提交
329 330 331 332 333 334 335
		[16]	= "RINDE",
		[17]	= "RDIRE",
		[18]	= "RCRCE",
		[19]	= "RENDE",
		[20]	= "RTOE",
		[21]	= "DCRCE",
		[22]	= "DTOE",
336 337 338 339 340
		[23]	= "CSTOE",
		[24]	= "BLKOVRE",
		[25]	= "DMADONE",
		[26]	= "FIFOEMPTY",
		[27]	= "XFRDONE",
H
Haavard Skinnemoen 已提交
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
		[30]	= "OVRE",
		[31]	= "UNRE",
	};
	unsigned int		i;

	seq_printf(s, "%s:\t0x%08x", regname, value);
	for (i = 0; i < ARRAY_SIZE(sr_bit); i++) {
		if (value & (1 << i)) {
			if (sr_bit[i])
				seq_printf(s, " %s", sr_bit[i]);
			else
				seq_puts(s, " UNKNOWN");
		}
	}
	seq_putc(s, '\n');
}

static int atmci_regs_show(struct seq_file *s, void *v)
{
	struct atmel_mci	*host = s->private;
	u32			*buf;

363
	buf = kmalloc(ATMCI_REGS_SIZE, GFP_KERNEL);
H
Haavard Skinnemoen 已提交
364 365 366
	if (!buf)
		return -ENOMEM;

367 368 369 370 371 372
	/*
	 * Grab a more or less consistent snapshot. Note that we're
	 * not disabling interrupts, so IMR and SR may not be
	 * consistent.
	 */
	spin_lock_bh(&host->lock);
373
	clk_enable(host->mck);
374
	memcpy_fromio(buf, host->regs, ATMCI_REGS_SIZE);
375
	clk_disable(host->mck);
376
	spin_unlock_bh(&host->lock);
H
Haavard Skinnemoen 已提交
377 378

	seq_printf(s, "MR:\t0x%08x%s%s CLKDIV=%u\n",
379 380 381 382 383 384 385
			buf[ATMCI_MR / 4],
			buf[ATMCI_MR / 4] & ATMCI_MR_RDPROOF ? " RDPROOF" : "",
			buf[ATMCI_MR / 4] & ATMCI_MR_WRPROOF ? " WRPROOF" : "",
			buf[ATMCI_MR / 4] & 0xff);
	seq_printf(s, "DTOR:\t0x%08x\n", buf[ATMCI_DTOR / 4]);
	seq_printf(s, "SDCR:\t0x%08x\n", buf[ATMCI_SDCR / 4]);
	seq_printf(s, "ARGR:\t0x%08x\n", buf[ATMCI_ARGR / 4]);
H
Haavard Skinnemoen 已提交
386
	seq_printf(s, "BLKR:\t0x%08x BCNT=%u BLKLEN=%u\n",
387 388 389
			buf[ATMCI_BLKR / 4],
			buf[ATMCI_BLKR / 4] & 0xffff,
			(buf[ATMCI_BLKR / 4] >> 16) & 0xffff);
390
	if (host->caps.has_cstor_reg)
391
		seq_printf(s, "CSTOR:\t0x%08x\n", buf[ATMCI_CSTOR / 4]);
H
Haavard Skinnemoen 已提交
392 393 394

	/* Don't read RSPR and RDR; it will consume the data there */

395 396
	atmci_show_status_reg(s, "SR", buf[ATMCI_SR / 4]);
	atmci_show_status_reg(s, "IMR", buf[ATMCI_IMR / 4]);
H
Haavard Skinnemoen 已提交
397

398
	if (host->caps.has_dma) {
399 400
		u32 val;

401
		val = buf[ATMCI_DMA / 4];
402 403 404 405
		seq_printf(s, "DMA:\t0x%08x OFFSET=%u CHKSIZE=%u%s\n",
				val, val & 3,
				((val >> 4) & 3) ?
					1 << (((val >> 4) & 3) + 1) : 1,
406
				val & ATMCI_DMAEN ? " DMAEN" : "");
407 408 409
	}
	if (host->caps.has_cfg_reg) {
		u32 val;
410

411
		val = buf[ATMCI_CFG / 4];
412 413
		seq_printf(s, "CFG:\t0x%08x%s%s%s%s\n",
				val,
414 415 416 417
				val & ATMCI_CFG_FIFOMODE_1DATA ? " FIFOMODE_ONE_DATA" : "",
				val & ATMCI_CFG_FERRCTRL_COR ? " FERRCTRL_CLEAR_ON_READ" : "",
				val & ATMCI_CFG_HSMODE ? " HSMODE" : "",
				val & ATMCI_CFG_LSYNC ? " LSYNC" : "");
418 419
	}

420 421
	kfree(buf);

H
Haavard Skinnemoen 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
	return 0;
}

static int atmci_regs_open(struct inode *inode, struct file *file)
{
	return single_open(file, atmci_regs_show, inode->i_private);
}

static const struct file_operations atmci_regs_fops = {
	.owner		= THIS_MODULE,
	.open		= atmci_regs_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

438
static void atmci_init_debugfs(struct atmel_mci_slot *slot)
H
Haavard Skinnemoen 已提交
439
{
440 441 442 443
	struct mmc_host		*mmc = slot->mmc;
	struct atmel_mci	*host = slot->host;
	struct dentry		*root;
	struct dentry		*node;
H
Haavard Skinnemoen 已提交
444 445 446 447 448 449 450 451 452 453 454 455

	root = mmc->debugfs_root;
	if (!root)
		return;

	node = debugfs_create_file("regs", S_IRUSR, root, host,
			&atmci_regs_fops);
	if (IS_ERR(node))
		return;
	if (!node)
		goto err;

456
	node = debugfs_create_file("req", S_IRUSR, root, slot, &atmci_req_fops);
H
Haavard Skinnemoen 已提交
457 458 459
	if (!node)
		goto err;

460 461 462 463
	node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
	if (!node)
		goto err;

H
Haavard Skinnemoen 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476
	node = debugfs_create_x32("pending_events", S_IRUSR, root,
				     (u32 *)&host->pending_events);
	if (!node)
		goto err;

	node = debugfs_create_x32("completed_events", S_IRUSR, root,
				     (u32 *)&host->completed_events);
	if (!node)
		goto err;

	return;

err:
477
	dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
H
Haavard Skinnemoen 已提交
478
}
479

480
static inline unsigned int atmci_ns_to_clocks(struct atmel_mci *host,
481 482 483 484 485 486
					unsigned int ns)
{
	return (ns * (host->bus_hz / 1000000) + 999) / 1000;
}

static void atmci_set_timeout(struct atmel_mci *host,
487
		struct atmel_mci_slot *slot, struct mmc_data *data)
488 489 490 491 492 493 494 495
{
	static unsigned	dtomul_to_shift[] = {
		0, 4, 7, 8, 10, 12, 16, 20
	};
	unsigned	timeout;
	unsigned	dtocyc;
	unsigned	dtomul;

496 497
	timeout = atmci_ns_to_clocks(host, data->timeout_ns)
		+ data->timeout_clks;
498 499 500 501 502 503 504 505 506 507 508 509 510

	for (dtomul = 0; dtomul < 8; dtomul++) {
		unsigned shift = dtomul_to_shift[dtomul];
		dtocyc = (timeout + (1 << shift) - 1) >> shift;
		if (dtocyc < 15)
			break;
	}

	if (dtomul >= 8) {
		dtomul = 7;
		dtocyc = 15;
	}

511
	dev_vdbg(&slot->mmc->class_dev, "setting timeout to %u cycles\n",
512
			dtocyc << dtomul_to_shift[dtomul]);
513
	atmci_writel(host, ATMCI_DTOR, (ATMCI_DTOMUL(dtomul) | ATMCI_DTOCYC(dtocyc)));
514 515 516 517 518 519 520 521 522 523 524 525 526
}

/*
 * Return mask with command flags to be enabled for this command.
 */
static u32 atmci_prepare_command(struct mmc_host *mmc,
				 struct mmc_command *cmd)
{
	struct mmc_data	*data;
	u32		cmdr;

	cmd->error = -EINPROGRESS;

527
	cmdr = ATMCI_CMDR_CMDNB(cmd->opcode);
528 529 530

	if (cmd->flags & MMC_RSP_PRESENT) {
		if (cmd->flags & MMC_RSP_136)
531
			cmdr |= ATMCI_CMDR_RSPTYP_136BIT;
532
		else
533
			cmdr |= ATMCI_CMDR_RSPTYP_48BIT;
534 535 536 537 538 539 540
	}

	/*
	 * This should really be MAXLAT_5 for CMD2 and ACMD41, but
	 * it's too difficult to determine whether this is an ACMD or
	 * not. Better make it 64.
	 */
541
	cmdr |= ATMCI_CMDR_MAXLAT_64CYC;
542 543

	if (mmc->ios.bus_mode == MMC_BUSMODE_OPENDRAIN)
544
		cmdr |= ATMCI_CMDR_OPDCMD;
545 546 547

	data = cmd->data;
	if (data) {
548
		cmdr |= ATMCI_CMDR_START_XFER;
549 550

		if (cmd->opcode == SD_IO_RW_EXTENDED) {
551
			cmdr |= ATMCI_CMDR_SDIO_BLOCK;
552 553
		} else {
			if (data->flags & MMC_DATA_STREAM)
554
				cmdr |= ATMCI_CMDR_STREAM;
555
			else if (data->blocks > 1)
556
				cmdr |= ATMCI_CMDR_MULTI_BLOCK;
557
			else
558
				cmdr |= ATMCI_CMDR_BLOCK;
559
		}
560 561

		if (data->flags & MMC_DATA_READ)
562
			cmdr |= ATMCI_CMDR_TRDIR_READ;
563 564 565 566 567
	}

	return cmdr;
}

568
static void atmci_send_command(struct atmel_mci *host,
569
		struct mmc_command *cmd, u32 cmd_flags)
570 571 572 573
{
	WARN_ON(host->cmd);
	host->cmd = cmd;

574
	dev_vdbg(&host->pdev->dev,
575 576 577
			"start command: ARGR=0x%08x CMDR=0x%08x\n",
			cmd->arg, cmd_flags);

578 579
	atmci_writel(host, ATMCI_ARGR, cmd->arg);
	atmci_writel(host, ATMCI_CMDR, cmd_flags);
580 581
}

582
static void atmci_send_stop_cmd(struct atmel_mci *host, struct mmc_data *data)
583
{
584
	atmci_send_command(host, data->stop, host->stop_cmdr);
585
	atmci_writel(host, ATMCI_IER, ATMCI_CMDRDY);
586 587
}

588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
/*
 * Configure given PDC buffer taking care of alignement issues.
 * Update host->data_size and host->sg.
 */
static void atmci_pdc_set_single_buf(struct atmel_mci *host,
	enum atmci_xfer_dir dir, enum atmci_pdc_buf buf_nb)
{
	u32 pointer_reg, counter_reg;

	if (dir == XFER_RECEIVE) {
		pointer_reg = ATMEL_PDC_RPR;
		counter_reg = ATMEL_PDC_RCR;
	} else {
		pointer_reg = ATMEL_PDC_TPR;
		counter_reg = ATMEL_PDC_TCR;
	}

	if (buf_nb == PDC_SECOND_BUF) {
606 607
		pointer_reg += ATMEL_PDC_SCND_BUF_OFF;
		counter_reg += ATMEL_PDC_SCND_BUF_OFF;
608 609 610
	}

	atmci_writel(host, pointer_reg, sg_dma_address(host->sg));
611
	if (host->data_size <= sg_dma_len(host->sg)) {
612 613 614 615 616 617 618 619 620 621 622
		if (host->data_size & 0x3) {
			/* If size is different from modulo 4, transfer bytes */
			atmci_writel(host, counter_reg, host->data_size);
			atmci_writel(host, ATMCI_MR, host->mode_reg | ATMCI_MR_PDCFBYTE);
		} else {
			/* Else transfer 32-bits words */
			atmci_writel(host, counter_reg, host->data_size / 4);
		}
		host->data_size = 0;
	} else {
		/* We assume the size of a page is 32-bits aligned */
623 624
		atmci_writel(host, counter_reg, sg_dma_len(host->sg) / 4);
		host->data_size -= sg_dma_len(host->sg);
625 626 627 628 629 630 631 632 633 634 635
		if (host->data_size)
			host->sg = sg_next(host->sg);
	}
}

/*
 * Configure PDC buffer according to the data size ie configuring one or two
 * buffers. Don't use this function if you want to configure only the second
 * buffer. In this case, use atmci_pdc_set_single_buf.
 */
static void atmci_pdc_set_both_buf(struct atmel_mci *host, int dir)
636
{
637 638 639 640 641 642 643 644 645 646 647
	atmci_pdc_set_single_buf(host, dir, PDC_FIRST_BUF);
	if (host->data_size)
		atmci_pdc_set_single_buf(host, dir, PDC_SECOND_BUF);
}

/*
 * Unmap sg lists, called when transfer is finished.
 */
static void atmci_pdc_cleanup(struct atmel_mci *host)
{
	struct mmc_data         *data = host->data;
648

649
	if (data)
650 651 652 653
		dma_unmap_sg(&host->pdev->dev,
				data->sg, data->sg_len,
				((data->flags & MMC_DATA_WRITE)
				 ? DMA_TO_DEVICE : DMA_FROM_DEVICE));
654 655
}

656 657 658 659 660 661
/*
 * Disable PDC transfers. Update pending flags to EVENT_XFER_COMPLETE after
 * having received ATMCI_TXBUFE or ATMCI_RXBUFF interrupt. Enable ATMCI_NOTBUSY
 * interrupt needed for both transfer directions.
 */
static void atmci_pdc_complete(struct atmel_mci *host)
662
{
663 664
	atmci_writel(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
	atmci_pdc_cleanup(host);
665

666 667 668 669 670
	/*
	 * If the card was removed, data will be NULL. No point trying
	 * to send the stop command or waiting for NBUSY in this case.
	 */
	if (host->data) {
671
		atmci_set_pending(host, EVENT_XFER_COMPLETE);
672
		tasklet_schedule(&host->tasklet);
673
		atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
674 675 676
	}
}

677 678 679 680 681 682 683 684 685 686 687 688 689 690
static void atmci_dma_cleanup(struct atmel_mci *host)
{
	struct mmc_data                 *data = host->data;

	if (data)
		dma_unmap_sg(host->dma.chan->device->dev,
				data->sg, data->sg_len,
				((data->flags & MMC_DATA_WRITE)
				 ? DMA_TO_DEVICE : DMA_FROM_DEVICE));
}

/*
 * This function is called by the DMA driver from tasklet context.
 */
691 692 693 694 695 696 697
static void atmci_dma_complete(void *arg)
{
	struct atmel_mci	*host = arg;
	struct mmc_data		*data = host->data;

	dev_vdbg(&host->pdev->dev, "DMA complete\n");

698
	if (host->caps.has_dma)
699
		/* Disable DMA hardware handshaking on MCI */
700
		atmci_writel(host, ATMCI_DMA, atmci_readl(host, ATMCI_DMA) & ~ATMCI_DMAEN);
701

702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
	atmci_dma_cleanup(host);

	/*
	 * If the card was removed, data will be NULL. No point trying
	 * to send the stop command or waiting for NBUSY in this case.
	 */
	if (data) {
		atmci_set_pending(host, EVENT_XFER_COMPLETE);
		tasklet_schedule(&host->tasklet);

		/*
		 * Regardless of what the documentation says, we have
		 * to wait for NOTBUSY even after block read
		 * operations.
		 *
		 * When the DMA transfer is complete, the controller
		 * may still be reading the CRC from the card, i.e.
		 * the data transfer is still in progress and we
		 * haven't seen all the potential error bits yet.
		 *
		 * The interrupt handler will schedule a different
		 * tasklet to finish things up when the data transfer
		 * is completely done.
		 *
		 * We may not complete the mmc request here anyway
		 * because the mmc layer may call back and cause us to
		 * violate the "don't submit new operations from the
		 * completion callback" rule of the dma engine
		 * framework.
		 */
732
		atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
733 734 735
	}
}

736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
/*
 * Returns a mask of interrupt flags to be enabled after the whole
 * request has been prepared.
 */
static u32 atmci_prepare_data(struct atmel_mci *host, struct mmc_data *data)
{
	u32 iflags;

	data->error = -EINPROGRESS;

	host->sg = data->sg;
	host->data = data;
	host->data_chan = NULL;

	iflags = ATMCI_DATA_ERROR_FLAGS;

	/*
	 * Errata: MMC data write operation with less than 12
	 * bytes is impossible.
	 *
	 * Errata: MCI Transmit Data Register (TDR) FIFO
	 * corruption when length is not multiple of 4.
	 */
	if (data->blocks * data->blksz < 12
			|| (data->blocks * data->blksz) & 3)
		host->need_reset = true;

	host->pio_offset = 0;
	if (data->flags & MMC_DATA_READ)
		iflags |= ATMCI_RXRDY;
	else
		iflags |= ATMCI_TXRDY;

	return iflags;
}

/*
 * Set interrupt flags and set block length into the MCI mode register even
 * if this value is also accessible in the MCI block register. It seems to be
 * necessary before the High Speed MCI version. It also map sg and configure
 * PDC registers.
 */
static u32
atmci_prepare_data_pdc(struct atmel_mci *host, struct mmc_data *data)
{
	u32 iflags, tmp;
	unsigned int sg_len;
	enum dma_data_direction dir;

	data->error = -EINPROGRESS;

	host->data = data;
	host->sg = data->sg;
	iflags = ATMCI_DATA_ERROR_FLAGS;

	/* Enable pdc mode */
	atmci_writel(host, ATMCI_MR, host->mode_reg | ATMCI_MR_PDCMODE);

	if (data->flags & MMC_DATA_READ) {
		dir = DMA_FROM_DEVICE;
		iflags |= ATMCI_ENDRX | ATMCI_RXBUFF;
	} else {
		dir = DMA_TO_DEVICE;
		iflags |= ATMCI_ENDTX | ATMCI_TXBUFE;
	}

	/* Set BLKLEN */
	tmp = atmci_readl(host, ATMCI_MR);
	tmp &= 0x0000ffff;
	tmp |= ATMCI_BLKLEN(data->blksz);
	atmci_writel(host, ATMCI_MR, tmp);

	/* Configure PDC */
	host->data_size = data->blocks * data->blksz;
	sg_len = dma_map_sg(&host->pdev->dev, data->sg, data->sg_len, dir);
	if (host->data_size)
		atmci_pdc_set_both_buf(host,
			((dir == DMA_FROM_DEVICE) ? XFER_RECEIVE : XFER_TRANSMIT));

	return iflags;
}

static u32
819
atmci_prepare_data_dma(struct atmel_mci *host, struct mmc_data *data)
820 821 822 823 824 825
{
	struct dma_chan			*chan;
	struct dma_async_tx_descriptor	*desc;
	struct scatterlist		*sg;
	unsigned int			i;
	enum dma_data_direction		direction;
826
	enum dma_transfer_direction	slave_dirn;
827
	unsigned int			sglen;
828 829 830 831 832 833 834 835 836
	u32 iflags;

	data->error = -EINPROGRESS;

	WARN_ON(host->data);
	host->sg = NULL;
	host->data = data;

	iflags = ATMCI_DATA_ERROR_FLAGS;
837 838 839 840 841 842

	/*
	 * We don't do DMA on "complex" transfers, i.e. with
	 * non-word-aligned buffers or lengths. Also, we don't bother
	 * with all the DMA setup overhead for short transfers.
	 */
843 844
	if (data->blocks * data->blksz < ATMCI_DMA_THRESHOLD)
		return atmci_prepare_data(host, data);
845
	if (data->blksz & 3)
846
		return atmci_prepare_data(host, data);
847 848 849

	for_each_sg(data->sg, sg, data->sg_len, i) {
		if (sg->offset & 3 || sg->length & 3)
850
			return atmci_prepare_data(host, data);
851 852 853 854
	}

	/* If we don't have a channel, we can't do DMA */
	chan = host->dma.chan;
855
	if (chan)
856 857 858 859 860
		host->data_chan = chan;

	if (!chan)
		return -ENODEV;

861
	if (host->caps.has_dma)
862
		atmci_writel(host, ATMCI_DMA, ATMCI_DMA_CHKSIZE(3) | ATMCI_DMAEN);
863

864
	if (data->flags & MMC_DATA_READ) {
865
		direction = DMA_FROM_DEVICE;
866 867
		slave_dirn = DMA_DEV_TO_MEM;
	} else {
868
		direction = DMA_TO_DEVICE;
869 870
		slave_dirn = DMA_MEM_TO_DEV;
	}
871

872
	sglen = dma_map_sg(chan->device->dev, data->sg,
873
			data->sg_len, direction);
874

875
	desc = chan->device->device_prep_slave_sg(chan,
876
			data->sg, sglen, slave_dirn,
877 878
			DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
	if (!desc)
879
		goto unmap_exit;
880 881 882 883 884

	host->dma.data_desc = desc;
	desc->callback = atmci_dma_complete;
	desc->callback_param = host;

885
	return iflags;
886
unmap_exit:
887
	dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, direction);
888
	return -ENOMEM;
889 890
}

891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
static void
atmci_submit_data(struct atmel_mci *host, struct mmc_data *data)
{
	return;
}

/*
 * Start PDC according to transfer direction.
 */
static void
atmci_submit_data_pdc(struct atmel_mci *host, struct mmc_data *data)
{
	if (data->flags & MMC_DATA_READ)
		atmci_writel(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
	else
		atmci_writel(host, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
}

static void
atmci_submit_data_dma(struct atmel_mci *host, struct mmc_data *data)
911 912 913 914 915
{
	struct dma_chan			*chan = host->data_chan;
	struct dma_async_tx_descriptor	*desc = host->dma.data_desc;

	if (chan) {
916 917
		dmaengine_submit(desc);
		dma_async_issue_pending(chan);
918 919 920
	}
}

921
static void atmci_stop_transfer(struct atmel_mci *host)
922 923
{
	atmci_set_pending(host, EVENT_XFER_COMPLETE);
924
	atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
925 926
}

927
/*
928
 * Stop data transfer because error(s) occured.
929
 */
930
static void atmci_stop_transfer_pdc(struct atmel_mci *host)
931
{
932 933 934
	atmci_set_pending(host, EVENT_XFER_COMPLETE);
	atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
}
935

936 937 938
static void atmci_stop_transfer_dma(struct atmel_mci *host)
{
	struct dma_chan *chan = host->data_chan;
939

940 941 942 943 944 945 946
	if (chan) {
		dmaengine_terminate_all(chan);
		atmci_dma_cleanup(host);
	} else {
		/* Data transfer was stopped by the interrupt handler */
		atmci_set_pending(host, EVENT_XFER_COMPLETE);
		atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
947
	}
948 949
}

950 951 952 953
/*
 * Start a request: prepare data if needed, prepare the command and activate
 * interrupts.
 */
954 955
static void atmci_start_request(struct atmel_mci *host,
		struct atmel_mci_slot *slot)
956
{
957
	struct mmc_request	*mrq;
958
	struct mmc_command	*cmd;
959
	struct mmc_data		*data;
960
	u32			iflags;
961
	u32			cmdflags;
962

963 964
	mrq = slot->mrq;
	host->cur_slot = slot;
965
	host->mrq = mrq;
966

967 968
	host->pending_events = 0;
	host->completed_events = 0;
969
	host->data_status = 0;
970

971
	if (host->need_reset) {
972 973 974
		atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
		atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIEN);
		atmci_writel(host, ATMCI_MR, host->mode_reg);
975
		if (host->caps.has_cfg_reg)
976
			atmci_writel(host, ATMCI_CFG, host->cfg_reg);
977 978
		host->need_reset = false;
	}
979
	atmci_writel(host, ATMCI_SDCR, slot->sdc_reg);
980

981
	iflags = atmci_readl(host, ATMCI_IMR);
982
	if (iflags & ~(ATMCI_SDIOIRQA | ATMCI_SDIOIRQB))
983 984 985 986 987
		dev_warn(&slot->mmc->class_dev, "WARNING: IMR=0x%08x\n",
				iflags);

	if (unlikely(test_and_clear_bit(ATMCI_CARD_NEED_INIT, &slot->flags))) {
		/* Send init sequence (74 clock cycles) */
988 989
		atmci_writel(host, ATMCI_CMDR, ATMCI_CMDR_SPCMD_INIT);
		while (!(atmci_readl(host, ATMCI_SR) & ATMCI_CMDRDY))
990 991
			cpu_relax();
	}
992
	iflags = 0;
993 994
	data = mrq->data;
	if (data) {
995
		atmci_set_timeout(host, slot, data);
996 997

		/* Must set block count/size before sending command */
998
		atmci_writel(host, ATMCI_BLKR, ATMCI_BCNT(data->blocks)
999
				| ATMCI_BLKLEN(data->blksz));
1000
		dev_vdbg(&slot->mmc->class_dev, "BLKR=0x%08x\n",
1001
			ATMCI_BCNT(data->blocks) | ATMCI_BLKLEN(data->blksz));
1002

1003
		iflags |= host->prepare_data(host, data);
1004 1005
	}

1006
	iflags |= ATMCI_CMDRDY;
1007
	cmd = mrq->cmd;
1008
	cmdflags = atmci_prepare_command(slot->mmc, cmd);
1009
	atmci_send_command(host, cmd, cmdflags);
1010 1011

	if (data)
1012
		host->submit_data(host, data);
1013 1014

	if (mrq->stop) {
1015
		host->stop_cmdr = atmci_prepare_command(slot->mmc, mrq->stop);
1016
		host->stop_cmdr |= ATMCI_CMDR_STOP_XFER;
1017
		if (!(data->flags & MMC_DATA_WRITE))
1018
			host->stop_cmdr |= ATMCI_CMDR_TRDIR_READ;
1019
		if (data->flags & MMC_DATA_STREAM)
1020
			host->stop_cmdr |= ATMCI_CMDR_STREAM;
1021
		else
1022
			host->stop_cmdr |= ATMCI_CMDR_MULTI_BLOCK;
1023 1024 1025 1026 1027 1028 1029 1030
	}

	/*
	 * We could have enabled interrupts earlier, but I suspect
	 * that would open up a nice can of interesting race
	 * conditions (e.g. command and data complete, but stop not
	 * prepared yet.)
	 */
1031
	atmci_writel(host, ATMCI_IER, iflags);
1032
}
1033

1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
static void atmci_queue_request(struct atmel_mci *host,
		struct atmel_mci_slot *slot, struct mmc_request *mrq)
{
	dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
			host->state);

	spin_lock_bh(&host->lock);
	slot->mrq = mrq;
	if (host->state == STATE_IDLE) {
		host->state = STATE_SENDING_CMD;
		atmci_start_request(host, slot);
	} else {
		list_add_tail(&slot->queue_node, &host->queue);
	}
	spin_unlock_bh(&host->lock);
}
1050

1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
static void atmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
{
	struct atmel_mci_slot	*slot = mmc_priv(mmc);
	struct atmel_mci	*host = slot->host;
	struct mmc_data		*data;

	WARN_ON(slot->mrq);

	/*
	 * We may "know" the card is gone even though there's still an
	 * electrical connection. If so, we really need to communicate
	 * this to the MMC core since there won't be any more
	 * interrupts as the card is completely removed. Otherwise,
	 * the MMC core might believe the card is still there even
	 * though the card was just removed very slowly.
	 */
	if (!test_bit(ATMCI_CARD_PRESENT, &slot->flags)) {
		mrq->cmd->error = -ENOMEDIUM;
		mmc_request_done(mmc, mrq);
		return;
	}

	/* We don't support multiple blocks of weird lengths. */
	data = mrq->data;
	if (data && data->blocks > 1 && data->blksz & 3) {
		mrq->cmd->error = -EINVAL;
		mmc_request_done(mmc, mrq);
	}

	atmci_queue_request(host, slot, mrq);
1081 1082 1083 1084
}

static void atmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
{
1085 1086 1087
	struct atmel_mci_slot	*slot = mmc_priv(mmc);
	struct atmel_mci	*host = slot->host;
	unsigned int		i;
1088

1089
	slot->sdc_reg &= ~ATMCI_SDCBUS_MASK;
1090 1091
	switch (ios->bus_width) {
	case MMC_BUS_WIDTH_1:
1092
		slot->sdc_reg |= ATMCI_SDCBUS_1BIT;
1093 1094
		break;
	case MMC_BUS_WIDTH_4:
1095
		slot->sdc_reg |= ATMCI_SDCBUS_4BIT;
1096 1097 1098
		break;
	}

1099
	if (ios->clock) {
1100
		unsigned int clock_min = ~0U;
1101 1102
		u32 clkdiv;

1103 1104
		spin_lock_bh(&host->lock);
		if (!host->mode_reg) {
1105
			clk_enable(host->mck);
1106 1107
			atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
			atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIEN);
1108
			if (host->caps.has_cfg_reg)
1109
				atmci_writel(host, ATMCI_CFG, host->cfg_reg);
1110
		}
1111

1112 1113 1114 1115 1116
		/*
		 * Use mirror of ios->clock to prevent race with mmc
		 * core ios update when finding the minimum.
		 */
		slot->clock = ios->clock;
1117
		for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
1118 1119 1120 1121 1122 1123 1124
			if (host->slot[i] && host->slot[i]->clock
					&& host->slot[i]->clock < clock_min)
				clock_min = host->slot[i]->clock;
		}

		/* Calculate clock divider */
		clkdiv = DIV_ROUND_UP(host->bus_hz, 2 * clock_min) - 1;
1125 1126 1127
		if (clkdiv > 255) {
			dev_warn(&mmc->class_dev,
				"clock %u too slow; using %lu\n",
1128
				clock_min, host->bus_hz / (2 * 256));
1129 1130 1131
			clkdiv = 255;
		}

1132
		host->mode_reg = ATMCI_MR_CLKDIV(clkdiv);
1133

1134 1135 1136 1137 1138
		/*
		 * WRPROOF and RDPROOF prevent overruns/underruns by
		 * stopping the clock when the FIFO is full/empty.
		 * This state is not expected to last for long.
		 */
1139
		if (host->caps.has_rwproof)
1140
			host->mode_reg |= (ATMCI_MR_WRPROOF | ATMCI_MR_RDPROOF);
1141

1142
		if (host->caps.has_cfg_reg) {
1143 1144
			/* setup High Speed mode in relation with card capacity */
			if (ios->timing == MMC_TIMING_SD_HS)
1145
				host->cfg_reg |= ATMCI_CFG_HSMODE;
1146
			else
1147
				host->cfg_reg &= ~ATMCI_CFG_HSMODE;
1148 1149 1150
		}

		if (list_empty(&host->queue)) {
1151
			atmci_writel(host, ATMCI_MR, host->mode_reg);
1152
			if (host->caps.has_cfg_reg)
1153
				atmci_writel(host, ATMCI_CFG, host->cfg_reg);
1154
		} else {
1155
			host->need_clock_update = true;
1156
		}
1157 1158

		spin_unlock_bh(&host->lock);
1159
	} else {
1160 1161 1162 1163
		bool any_slot_active = false;

		spin_lock_bh(&host->lock);
		slot->clock = 0;
1164
		for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
1165 1166 1167 1168
			if (host->slot[i] && host->slot[i]->clock) {
				any_slot_active = true;
				break;
			}
1169
		}
1170
		if (!any_slot_active) {
1171
			atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIDIS);
1172
			if (host->mode_reg) {
1173
				atmci_readl(host, ATMCI_MR);
1174 1175 1176 1177 1178
				clk_disable(host->mck);
			}
			host->mode_reg = 0;
		}
		spin_unlock_bh(&host->lock);
1179 1180 1181
	}

	switch (ios->power_mode) {
1182 1183 1184
	case MMC_POWER_UP:
		set_bit(ATMCI_CARD_NEED_INIT, &slot->flags);
		break;
1185 1186 1187 1188 1189
	default:
		/*
		 * TODO: None of the currently available AVR32-based
		 * boards allow MMC power to be turned off. Implement
		 * power control when this can be tested properly.
1190 1191 1192 1193 1194 1195 1196
		 *
		 * We also need to hook this into the clock management
		 * somehow so that newly inserted cards aren't
		 * subjected to a fast clock before we have a chance
		 * to figure out what the maximum rate is. Currently,
		 * there's no way to avoid this, and there never will
		 * be for boards that don't support power control.
1197 1198 1199 1200 1201 1202 1203
		 */
		break;
	}
}

static int atmci_get_ro(struct mmc_host *mmc)
{
1204 1205
	int			read_only = -ENOSYS;
	struct atmel_mci_slot	*slot = mmc_priv(mmc);
1206

1207 1208
	if (gpio_is_valid(slot->wp_pin)) {
		read_only = gpio_get_value(slot->wp_pin);
1209 1210 1211 1212 1213 1214 1215
		dev_dbg(&mmc->class_dev, "card is %s\n",
				read_only ? "read-only" : "read-write");
	}

	return read_only;
}

1216 1217 1218 1219 1220 1221
static int atmci_get_cd(struct mmc_host *mmc)
{
	int			present = -ENOSYS;
	struct atmel_mci_slot	*slot = mmc_priv(mmc);

	if (gpio_is_valid(slot->detect_pin)) {
1222 1223
		present = !(gpio_get_value(slot->detect_pin) ^
			    slot->detect_is_active_high);
1224 1225 1226 1227 1228 1229 1230
		dev_dbg(&mmc->class_dev, "card is %spresent\n",
				present ? "" : "not ");
	}

	return present;
}

1231 1232 1233 1234 1235 1236
static void atmci_enable_sdio_irq(struct mmc_host *mmc, int enable)
{
	struct atmel_mci_slot	*slot = mmc_priv(mmc);
	struct atmel_mci	*host = slot->host;

	if (enable)
1237
		atmci_writel(host, ATMCI_IER, slot->sdio_irq);
1238
	else
1239
		atmci_writel(host, ATMCI_IDR, slot->sdio_irq);
1240 1241
}

1242
static const struct mmc_host_ops atmci_ops = {
1243 1244 1245
	.request	= atmci_request,
	.set_ios	= atmci_set_ios,
	.get_ro		= atmci_get_ro,
1246
	.get_cd		= atmci_get_cd,
1247
	.enable_sdio_irq = atmci_enable_sdio_irq,
1248 1249
};

1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
/* Called with host->lock held */
static void atmci_request_end(struct atmel_mci *host, struct mmc_request *mrq)
	__releases(&host->lock)
	__acquires(&host->lock)
{
	struct atmel_mci_slot	*slot = NULL;
	struct mmc_host		*prev_mmc = host->cur_slot->mmc;

	WARN_ON(host->cmd || host->data);

	/*
	 * Update the MMC clock rate if necessary. This may be
	 * necessary if set_ios() is called when a different slot is
L
Lucas De Marchi 已提交
1263
	 * busy transferring data.
1264
	 */
1265
	if (host->need_clock_update) {
1266
		atmci_writel(host, ATMCI_MR, host->mode_reg);
1267
		if (host->caps.has_cfg_reg)
1268
			atmci_writel(host, ATMCI_CFG, host->cfg_reg);
1269
	}
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290

	host->cur_slot->mrq = NULL;
	host->mrq = NULL;
	if (!list_empty(&host->queue)) {
		slot = list_entry(host->queue.next,
				struct atmel_mci_slot, queue_node);
		list_del(&slot->queue_node);
		dev_vdbg(&host->pdev->dev, "list not empty: %s is next\n",
				mmc_hostname(slot->mmc));
		host->state = STATE_SENDING_CMD;
		atmci_start_request(host, slot);
	} else {
		dev_vdbg(&host->pdev->dev, "list empty\n");
		host->state = STATE_IDLE;
	}

	spin_unlock(&host->lock);
	mmc_request_done(prev_mmc, mrq);
	spin_lock(&host->lock);
}

1291
static void atmci_command_complete(struct atmel_mci *host,
1292
			struct mmc_command *cmd)
1293
{
1294 1295
	u32		status = host->cmd_status;

1296
	/* Read the response from the card (up to 16 bytes) */
1297 1298 1299 1300
	cmd->resp[0] = atmci_readl(host, ATMCI_RSPR);
	cmd->resp[1] = atmci_readl(host, ATMCI_RSPR);
	cmd->resp[2] = atmci_readl(host, ATMCI_RSPR);
	cmd->resp[3] = atmci_readl(host, ATMCI_RSPR);
1301

1302
	if (status & ATMCI_RTOE)
1303
		cmd->error = -ETIMEDOUT;
1304
	else if ((cmd->flags & MMC_RSP_CRC) && (status & ATMCI_RCRCE))
1305
		cmd->error = -EILSEQ;
1306
	else if (status & (ATMCI_RINDE | ATMCI_RDIRE | ATMCI_RENDE))
1307 1308 1309 1310 1311
		cmd->error = -EIO;
	else
		cmd->error = 0;

	if (cmd->error) {
1312
		dev_dbg(&host->pdev->dev,
1313 1314 1315
			"command error: status=0x%08x\n", status);

		if (cmd->data) {
1316
			host->stop_transfer(host);
1317
			host->data = NULL;
1318
			atmci_writel(host, ATMCI_IDR, ATMCI_NOTBUSY
1319
					| ATMCI_TXRDY | ATMCI_RXRDY
1320 1321 1322 1323 1324 1325 1326
					| ATMCI_DATA_ERROR_FLAGS);
		}
	}
}

static void atmci_detect_change(unsigned long data)
{
1327 1328 1329
	struct atmel_mci_slot	*slot = (struct atmel_mci_slot *)data;
	bool			present;
	bool			present_old;
1330 1331

	/*
1332 1333 1334 1335
	 * atmci_cleanup_slot() sets the ATMCI_SHUTDOWN flag before
	 * freeing the interrupt. We must not re-enable the interrupt
	 * if it has been freed, and if we're shutting down, it
	 * doesn't really matter whether the card is present or not.
1336 1337
	 */
	smp_rmb();
1338
	if (test_bit(ATMCI_SHUTDOWN, &slot->flags))
1339 1340
		return;

1341
	enable_irq(gpio_to_irq(slot->detect_pin));
1342 1343
	present = !(gpio_get_value(slot->detect_pin) ^
		    slot->detect_is_active_high);
1344
	present_old = test_bit(ATMCI_CARD_PRESENT, &slot->flags);
1345

1346 1347
	dev_vdbg(&slot->mmc->class_dev, "detect change: %d (was %d)\n",
			present, present_old);
1348

1349 1350 1351 1352 1353
	if (present != present_old) {
		struct atmel_mci	*host = slot->host;
		struct mmc_request	*mrq;

		dev_dbg(&slot->mmc->class_dev, "card %s\n",
1354 1355
			present ? "inserted" : "removed");

1356 1357 1358 1359 1360 1361
		spin_lock(&host->lock);

		if (!present)
			clear_bit(ATMCI_CARD_PRESENT, &slot->flags);
		else
			set_bit(ATMCI_CARD_PRESENT, &slot->flags);
1362 1363

		/* Clean up queue if present */
1364
		mrq = slot->mrq;
1365
		if (mrq) {
1366 1367 1368 1369 1370
			if (mrq == host->mrq) {
				/*
				 * Reset controller to terminate any ongoing
				 * commands or data transfers.
				 */
1371 1372 1373
				atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
				atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIEN);
				atmci_writel(host, ATMCI_MR, host->mode_reg);
1374
				if (host->caps.has_cfg_reg)
1375
					atmci_writel(host, ATMCI_CFG, host->cfg_reg);
1376 1377 1378 1379 1380 1381

				host->data = NULL;
				host->cmd = NULL;

				switch (host->state) {
				case STATE_IDLE:
1382
					break;
1383 1384 1385 1386 1387 1388
				case STATE_SENDING_CMD:
					mrq->cmd->error = -ENOMEDIUM;
					if (!mrq->data)
						break;
					/* fall through */
				case STATE_SENDING_DATA:
1389
					mrq->data->error = -ENOMEDIUM;
1390
					host->stop_transfer(host);
1391
					break;
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
				case STATE_DATA_BUSY:
				case STATE_DATA_ERROR:
					if (mrq->data->error == -EINPROGRESS)
						mrq->data->error = -ENOMEDIUM;
					if (!mrq->stop)
						break;
					/* fall through */
				case STATE_SENDING_STOP:
					mrq->stop->error = -ENOMEDIUM;
					break;
				}
1403

1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
				atmci_request_end(host, mrq);
			} else {
				list_del(&slot->queue_node);
				mrq->cmd->error = -ENOMEDIUM;
				if (mrq->data)
					mrq->data->error = -ENOMEDIUM;
				if (mrq->stop)
					mrq->stop->error = -ENOMEDIUM;

				spin_unlock(&host->lock);
				mmc_request_done(slot->mmc, mrq);
				spin_lock(&host->lock);
			}
1417
		}
1418
		spin_unlock(&host->lock);
1419

1420
		mmc_detect_change(slot->mmc, 0);
1421 1422 1423 1424 1425
	}
}

static void atmci_tasklet_func(unsigned long priv)
{
1426
	struct atmel_mci	*host = (struct atmel_mci *)priv;
1427 1428
	struct mmc_request	*mrq = host->mrq;
	struct mmc_data		*data = host->data;
1429 1430 1431 1432 1433
	struct mmc_command	*cmd = host->cmd;
	enum atmel_mci_state	state = host->state;
	enum atmel_mci_state	prev_state;
	u32			status;

1434 1435
	spin_lock(&host->lock);

1436
	state = host->state;
1437

1438
	dev_vdbg(&host->pdev->dev,
1439 1440
		"tasklet: state %u pending/completed/mask %lx/%lx/%x\n",
		state, host->pending_events, host->completed_events,
1441
		atmci_readl(host, ATMCI_IMR));
1442

1443 1444
	do {
		prev_state = state;
1445

1446
		switch (state) {
1447 1448 1449
		case STATE_IDLE:
			break;

1450 1451 1452 1453
		case STATE_SENDING_CMD:
			if (!atmci_test_and_clear_pending(host,
						EVENT_CMD_COMPLETE))
				break;
1454

1455 1456 1457 1458
			host->cmd = NULL;
			atmci_set_completed(host, EVENT_CMD_COMPLETE);
			atmci_command_complete(host, mrq->cmd);
			if (!mrq->data || cmd->error) {
1459 1460
				atmci_request_end(host, host->mrq);
				goto unlock;
1461
			}
1462

1463 1464
			prev_state = state = STATE_SENDING_DATA;
			/* fall through */
1465

1466 1467 1468
		case STATE_SENDING_DATA:
			if (atmci_test_and_clear_pending(host,
						EVENT_DATA_ERROR)) {
1469
				host->stop_transfer(host);
1470
				if (data->stop)
1471
					atmci_send_stop_cmd(host, data);
1472 1473 1474
				state = STATE_DATA_ERROR;
				break;
			}
1475

1476 1477 1478
			if (!atmci_test_and_clear_pending(host,
						EVENT_XFER_COMPLETE))
				break;
1479

1480 1481 1482
			atmci_set_completed(host, EVENT_XFER_COMPLETE);
			prev_state = state = STATE_DATA_BUSY;
			/* fall through */
1483

1484 1485 1486 1487 1488 1489 1490 1491 1492
		case STATE_DATA_BUSY:
			if (!atmci_test_and_clear_pending(host,
						EVENT_DATA_COMPLETE))
				break;

			host->data = NULL;
			atmci_set_completed(host, EVENT_DATA_COMPLETE);
			status = host->data_status;
			if (unlikely(status & ATMCI_DATA_ERROR_FLAGS)) {
1493
				if (status & ATMCI_DTOE) {
1494
					dev_dbg(&host->pdev->dev,
1495 1496
							"data timeout error\n");
					data->error = -ETIMEDOUT;
1497
				} else if (status & ATMCI_DCRCE) {
1498
					dev_dbg(&host->pdev->dev,
1499 1500 1501
							"data CRC error\n");
					data->error = -EILSEQ;
				} else {
1502
					dev_dbg(&host->pdev->dev,
1503 1504 1505 1506 1507 1508 1509
						"data FIFO error (status=%08x)\n",
						status);
					data->error = -EIO;
				}
			} else {
				data->bytes_xfered = data->blocks * data->blksz;
				data->error = 0;
1510
				atmci_writel(host, ATMCI_IDR, ATMCI_DATA_ERROR_FLAGS);
1511 1512 1513
			}

			if (!data->stop) {
1514 1515
				atmci_request_end(host, host->mrq);
				goto unlock;
1516
			}
1517

1518 1519
			prev_state = state = STATE_SENDING_STOP;
			if (!data->error)
1520
				atmci_send_stop_cmd(host, data);
1521 1522 1523 1524 1525 1526 1527 1528 1529
			/* fall through */

		case STATE_SENDING_STOP:
			if (!atmci_test_and_clear_pending(host,
						EVENT_CMD_COMPLETE))
				break;

			host->cmd = NULL;
			atmci_command_complete(host, mrq->stop);
1530 1531
			atmci_request_end(host, host->mrq);
			goto unlock;
1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543

		case STATE_DATA_ERROR:
			if (!atmci_test_and_clear_pending(host,
						EVENT_XFER_COMPLETE))
				break;

			state = STATE_DATA_BUSY;
			break;
		}
	} while (state != prev_state);

	host->state = state;
1544 1545 1546

unlock:
	spin_unlock(&host->lock);
1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
}

static void atmci_read_data_pio(struct atmel_mci *host)
{
	struct scatterlist	*sg = host->sg;
	void			*buf = sg_virt(sg);
	unsigned int		offset = host->pio_offset;
	struct mmc_data		*data = host->data;
	u32			value;
	u32			status;
	unsigned int		nbytes = 0;

	do {
1560
		value = atmci_readl(host, ATMCI_RDR);
1561 1562 1563 1564 1565 1566 1567
		if (likely(offset + 4 <= sg->length)) {
			put_unaligned(value, (u32 *)(buf + offset));

			offset += 4;
			nbytes += 4;

			if (offset == sg->length) {
1568
				flush_dcache_page(sg_page(sg));
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
				host->sg = sg = sg_next(sg);
				if (!sg)
					goto done;

				offset = 0;
				buf = sg_virt(sg);
			}
		} else {
			unsigned int remaining = sg->length - offset;
			memcpy(buf + offset, &value, remaining);
			nbytes += remaining;

			flush_dcache_page(sg_page(sg));
			host->sg = sg = sg_next(sg);
			if (!sg)
				goto done;

			offset = 4 - remaining;
			buf = sg_virt(sg);
			memcpy(buf, (u8 *)&value + remaining, offset);
			nbytes += offset;
		}

1592
		status = atmci_readl(host, ATMCI_SR);
1593
		if (status & ATMCI_DATA_ERROR_FLAGS) {
1594
			atmci_writel(host, ATMCI_IDR, (ATMCI_NOTBUSY | ATMCI_RXRDY
1595 1596
						| ATMCI_DATA_ERROR_FLAGS));
			host->data_status = status;
1597 1598
			data->bytes_xfered += nbytes;
			smp_wmb();
1599 1600
			atmci_set_pending(host, EVENT_DATA_ERROR);
			tasklet_schedule(&host->tasklet);
1601
			return;
1602
		}
1603
	} while (status & ATMCI_RXRDY);
1604 1605 1606 1607 1608 1609 1610

	host->pio_offset = offset;
	data->bytes_xfered += nbytes;

	return;

done:
1611 1612
	atmci_writel(host, ATMCI_IDR, ATMCI_RXRDY);
	atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
1613
	data->bytes_xfered += nbytes;
1614
	smp_wmb();
1615
	atmci_set_pending(host, EVENT_XFER_COMPLETE);
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630
}

static void atmci_write_data_pio(struct atmel_mci *host)
{
	struct scatterlist	*sg = host->sg;
	void			*buf = sg_virt(sg);
	unsigned int		offset = host->pio_offset;
	struct mmc_data		*data = host->data;
	u32			value;
	u32			status;
	unsigned int		nbytes = 0;

	do {
		if (likely(offset + 4 <= sg->length)) {
			value = get_unaligned((u32 *)(buf + offset));
1631
			atmci_writel(host, ATMCI_TDR, value);
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651

			offset += 4;
			nbytes += 4;
			if (offset == sg->length) {
				host->sg = sg = sg_next(sg);
				if (!sg)
					goto done;

				offset = 0;
				buf = sg_virt(sg);
			}
		} else {
			unsigned int remaining = sg->length - offset;

			value = 0;
			memcpy(&value, buf + offset, remaining);
			nbytes += remaining;

			host->sg = sg = sg_next(sg);
			if (!sg) {
1652
				atmci_writel(host, ATMCI_TDR, value);
1653 1654 1655 1656 1657 1658
				goto done;
			}

			offset = 4 - remaining;
			buf = sg_virt(sg);
			memcpy((u8 *)&value + remaining, buf, offset);
1659
			atmci_writel(host, ATMCI_TDR, value);
1660 1661 1662
			nbytes += offset;
		}

1663
		status = atmci_readl(host, ATMCI_SR);
1664
		if (status & ATMCI_DATA_ERROR_FLAGS) {
1665
			atmci_writel(host, ATMCI_IDR, (ATMCI_NOTBUSY | ATMCI_TXRDY
1666 1667
						| ATMCI_DATA_ERROR_FLAGS));
			host->data_status = status;
1668 1669
			data->bytes_xfered += nbytes;
			smp_wmb();
1670 1671
			atmci_set_pending(host, EVENT_DATA_ERROR);
			tasklet_schedule(&host->tasklet);
1672
			return;
1673
		}
1674
	} while (status & ATMCI_TXRDY);
1675 1676 1677 1678 1679 1680 1681

	host->pio_offset = offset;
	data->bytes_xfered += nbytes;

	return;

done:
1682 1683
	atmci_writel(host, ATMCI_IDR, ATMCI_TXRDY);
	atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
1684
	data->bytes_xfered += nbytes;
1685
	smp_wmb();
1686
	atmci_set_pending(host, EVENT_XFER_COMPLETE);
1687 1688
}

1689
static void atmci_cmd_interrupt(struct atmel_mci *host, u32 status)
1690
{
1691
	atmci_writel(host, ATMCI_IDR, ATMCI_CMDRDY);
1692

1693
	host->cmd_status = status;
1694
	smp_wmb();
1695
	atmci_set_pending(host, EVENT_CMD_COMPLETE);
1696 1697 1698
	tasklet_schedule(&host->tasklet);
}

1699 1700 1701 1702
static void atmci_sdio_interrupt(struct atmel_mci *host, u32 status)
{
	int	i;

1703
	for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
1704 1705 1706 1707 1708 1709 1710 1711
		struct atmel_mci_slot *slot = host->slot[i];
		if (slot && (status & slot->sdio_irq)) {
			mmc_signal_sdio_irq(slot->mmc);
		}
	}
}


1712 1713
static irqreturn_t atmci_interrupt(int irq, void *dev_id)
{
1714
	struct atmel_mci	*host = dev_id;
1715 1716 1717 1718
	u32			status, mask, pending;
	unsigned int		pass_count = 0;

	do {
1719 1720
		status = atmci_readl(host, ATMCI_SR);
		mask = atmci_readl(host, ATMCI_IMR);
1721 1722 1723 1724 1725
		pending = status & mask;
		if (!pending)
			break;

		if (pending & ATMCI_DATA_ERROR_FLAGS) {
1726
			atmci_writel(host, ATMCI_IDR, ATMCI_DATA_ERROR_FLAGS
1727
					| ATMCI_RXRDY | ATMCI_TXRDY);
1728
			pending &= atmci_readl(host, ATMCI_IMR);
1729

1730
			host->data_status = status;
1731
			smp_wmb();
1732 1733 1734
			atmci_set_pending(host, EVENT_DATA_ERROR);
			tasklet_schedule(&host->tasklet);
		}
1735 1736 1737

		if (pending & ATMCI_TXBUFE) {
			atmci_writel(host, ATMCI_IDR, ATMCI_TXBUFE);
1738
			atmci_writel(host, ATMCI_IDR, ATMCI_ENDTX);
1739 1740 1741 1742 1743 1744 1745
			/*
			 * We can receive this interruption before having configured
			 * the second pdc buffer, so we need to reconfigure first and
			 * second buffers again
			 */
			if (host->data_size) {
				atmci_pdc_set_both_buf(host, XFER_TRANSMIT);
1746
				atmci_writel(host, ATMCI_IER, ATMCI_ENDTX);
1747 1748 1749 1750
				atmci_writel(host, ATMCI_IER, ATMCI_TXBUFE);
			} else {
				atmci_pdc_complete(host);
			}
1751 1752
		} else if (pending & ATMCI_ENDTX) {
			atmci_writel(host, ATMCI_IDR, ATMCI_ENDTX);
1753 1754 1755

			if (host->data_size) {
				atmci_pdc_set_single_buf(host,
1756 1757
						XFER_TRANSMIT, PDC_SECOND_BUF);
				atmci_writel(host, ATMCI_IER, ATMCI_ENDTX);
1758 1759 1760 1761 1762
			}
		}

		if (pending & ATMCI_RXBUFF) {
			atmci_writel(host, ATMCI_IDR, ATMCI_RXBUFF);
1763
			atmci_writel(host, ATMCI_IDR, ATMCI_ENDRX);
1764 1765 1766 1767 1768 1769 1770
			/*
			 * We can receive this interruption before having configured
			 * the second pdc buffer, so we need to reconfigure first and
			 * second buffers again
			 */
			if (host->data_size) {
				atmci_pdc_set_both_buf(host, XFER_RECEIVE);
1771
				atmci_writel(host, ATMCI_IER, ATMCI_ENDRX);
1772 1773 1774 1775
				atmci_writel(host, ATMCI_IER, ATMCI_RXBUFF);
			} else {
				atmci_pdc_complete(host);
			}
1776 1777 1778 1779 1780 1781 1782 1783
		} else if (pending & ATMCI_ENDRX) {
			atmci_writel(host, ATMCI_IDR, ATMCI_ENDRX);

			if (host->data_size) {
				atmci_pdc_set_single_buf(host,
						XFER_RECEIVE, PDC_SECOND_BUF);
				atmci_writel(host, ATMCI_IER, ATMCI_ENDRX);
			}
1784 1785
		}

1786

1787
		if (pending & ATMCI_NOTBUSY) {
1788
			atmci_writel(host, ATMCI_IDR,
1789
					ATMCI_DATA_ERROR_FLAGS | ATMCI_NOTBUSY);
1790 1791
			if (!host->data_status)
				host->data_status = status;
1792
			smp_wmb();
1793 1794 1795
			atmci_set_pending(host, EVENT_DATA_COMPLETE);
			tasklet_schedule(&host->tasklet);
		}
1796
		if (pending & ATMCI_RXRDY)
1797
			atmci_read_data_pio(host);
1798
		if (pending & ATMCI_TXRDY)
1799 1800
			atmci_write_data_pio(host);

1801
		if (pending & ATMCI_CMDRDY)
1802
			atmci_cmd_interrupt(host, status);
1803

1804
		if (pending & (ATMCI_SDIOIRQA | ATMCI_SDIOIRQB))
1805 1806
			atmci_sdio_interrupt(host, status);

1807 1808 1809 1810 1811 1812 1813
	} while (pass_count++ < 5);

	return pass_count ? IRQ_HANDLED : IRQ_NONE;
}

static irqreturn_t atmci_detect_interrupt(int irq, void *dev_id)
{
1814
	struct atmel_mci_slot	*slot = dev_id;
1815 1816 1817 1818 1819 1820 1821

	/*
	 * Disable interrupts until the pin has stabilized and check
	 * the state then. Use mod_timer() since we may be in the
	 * middle of the timer routine when this interrupt triggers.
	 */
	disable_irq_nosync(irq);
1822
	mod_timer(&slot->detect_timer, jiffies + msecs_to_jiffies(20));
1823 1824 1825 1826

	return IRQ_HANDLED;
}

1827 1828
static int __init atmci_init_slot(struct atmel_mci *host,
		struct mci_slot_pdata *slot_data, unsigned int id,
1829
		u32 sdc_reg, u32 sdio_irq)
1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842
{
	struct mmc_host			*mmc;
	struct atmel_mci_slot		*slot;

	mmc = mmc_alloc_host(sizeof(struct atmel_mci_slot), &host->pdev->dev);
	if (!mmc)
		return -ENOMEM;

	slot = mmc_priv(mmc);
	slot->mmc = mmc;
	slot->host = host;
	slot->detect_pin = slot_data->detect_pin;
	slot->wp_pin = slot_data->wp_pin;
1843
	slot->detect_is_active_high = slot_data->detect_is_active_high;
1844
	slot->sdc_reg = sdc_reg;
1845
	slot->sdio_irq = sdio_irq;
1846 1847 1848 1849 1850

	mmc->ops = &atmci_ops;
	mmc->f_min = DIV_ROUND_UP(host->bus_hz, 512);
	mmc->f_max = host->bus_hz / 2;
	mmc->ocr_avail	= MMC_VDD_32_33 | MMC_VDD_33_34;
1851 1852
	if (sdio_irq)
		mmc->caps |= MMC_CAP_SDIO_IRQ;
1853
	if (host->caps.has_highspeed)
1854
		mmc->caps |= MMC_CAP_SD_HIGHSPEED;
1855 1856 1857
	if (slot_data->bus_width >= 4)
		mmc->caps |= MMC_CAP_4_BIT_DATA;

1858
	mmc->max_segs = 64;
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
	mmc->max_req_size = 32768 * 512;
	mmc->max_blk_size = 32768;
	mmc->max_blk_count = 512;

	/* Assume card is present initially */
	set_bit(ATMCI_CARD_PRESENT, &slot->flags);
	if (gpio_is_valid(slot->detect_pin)) {
		if (gpio_request(slot->detect_pin, "mmc_detect")) {
			dev_dbg(&mmc->class_dev, "no detect pin available\n");
			slot->detect_pin = -EBUSY;
1869 1870
		} else if (gpio_get_value(slot->detect_pin) ^
				slot->detect_is_active_high) {
1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
			clear_bit(ATMCI_CARD_PRESENT, &slot->flags);
		}
	}

	if (!gpio_is_valid(slot->detect_pin))
		mmc->caps |= MMC_CAP_NEEDS_POLL;

	if (gpio_is_valid(slot->wp_pin)) {
		if (gpio_request(slot->wp_pin, "mmc_wp")) {
			dev_dbg(&mmc->class_dev, "no WP pin available\n");
			slot->wp_pin = -EBUSY;
		}
	}

	host->slot[id] = slot;
	mmc_add_host(mmc);

	if (gpio_is_valid(slot->detect_pin)) {
		int ret;

		setup_timer(&slot->detect_timer, atmci_detect_change,
				(unsigned long)slot);

		ret = request_irq(gpio_to_irq(slot->detect_pin),
				atmci_detect_interrupt,
				IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
				"mmc-detect", slot);
		if (ret) {
			dev_dbg(&mmc->class_dev,
				"could not request IRQ %d for detect pin\n",
				gpio_to_irq(slot->detect_pin));
			gpio_free(slot->detect_pin);
			slot->detect_pin = -EBUSY;
		}
	}

	atmci_init_debugfs(slot);

	return 0;
}

static void __exit atmci_cleanup_slot(struct atmel_mci_slot *slot,
		unsigned int id)
{
	/* Debugfs stuff is cleaned up by mmc core */

	set_bit(ATMCI_SHUTDOWN, &slot->flags);
	smp_wmb();

	mmc_remove_host(slot->mmc);

	if (gpio_is_valid(slot->detect_pin)) {
		int pin = slot->detect_pin;

		free_irq(gpio_to_irq(pin), slot);
		del_timer_sync(&slot->detect_timer);
		gpio_free(pin);
	}
	if (gpio_is_valid(slot->wp_pin))
		gpio_free(slot->wp_pin);

	slot->host->slot[id] = NULL;
	mmc_free_host(slot->mmc);
}

1936
static bool atmci_filter(struct dma_chan *chan, void *slave)
1937
{
1938
	struct mci_dma_data	*sl = slave;
1939

1940 1941
	if (sl && find_slave_dev(sl) == chan->device->dev) {
		chan->private = slave_data_ptr(sl);
1942
		return true;
1943
	} else {
1944
		return false;
1945
	}
1946
}
1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960

static void atmci_configure_dma(struct atmel_mci *host)
{
	struct mci_platform_data	*pdata;

	if (host == NULL)
		return;

	pdata = host->pdev->dev.platform_data;

	if (pdata && find_slave_dev(pdata->dma_slave)) {
		dma_cap_mask_t mask;

		setup_dma_addr(pdata->dma_slave,
1961 1962
			       host->mapbase + ATMCI_TDR,
			       host->mapbase + ATMCI_RDR);
1963 1964 1965 1966 1967

		/* Try to grab a DMA channel */
		dma_cap_zero(mask);
		dma_cap_set(DMA_SLAVE, mask);
		host->dma.chan =
1968
			dma_request_channel(mask, atmci_filter, pdata->dma_slave);
1969 1970 1971
	}
	if (!host->dma.chan)
		dev_notice(&host->pdev->dev, "DMA not available, using PIO\n");
1972 1973 1974 1975
	else
		dev_info(&host->pdev->dev,
					"Using %s for DMA transfers\n",
					dma_chan_name(host->dma.chan));
1976
}
1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014

static inline unsigned int atmci_get_version(struct atmel_mci *host)
{
	return atmci_readl(host, ATMCI_VERSION) & 0x00000fff;
}

/*
 * HSMCI (High Speed MCI) module is not fully compatible with MCI module.
 * HSMCI provides DMA support and a new config register but no more supports
 * PDC.
 */
static void __init atmci_get_cap(struct atmel_mci *host)
{
	unsigned int version;

	version = atmci_get_version(host);
	dev_info(&host->pdev->dev,
			"version: 0x%x\n", version);

	host->caps.has_dma = 0;
	host->caps.has_pdc = 0;
	host->caps.has_cfg_reg = 0;
	host->caps.has_cstor_reg = 0;
	host->caps.has_highspeed = 0;
	host->caps.has_rwproof = 0;

	/* keep only major version number */
	switch (version & 0xf00) {
	case 0x100:
	case 0x200:
		host->caps.has_pdc = 1;
		host->caps.has_rwproof = 1;
		break;
	case 0x300:
	case 0x400:
	case 0x500:
#ifdef CONFIG_AT_HDMAC
		host->caps.has_dma = 1;
2015
#else
2016 2017 2018
		host->caps.has_dma = 0;
		dev_info(&host->pdev->dev,
			"has dma capability but dma engine is not selected, then use pio\n");
2019
#endif
2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030
		host->caps.has_cfg_reg = 1;
		host->caps.has_cstor_reg = 1;
		host->caps.has_highspeed = 1;
		host->caps.has_rwproof = 1;
		break;
	default:
		dev_warn(&host->pdev->dev,
				"Unmanaged mci version, set minimum capabilities\n");
		break;
	}
}
2031

2032 2033 2034
static int __init atmci_probe(struct platform_device *pdev)
{
	struct mci_platform_data	*pdata;
2035 2036 2037 2038 2039
	struct atmel_mci		*host;
	struct resource			*regs;
	unsigned int			nr_slots;
	int				irq;
	int				ret;
2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050

	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!regs)
		return -ENXIO;
	pdata = pdev->dev.platform_data;
	if (!pdata)
		return -ENXIO;
	irq = platform_get_irq(pdev, 0);
	if (irq < 0)
		return irq;

2051 2052
	host = kzalloc(sizeof(struct atmel_mci), GFP_KERNEL);
	if (!host)
2053 2054 2055
		return -ENOMEM;

	host->pdev = pdev;
2056 2057
	spin_lock_init(&host->lock);
	INIT_LIST_HEAD(&host->queue);
2058 2059 2060 2061 2062 2063 2064 2065

	host->mck = clk_get(&pdev->dev, "mci_clk");
	if (IS_ERR(host->mck)) {
		ret = PTR_ERR(host->mck);
		goto err_clk_get;
	}

	ret = -ENOMEM;
2066
	host->regs = ioremap(regs->start, resource_size(regs));
2067 2068 2069 2070
	if (!host->regs)
		goto err_ioremap;

	clk_enable(host->mck);
2071
	atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
2072 2073 2074 2075 2076
	host->bus_hz = clk_get_rate(host->mck);
	clk_disable(host->mck);

	host->mapbase = regs->start;

2077
	tasklet_init(&host->tasklet, atmci_tasklet_func, (unsigned long)host);
2078

2079
	ret = request_irq(irq, atmci_interrupt, 0, dev_name(&pdev->dev), host);
2080 2081 2082
	if (ret)
		goto err_request_irq;

2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
	/* Get MCI capabilities and set operations according to it */
	atmci_get_cap(host);
	if (host->caps.has_dma) {
		dev_info(&pdev->dev, "using DMA\n");
		host->prepare_data = &atmci_prepare_data_dma;
		host->submit_data = &atmci_submit_data_dma;
		host->stop_transfer = &atmci_stop_transfer_dma;
	} else if (host->caps.has_pdc) {
		dev_info(&pdev->dev, "using PDC\n");
		host->prepare_data = &atmci_prepare_data_pdc;
		host->submit_data = &atmci_submit_data_pdc;
		host->stop_transfer = &atmci_stop_transfer_pdc;
	} else {
		dev_info(&pdev->dev, "no DMA, no PDC\n");
		host->prepare_data = &atmci_prepare_data;
		host->submit_data = &atmci_submit_data;
		host->stop_transfer = &atmci_stop_transfer;
	}

	if (host->caps.has_dma)
		atmci_configure_dma(host);
2104

2105 2106
	platform_set_drvdata(pdev, host);

2107 2108 2109 2110 2111
	/* We need at least one slot to succeed */
	nr_slots = 0;
	ret = -ENODEV;
	if (pdata->slot[0].bus_width) {
		ret = atmci_init_slot(host, &pdata->slot[0],
2112
				0, ATMCI_SDCSEL_SLOT_A, ATMCI_SDIOIRQA);
2113 2114 2115 2116 2117
		if (!ret)
			nr_slots++;
	}
	if (pdata->slot[1].bus_width) {
		ret = atmci_init_slot(host, &pdata->slot[1],
2118
				1, ATMCI_SDCSEL_SLOT_B, ATMCI_SDIOIRQB);
2119 2120
		if (!ret)
			nr_slots++;
2121 2122
	}

2123 2124
	if (!nr_slots) {
		dev_err(&pdev->dev, "init failed: no slot defined\n");
2125
		goto err_init_slot;
2126
	}
2127

2128 2129 2130
	dev_info(&pdev->dev,
			"Atmel MCI controller at 0x%08lx irq %d, %u slots\n",
			host->mapbase, irq, nr_slots);
H
Haavard Skinnemoen 已提交
2131

2132 2133
	return 0;

2134
err_init_slot:
2135 2136
	if (host->dma.chan)
		dma_release_channel(host->dma.chan);
2137
	free_irq(irq, host);
2138 2139 2140 2141 2142
err_request_irq:
	iounmap(host->regs);
err_ioremap:
	clk_put(host->mck);
err_clk_get:
2143
	kfree(host);
2144 2145 2146 2147 2148
	return ret;
}

static int __exit atmci_remove(struct platform_device *pdev)
{
2149 2150
	struct atmel_mci	*host = platform_get_drvdata(pdev);
	unsigned int		i;
2151 2152 2153

	platform_set_drvdata(pdev, NULL);

2154
	for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
2155 2156 2157
		if (host->slot[i])
			atmci_cleanup_slot(host->slot[i], i);
	}
2158

2159
	clk_enable(host->mck);
2160 2161 2162
	atmci_writel(host, ATMCI_IDR, ~0UL);
	atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIDIS);
	atmci_readl(host, ATMCI_SR);
2163
	clk_disable(host->mck);
2164

2165
#ifdef CONFIG_MMC_ATMELMCI_DMA
2166 2167
	if (host->dma.chan)
		dma_release_channel(host->dma.chan);
2168 2169
#endif

2170 2171
	free_irq(platform_get_irq(pdev, 0), host);
	iounmap(host->regs);
2172

2173 2174
	clk_put(host->mck);
	kfree(host);
2175 2176 2177 2178

	return 0;
}

2179 2180 2181 2182 2183 2184
#ifdef CONFIG_PM
static int atmci_suspend(struct device *dev)
{
	struct atmel_mci *host = dev_get_drvdata(dev);
	int i;

2185
	 for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215
		struct atmel_mci_slot *slot = host->slot[i];
		int ret;

		if (!slot)
			continue;
		ret = mmc_suspend_host(slot->mmc);
		if (ret < 0) {
			while (--i >= 0) {
				slot = host->slot[i];
				if (slot
				&& test_bit(ATMCI_SUSPENDED, &slot->flags)) {
					mmc_resume_host(host->slot[i]->mmc);
					clear_bit(ATMCI_SUSPENDED, &slot->flags);
				}
			}
			return ret;
		} else {
			set_bit(ATMCI_SUSPENDED, &slot->flags);
		}
	}

	return 0;
}

static int atmci_resume(struct device *dev)
{
	struct atmel_mci *host = dev_get_drvdata(dev);
	int i;
	int ret = 0;

2216
	for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239
		struct atmel_mci_slot *slot = host->slot[i];
		int err;

		slot = host->slot[i];
		if (!slot)
			continue;
		if (!test_bit(ATMCI_SUSPENDED, &slot->flags))
			continue;
		err = mmc_resume_host(slot->mmc);
		if (err < 0)
			ret = err;
		else
			clear_bit(ATMCI_SUSPENDED, &slot->flags);
	}

	return ret;
}
static SIMPLE_DEV_PM_OPS(atmci_pm, atmci_suspend, atmci_resume);
#define ATMCI_PM_OPS	(&atmci_pm)
#else
#define ATMCI_PM_OPS	NULL
#endif

2240 2241 2242 2243
static struct platform_driver atmci_driver = {
	.remove		= __exit_p(atmci_remove),
	.driver		= {
		.name		= "atmel_mci",
2244
		.pm		= ATMCI_PM_OPS,
2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257
	},
};

static int __init atmci_init(void)
{
	return platform_driver_probe(&atmci_driver, atmci_probe);
}

static void __exit atmci_exit(void)
{
	platform_driver_unregister(&atmci_driver);
}

2258
late_initcall(atmci_init); /* try to load after dma driver when built-in */
2259 2260 2261
module_exit(atmci_exit);

MODULE_DESCRIPTION("Atmel Multimedia Card Interface driver");
J
Jean Delvare 已提交
2262
MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
2263
MODULE_LICENSE("GPL v2");