mmc: atmel-mci: remove useless DMA stuff for non-dt devices
[deliverable/linux.git] / drivers / mmc / host / atmel-mci.c
CommitLineData
7d2be074
HS
1/*
2 * Atmel MultiMedia Card Interface driver
3 *
4 * Copyright (C) 2004-2008 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/blkdev.h>
11#include <linux/clk.h>
deec9ae3 12#include <linux/debugfs.h>
7d2be074 13#include <linux/device.h>
65e8b083
HS
14#include <linux/dmaengine.h>
15#include <linux/dma-mapping.h>
fbfca4b8 16#include <linux/err.h>
3c26e170 17#include <linux/gpio.h>
7d2be074
HS
18#include <linux/init.h>
19#include <linux/interrupt.h>
7bca646e 20#include <linux/io.h>
7d2be074
HS
21#include <linux/ioport.h>
22#include <linux/module.h>
e919fd20
LD
23#include <linux/of.h>
24#include <linux/of_device.h>
25#include <linux/of_gpio.h>
7d2be074
HS
26#include <linux/platform_device.h>
27#include <linux/scatterlist.h>
deec9ae3 28#include <linux/seq_file.h>
5a0e3ad6 29#include <linux/slab.h>
deec9ae3 30#include <linux/stat.h>
e2b35f3d 31#include <linux/types.h>
bcd2360c 32#include <linux/platform_data/atmel.h>
9cbef73c 33#include <linux/platform_data/mmc-atmel-mci.h>
7d2be074
HS
34
35#include <linux/mmc/host.h>
2f1d7918 36#include <linux/mmc/sdio.h>
2635d1ba 37
c42aa775 38#include <linux/atmel-mci.h>
796211b7 39#include <linux/atmel_pdc.h>
ae552ab0
WY
40#include <linux/pm.h>
41#include <linux/pm_runtime.h>
b5b64fa6 42#include <linux/pinctrl/consumer.h>
7d2be074 43
bf614c7a 44#include <asm/cacheflush.h>
7d2be074
HS
45#include <asm/io.h>
46#include <asm/unaligned.h>
47
7d2be074
HS
48#include "atmel-mci-regs.h"
49
ae552ab0
WY
50#define AUTOSUSPEND_DELAY 50
51
2c96a293 52#define ATMCI_DATA_ERROR_FLAGS (ATMCI_DCRCE | ATMCI_DTOE | ATMCI_OVRE | ATMCI_UNRE)
65e8b083 53#define ATMCI_DMA_THRESHOLD 16
7d2be074
HS
54
55enum {
f5177547 56 EVENT_CMD_RDY = 0,
7d2be074 57 EVENT_XFER_COMPLETE,
f5177547 58 EVENT_NOTBUSY,
c06ad258
HS
59 EVENT_DATA_ERROR,
60};
61
62enum atmel_mci_state {
965ebf33
HS
63 STATE_IDLE = 0,
64 STATE_SENDING_CMD,
f5177547
LD
65 STATE_DATA_XFER,
66 STATE_WAITING_NOTBUSY,
c06ad258 67 STATE_SENDING_STOP,
f5177547 68 STATE_END_REQUEST,
7d2be074
HS
69};
70
796211b7
LD
71enum atmci_xfer_dir {
72 XFER_RECEIVE = 0,
73 XFER_TRANSMIT,
74};
75
76enum atmci_pdc_buf {
77 PDC_FIRST_BUF = 0,
78 PDC_SECOND_BUF,
79};
80
81struct atmel_mci_caps {
ccdfe612 82 bool has_dma_conf_reg;
796211b7
LD
83 bool has_pdc;
84 bool has_cfg_reg;
85 bool has_cstor_reg;
86 bool has_highspeed;
87 bool has_rwproof;
faf8180b 88 bool has_odd_clk_div;
24011f34
LD
89 bool has_bad_data_ordering;
90 bool need_reset_after_xfer;
91 bool need_blksz_mul_4;
077d4073 92 bool need_notbusy_for_read_ops;
796211b7
LD
93};
94
65e8b083 95struct atmel_mci_dma {
65e8b083
HS
96 struct dma_chan *chan;
97 struct dma_async_tx_descriptor *data_desc;
65e8b083
HS
98};
99
965ebf33
HS
100/**
101 * struct atmel_mci - MMC controller state shared between all slots
102 * @lock: Spinlock protecting the queue and associated data.
103 * @regs: Pointer to MMIO registers.
796211b7 104 * @sg: Scatterlist entry currently being processed by PIO or PDC code.
965ebf33 105 * @pio_offset: Offset into the current scatterlist entry.
7a90dcc2
LD
106 * @buffer: Buffer used if we don't have the r/w proof capability. We
107 * don't have the time to switch pdc buffers so we have to use only
108 * one buffer for the full transaction.
109 * @buf_size: size of the buffer.
110 * @phys_buf_addr: buffer address needed for pdc.
965ebf33
HS
111 * @cur_slot: The slot which is currently using the controller.
112 * @mrq: The request currently being processed on @cur_slot,
113 * or NULL if the controller is idle.
114 * @cmd: The command currently being sent to the card, or NULL.
115 * @data: The data currently being transferred, or NULL if no data
116 * transfer is in progress.
796211b7 117 * @data_size: just data->blocks * data->blksz.
65e8b083
HS
118 * @dma: DMA client state.
119 * @data_chan: DMA channel being used for the current data transfer.
965ebf33
HS
120 * @cmd_status: Snapshot of SR taken upon completion of the current
121 * command. Only valid when EVENT_CMD_COMPLETE is pending.
122 * @data_status: Snapshot of SR taken upon completion of the current
123 * data transfer. Only valid when EVENT_DATA_COMPLETE or
124 * EVENT_DATA_ERROR is pending.
125 * @stop_cmdr: Value to be loaded into CMDR when the stop command is
126 * to be sent.
127 * @tasklet: Tasklet running the request state machine.
128 * @pending_events: Bitmask of events flagged by the interrupt handler
129 * to be processed by the tasklet.
130 * @completed_events: Bitmask of events which the state machine has
131 * processed.
132 * @state: Tasklet state.
133 * @queue: List of slots waiting for access to the controller.
134 * @need_clock_update: Update the clock rate before the next request.
135 * @need_reset: Reset controller before next request.
24011f34 136 * @timer: Timer to balance the data timeout error flag which cannot rise.
965ebf33 137 * @mode_reg: Value of the MR register.
74791a2d 138 * @cfg_reg: Value of the CFG register.
965ebf33
HS
139 * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
140 * rate and timeout calculations.
141 * @mapbase: Physical address of the MMIO registers.
142 * @mck: The peripheral bus clock hooked up to the MMC controller.
143 * @pdev: Platform device associated with the MMC controller.
144 * @slot: Slots sharing this MMC controller.
796211b7
LD
145 * @caps: MCI capabilities depending on MCI version.
146 * @prepare_data: function to setup MCI before data transfer which
147 * depends on MCI capabilities.
148 * @submit_data: function to start data transfer which depends on MCI
149 * capabilities.
150 * @stop_transfer: function to stop data transfer which depends on MCI
151 * capabilities.
965ebf33
HS
152 *
153 * Locking
154 * =======
155 *
156 * @lock is a softirq-safe spinlock protecting @queue as well as
157 * @cur_slot, @mrq and @state. These must always be updated
158 * at the same time while holding @lock.
159 *
160 * @lock also protects mode_reg and need_clock_update since these are
161 * used to synchronize mode register updates with the queue
162 * processing.
163 *
164 * The @mrq field of struct atmel_mci_slot is also protected by @lock,
165 * and must always be written at the same time as the slot is added to
166 * @queue.
167 *
168 * @pending_events and @completed_events are accessed using atomic bit
169 * operations, so they don't need any locking.
170 *
171 * None of the fields touched by the interrupt handler need any
172 * locking. However, ordering is important: Before EVENT_DATA_ERROR or
173 * EVENT_DATA_COMPLETE is set in @pending_events, all data-related
174 * interrupts must be disabled and @data_status updated with a
175 * snapshot of SR. Similarly, before EVENT_CMD_COMPLETE is set, the
25985edc 176 * CMDRDY interrupt must be disabled and @cmd_status updated with a
965ebf33
HS
177 * snapshot of SR, and before EVENT_XFER_COMPLETE can be set, the
178 * bytes_xfered field of @data must be written. This is ensured by
179 * using barriers.
180 */
7d2be074 181struct atmel_mci {
965ebf33 182 spinlock_t lock;
7d2be074
HS
183 void __iomem *regs;
184
185 struct scatterlist *sg;
bdbc5d0c 186 unsigned int sg_len;
7d2be074 187 unsigned int pio_offset;
7a90dcc2
LD
188 unsigned int *buffer;
189 unsigned int buf_size;
190 dma_addr_t buf_phys_addr;
7d2be074 191
965ebf33 192 struct atmel_mci_slot *cur_slot;
7d2be074
HS
193 struct mmc_request *mrq;
194 struct mmc_command *cmd;
195 struct mmc_data *data;
796211b7 196 unsigned int data_size;
7d2be074 197
65e8b083
HS
198 struct atmel_mci_dma dma;
199 struct dma_chan *data_chan;
e2b35f3d 200 struct dma_slave_config dma_conf;
65e8b083 201
7d2be074
HS
202 u32 cmd_status;
203 u32 data_status;
7d2be074
HS
204 u32 stop_cmdr;
205
7d2be074
HS
206 struct tasklet_struct tasklet;
207 unsigned long pending_events;
208 unsigned long completed_events;
c06ad258 209 enum atmel_mci_state state;
965ebf33 210 struct list_head queue;
7d2be074 211
965ebf33
HS
212 bool need_clock_update;
213 bool need_reset;
24011f34 214 struct timer_list timer;
965ebf33 215 u32 mode_reg;
74791a2d 216 u32 cfg_reg;
7d2be074
HS
217 unsigned long bus_hz;
218 unsigned long mapbase;
219 struct clk *mck;
220 struct platform_device *pdev;
965ebf33 221
2c96a293 222 struct atmel_mci_slot *slot[ATMCI_MAX_NR_SLOTS];
796211b7
LD
223
224 struct atmel_mci_caps caps;
225
226 u32 (*prepare_data)(struct atmel_mci *host, struct mmc_data *data);
227 void (*submit_data)(struct atmel_mci *host, struct mmc_data *data);
228 void (*stop_transfer)(struct atmel_mci *host);
965ebf33
HS
229};
230
231/**
232 * struct atmel_mci_slot - MMC slot state
233 * @mmc: The mmc_host representing this slot.
234 * @host: The MMC controller this slot is using.
235 * @sdc_reg: Value of SDCR to be written before using this slot.
88ff82ed 236 * @sdio_irq: SDIO irq mask for this slot.
965ebf33
HS
237 * @mrq: mmc_request currently being processed or waiting to be
238 * processed, or NULL when the slot is idle.
239 * @queue_node: List node for placing this node in the @queue list of
240 * &struct atmel_mci.
241 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
242 * @flags: Random state bits associated with the slot.
243 * @detect_pin: GPIO pin used for card detection, or negative if not
244 * available.
245 * @wp_pin: GPIO pin used for card write protect sending, or negative
246 * if not available.
1c1452be 247 * @detect_is_active_high: The state of the detect pin when it is active.
965ebf33
HS
248 * @detect_timer: Timer used for debouncing @detect_pin interrupts.
249 */
250struct atmel_mci_slot {
251 struct mmc_host *mmc;
252 struct atmel_mci *host;
253
254 u32 sdc_reg;
88ff82ed 255 u32 sdio_irq;
965ebf33
HS
256
257 struct mmc_request *mrq;
258 struct list_head queue_node;
259
260 unsigned int clock;
261 unsigned long flags;
262#define ATMCI_CARD_PRESENT 0
263#define ATMCI_CARD_NEED_INIT 1
264#define ATMCI_SHUTDOWN 2
265
266 int detect_pin;
267 int wp_pin;
1c1452be 268 bool detect_is_active_high;
965ebf33
HS
269
270 struct timer_list detect_timer;
7d2be074
HS
271};
272
7d2be074
HS
273#define atmci_test_and_clear_pending(host, event) \
274 test_and_clear_bit(event, &host->pending_events)
7d2be074
HS
275#define atmci_set_completed(host, event) \
276 set_bit(event, &host->completed_events)
277#define atmci_set_pending(host, event) \
278 set_bit(event, &host->pending_events)
7d2be074 279
deec9ae3
HS
280/*
281 * The debugfs stuff below is mostly optimized away when
282 * CONFIG_DEBUG_FS is not set.
283 */
284static int atmci_req_show(struct seq_file *s, void *v)
285{
965ebf33
HS
286 struct atmel_mci_slot *slot = s->private;
287 struct mmc_request *mrq;
deec9ae3
HS
288 struct mmc_command *cmd;
289 struct mmc_command *stop;
290 struct mmc_data *data;
291
292 /* Make sure we get a consistent snapshot */
965ebf33
HS
293 spin_lock_bh(&slot->host->lock);
294 mrq = slot->mrq;
deec9ae3
HS
295
296 if (mrq) {
297 cmd = mrq->cmd;
298 data = mrq->data;
299 stop = mrq->stop;
300
301 if (cmd)
302 seq_printf(s,
303 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
304 cmd->opcode, cmd->arg, cmd->flags,
305 cmd->resp[0], cmd->resp[1], cmd->resp[2],
d586ebbb 306 cmd->resp[3], cmd->error);
deec9ae3
HS
307 if (data)
308 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
309 data->bytes_xfered, data->blocks,
310 data->blksz, data->flags, data->error);
311 if (stop)
312 seq_printf(s,
313 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
314 stop->opcode, stop->arg, stop->flags,
315 stop->resp[0], stop->resp[1], stop->resp[2],
d586ebbb 316 stop->resp[3], stop->error);
deec9ae3
HS
317 }
318
965ebf33 319 spin_unlock_bh(&slot->host->lock);
deec9ae3
HS
320
321 return 0;
322}
323
324static int atmci_req_open(struct inode *inode, struct file *file)
325{
326 return single_open(file, atmci_req_show, inode->i_private);
327}
328
329static const struct file_operations atmci_req_fops = {
330 .owner = THIS_MODULE,
331 .open = atmci_req_open,
332 .read = seq_read,
333 .llseek = seq_lseek,
334 .release = single_release,
335};
336
337static void atmci_show_status_reg(struct seq_file *s,
338 const char *regname, u32 value)
339{
340 static const char *sr_bit[] = {
341 [0] = "CMDRDY",
342 [1] = "RXRDY",
343 [2] = "TXRDY",
344 [3] = "BLKE",
345 [4] = "DTIP",
346 [5] = "NOTBUSY",
04d699c3
RE
347 [6] = "ENDRX",
348 [7] = "ENDTX",
deec9ae3
HS
349 [8] = "SDIOIRQA",
350 [9] = "SDIOIRQB",
04d699c3
RE
351 [12] = "SDIOWAIT",
352 [14] = "RXBUFF",
353 [15] = "TXBUFE",
deec9ae3
HS
354 [16] = "RINDE",
355 [17] = "RDIRE",
356 [18] = "RCRCE",
357 [19] = "RENDE",
358 [20] = "RTOE",
359 [21] = "DCRCE",
360 [22] = "DTOE",
04d699c3
RE
361 [23] = "CSTOE",
362 [24] = "BLKOVRE",
363 [25] = "DMADONE",
364 [26] = "FIFOEMPTY",
365 [27] = "XFRDONE",
deec9ae3
HS
366 [30] = "OVRE",
367 [31] = "UNRE",
368 };
369 unsigned int i;
370
371 seq_printf(s, "%s:\t0x%08x", regname, value);
372 for (i = 0; i < ARRAY_SIZE(sr_bit); i++) {
373 if (value & (1 << i)) {
374 if (sr_bit[i])
375 seq_printf(s, " %s", sr_bit[i]);
376 else
377 seq_puts(s, " UNKNOWN");
378 }
379 }
380 seq_putc(s, '\n');
381}
382
383static int atmci_regs_show(struct seq_file *s, void *v)
384{
385 struct atmel_mci *host = s->private;
386 u32 *buf;
b3894f26
BB
387 int ret = 0;
388
deec9ae3 389
2c96a293 390 buf = kmalloc(ATMCI_REGS_SIZE, GFP_KERNEL);
deec9ae3
HS
391 if (!buf)
392 return -ENOMEM;
393
ae552ab0
WY
394 pm_runtime_get_sync(&host->pdev->dev);
395
965ebf33
HS
396 /*
397 * Grab a more or less consistent snapshot. Note that we're
398 * not disabling interrupts, so IMR and SR may not be
399 * consistent.
400 */
401 spin_lock_bh(&host->lock);
2c96a293 402 memcpy_fromio(buf, host->regs, ATMCI_REGS_SIZE);
965ebf33 403 spin_unlock_bh(&host->lock);
deec9ae3 404
ae552ab0
WY
405 pm_runtime_mark_last_busy(&host->pdev->dev);
406 pm_runtime_put_autosuspend(&host->pdev->dev);
b3894f26 407
8a4de07e 408 seq_printf(s, "MR:\t0x%08x%s%s ",
2c96a293
LD
409 buf[ATMCI_MR / 4],
410 buf[ATMCI_MR / 4] & ATMCI_MR_RDPROOF ? " RDPROOF" : "",
8a4de07e
NF
411 buf[ATMCI_MR / 4] & ATMCI_MR_WRPROOF ? " WRPROOF" : "");
412 if (host->caps.has_odd_clk_div)
413 seq_printf(s, "{CLKDIV,CLKODD}=%u\n",
414 ((buf[ATMCI_MR / 4] & 0xff) << 1)
415 | ((buf[ATMCI_MR / 4] >> 16) & 1));
416 else
417 seq_printf(s, "CLKDIV=%u\n",
418 (buf[ATMCI_MR / 4] & 0xff));
2c96a293
LD
419 seq_printf(s, "DTOR:\t0x%08x\n", buf[ATMCI_DTOR / 4]);
420 seq_printf(s, "SDCR:\t0x%08x\n", buf[ATMCI_SDCR / 4]);
421 seq_printf(s, "ARGR:\t0x%08x\n", buf[ATMCI_ARGR / 4]);
deec9ae3 422 seq_printf(s, "BLKR:\t0x%08x BCNT=%u BLKLEN=%u\n",
2c96a293
LD
423 buf[ATMCI_BLKR / 4],
424 buf[ATMCI_BLKR / 4] & 0xffff,
425 (buf[ATMCI_BLKR / 4] >> 16) & 0xffff);
796211b7 426 if (host->caps.has_cstor_reg)
2c96a293 427 seq_printf(s, "CSTOR:\t0x%08x\n", buf[ATMCI_CSTOR / 4]);
deec9ae3
HS
428
429 /* Don't read RSPR and RDR; it will consume the data there */
430
2c96a293
LD
431 atmci_show_status_reg(s, "SR", buf[ATMCI_SR / 4]);
432 atmci_show_status_reg(s, "IMR", buf[ATMCI_IMR / 4]);
deec9ae3 433
ccdfe612 434 if (host->caps.has_dma_conf_reg) {
74791a2d
NF
435 u32 val;
436
2c96a293 437 val = buf[ATMCI_DMA / 4];
74791a2d
NF
438 seq_printf(s, "DMA:\t0x%08x OFFSET=%u CHKSIZE=%u%s\n",
439 val, val & 3,
440 ((val >> 4) & 3) ?
441 1 << (((val >> 4) & 3) + 1) : 1,
2c96a293 442 val & ATMCI_DMAEN ? " DMAEN" : "");
796211b7
LD
443 }
444 if (host->caps.has_cfg_reg) {
445 u32 val;
74791a2d 446
2c96a293 447 val = buf[ATMCI_CFG / 4];
74791a2d
NF
448 seq_printf(s, "CFG:\t0x%08x%s%s%s%s\n",
449 val,
2c96a293
LD
450 val & ATMCI_CFG_FIFOMODE_1DATA ? " FIFOMODE_ONE_DATA" : "",
451 val & ATMCI_CFG_FERRCTRL_COR ? " FERRCTRL_CLEAR_ON_READ" : "",
452 val & ATMCI_CFG_HSMODE ? " HSMODE" : "",
453 val & ATMCI_CFG_LSYNC ? " LSYNC" : "");
74791a2d
NF
454 }
455
b17339a1
HS
456 kfree(buf);
457
b3894f26 458 return ret;
deec9ae3
HS
459}
460
461static int atmci_regs_open(struct inode *inode, struct file *file)
462{
463 return single_open(file, atmci_regs_show, inode->i_private);
464}
465
466static const struct file_operations atmci_regs_fops = {
467 .owner = THIS_MODULE,
468 .open = atmci_regs_open,
469 .read = seq_read,
470 .llseek = seq_lseek,
471 .release = single_release,
472};
473
965ebf33 474static void atmci_init_debugfs(struct atmel_mci_slot *slot)
deec9ae3 475{
965ebf33
HS
476 struct mmc_host *mmc = slot->mmc;
477 struct atmel_mci *host = slot->host;
478 struct dentry *root;
479 struct dentry *node;
deec9ae3 480
deec9ae3
HS
481 root = mmc->debugfs_root;
482 if (!root)
483 return;
484
485 node = debugfs_create_file("regs", S_IRUSR, root, host,
486 &atmci_regs_fops);
487 if (IS_ERR(node))
488 return;
489 if (!node)
490 goto err;
491
965ebf33 492 node = debugfs_create_file("req", S_IRUSR, root, slot, &atmci_req_fops);
deec9ae3
HS
493 if (!node)
494 goto err;
495
c06ad258
HS
496 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
497 if (!node)
498 goto err;
499
deec9ae3
HS
500 node = debugfs_create_x32("pending_events", S_IRUSR, root,
501 (u32 *)&host->pending_events);
502 if (!node)
503 goto err;
504
505 node = debugfs_create_x32("completed_events", S_IRUSR, root,
506 (u32 *)&host->completed_events);
507 if (!node)
508 goto err;
509
510 return;
511
512err:
965ebf33 513 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
deec9ae3 514}
7d2be074 515
e919fd20
LD
516#if defined(CONFIG_OF)
517static const struct of_device_id atmci_dt_ids[] = {
518 { .compatible = "atmel,hsmci" },
519 { /* sentinel */ }
520};
521
522MODULE_DEVICE_TABLE(of, atmci_dt_ids);
523
c3be1efd 524static struct mci_platform_data*
e919fd20
LD
525atmci_of_init(struct platform_device *pdev)
526{
527 struct device_node *np = pdev->dev.of_node;
528 struct device_node *cnp;
529 struct mci_platform_data *pdata;
530 u32 slot_id;
531
532 if (!np) {
533 dev_err(&pdev->dev, "device node not found\n");
534 return ERR_PTR(-EINVAL);
535 }
536
537 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
538 if (!pdata) {
539 dev_err(&pdev->dev, "could not allocate memory for pdata\n");
540 return ERR_PTR(-ENOMEM);
541 }
542
543 for_each_child_of_node(np, cnp) {
544 if (of_property_read_u32(cnp, "reg", &slot_id)) {
545 dev_warn(&pdev->dev, "reg property is missing for %s\n",
546 cnp->full_name);
547 continue;
548 }
549
550 if (slot_id >= ATMCI_MAX_NR_SLOTS) {
551 dev_warn(&pdev->dev, "can't have more than %d slots\n",
552 ATMCI_MAX_NR_SLOTS);
553 break;
554 }
555
556 if (of_property_read_u32(cnp, "bus-width",
557 &pdata->slot[slot_id].bus_width))
558 pdata->slot[slot_id].bus_width = 1;
559
560 pdata->slot[slot_id].detect_pin =
561 of_get_named_gpio(cnp, "cd-gpios", 0);
562
563 pdata->slot[slot_id].detect_is_active_high =
564 of_property_read_bool(cnp, "cd-inverted");
565
76d55564
TK
566 pdata->slot[slot_id].non_removable =
567 of_property_read_bool(cnp, "non-removable");
568
e919fd20
LD
569 pdata->slot[slot_id].wp_pin =
570 of_get_named_gpio(cnp, "wp-gpios", 0);
571 }
572
573 return pdata;
574}
575#else /* CONFIG_OF */
576static inline struct mci_platform_data*
577atmci_of_init(struct platform_device *dev)
578{
579 return ERR_PTR(-EINVAL);
580}
581#endif
582
7a90dcc2
LD
583static inline unsigned int atmci_get_version(struct atmel_mci *host)
584{
585 return atmci_readl(host, ATMCI_VERSION) & 0x00000fff;
586}
587
24011f34
LD
588static void atmci_timeout_timer(unsigned long data)
589{
590 struct atmel_mci *host;
591
592 host = (struct atmel_mci *)data;
593
594 dev_dbg(&host->pdev->dev, "software timeout\n");
595
596 if (host->mrq->cmd->data) {
597 host->mrq->cmd->data->error = -ETIMEDOUT;
598 host->data = NULL;
c1fa3426
LD
599 /*
600 * With some SDIO modules, sometimes DMA transfer hangs. If
601 * stop_transfer() is not called then the DMA request is not
602 * removed, following ones are queued and never computed.
603 */
604 if (host->state == STATE_DATA_XFER)
605 host->stop_transfer(host);
24011f34
LD
606 } else {
607 host->mrq->cmd->error = -ETIMEDOUT;
608 host->cmd = NULL;
609 }
610 host->need_reset = 1;
611 host->state = STATE_END_REQUEST;
612 smp_wmb();
613 tasklet_schedule(&host->tasklet);
614}
615
2c96a293 616static inline unsigned int atmci_ns_to_clocks(struct atmel_mci *host,
7d2be074
HS
617 unsigned int ns)
618{
66292ad9
LD
619 /*
620 * It is easier here to use us instead of ns for the timeout,
621 * it prevents from overflows during calculation.
622 */
623 unsigned int us = DIV_ROUND_UP(ns, 1000);
624
625 /* Maximum clock frequency is host->bus_hz/2 */
626 return us * (DIV_ROUND_UP(host->bus_hz, 2000000));
7d2be074
HS
627}
628
629static void atmci_set_timeout(struct atmel_mci *host,
965ebf33 630 struct atmel_mci_slot *slot, struct mmc_data *data)
7d2be074
HS
631{
632 static unsigned dtomul_to_shift[] = {
633 0, 4, 7, 8, 10, 12, 16, 20
634 };
635 unsigned timeout;
636 unsigned dtocyc;
637 unsigned dtomul;
638
2c96a293
LD
639 timeout = atmci_ns_to_clocks(host, data->timeout_ns)
640 + data->timeout_clks;
7d2be074
HS
641
642 for (dtomul = 0; dtomul < 8; dtomul++) {
643 unsigned shift = dtomul_to_shift[dtomul];
644 dtocyc = (timeout + (1 << shift) - 1) >> shift;
645 if (dtocyc < 15)
646 break;
647 }
648
649 if (dtomul >= 8) {
650 dtomul = 7;
651 dtocyc = 15;
652 }
653
965ebf33 654 dev_vdbg(&slot->mmc->class_dev, "setting timeout to %u cycles\n",
7d2be074 655 dtocyc << dtomul_to_shift[dtomul]);
03fc9a7f 656 atmci_writel(host, ATMCI_DTOR, (ATMCI_DTOMUL(dtomul) | ATMCI_DTOCYC(dtocyc)));
7d2be074
HS
657}
658
659/*
660 * Return mask with command flags to be enabled for this command.
661 */
662static u32 atmci_prepare_command(struct mmc_host *mmc,
663 struct mmc_command *cmd)
664{
665 struct mmc_data *data;
666 u32 cmdr;
667
668 cmd->error = -EINPROGRESS;
669
2c96a293 670 cmdr = ATMCI_CMDR_CMDNB(cmd->opcode);
7d2be074
HS
671
672 if (cmd->flags & MMC_RSP_PRESENT) {
673 if (cmd->flags & MMC_RSP_136)
2c96a293 674 cmdr |= ATMCI_CMDR_RSPTYP_136BIT;
7d2be074 675 else
2c96a293 676 cmdr |= ATMCI_CMDR_RSPTYP_48BIT;
7d2be074
HS
677 }
678
679 /*
680 * This should really be MAXLAT_5 for CMD2 and ACMD41, but
681 * it's too difficult to determine whether this is an ACMD or
682 * not. Better make it 64.
683 */
2c96a293 684 cmdr |= ATMCI_CMDR_MAXLAT_64CYC;
7d2be074
HS
685
686 if (mmc->ios.bus_mode == MMC_BUSMODE_OPENDRAIN)
2c96a293 687 cmdr |= ATMCI_CMDR_OPDCMD;
7d2be074
HS
688
689 data = cmd->data;
690 if (data) {
2c96a293 691 cmdr |= ATMCI_CMDR_START_XFER;
2f1d7918
NF
692
693 if (cmd->opcode == SD_IO_RW_EXTENDED) {
2c96a293 694 cmdr |= ATMCI_CMDR_SDIO_BLOCK;
2f1d7918
NF
695 } else {
696 if (data->flags & MMC_DATA_STREAM)
2c96a293 697 cmdr |= ATMCI_CMDR_STREAM;
2f1d7918 698 else if (data->blocks > 1)
2c96a293 699 cmdr |= ATMCI_CMDR_MULTI_BLOCK;
2f1d7918 700 else
2c96a293 701 cmdr |= ATMCI_CMDR_BLOCK;
2f1d7918 702 }
7d2be074
HS
703
704 if (data->flags & MMC_DATA_READ)
2c96a293 705 cmdr |= ATMCI_CMDR_TRDIR_READ;
7d2be074
HS
706 }
707
708 return cmdr;
709}
710
11d1488b 711static void atmci_send_command(struct atmel_mci *host,
965ebf33 712 struct mmc_command *cmd, u32 cmd_flags)
7d2be074 713{
7d2be074
HS
714 WARN_ON(host->cmd);
715 host->cmd = cmd;
716
965ebf33 717 dev_vdbg(&host->pdev->dev,
7d2be074
HS
718 "start command: ARGR=0x%08x CMDR=0x%08x\n",
719 cmd->arg, cmd_flags);
720
03fc9a7f
LD
721 atmci_writel(host, ATMCI_ARGR, cmd->arg);
722 atmci_writel(host, ATMCI_CMDR, cmd_flags);
7d2be074
HS
723}
724
2c96a293 725static void atmci_send_stop_cmd(struct atmel_mci *host, struct mmc_data *data)
7d2be074 726{
6801c41a 727 dev_dbg(&host->pdev->dev, "send stop command\n");
11d1488b 728 atmci_send_command(host, data->stop, host->stop_cmdr);
03fc9a7f 729 atmci_writel(host, ATMCI_IER, ATMCI_CMDRDY);
7d2be074
HS
730}
731
796211b7
LD
732/*
733 * Configure given PDC buffer taking care of alignement issues.
734 * Update host->data_size and host->sg.
735 */
736static void atmci_pdc_set_single_buf(struct atmel_mci *host,
737 enum atmci_xfer_dir dir, enum atmci_pdc_buf buf_nb)
738{
739 u32 pointer_reg, counter_reg;
7a90dcc2 740 unsigned int buf_size;
796211b7
LD
741
742 if (dir == XFER_RECEIVE) {
743 pointer_reg = ATMEL_PDC_RPR;
744 counter_reg = ATMEL_PDC_RCR;
745 } else {
746 pointer_reg = ATMEL_PDC_TPR;
747 counter_reg = ATMEL_PDC_TCR;
748 }
749
750 if (buf_nb == PDC_SECOND_BUF) {
1ebbe3d3
LD
751 pointer_reg += ATMEL_PDC_SCND_BUF_OFF;
752 counter_reg += ATMEL_PDC_SCND_BUF_OFF;
796211b7
LD
753 }
754
7a90dcc2
LD
755 if (!host->caps.has_rwproof) {
756 buf_size = host->buf_size;
757 atmci_writel(host, pointer_reg, host->buf_phys_addr);
758 } else {
759 buf_size = sg_dma_len(host->sg);
760 atmci_writel(host, pointer_reg, sg_dma_address(host->sg));
761 }
762
763 if (host->data_size <= buf_size) {
796211b7
LD
764 if (host->data_size & 0x3) {
765 /* If size is different from modulo 4, transfer bytes */
766 atmci_writel(host, counter_reg, host->data_size);
767 atmci_writel(host, ATMCI_MR, host->mode_reg | ATMCI_MR_PDCFBYTE);
768 } else {
769 /* Else transfer 32-bits words */
770 atmci_writel(host, counter_reg, host->data_size / 4);
771 }
772 host->data_size = 0;
773 } else {
774 /* We assume the size of a page is 32-bits aligned */
341fa4c3
LD
775 atmci_writel(host, counter_reg, sg_dma_len(host->sg) / 4);
776 host->data_size -= sg_dma_len(host->sg);
796211b7
LD
777 if (host->data_size)
778 host->sg = sg_next(host->sg);
779 }
780}
781
782/*
783 * Configure PDC buffer according to the data size ie configuring one or two
784 * buffers. Don't use this function if you want to configure only the second
785 * buffer. In this case, use atmci_pdc_set_single_buf.
786 */
787static void atmci_pdc_set_both_buf(struct atmel_mci *host, int dir)
65e8b083 788{
796211b7
LD
789 atmci_pdc_set_single_buf(host, dir, PDC_FIRST_BUF);
790 if (host->data_size)
791 atmci_pdc_set_single_buf(host, dir, PDC_SECOND_BUF);
792}
793
794/*
795 * Unmap sg lists, called when transfer is finished.
796 */
797static void atmci_pdc_cleanup(struct atmel_mci *host)
798{
799 struct mmc_data *data = host->data;
65e8b083 800
009a891b 801 if (data)
796211b7
LD
802 dma_unmap_sg(&host->pdev->dev,
803 data->sg, data->sg_len,
804 ((data->flags & MMC_DATA_WRITE)
805 ? DMA_TO_DEVICE : DMA_FROM_DEVICE));
65e8b083
HS
806}
807
796211b7
LD
808/*
809 * Disable PDC transfers. Update pending flags to EVENT_XFER_COMPLETE after
810 * having received ATMCI_TXBUFE or ATMCI_RXBUFF interrupt. Enable ATMCI_NOTBUSY
811 * interrupt needed for both transfer directions.
812 */
813static void atmci_pdc_complete(struct atmel_mci *host)
65e8b083 814{
7a90dcc2 815 int transfer_size = host->data->blocks * host->data->blksz;
24011f34 816 int i;
7a90dcc2 817
796211b7 818 atmci_writel(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
7a90dcc2
LD
819
820 if ((!host->caps.has_rwproof)
24011f34
LD
821 && (host->data->flags & MMC_DATA_READ)) {
822 if (host->caps.has_bad_data_ordering)
823 for (i = 0; i < transfer_size; i++)
824 host->buffer[i] = swab32(host->buffer[i]);
7a90dcc2
LD
825 sg_copy_from_buffer(host->data->sg, host->data->sg_len,
826 host->buffer, transfer_size);
24011f34 827 }
7a90dcc2 828
796211b7 829 atmci_pdc_cleanup(host);
65e8b083 830
6e9e4062
AB
831 dev_dbg(&host->pdev->dev, "(%s) set pending xfer complete\n", __func__);
832 atmci_set_pending(host, EVENT_XFER_COMPLETE);
833 tasklet_schedule(&host->tasklet);
65e8b083
HS
834}
835
796211b7
LD
836static void atmci_dma_cleanup(struct atmel_mci *host)
837{
838 struct mmc_data *data = host->data;
839
840 if (data)
841 dma_unmap_sg(host->dma.chan->device->dev,
842 data->sg, data->sg_len,
843 ((data->flags & MMC_DATA_WRITE)
844 ? DMA_TO_DEVICE : DMA_FROM_DEVICE));
845}
846
847/*
848 * This function is called by the DMA driver from tasklet context.
849 */
65e8b083
HS
850static void atmci_dma_complete(void *arg)
851{
852 struct atmel_mci *host = arg;
853 struct mmc_data *data = host->data;
854
855 dev_vdbg(&host->pdev->dev, "DMA complete\n");
856
ccdfe612 857 if (host->caps.has_dma_conf_reg)
74791a2d 858 /* Disable DMA hardware handshaking on MCI */
03fc9a7f 859 atmci_writel(host, ATMCI_DMA, atmci_readl(host, ATMCI_DMA) & ~ATMCI_DMAEN);
74791a2d 860
65e8b083
HS
861 atmci_dma_cleanup(host);
862
863 /*
864 * If the card was removed, data will be NULL. No point trying
865 * to send the stop command or waiting for NBUSY in this case.
866 */
867 if (data) {
6801c41a
LD
868 dev_dbg(&host->pdev->dev,
869 "(%s) set pending xfer complete\n", __func__);
65e8b083
HS
870 atmci_set_pending(host, EVENT_XFER_COMPLETE);
871 tasklet_schedule(&host->tasklet);
872
873 /*
874 * Regardless of what the documentation says, we have
875 * to wait for NOTBUSY even after block read
876 * operations.
877 *
878 * When the DMA transfer is complete, the controller
879 * may still be reading the CRC from the card, i.e.
880 * the data transfer is still in progress and we
881 * haven't seen all the potential error bits yet.
882 *
883 * The interrupt handler will schedule a different
884 * tasklet to finish things up when the data transfer
885 * is completely done.
886 *
887 * We may not complete the mmc request here anyway
888 * because the mmc layer may call back and cause us to
889 * violate the "don't submit new operations from the
890 * completion callback" rule of the dma engine
891 * framework.
892 */
03fc9a7f 893 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
65e8b083
HS
894 }
895}
896
796211b7
LD
897/*
898 * Returns a mask of interrupt flags to be enabled after the whole
899 * request has been prepared.
900 */
901static u32 atmci_prepare_data(struct atmel_mci *host, struct mmc_data *data)
902{
903 u32 iflags;
904
905 data->error = -EINPROGRESS;
906
907 host->sg = data->sg;
bdbc5d0c 908 host->sg_len = data->sg_len;
796211b7
LD
909 host->data = data;
910 host->data_chan = NULL;
911
912 iflags = ATMCI_DATA_ERROR_FLAGS;
913
914 /*
915 * Errata: MMC data write operation with less than 12
916 * bytes is impossible.
917 *
918 * Errata: MCI Transmit Data Register (TDR) FIFO
919 * corruption when length is not multiple of 4.
920 */
921 if (data->blocks * data->blksz < 12
922 || (data->blocks * data->blksz) & 3)
923 host->need_reset = true;
924
925 host->pio_offset = 0;
926 if (data->flags & MMC_DATA_READ)
927 iflags |= ATMCI_RXRDY;
928 else
929 iflags |= ATMCI_TXRDY;
930
931 return iflags;
932}
933
934/*
935 * Set interrupt flags and set block length into the MCI mode register even
936 * if this value is also accessible in the MCI block register. It seems to be
937 * necessary before the High Speed MCI version. It also map sg and configure
938 * PDC registers.
939 */
940static u32
941atmci_prepare_data_pdc(struct atmel_mci *host, struct mmc_data *data)
942{
943 u32 iflags, tmp;
944 unsigned int sg_len;
945 enum dma_data_direction dir;
24011f34 946 int i;
796211b7
LD
947
948 data->error = -EINPROGRESS;
949
950 host->data = data;
951 host->sg = data->sg;
952 iflags = ATMCI_DATA_ERROR_FLAGS;
953
954 /* Enable pdc mode */
955 atmci_writel(host, ATMCI_MR, host->mode_reg | ATMCI_MR_PDCMODE);
956
957 if (data->flags & MMC_DATA_READ) {
958 dir = DMA_FROM_DEVICE;
959 iflags |= ATMCI_ENDRX | ATMCI_RXBUFF;
960 } else {
961 dir = DMA_TO_DEVICE;
f5177547 962 iflags |= ATMCI_ENDTX | ATMCI_TXBUFE | ATMCI_BLKE;
796211b7
LD
963 }
964
965 /* Set BLKLEN */
966 tmp = atmci_readl(host, ATMCI_MR);
967 tmp &= 0x0000ffff;
968 tmp |= ATMCI_BLKLEN(data->blksz);
969 atmci_writel(host, ATMCI_MR, tmp);
970
971 /* Configure PDC */
972 host->data_size = data->blocks * data->blksz;
973 sg_len = dma_map_sg(&host->pdev->dev, data->sg, data->sg_len, dir);
7a90dcc2
LD
974
975 if ((!host->caps.has_rwproof)
24011f34 976 && (host->data->flags & MMC_DATA_WRITE)) {
7a90dcc2
LD
977 sg_copy_to_buffer(host->data->sg, host->data->sg_len,
978 host->buffer, host->data_size);
24011f34
LD
979 if (host->caps.has_bad_data_ordering)
980 for (i = 0; i < host->data_size; i++)
981 host->buffer[i] = swab32(host->buffer[i]);
982 }
7a90dcc2 983
796211b7
LD
984 if (host->data_size)
985 atmci_pdc_set_both_buf(host,
986 ((dir == DMA_FROM_DEVICE) ? XFER_RECEIVE : XFER_TRANSMIT));
987
988 return iflags;
989}
990
991static u32
74791a2d 992atmci_prepare_data_dma(struct atmel_mci *host, struct mmc_data *data)
65e8b083
HS
993{
994 struct dma_chan *chan;
995 struct dma_async_tx_descriptor *desc;
996 struct scatterlist *sg;
997 unsigned int i;
998 enum dma_data_direction direction;
05f5799c 999 enum dma_transfer_direction slave_dirn;
657a77fa 1000 unsigned int sglen;
693e5e20 1001 u32 maxburst;
796211b7
LD
1002 u32 iflags;
1003
1004 data->error = -EINPROGRESS;
1005
1006 WARN_ON(host->data);
1007 host->sg = NULL;
1008 host->data = data;
1009
1010 iflags = ATMCI_DATA_ERROR_FLAGS;
65e8b083
HS
1011
1012 /*
1013 * We don't do DMA on "complex" transfers, i.e. with
1014 * non-word-aligned buffers or lengths. Also, we don't bother
1015 * with all the DMA setup overhead for short transfers.
1016 */
796211b7
LD
1017 if (data->blocks * data->blksz < ATMCI_DMA_THRESHOLD)
1018 return atmci_prepare_data(host, data);
65e8b083 1019 if (data->blksz & 3)
796211b7 1020 return atmci_prepare_data(host, data);
65e8b083
HS
1021
1022 for_each_sg(data->sg, sg, data->sg_len, i) {
1023 if (sg->offset & 3 || sg->length & 3)
796211b7 1024 return atmci_prepare_data(host, data);
65e8b083
HS
1025 }
1026
1027 /* If we don't have a channel, we can't do DMA */
1028 chan = host->dma.chan;
6f49a57a 1029 if (chan)
65e8b083 1030 host->data_chan = chan;
65e8b083
HS
1031
1032 if (!chan)
1033 return -ENODEV;
1034
05f5799c 1035 if (data->flags & MMC_DATA_READ) {
65e8b083 1036 direction = DMA_FROM_DEVICE;
e2b35f3d 1037 host->dma_conf.direction = slave_dirn = DMA_DEV_TO_MEM;
693e5e20 1038 maxburst = atmci_convert_chksize(host->dma_conf.src_maxburst);
05f5799c 1039 } else {
65e8b083 1040 direction = DMA_TO_DEVICE;
e2b35f3d 1041 host->dma_conf.direction = slave_dirn = DMA_MEM_TO_DEV;
693e5e20 1042 maxburst = atmci_convert_chksize(host->dma_conf.dst_maxburst);
05f5799c 1043 }
65e8b083 1044
ccdfe612
H
1045 if (host->caps.has_dma_conf_reg)
1046 atmci_writel(host, ATMCI_DMA, ATMCI_DMA_CHKSIZE(maxburst) |
1047 ATMCI_DMAEN);
693e5e20 1048
266ac3f2 1049 sglen = dma_map_sg(chan->device->dev, data->sg,
796211b7 1050 data->sg_len, direction);
88ce4db3 1051
e2b35f3d 1052 dmaengine_slave_config(chan, &host->dma_conf);
16052827 1053 desc = dmaengine_prep_slave_sg(chan,
05f5799c 1054 data->sg, sglen, slave_dirn,
65e8b083
HS
1055 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1056 if (!desc)
657a77fa 1057 goto unmap_exit;
65e8b083
HS
1058
1059 host->dma.data_desc = desc;
1060 desc->callback = atmci_dma_complete;
1061 desc->callback_param = host;
65e8b083 1062
796211b7 1063 return iflags;
657a77fa 1064unmap_exit:
88ce4db3 1065 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, direction);
657a77fa 1066 return -ENOMEM;
65e8b083
HS
1067}
1068
796211b7
LD
1069static void
1070atmci_submit_data(struct atmel_mci *host, struct mmc_data *data)
1071{
1072 return;
1073}
1074
1075/*
1076 * Start PDC according to transfer direction.
1077 */
1078static void
1079atmci_submit_data_pdc(struct atmel_mci *host, struct mmc_data *data)
1080{
1081 if (data->flags & MMC_DATA_READ)
1082 atmci_writel(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
1083 else
1084 atmci_writel(host, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
1085}
1086
1087static void
1088atmci_submit_data_dma(struct atmel_mci *host, struct mmc_data *data)
74791a2d
NF
1089{
1090 struct dma_chan *chan = host->data_chan;
1091 struct dma_async_tx_descriptor *desc = host->dma.data_desc;
1092
1093 if (chan) {
5328906a
LW
1094 dmaengine_submit(desc);
1095 dma_async_issue_pending(chan);
74791a2d
NF
1096 }
1097}
1098
796211b7 1099static void atmci_stop_transfer(struct atmel_mci *host)
65e8b083 1100{
6801c41a
LD
1101 dev_dbg(&host->pdev->dev,
1102 "(%s) set pending xfer complete\n", __func__);
65e8b083 1103 atmci_set_pending(host, EVENT_XFER_COMPLETE);
03fc9a7f 1104 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
65e8b083
HS
1105}
1106
7d2be074 1107/*
7122bbb0 1108 * Stop data transfer because error(s) occurred.
7d2be074 1109 */
796211b7 1110static void atmci_stop_transfer_pdc(struct atmel_mci *host)
7d2be074 1111{
f5177547 1112 atmci_writel(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
796211b7 1113}
965ebf33 1114
796211b7
LD
1115static void atmci_stop_transfer_dma(struct atmel_mci *host)
1116{
1117 struct dma_chan *chan = host->data_chan;
965ebf33 1118
796211b7
LD
1119 if (chan) {
1120 dmaengine_terminate_all(chan);
1121 atmci_dma_cleanup(host);
1122 } else {
1123 /* Data transfer was stopped by the interrupt handler */
6801c41a
LD
1124 dev_dbg(&host->pdev->dev,
1125 "(%s) set pending xfer complete\n", __func__);
796211b7
LD
1126 atmci_set_pending(host, EVENT_XFER_COMPLETE);
1127 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
65e8b083 1128 }
7d2be074
HS
1129}
1130
796211b7
LD
1131/*
1132 * Start a request: prepare data if needed, prepare the command and activate
1133 * interrupts.
1134 */
965ebf33
HS
1135static void atmci_start_request(struct atmel_mci *host,
1136 struct atmel_mci_slot *slot)
7d2be074 1137{
965ebf33 1138 struct mmc_request *mrq;
7d2be074 1139 struct mmc_command *cmd;
965ebf33 1140 struct mmc_data *data;
7d2be074 1141 u32 iflags;
965ebf33 1142 u32 cmdflags;
7d2be074 1143
965ebf33
HS
1144 mrq = slot->mrq;
1145 host->cur_slot = slot;
7d2be074 1146 host->mrq = mrq;
965ebf33 1147
7d2be074
HS
1148 host->pending_events = 0;
1149 host->completed_events = 0;
f5177547 1150 host->cmd_status = 0;
ca55f46e 1151 host->data_status = 0;
7d2be074 1152
6801c41a
LD
1153 dev_dbg(&host->pdev->dev, "start request: cmd %u\n", mrq->cmd->opcode);
1154
24011f34 1155 if (host->need_reset || host->caps.need_reset_after_xfer) {
18ee684b
LD
1156 iflags = atmci_readl(host, ATMCI_IMR);
1157 iflags &= (ATMCI_SDIOIRQA | ATMCI_SDIOIRQB);
03fc9a7f
LD
1158 atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
1159 atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIEN);
1160 atmci_writel(host, ATMCI_MR, host->mode_reg);
796211b7 1161 if (host->caps.has_cfg_reg)
03fc9a7f 1162 atmci_writel(host, ATMCI_CFG, host->cfg_reg);
18ee684b 1163 atmci_writel(host, ATMCI_IER, iflags);
965ebf33
HS
1164 host->need_reset = false;
1165 }
03fc9a7f 1166 atmci_writel(host, ATMCI_SDCR, slot->sdc_reg);
965ebf33 1167
03fc9a7f 1168 iflags = atmci_readl(host, ATMCI_IMR);
2c96a293 1169 if (iflags & ~(ATMCI_SDIOIRQA | ATMCI_SDIOIRQB))
f5177547 1170 dev_dbg(&slot->mmc->class_dev, "WARNING: IMR=0x%08x\n",
965ebf33
HS
1171 iflags);
1172
1173 if (unlikely(test_and_clear_bit(ATMCI_CARD_NEED_INIT, &slot->flags))) {
1174 /* Send init sequence (74 clock cycles) */
03fc9a7f
LD
1175 atmci_writel(host, ATMCI_CMDR, ATMCI_CMDR_SPCMD_INIT);
1176 while (!(atmci_readl(host, ATMCI_SR) & ATMCI_CMDRDY))
965ebf33
HS
1177 cpu_relax();
1178 }
74791a2d 1179 iflags = 0;
7d2be074
HS
1180 data = mrq->data;
1181 if (data) {
965ebf33 1182 atmci_set_timeout(host, slot, data);
a252e3e3
HS
1183
1184 /* Must set block count/size before sending command */
03fc9a7f 1185 atmci_writel(host, ATMCI_BLKR, ATMCI_BCNT(data->blocks)
2c96a293 1186 | ATMCI_BLKLEN(data->blksz));
965ebf33 1187 dev_vdbg(&slot->mmc->class_dev, "BLKR=0x%08x\n",
2c96a293 1188 ATMCI_BCNT(data->blocks) | ATMCI_BLKLEN(data->blksz));
74791a2d 1189
796211b7 1190 iflags |= host->prepare_data(host, data);
7d2be074
HS
1191 }
1192
2c96a293 1193 iflags |= ATMCI_CMDRDY;
7d2be074 1194 cmd = mrq->cmd;
965ebf33 1195 cmdflags = atmci_prepare_command(slot->mmc, cmd);
66b512ed
LD
1196
1197 /*
1198 * DMA transfer should be started before sending the command to avoid
1199 * unexpected errors especially for read operations in SDIO mode.
1200 * Unfortunately, in PDC mode, command has to be sent before starting
1201 * the transfer.
1202 */
1203 if (host->submit_data != &atmci_submit_data_dma)
1204 atmci_send_command(host, cmd, cmdflags);
7d2be074
HS
1205
1206 if (data)
796211b7 1207 host->submit_data(host, data);
7d2be074 1208
66b512ed
LD
1209 if (host->submit_data == &atmci_submit_data_dma)
1210 atmci_send_command(host, cmd, cmdflags);
1211
7d2be074 1212 if (mrq->stop) {
965ebf33 1213 host->stop_cmdr = atmci_prepare_command(slot->mmc, mrq->stop);
2c96a293 1214 host->stop_cmdr |= ATMCI_CMDR_STOP_XFER;
7d2be074 1215 if (!(data->flags & MMC_DATA_WRITE))
2c96a293 1216 host->stop_cmdr |= ATMCI_CMDR_TRDIR_READ;
7d2be074 1217 if (data->flags & MMC_DATA_STREAM)
2c96a293 1218 host->stop_cmdr |= ATMCI_CMDR_STREAM;
7d2be074 1219 else
2c96a293 1220 host->stop_cmdr |= ATMCI_CMDR_MULTI_BLOCK;
7d2be074
HS
1221 }
1222
1223 /*
1224 * We could have enabled interrupts earlier, but I suspect
1225 * that would open up a nice can of interesting race
1226 * conditions (e.g. command and data complete, but stop not
1227 * prepared yet.)
1228 */
03fc9a7f 1229 atmci_writel(host, ATMCI_IER, iflags);
24011f34
LD
1230
1231 mod_timer(&host->timer, jiffies + msecs_to_jiffies(2000));
965ebf33 1232}
7d2be074 1233
965ebf33
HS
1234static void atmci_queue_request(struct atmel_mci *host,
1235 struct atmel_mci_slot *slot, struct mmc_request *mrq)
1236{
1237 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
1238 host->state);
1239
1240 spin_lock_bh(&host->lock);
1241 slot->mrq = mrq;
1242 if (host->state == STATE_IDLE) {
1243 host->state = STATE_SENDING_CMD;
1244 atmci_start_request(host, slot);
1245 } else {
6801c41a 1246 dev_dbg(&host->pdev->dev, "queue request\n");
965ebf33
HS
1247 list_add_tail(&slot->queue_node, &host->queue);
1248 }
1249 spin_unlock_bh(&host->lock);
1250}
7d2be074 1251
965ebf33
HS
1252static void atmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1253{
1254 struct atmel_mci_slot *slot = mmc_priv(mmc);
1255 struct atmel_mci *host = slot->host;
1256 struct mmc_data *data;
1257
1258 WARN_ON(slot->mrq);
6801c41a 1259 dev_dbg(&host->pdev->dev, "MRQ: cmd %u\n", mrq->cmd->opcode);
965ebf33 1260
ae552ab0
WY
1261 pm_runtime_get_sync(&host->pdev->dev);
1262
965ebf33
HS
1263 /*
1264 * We may "know" the card is gone even though there's still an
1265 * electrical connection. If so, we really need to communicate
1266 * this to the MMC core since there won't be any more
1267 * interrupts as the card is completely removed. Otherwise,
1268 * the MMC core might believe the card is still there even
1269 * though the card was just removed very slowly.
1270 */
1271 if (!test_bit(ATMCI_CARD_PRESENT, &slot->flags)) {
1272 mrq->cmd->error = -ENOMEDIUM;
1273 mmc_request_done(mmc, mrq);
1274 return;
1275 }
1276
1277 /* We don't support multiple blocks of weird lengths. */
1278 data = mrq->data;
1279 if (data && data->blocks > 1 && data->blksz & 3) {
1280 mrq->cmd->error = -EINVAL;
1281 mmc_request_done(mmc, mrq);
1282 }
1283
1284 atmci_queue_request(host, slot, mrq);
7d2be074
HS
1285}
1286
1287static void atmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1288{
965ebf33
HS
1289 struct atmel_mci_slot *slot = mmc_priv(mmc);
1290 struct atmel_mci *host = slot->host;
1291 unsigned int i;
ae552ab0
WY
1292
1293 pm_runtime_get_sync(&host->pdev->dev);
7d2be074 1294
2c96a293 1295 slot->sdc_reg &= ~ATMCI_SDCBUS_MASK;
945533b5
HS
1296 switch (ios->bus_width) {
1297 case MMC_BUS_WIDTH_1:
2c96a293 1298 slot->sdc_reg |= ATMCI_SDCBUS_1BIT;
945533b5
HS
1299 break;
1300 case MMC_BUS_WIDTH_4:
2c96a293 1301 slot->sdc_reg |= ATMCI_SDCBUS_4BIT;
945533b5
HS
1302 break;
1303 }
1304
7d2be074 1305 if (ios->clock) {
965ebf33 1306 unsigned int clock_min = ~0U;
7d2be074
HS
1307 u32 clkdiv;
1308
965ebf33
HS
1309 spin_lock_bh(&host->lock);
1310 if (!host->mode_reg) {
03fc9a7f
LD
1311 atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
1312 atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIEN);
796211b7 1313 if (host->caps.has_cfg_reg)
03fc9a7f 1314 atmci_writel(host, ATMCI_CFG, host->cfg_reg);
965ebf33 1315 }
945533b5 1316
965ebf33
HS
1317 /*
1318 * Use mirror of ios->clock to prevent race with mmc
1319 * core ios update when finding the minimum.
1320 */
1321 slot->clock = ios->clock;
2c96a293 1322 for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
965ebf33
HS
1323 if (host->slot[i] && host->slot[i]->clock
1324 && host->slot[i]->clock < clock_min)
1325 clock_min = host->slot[i]->clock;
1326 }
1327
1328 /* Calculate clock divider */
faf8180b
LD
1329 if (host->caps.has_odd_clk_div) {
1330 clkdiv = DIV_ROUND_UP(host->bus_hz, clock_min) - 2;
1331 if (clkdiv > 511) {
1332 dev_warn(&mmc->class_dev,
1333 "clock %u too slow; using %lu\n",
1334 clock_min, host->bus_hz / (511 + 2));
1335 clkdiv = 511;
1336 }
1337 host->mode_reg = ATMCI_MR_CLKDIV(clkdiv >> 1)
1338 | ATMCI_MR_CLKODD(clkdiv & 1);
1339 } else {
1340 clkdiv = DIV_ROUND_UP(host->bus_hz, 2 * clock_min) - 1;
1341 if (clkdiv > 255) {
1342 dev_warn(&mmc->class_dev,
1343 "clock %u too slow; using %lu\n",
1344 clock_min, host->bus_hz / (2 * 256));
1345 clkdiv = 255;
1346 }
1347 host->mode_reg = ATMCI_MR_CLKDIV(clkdiv);
7d2be074
HS
1348 }
1349
965ebf33
HS
1350 /*
1351 * WRPROOF and RDPROOF prevent overruns/underruns by
1352 * stopping the clock when the FIFO is full/empty.
1353 * This state is not expected to last for long.
1354 */
796211b7 1355 if (host->caps.has_rwproof)
2c96a293 1356 host->mode_reg |= (ATMCI_MR_WRPROOF | ATMCI_MR_RDPROOF);
7d2be074 1357
796211b7 1358 if (host->caps.has_cfg_reg) {
99ddffd8
NF
1359 /* setup High Speed mode in relation with card capacity */
1360 if (ios->timing == MMC_TIMING_SD_HS)
2c96a293 1361 host->cfg_reg |= ATMCI_CFG_HSMODE;
99ddffd8 1362 else
2c96a293 1363 host->cfg_reg &= ~ATMCI_CFG_HSMODE;
99ddffd8
NF
1364 }
1365
1366 if (list_empty(&host->queue)) {
03fc9a7f 1367 atmci_writel(host, ATMCI_MR, host->mode_reg);
796211b7 1368 if (host->caps.has_cfg_reg)
03fc9a7f 1369 atmci_writel(host, ATMCI_CFG, host->cfg_reg);
99ddffd8 1370 } else {
965ebf33 1371 host->need_clock_update = true;
99ddffd8 1372 }
965ebf33
HS
1373
1374 spin_unlock_bh(&host->lock);
945533b5 1375 } else {
965ebf33
HS
1376 bool any_slot_active = false;
1377
1378 spin_lock_bh(&host->lock);
1379 slot->clock = 0;
2c96a293 1380 for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
965ebf33
HS
1381 if (host->slot[i] && host->slot[i]->clock) {
1382 any_slot_active = true;
1383 break;
1384 }
945533b5 1385 }
965ebf33 1386 if (!any_slot_active) {
03fc9a7f 1387 atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIDIS);
965ebf33 1388 if (host->mode_reg) {
03fc9a7f 1389 atmci_readl(host, ATMCI_MR);
965ebf33
HS
1390 }
1391 host->mode_reg = 0;
1392 }
1393 spin_unlock_bh(&host->lock);
7d2be074
HS
1394 }
1395
1396 switch (ios->power_mode) {
9e7861f5
AB
1397 case MMC_POWER_OFF:
1398 if (!IS_ERR(mmc->supply.vmmc))
1399 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
1400 break;
965ebf33
HS
1401 case MMC_POWER_UP:
1402 set_bit(ATMCI_CARD_NEED_INIT, &slot->flags);
9e7861f5
AB
1403 if (!IS_ERR(mmc->supply.vmmc))
1404 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
965ebf33 1405 break;
7d2be074
HS
1406 default:
1407 /*
1408 * TODO: None of the currently available AVR32-based
1409 * boards allow MMC power to be turned off. Implement
1410 * power control when this can be tested properly.
965ebf33
HS
1411 *
1412 * We also need to hook this into the clock management
1413 * somehow so that newly inserted cards aren't
1414 * subjected to a fast clock before we have a chance
1415 * to figure out what the maximum rate is. Currently,
1416 * there's no way to avoid this, and there never will
1417 * be for boards that don't support power control.
7d2be074
HS
1418 */
1419 break;
1420 }
ae552ab0
WY
1421
1422 pm_runtime_mark_last_busy(&host->pdev->dev);
1423 pm_runtime_put_autosuspend(&host->pdev->dev);
7d2be074
HS
1424}
1425
1426static int atmci_get_ro(struct mmc_host *mmc)
1427{
965ebf33
HS
1428 int read_only = -ENOSYS;
1429 struct atmel_mci_slot *slot = mmc_priv(mmc);
7d2be074 1430
965ebf33
HS
1431 if (gpio_is_valid(slot->wp_pin)) {
1432 read_only = gpio_get_value(slot->wp_pin);
7d2be074
HS
1433 dev_dbg(&mmc->class_dev, "card is %s\n",
1434 read_only ? "read-only" : "read-write");
7d2be074
HS
1435 }
1436
1437 return read_only;
1438}
1439
965ebf33
HS
1440static int atmci_get_cd(struct mmc_host *mmc)
1441{
1442 int present = -ENOSYS;
1443 struct atmel_mci_slot *slot = mmc_priv(mmc);
1444
1445 if (gpio_is_valid(slot->detect_pin)) {
1c1452be
JL
1446 present = !(gpio_get_value(slot->detect_pin) ^
1447 slot->detect_is_active_high);
965ebf33
HS
1448 dev_dbg(&mmc->class_dev, "card is %spresent\n",
1449 present ? "" : "not ");
1450 }
1451
1452 return present;
1453}
1454
88ff82ed
AG
1455static void atmci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1456{
1457 struct atmel_mci_slot *slot = mmc_priv(mmc);
1458 struct atmel_mci *host = slot->host;
1459
1460 if (enable)
03fc9a7f 1461 atmci_writel(host, ATMCI_IER, slot->sdio_irq);
88ff82ed 1462 else
03fc9a7f 1463 atmci_writel(host, ATMCI_IDR, slot->sdio_irq);
88ff82ed
AG
1464}
1465
965ebf33 1466static const struct mmc_host_ops atmci_ops = {
7d2be074
HS
1467 .request = atmci_request,
1468 .set_ios = atmci_set_ios,
1469 .get_ro = atmci_get_ro,
965ebf33 1470 .get_cd = atmci_get_cd,
88ff82ed 1471 .enable_sdio_irq = atmci_enable_sdio_irq,
7d2be074
HS
1472};
1473
965ebf33
HS
1474/* Called with host->lock held */
1475static void atmci_request_end(struct atmel_mci *host, struct mmc_request *mrq)
1476 __releases(&host->lock)
1477 __acquires(&host->lock)
1478{
1479 struct atmel_mci_slot *slot = NULL;
1480 struct mmc_host *prev_mmc = host->cur_slot->mmc;
1481
1482 WARN_ON(host->cmd || host->data);
1483
1484 /*
1485 * Update the MMC clock rate if necessary. This may be
1486 * necessary if set_ios() is called when a different slot is
25985edc 1487 * busy transferring data.
965ebf33 1488 */
99ddffd8 1489 if (host->need_clock_update) {
03fc9a7f 1490 atmci_writel(host, ATMCI_MR, host->mode_reg);
796211b7 1491 if (host->caps.has_cfg_reg)
03fc9a7f 1492 atmci_writel(host, ATMCI_CFG, host->cfg_reg);
99ddffd8 1493 }
965ebf33
HS
1494
1495 host->cur_slot->mrq = NULL;
1496 host->mrq = NULL;
1497 if (!list_empty(&host->queue)) {
1498 slot = list_entry(host->queue.next,
1499 struct atmel_mci_slot, queue_node);
1500 list_del(&slot->queue_node);
1501 dev_vdbg(&host->pdev->dev, "list not empty: %s is next\n",
1502 mmc_hostname(slot->mmc));
1503 host->state = STATE_SENDING_CMD;
1504 atmci_start_request(host, slot);
1505 } else {
1506 dev_vdbg(&host->pdev->dev, "list empty\n");
1507 host->state = STATE_IDLE;
1508 }
1509
24011f34
LD
1510 del_timer(&host->timer);
1511
965ebf33
HS
1512 spin_unlock(&host->lock);
1513 mmc_request_done(prev_mmc, mrq);
1514 spin_lock(&host->lock);
ae552ab0
WY
1515
1516 pm_runtime_mark_last_busy(&host->pdev->dev);
1517 pm_runtime_put_autosuspend(&host->pdev->dev);
965ebf33
HS
1518}
1519
7d2be074 1520static void atmci_command_complete(struct atmel_mci *host,
c06ad258 1521 struct mmc_command *cmd)
7d2be074 1522{
c06ad258
HS
1523 u32 status = host->cmd_status;
1524
7d2be074 1525 /* Read the response from the card (up to 16 bytes) */
03fc9a7f
LD
1526 cmd->resp[0] = atmci_readl(host, ATMCI_RSPR);
1527 cmd->resp[1] = atmci_readl(host, ATMCI_RSPR);
1528 cmd->resp[2] = atmci_readl(host, ATMCI_RSPR);
1529 cmd->resp[3] = atmci_readl(host, ATMCI_RSPR);
7d2be074 1530
2c96a293 1531 if (status & ATMCI_RTOE)
7d2be074 1532 cmd->error = -ETIMEDOUT;
2c96a293 1533 else if ((cmd->flags & MMC_RSP_CRC) && (status & ATMCI_RCRCE))
7d2be074 1534 cmd->error = -EILSEQ;
2c96a293 1535 else if (status & (ATMCI_RINDE | ATMCI_RDIRE | ATMCI_RENDE))
7d2be074 1536 cmd->error = -EIO;
24011f34
LD
1537 else if (host->mrq->data && (host->mrq->data->blksz & 3)) {
1538 if (host->caps.need_blksz_mul_4) {
1539 cmd->error = -EINVAL;
1540 host->need_reset = 1;
1541 }
1542 } else
7d2be074 1543 cmd->error = 0;
7d2be074
HS
1544}
1545
1546static void atmci_detect_change(unsigned long data)
1547{
965ebf33
HS
1548 struct atmel_mci_slot *slot = (struct atmel_mci_slot *)data;
1549 bool present;
1550 bool present_old;
7d2be074
HS
1551
1552 /*
965ebf33
HS
1553 * atmci_cleanup_slot() sets the ATMCI_SHUTDOWN flag before
1554 * freeing the interrupt. We must not re-enable the interrupt
1555 * if it has been freed, and if we're shutting down, it
1556 * doesn't really matter whether the card is present or not.
7d2be074
HS
1557 */
1558 smp_rmb();
965ebf33 1559 if (test_bit(ATMCI_SHUTDOWN, &slot->flags))
7d2be074
HS
1560 return;
1561
965ebf33 1562 enable_irq(gpio_to_irq(slot->detect_pin));
1c1452be
JL
1563 present = !(gpio_get_value(slot->detect_pin) ^
1564 slot->detect_is_active_high);
965ebf33 1565 present_old = test_bit(ATMCI_CARD_PRESENT, &slot->flags);
7d2be074 1566
965ebf33
HS
1567 dev_vdbg(&slot->mmc->class_dev, "detect change: %d (was %d)\n",
1568 present, present_old);
7d2be074 1569
965ebf33
HS
1570 if (present != present_old) {
1571 struct atmel_mci *host = slot->host;
1572 struct mmc_request *mrq;
1573
1574 dev_dbg(&slot->mmc->class_dev, "card %s\n",
7d2be074 1575 present ? "inserted" : "removed");
7d2be074 1576
965ebf33
HS
1577 spin_lock(&host->lock);
1578
1579 if (!present)
1580 clear_bit(ATMCI_CARD_PRESENT, &slot->flags);
1581 else
1582 set_bit(ATMCI_CARD_PRESENT, &slot->flags);
7d2be074
HS
1583
1584 /* Clean up queue if present */
965ebf33 1585 mrq = slot->mrq;
7d2be074 1586 if (mrq) {
965ebf33
HS
1587 if (mrq == host->mrq) {
1588 /*
1589 * Reset controller to terminate any ongoing
1590 * commands or data transfers.
1591 */
03fc9a7f
LD
1592 atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
1593 atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIEN);
1594 atmci_writel(host, ATMCI_MR, host->mode_reg);
796211b7 1595 if (host->caps.has_cfg_reg)
03fc9a7f 1596 atmci_writel(host, ATMCI_CFG, host->cfg_reg);
965ebf33
HS
1597
1598 host->data = NULL;
1599 host->cmd = NULL;
1600
1601 switch (host->state) {
1602 case STATE_IDLE:
c06ad258 1603 break;
965ebf33
HS
1604 case STATE_SENDING_CMD:
1605 mrq->cmd->error = -ENOMEDIUM;
f5177547
LD
1606 if (mrq->data)
1607 host->stop_transfer(host);
1608 break;
1609 case STATE_DATA_XFER:
c06ad258 1610 mrq->data->error = -ENOMEDIUM;
796211b7 1611 host->stop_transfer(host);
c06ad258 1612 break;
f5177547
LD
1613 case STATE_WAITING_NOTBUSY:
1614 mrq->data->error = -ENOMEDIUM;
1615 break;
965ebf33
HS
1616 case STATE_SENDING_STOP:
1617 mrq->stop->error = -ENOMEDIUM;
1618 break;
f5177547
LD
1619 case STATE_END_REQUEST:
1620 break;
965ebf33 1621 }
7d2be074 1622
965ebf33
HS
1623 atmci_request_end(host, mrq);
1624 } else {
1625 list_del(&slot->queue_node);
1626 mrq->cmd->error = -ENOMEDIUM;
1627 if (mrq->data)
1628 mrq->data->error = -ENOMEDIUM;
1629 if (mrq->stop)
1630 mrq->stop->error = -ENOMEDIUM;
1631
1632 spin_unlock(&host->lock);
1633 mmc_request_done(slot->mmc, mrq);
1634 spin_lock(&host->lock);
1635 }
7d2be074 1636 }
965ebf33 1637 spin_unlock(&host->lock);
7d2be074 1638
965ebf33 1639 mmc_detect_change(slot->mmc, 0);
7d2be074
HS
1640 }
1641}
1642
1643static void atmci_tasklet_func(unsigned long priv)
1644{
965ebf33 1645 struct atmel_mci *host = (struct atmel_mci *)priv;
7d2be074
HS
1646 struct mmc_request *mrq = host->mrq;
1647 struct mmc_data *data = host->data;
c06ad258
HS
1648 enum atmel_mci_state state = host->state;
1649 enum atmel_mci_state prev_state;
1650 u32 status;
1651
965ebf33
HS
1652 spin_lock(&host->lock);
1653
c06ad258 1654 state = host->state;
7d2be074 1655
965ebf33 1656 dev_vdbg(&host->pdev->dev,
c06ad258
HS
1657 "tasklet: state %u pending/completed/mask %lx/%lx/%x\n",
1658 state, host->pending_events, host->completed_events,
03fc9a7f 1659 atmci_readl(host, ATMCI_IMR));
7d2be074 1660
c06ad258
HS
1661 do {
1662 prev_state = state;
6801c41a 1663 dev_dbg(&host->pdev->dev, "FSM: state=%d\n", state);
7d2be074 1664
c06ad258 1665 switch (state) {
965ebf33
HS
1666 case STATE_IDLE:
1667 break;
1668
c06ad258 1669 case STATE_SENDING_CMD:
f5177547
LD
1670 /*
1671 * Command has been sent, we are waiting for command
1672 * ready. Then we have three next states possible:
1673 * END_REQUEST by default, WAITING_NOTBUSY if it's a
1674 * command needing it or DATA_XFER if there is data.
1675 */
6801c41a 1676 dev_dbg(&host->pdev->dev, "FSM: cmd ready?\n");
c06ad258 1677 if (!atmci_test_and_clear_pending(host,
f5177547 1678 EVENT_CMD_RDY))
c06ad258 1679 break;
7d2be074 1680
6801c41a 1681 dev_dbg(&host->pdev->dev, "set completed cmd ready\n");
c06ad258 1682 host->cmd = NULL;
f5177547 1683 atmci_set_completed(host, EVENT_CMD_RDY);
c06ad258 1684 atmci_command_complete(host, mrq->cmd);
f5177547 1685 if (mrq->data) {
6801c41a
LD
1686 dev_dbg(&host->pdev->dev,
1687 "command with data transfer");
f5177547
LD
1688 /*
1689 * If there is a command error don't start
1690 * data transfer.
1691 */
1692 if (mrq->cmd->error) {
1693 host->stop_transfer(host);
1694 host->data = NULL;
1695 atmci_writel(host, ATMCI_IDR,
1696 ATMCI_TXRDY | ATMCI_RXRDY
1697 | ATMCI_DATA_ERROR_FLAGS);
1698 state = STATE_END_REQUEST;
1699 } else
1700 state = STATE_DATA_XFER;
1701 } else if ((!mrq->data) && (mrq->cmd->flags & MMC_RSP_BUSY)) {
6801c41a
LD
1702 dev_dbg(&host->pdev->dev,
1703 "command response need waiting notbusy");
f5177547
LD
1704 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
1705 state = STATE_WAITING_NOTBUSY;
1706 } else
1707 state = STATE_END_REQUEST;
7d2be074 1708
f5177547 1709 break;
7d2be074 1710
f5177547 1711 case STATE_DATA_XFER:
c06ad258
HS
1712 if (atmci_test_and_clear_pending(host,
1713 EVENT_DATA_ERROR)) {
6801c41a 1714 dev_dbg(&host->pdev->dev, "set completed data error\n");
f5177547
LD
1715 atmci_set_completed(host, EVENT_DATA_ERROR);
1716 state = STATE_END_REQUEST;
c06ad258
HS
1717 break;
1718 }
7d2be074 1719
f5177547
LD
1720 /*
1721 * A data transfer is in progress. The event expected
1722 * to move to the next state depends of data transfer
1723 * type (PDC or DMA). Once transfer done we can move
1724 * to the next step which is WAITING_NOTBUSY in write
1725 * case and directly SENDING_STOP in read case.
1726 */
6801c41a 1727 dev_dbg(&host->pdev->dev, "FSM: xfer complete?\n");
c06ad258
HS
1728 if (!atmci_test_and_clear_pending(host,
1729 EVENT_XFER_COMPLETE))
1730 break;
7d2be074 1731
6801c41a
LD
1732 dev_dbg(&host->pdev->dev,
1733 "(%s) set completed xfer complete\n",
1734 __func__);
c06ad258 1735 atmci_set_completed(host, EVENT_XFER_COMPLETE);
7d2be074 1736
077d4073
LD
1737 if (host->caps.need_notbusy_for_read_ops ||
1738 (host->data->flags & MMC_DATA_WRITE)) {
f5177547
LD
1739 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
1740 state = STATE_WAITING_NOTBUSY;
1741 } else if (host->mrq->stop) {
1742 atmci_writel(host, ATMCI_IER, ATMCI_CMDRDY);
1743 atmci_send_stop_cmd(host, data);
1744 state = STATE_SENDING_STOP;
c06ad258 1745 } else {
f5177547 1746 host->data = NULL;
c06ad258
HS
1747 data->bytes_xfered = data->blocks * data->blksz;
1748 data->error = 0;
f5177547 1749 state = STATE_END_REQUEST;
c06ad258 1750 }
f5177547 1751 break;
c06ad258 1752
f5177547
LD
1753 case STATE_WAITING_NOTBUSY:
1754 /*
1755 * We can be in the state for two reasons: a command
1756 * requiring waiting not busy signal (stop command
1757 * included) or a write operation. In the latest case,
1758 * we need to send a stop command.
1759 */
6801c41a 1760 dev_dbg(&host->pdev->dev, "FSM: not busy?\n");
f5177547
LD
1761 if (!atmci_test_and_clear_pending(host,
1762 EVENT_NOTBUSY))
1763 break;
7d2be074 1764
6801c41a 1765 dev_dbg(&host->pdev->dev, "set completed not busy\n");
f5177547
LD
1766 atmci_set_completed(host, EVENT_NOTBUSY);
1767
1768 if (host->data) {
1769 /*
1770 * For some commands such as CMD53, even if
1771 * there is data transfer, there is no stop
1772 * command to send.
1773 */
1774 if (host->mrq->stop) {
1775 atmci_writel(host, ATMCI_IER,
1776 ATMCI_CMDRDY);
1777 atmci_send_stop_cmd(host, data);
1778 state = STATE_SENDING_STOP;
1779 } else {
1780 host->data = NULL;
1781 data->bytes_xfered = data->blocks
1782 * data->blksz;
1783 data->error = 0;
1784 state = STATE_END_REQUEST;
1785 }
1786 } else
1787 state = STATE_END_REQUEST;
1788 break;
c06ad258
HS
1789
1790 case STATE_SENDING_STOP:
f5177547
LD
1791 /*
1792 * In this state, it is important to set host->data to
1793 * NULL (which is tested in the waiting notbusy state)
1794 * in order to go to the end request state instead of
1795 * sending stop again.
1796 */
6801c41a 1797 dev_dbg(&host->pdev->dev, "FSM: cmd ready?\n");
c06ad258 1798 if (!atmci_test_and_clear_pending(host,
f5177547 1799 EVENT_CMD_RDY))
c06ad258
HS
1800 break;
1801
6801c41a 1802 dev_dbg(&host->pdev->dev, "FSM: cmd ready\n");
c06ad258 1803 host->cmd = NULL;
f5177547
LD
1804 data->bytes_xfered = data->blocks * data->blksz;
1805 data->error = 0;
c06ad258 1806 atmci_command_complete(host, mrq->stop);
f5177547
LD
1807 if (mrq->stop->error) {
1808 host->stop_transfer(host);
1809 atmci_writel(host, ATMCI_IDR,
1810 ATMCI_TXRDY | ATMCI_RXRDY
1811 | ATMCI_DATA_ERROR_FLAGS);
1812 state = STATE_END_REQUEST;
1813 } else {
1814 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
1815 state = STATE_WAITING_NOTBUSY;
1816 }
41b4e9a1 1817 host->data = NULL;
f5177547 1818 break;
c06ad258 1819
f5177547
LD
1820 case STATE_END_REQUEST:
1821 atmci_writel(host, ATMCI_IDR, ATMCI_TXRDY | ATMCI_RXRDY
1822 | ATMCI_DATA_ERROR_FLAGS);
1823 status = host->data_status;
1824 if (unlikely(status)) {
1825 host->stop_transfer(host);
1826 host->data = NULL;
fbd986cd
RG
1827 if (data) {
1828 if (status & ATMCI_DTOE) {
1829 data->error = -ETIMEDOUT;
1830 } else if (status & ATMCI_DCRCE) {
1831 data->error = -EILSEQ;
1832 } else {
1833 data->error = -EIO;
1834 }
f5177547
LD
1835 }
1836 }
c06ad258 1837
f5177547
LD
1838 atmci_request_end(host, host->mrq);
1839 state = STATE_IDLE;
c06ad258
HS
1840 break;
1841 }
1842 } while (state != prev_state);
1843
1844 host->state = state;
965ebf33 1845
965ebf33 1846 spin_unlock(&host->lock);
7d2be074
HS
1847}
1848
1849static void atmci_read_data_pio(struct atmel_mci *host)
1850{
1851 struct scatterlist *sg = host->sg;
1852 void *buf = sg_virt(sg);
1853 unsigned int offset = host->pio_offset;
1854 struct mmc_data *data = host->data;
1855 u32 value;
1856 u32 status;
1857 unsigned int nbytes = 0;
1858
1859 do {
03fc9a7f 1860 value = atmci_readl(host, ATMCI_RDR);
7d2be074
HS
1861 if (likely(offset + 4 <= sg->length)) {
1862 put_unaligned(value, (u32 *)(buf + offset));
1863
1864 offset += 4;
1865 nbytes += 4;
1866
1867 if (offset == sg->length) {
5e7184ae 1868 flush_dcache_page(sg_page(sg));
7d2be074 1869 host->sg = sg = sg_next(sg);
bdbc5d0c
TB
1870 host->sg_len--;
1871 if (!sg || !host->sg_len)
7d2be074
HS
1872 goto done;
1873
1874 offset = 0;
1875 buf = sg_virt(sg);
1876 }
1877 } else {
1878 unsigned int remaining = sg->length - offset;
1879 memcpy(buf + offset, &value, remaining);
1880 nbytes += remaining;
1881
1882 flush_dcache_page(sg_page(sg));
1883 host->sg = sg = sg_next(sg);
bdbc5d0c
TB
1884 host->sg_len--;
1885 if (!sg || !host->sg_len)
7d2be074
HS
1886 goto done;
1887
1888 offset = 4 - remaining;
1889 buf = sg_virt(sg);
1890 memcpy(buf, (u8 *)&value + remaining, offset);
1891 nbytes += offset;
1892 }
1893
03fc9a7f 1894 status = atmci_readl(host, ATMCI_SR);
7d2be074 1895 if (status & ATMCI_DATA_ERROR_FLAGS) {
03fc9a7f 1896 atmci_writel(host, ATMCI_IDR, (ATMCI_NOTBUSY | ATMCI_RXRDY
7d2be074
HS
1897 | ATMCI_DATA_ERROR_FLAGS));
1898 host->data_status = status;
965ebf33 1899 data->bytes_xfered += nbytes;
965ebf33 1900 return;
7d2be074 1901 }
2c96a293 1902 } while (status & ATMCI_RXRDY);
7d2be074
HS
1903
1904 host->pio_offset = offset;
1905 data->bytes_xfered += nbytes;
1906
1907 return;
1908
1909done:
03fc9a7f
LD
1910 atmci_writel(host, ATMCI_IDR, ATMCI_RXRDY);
1911 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
7d2be074 1912 data->bytes_xfered += nbytes;
965ebf33 1913 smp_wmb();
c06ad258 1914 atmci_set_pending(host, EVENT_XFER_COMPLETE);
7d2be074
HS
1915}
1916
1917static void atmci_write_data_pio(struct atmel_mci *host)
1918{
1919 struct scatterlist *sg = host->sg;
1920 void *buf = sg_virt(sg);
1921 unsigned int offset = host->pio_offset;
1922 struct mmc_data *data = host->data;
1923 u32 value;
1924 u32 status;
1925 unsigned int nbytes = 0;
1926
1927 do {
1928 if (likely(offset + 4 <= sg->length)) {
1929 value = get_unaligned((u32 *)(buf + offset));
03fc9a7f 1930 atmci_writel(host, ATMCI_TDR, value);
7d2be074
HS
1931
1932 offset += 4;
1933 nbytes += 4;
1934 if (offset == sg->length) {
1935 host->sg = sg = sg_next(sg);
bdbc5d0c
TB
1936 host->sg_len--;
1937 if (!sg || !host->sg_len)
7d2be074
HS
1938 goto done;
1939
1940 offset = 0;
1941 buf = sg_virt(sg);
1942 }
1943 } else {
1944 unsigned int remaining = sg->length - offset;
1945
1946 value = 0;
1947 memcpy(&value, buf + offset, remaining);
1948 nbytes += remaining;
1949
1950 host->sg = sg = sg_next(sg);
bdbc5d0c
TB
1951 host->sg_len--;
1952 if (!sg || !host->sg_len) {
03fc9a7f 1953 atmci_writel(host, ATMCI_TDR, value);
7d2be074
HS
1954 goto done;
1955 }
1956
1957 offset = 4 - remaining;
1958 buf = sg_virt(sg);
1959 memcpy((u8 *)&value + remaining, buf, offset);
03fc9a7f 1960 atmci_writel(host, ATMCI_TDR, value);
7d2be074
HS
1961 nbytes += offset;
1962 }
1963
03fc9a7f 1964 status = atmci_readl(host, ATMCI_SR);
7d2be074 1965 if (status & ATMCI_DATA_ERROR_FLAGS) {
03fc9a7f 1966 atmci_writel(host, ATMCI_IDR, (ATMCI_NOTBUSY | ATMCI_TXRDY
7d2be074
HS
1967 | ATMCI_DATA_ERROR_FLAGS));
1968 host->data_status = status;
965ebf33 1969 data->bytes_xfered += nbytes;
965ebf33 1970 return;
7d2be074 1971 }
2c96a293 1972 } while (status & ATMCI_TXRDY);
7d2be074
HS
1973
1974 host->pio_offset = offset;
1975 data->bytes_xfered += nbytes;
1976
1977 return;
1978
1979done:
03fc9a7f
LD
1980 atmci_writel(host, ATMCI_IDR, ATMCI_TXRDY);
1981 atmci_writel(host, ATMCI_IER, ATMCI_NOTBUSY);
7d2be074 1982 data->bytes_xfered += nbytes;
965ebf33 1983 smp_wmb();
c06ad258 1984 atmci_set_pending(host, EVENT_XFER_COMPLETE);
7d2be074
HS
1985}
1986
88ff82ed
AG
1987static void atmci_sdio_interrupt(struct atmel_mci *host, u32 status)
1988{
1989 int i;
1990
2c96a293 1991 for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
88ff82ed
AG
1992 struct atmel_mci_slot *slot = host->slot[i];
1993 if (slot && (status & slot->sdio_irq)) {
1994 mmc_signal_sdio_irq(slot->mmc);
1995 }
1996 }
1997}
1998
1999
7d2be074
HS
2000static irqreturn_t atmci_interrupt(int irq, void *dev_id)
2001{
965ebf33 2002 struct atmel_mci *host = dev_id;
7d2be074
HS
2003 u32 status, mask, pending;
2004 unsigned int pass_count = 0;
2005
7d2be074 2006 do {
03fc9a7f
LD
2007 status = atmci_readl(host, ATMCI_SR);
2008 mask = atmci_readl(host, ATMCI_IMR);
7d2be074
HS
2009 pending = status & mask;
2010 if (!pending)
2011 break;
2012
2013 if (pending & ATMCI_DATA_ERROR_FLAGS) {
6801c41a 2014 dev_dbg(&host->pdev->dev, "IRQ: data error\n");
03fc9a7f 2015 atmci_writel(host, ATMCI_IDR, ATMCI_DATA_ERROR_FLAGS
f5177547
LD
2016 | ATMCI_RXRDY | ATMCI_TXRDY
2017 | ATMCI_ENDRX | ATMCI_ENDTX
2018 | ATMCI_RXBUFF | ATMCI_TXBUFE);
965ebf33 2019
7d2be074 2020 host->data_status = status;
6801c41a 2021 dev_dbg(&host->pdev->dev, "set pending data error\n");
965ebf33 2022 smp_wmb();
7d2be074
HS
2023 atmci_set_pending(host, EVENT_DATA_ERROR);
2024 tasklet_schedule(&host->tasklet);
2025 }
796211b7 2026
796211b7 2027 if (pending & ATMCI_TXBUFE) {
6801c41a 2028 dev_dbg(&host->pdev->dev, "IRQ: tx buffer empty\n");
796211b7 2029 atmci_writel(host, ATMCI_IDR, ATMCI_TXBUFE);
7e8ba228 2030 atmci_writel(host, ATMCI_IDR, ATMCI_ENDTX);
796211b7
LD
2031 /*
2032 * We can receive this interruption before having configured
2033 * the second pdc buffer, so we need to reconfigure first and
2034 * second buffers again
2035 */
2036 if (host->data_size) {
2037 atmci_pdc_set_both_buf(host, XFER_TRANSMIT);
7e8ba228 2038 atmci_writel(host, ATMCI_IER, ATMCI_ENDTX);
796211b7
LD
2039 atmci_writel(host, ATMCI_IER, ATMCI_TXBUFE);
2040 } else {
2041 atmci_pdc_complete(host);
2042 }
7e8ba228 2043 } else if (pending & ATMCI_ENDTX) {
6801c41a 2044 dev_dbg(&host->pdev->dev, "IRQ: end of tx buffer\n");
7e8ba228 2045 atmci_writel(host, ATMCI_IDR, ATMCI_ENDTX);
796211b7
LD
2046
2047 if (host->data_size) {
2048 atmci_pdc_set_single_buf(host,
7e8ba228
LD
2049 XFER_TRANSMIT, PDC_SECOND_BUF);
2050 atmci_writel(host, ATMCI_IER, ATMCI_ENDTX);
796211b7
LD
2051 }
2052 }
2053
2054 if (pending & ATMCI_RXBUFF) {
6801c41a 2055 dev_dbg(&host->pdev->dev, "IRQ: rx buffer full\n");
796211b7 2056 atmci_writel(host, ATMCI_IDR, ATMCI_RXBUFF);
7e8ba228 2057 atmci_writel(host, ATMCI_IDR, ATMCI_ENDRX);
796211b7
LD
2058 /*
2059 * We can receive this interruption before having configured
2060 * the second pdc buffer, so we need to reconfigure first and
2061 * second buffers again
2062 */
2063 if (host->data_size) {
2064 atmci_pdc_set_both_buf(host, XFER_RECEIVE);
7e8ba228 2065 atmci_writel(host, ATMCI_IER, ATMCI_ENDRX);
796211b7
LD
2066 atmci_writel(host, ATMCI_IER, ATMCI_RXBUFF);
2067 } else {
2068 atmci_pdc_complete(host);
2069 }
7e8ba228 2070 } else if (pending & ATMCI_ENDRX) {
6801c41a 2071 dev_dbg(&host->pdev->dev, "IRQ: end of rx buffer\n");
7e8ba228
LD
2072 atmci_writel(host, ATMCI_IDR, ATMCI_ENDRX);
2073
2074 if (host->data_size) {
2075 atmci_pdc_set_single_buf(host,
2076 XFER_RECEIVE, PDC_SECOND_BUF);
2077 atmci_writel(host, ATMCI_IER, ATMCI_ENDRX);
2078 }
796211b7
LD
2079 }
2080
f5177547
LD
2081 /*
2082 * First mci IPs, so mainly the ones having pdc, have some
2083 * issues with the notbusy signal. You can't get it after
2084 * data transmission if you have not sent a stop command.
2085 * The appropriate workaround is to use the BLKE signal.
2086 */
2087 if (pending & ATMCI_BLKE) {
6801c41a 2088 dev_dbg(&host->pdev->dev, "IRQ: blke\n");
f5177547
LD
2089 atmci_writel(host, ATMCI_IDR, ATMCI_BLKE);
2090 smp_wmb();
6801c41a 2091 dev_dbg(&host->pdev->dev, "set pending notbusy\n");
f5177547
LD
2092 atmci_set_pending(host, EVENT_NOTBUSY);
2093 tasklet_schedule(&host->tasklet);
2094 }
7e8ba228 2095
2c96a293 2096 if (pending & ATMCI_NOTBUSY) {
6801c41a 2097 dev_dbg(&host->pdev->dev, "IRQ: not_busy\n");
f5177547 2098 atmci_writel(host, ATMCI_IDR, ATMCI_NOTBUSY);
965ebf33 2099 smp_wmb();
6801c41a 2100 dev_dbg(&host->pdev->dev, "set pending notbusy\n");
f5177547 2101 atmci_set_pending(host, EVENT_NOTBUSY);
7d2be074
HS
2102 tasklet_schedule(&host->tasklet);
2103 }
f5177547 2104
2c96a293 2105 if (pending & ATMCI_RXRDY)
7d2be074 2106 atmci_read_data_pio(host);
2c96a293 2107 if (pending & ATMCI_TXRDY)
7d2be074
HS
2108 atmci_write_data_pio(host);
2109
f5177547 2110 if (pending & ATMCI_CMDRDY) {
6801c41a 2111 dev_dbg(&host->pdev->dev, "IRQ: cmd ready\n");
f5177547
LD
2112 atmci_writel(host, ATMCI_IDR, ATMCI_CMDRDY);
2113 host->cmd_status = status;
2114 smp_wmb();
6801c41a 2115 dev_dbg(&host->pdev->dev, "set pending cmd rdy\n");
f5177547
LD
2116 atmci_set_pending(host, EVENT_CMD_RDY);
2117 tasklet_schedule(&host->tasklet);
2118 }
88ff82ed 2119
2c96a293 2120 if (pending & (ATMCI_SDIOIRQA | ATMCI_SDIOIRQB))
88ff82ed
AG
2121 atmci_sdio_interrupt(host, status);
2122
7d2be074
HS
2123 } while (pass_count++ < 5);
2124
7d2be074
HS
2125 return pass_count ? IRQ_HANDLED : IRQ_NONE;
2126}
2127
2128static irqreturn_t atmci_detect_interrupt(int irq, void *dev_id)
2129{
965ebf33 2130 struct atmel_mci_slot *slot = dev_id;
7d2be074
HS
2131
2132 /*
2133 * Disable interrupts until the pin has stabilized and check
2134 * the state then. Use mod_timer() since we may be in the
2135 * middle of the timer routine when this interrupt triggers.
2136 */
2137 disable_irq_nosync(irq);
965ebf33 2138 mod_timer(&slot->detect_timer, jiffies + msecs_to_jiffies(20));
7d2be074
HS
2139
2140 return IRQ_HANDLED;
2141}
2142
965ebf33
HS
2143static int __init atmci_init_slot(struct atmel_mci *host,
2144 struct mci_slot_pdata *slot_data, unsigned int id,
88ff82ed 2145 u32 sdc_reg, u32 sdio_irq)
965ebf33
HS
2146{
2147 struct mmc_host *mmc;
2148 struct atmel_mci_slot *slot;
2149
2150 mmc = mmc_alloc_host(sizeof(struct atmel_mci_slot), &host->pdev->dev);
2151 if (!mmc)
2152 return -ENOMEM;
2153
2154 slot = mmc_priv(mmc);
2155 slot->mmc = mmc;
2156 slot->host = host;
2157 slot->detect_pin = slot_data->detect_pin;
2158 slot->wp_pin = slot_data->wp_pin;
1c1452be 2159 slot->detect_is_active_high = slot_data->detect_is_active_high;
965ebf33 2160 slot->sdc_reg = sdc_reg;
88ff82ed 2161 slot->sdio_irq = sdio_irq;
965ebf33 2162
e919fd20
LD
2163 dev_dbg(&mmc->class_dev,
2164 "slot[%u]: bus_width=%u, detect_pin=%d, "
2165 "detect_is_active_high=%s, wp_pin=%d\n",
2166 id, slot_data->bus_width, slot_data->detect_pin,
2167 slot_data->detect_is_active_high ? "true" : "false",
2168 slot_data->wp_pin);
2169
965ebf33
HS
2170 mmc->ops = &atmci_ops;
2171 mmc->f_min = DIV_ROUND_UP(host->bus_hz, 512);
2172 mmc->f_max = host->bus_hz / 2;
2173 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
88ff82ed
AG
2174 if (sdio_irq)
2175 mmc->caps |= MMC_CAP_SDIO_IRQ;
796211b7 2176 if (host->caps.has_highspeed)
99ddffd8 2177 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
7a90dcc2
LD
2178 /*
2179 * Without the read/write proof capability, it is strongly suggested to
2180 * use only one bit for data to prevent fifo underruns and overruns
2181 * which will corrupt data.
2182 */
2183 if ((slot_data->bus_width >= 4) && host->caps.has_rwproof)
965ebf33
HS
2184 mmc->caps |= MMC_CAP_4_BIT_DATA;
2185
7a90dcc2
LD
2186 if (atmci_get_version(host) < 0x200) {
2187 mmc->max_segs = 256;
2188 mmc->max_blk_size = 4095;
2189 mmc->max_blk_count = 256;
2190 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2191 mmc->max_seg_size = mmc->max_blk_size * mmc->max_segs;
2192 } else {
2193 mmc->max_segs = 64;
2194 mmc->max_req_size = 32768 * 512;
2195 mmc->max_blk_size = 32768;
2196 mmc->max_blk_count = 512;
2197 }
965ebf33
HS
2198
2199 /* Assume card is present initially */
2200 set_bit(ATMCI_CARD_PRESENT, &slot->flags);
2201 if (gpio_is_valid(slot->detect_pin)) {
7bca646e
PG
2202 if (devm_gpio_request(&host->pdev->dev, slot->detect_pin,
2203 "mmc_detect")) {
965ebf33
HS
2204 dev_dbg(&mmc->class_dev, "no detect pin available\n");
2205 slot->detect_pin = -EBUSY;
1c1452be
JL
2206 } else if (gpio_get_value(slot->detect_pin) ^
2207 slot->detect_is_active_high) {
965ebf33
HS
2208 clear_bit(ATMCI_CARD_PRESENT, &slot->flags);
2209 }
2210 }
2211
76d55564
TK
2212 if (!gpio_is_valid(slot->detect_pin)) {
2213 if (slot_data->non_removable)
2214 mmc->caps |= MMC_CAP_NONREMOVABLE;
2215 else
2216 mmc->caps |= MMC_CAP_NEEDS_POLL;
2217 }
965ebf33
HS
2218
2219 if (gpio_is_valid(slot->wp_pin)) {
7bca646e
PG
2220 if (devm_gpio_request(&host->pdev->dev, slot->wp_pin,
2221 "mmc_wp")) {
965ebf33
HS
2222 dev_dbg(&mmc->class_dev, "no WP pin available\n");
2223 slot->wp_pin = -EBUSY;
2224 }
2225 }
2226
2227 host->slot[id] = slot;
9e7861f5 2228 mmc_regulator_get_supply(mmc);
965ebf33
HS
2229 mmc_add_host(mmc);
2230
2231 if (gpio_is_valid(slot->detect_pin)) {
2232 int ret;
2233
2234 setup_timer(&slot->detect_timer, atmci_detect_change,
2235 (unsigned long)slot);
2236
2237 ret = request_irq(gpio_to_irq(slot->detect_pin),
2238 atmci_detect_interrupt,
2239 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
2240 "mmc-detect", slot);
2241 if (ret) {
2242 dev_dbg(&mmc->class_dev,
2243 "could not request IRQ %d for detect pin\n",
2244 gpio_to_irq(slot->detect_pin));
965ebf33
HS
2245 slot->detect_pin = -EBUSY;
2246 }
2247 }
2248
2249 atmci_init_debugfs(slot);
2250
2251 return 0;
2252}
2253
5fef365b 2254static void atmci_cleanup_slot(struct atmel_mci_slot *slot,
965ebf33
HS
2255 unsigned int id)
2256{
2257 /* Debugfs stuff is cleaned up by mmc core */
2258
2259 set_bit(ATMCI_SHUTDOWN, &slot->flags);
2260 smp_wmb();
2261
2262 mmc_remove_host(slot->mmc);
2263
2264 if (gpio_is_valid(slot->detect_pin)) {
2265 int pin = slot->detect_pin;
2266
2267 free_irq(gpio_to_irq(pin), slot);
2268 del_timer_sync(&slot->detect_timer);
965ebf33 2269 }
965ebf33
HS
2270
2271 slot->host->slot[id] = NULL;
2272 mmc_free_host(slot->mmc);
2273}
2274
ef878198 2275static bool atmci_configure_dma(struct atmel_mci *host)
2635d1ba 2276{
2635d1ba 2277 if (host == NULL)
ef878198 2278 return false;
2635d1ba 2279
ecb89f2f 2280 host->dma.chan = dma_request_slave_channel(&host->pdev->dev, "rxtx");
ef878198
LD
2281 if (!host->dma.chan) {
2282 dev_warn(&host->pdev->dev, "no DMA channel available\n");
2283 return false;
2284 } else {
74791a2d 2285 dev_info(&host->pdev->dev,
b81cfc41 2286 "using %s for DMA transfers\n",
74791a2d 2287 dma_chan_name(host->dma.chan));
e2b35f3d
VK
2288
2289 host->dma_conf.src_addr = host->mapbase + ATMCI_RDR;
2290 host->dma_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
2291 host->dma_conf.src_maxburst = 1;
2292 host->dma_conf.dst_addr = host->mapbase + ATMCI_TDR;
2293 host->dma_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
2294 host->dma_conf.dst_maxburst = 1;
2295 host->dma_conf.device_fc = false;
ef878198
LD
2296 return true;
2297 }
2635d1ba 2298}
796211b7 2299
796211b7
LD
2300/*
2301 * HSMCI (High Speed MCI) module is not fully compatible with MCI module.
2302 * HSMCI provides DMA support and a new config register but no more supports
2303 * PDC.
2304 */
2305static void __init atmci_get_cap(struct atmel_mci *host)
2306{
2307 unsigned int version;
2308
2309 version = atmci_get_version(host);
2310 dev_info(&host->pdev->dev,
2311 "version: 0x%x\n", version);
2312
ccdfe612 2313 host->caps.has_dma_conf_reg = 0;
6bf2af8c 2314 host->caps.has_pdc = ATMCI_PDC_CONNECTED;
796211b7
LD
2315 host->caps.has_cfg_reg = 0;
2316 host->caps.has_cstor_reg = 0;
2317 host->caps.has_highspeed = 0;
2318 host->caps.has_rwproof = 0;
faf8180b 2319 host->caps.has_odd_clk_div = 0;
24011f34
LD
2320 host->caps.has_bad_data_ordering = 1;
2321 host->caps.need_reset_after_xfer = 1;
2322 host->caps.need_blksz_mul_4 = 1;
077d4073 2323 host->caps.need_notbusy_for_read_ops = 0;
796211b7
LD
2324
2325 /* keep only major version number */
2326 switch (version & 0xf00) {
215ba399 2327 case 0x600:
796211b7 2328 case 0x500:
faf8180b
LD
2329 host->caps.has_odd_clk_div = 1;
2330 case 0x400:
2331 case 0x300:
ccdfe612 2332 host->caps.has_dma_conf_reg = 1;
faf8180b 2333 host->caps.has_pdc = 0;
796211b7
LD
2334 host->caps.has_cfg_reg = 1;
2335 host->caps.has_cstor_reg = 1;
2336 host->caps.has_highspeed = 1;
faf8180b 2337 case 0x200:
796211b7 2338 host->caps.has_rwproof = 1;
24011f34 2339 host->caps.need_blksz_mul_4 = 0;
077d4073 2340 host->caps.need_notbusy_for_read_ops = 1;
faf8180b 2341 case 0x100:
24011f34
LD
2342 host->caps.has_bad_data_ordering = 0;
2343 host->caps.need_reset_after_xfer = 0;
2344 case 0x0:
796211b7
LD
2345 break;
2346 default:
faf8180b 2347 host->caps.has_pdc = 0;
796211b7
LD
2348 dev_warn(&host->pdev->dev,
2349 "Unmanaged mci version, set minimum capabilities\n");
2350 break;
2351 }
2352}
74465b4f 2353
7d2be074
HS
2354static int __init atmci_probe(struct platform_device *pdev)
2355{
2356 struct mci_platform_data *pdata;
965ebf33
HS
2357 struct atmel_mci *host;
2358 struct resource *regs;
2359 unsigned int nr_slots;
2360 int irq;
528bc780 2361 int ret, i;
7d2be074
HS
2362
2363 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2364 if (!regs)
2365 return -ENXIO;
2366 pdata = pdev->dev.platform_data;
e919fd20
LD
2367 if (!pdata) {
2368 pdata = atmci_of_init(pdev);
2369 if (IS_ERR(pdata)) {
2370 dev_err(&pdev->dev, "platform data not available\n");
2371 return PTR_ERR(pdata);
2372 }
2373 }
2374
7d2be074
HS
2375 irq = platform_get_irq(pdev, 0);
2376 if (irq < 0)
2377 return irq;
2378
7bca646e 2379 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
965ebf33 2380 if (!host)
7d2be074
HS
2381 return -ENOMEM;
2382
7d2be074 2383 host->pdev = pdev;
965ebf33
HS
2384 spin_lock_init(&host->lock);
2385 INIT_LIST_HEAD(&host->queue);
7d2be074 2386
7bca646e
PG
2387 host->mck = devm_clk_get(&pdev->dev, "mci_clk");
2388 if (IS_ERR(host->mck))
2389 return PTR_ERR(host->mck);
7d2be074 2390
7bca646e 2391 host->regs = devm_ioremap(&pdev->dev, regs->start, resource_size(regs));
7d2be074 2392 if (!host->regs)
7bca646e 2393 return -ENOMEM;
7d2be074 2394
b3894f26
BB
2395 ret = clk_prepare_enable(host->mck);
2396 if (ret)
7bca646e
PG
2397 return ret;
2398
03fc9a7f 2399 atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST);
7d2be074 2400 host->bus_hz = clk_get_rate(host->mck);
7d2be074
HS
2401
2402 host->mapbase = regs->start;
2403
965ebf33 2404 tasklet_init(&host->tasklet, atmci_tasklet_func, (unsigned long)host);
7d2be074 2405
89c8aa20 2406 ret = request_irq(irq, atmci_interrupt, 0, dev_name(&pdev->dev), host);
ae552ab0
WY
2407 if (ret) {
2408 clk_disable_unprepare(host->mck);
7bca646e 2409 return ret;
ae552ab0 2410 }
7d2be074 2411
796211b7
LD
2412 /* Get MCI capabilities and set operations according to it */
2413 atmci_get_cap(host);
ccdfe612 2414 if (atmci_configure_dma(host)) {
796211b7
LD
2415 host->prepare_data = &atmci_prepare_data_dma;
2416 host->submit_data = &atmci_submit_data_dma;
2417 host->stop_transfer = &atmci_stop_transfer_dma;
2418 } else if (host->caps.has_pdc) {
2419 dev_info(&pdev->dev, "using PDC\n");
2420 host->prepare_data = &atmci_prepare_data_pdc;
2421 host->submit_data = &atmci_submit_data_pdc;
2422 host->stop_transfer = &atmci_stop_transfer_pdc;
2423 } else {
ef878198 2424 dev_info(&pdev->dev, "using PIO\n");
796211b7
LD
2425 host->prepare_data = &atmci_prepare_data;
2426 host->submit_data = &atmci_submit_data;
2427 host->stop_transfer = &atmci_stop_transfer;
2428 }
2429
7d2be074
HS
2430 platform_set_drvdata(pdev, host);
2431
b87cc1b5
LD
2432 setup_timer(&host->timer, atmci_timeout_timer, (unsigned long)host);
2433
ae552ab0
WY
2434 pm_runtime_get_noresume(&pdev->dev);
2435 pm_runtime_set_active(&pdev->dev);
2436 pm_runtime_set_autosuspend_delay(&pdev->dev, AUTOSUSPEND_DELAY);
2437 pm_runtime_use_autosuspend(&pdev->dev);
2438 pm_runtime_enable(&pdev->dev);
2439
965ebf33
HS
2440 /* We need at least one slot to succeed */
2441 nr_slots = 0;
2442 ret = -ENODEV;
2443 if (pdata->slot[0].bus_width) {
2444 ret = atmci_init_slot(host, &pdata->slot[0],
2c96a293 2445 0, ATMCI_SDCSEL_SLOT_A, ATMCI_SDIOIRQA);
7a90dcc2 2446 if (!ret) {
965ebf33 2447 nr_slots++;
7a90dcc2
LD
2448 host->buf_size = host->slot[0]->mmc->max_req_size;
2449 }
965ebf33
HS
2450 }
2451 if (pdata->slot[1].bus_width) {
2452 ret = atmci_init_slot(host, &pdata->slot[1],
2c96a293 2453 1, ATMCI_SDCSEL_SLOT_B, ATMCI_SDIOIRQB);
7a90dcc2 2454 if (!ret) {
965ebf33 2455 nr_slots++;
7a90dcc2
LD
2456 if (host->slot[1]->mmc->max_req_size > host->buf_size)
2457 host->buf_size =
2458 host->slot[1]->mmc->max_req_size;
2459 }
7d2be074
HS
2460 }
2461
04d699c3
RE
2462 if (!nr_slots) {
2463 dev_err(&pdev->dev, "init failed: no slot defined\n");
965ebf33 2464 goto err_init_slot;
04d699c3 2465 }
7d2be074 2466
7a90dcc2
LD
2467 if (!host->caps.has_rwproof) {
2468 host->buffer = dma_alloc_coherent(&pdev->dev, host->buf_size,
2469 &host->buf_phys_addr,
2470 GFP_KERNEL);
2471 if (!host->buffer) {
2472 ret = -ENOMEM;
2473 dev_err(&pdev->dev, "buffer allocation failed\n");
528bc780 2474 goto err_dma_alloc;
7a90dcc2
LD
2475 }
2476 }
2477
965ebf33
HS
2478 dev_info(&pdev->dev,
2479 "Atmel MCI controller at 0x%08lx irq %d, %u slots\n",
2480 host->mapbase, irq, nr_slots);
deec9ae3 2481
ae552ab0
WY
2482 pm_runtime_mark_last_busy(&host->pdev->dev);
2483 pm_runtime_put_autosuspend(&pdev->dev);
2484
7d2be074
HS
2485 return 0;
2486
528bc780
PG
2487err_dma_alloc:
2488 for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
2489 if (host->slot[i])
2490 atmci_cleanup_slot(host->slot[i], i);
2491 }
965ebf33 2492err_init_slot:
ae552ab0
WY
2493 clk_disable_unprepare(host->mck);
2494
2495 pm_runtime_disable(&pdev->dev);
2496 pm_runtime_put_noidle(&pdev->dev);
2497
528bc780 2498 del_timer_sync(&host->timer);
74465b4f
DW
2499 if (host->dma.chan)
2500 dma_release_channel(host->dma.chan);
965ebf33 2501 free_irq(irq, host);
7d2be074
HS
2502 return ret;
2503}
2504
2505static int __exit atmci_remove(struct platform_device *pdev)
2506{
965ebf33
HS
2507 struct atmel_mci *host = platform_get_drvdata(pdev);
2508 unsigned int i;
7d2be074 2509
ae552ab0
WY
2510 pm_runtime_get_sync(&pdev->dev);
2511
7a90dcc2
LD
2512 if (host->buffer)
2513 dma_free_coherent(&pdev->dev, host->buf_size,
2514 host->buffer, host->buf_phys_addr);
2515
2c96a293 2516 for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) {
965ebf33
HS
2517 if (host->slot[i])
2518 atmci_cleanup_slot(host->slot[i], i);
2519 }
7d2be074 2520
03fc9a7f
LD
2521 atmci_writel(host, ATMCI_IDR, ~0UL);
2522 atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIDIS);
2523 atmci_readl(host, ATMCI_SR);
7d2be074 2524
528bc780 2525 del_timer_sync(&host->timer);
74465b4f
DW
2526 if (host->dma.chan)
2527 dma_release_channel(host->dma.chan);
65e8b083 2528
965ebf33 2529 free_irq(platform_get_irq(pdev, 0), host);
7d2be074 2530
ae552ab0
WY
2531 clk_disable_unprepare(host->mck);
2532
2533 pm_runtime_disable(&pdev->dev);
2534 pm_runtime_put_noidle(&pdev->dev);
2535
2536 return 0;
2537}
2538
2539#ifdef CONFIG_PM
2540static int atmci_runtime_suspend(struct device *dev)
2541{
2542 struct atmel_mci *host = dev_get_drvdata(dev);
2543
2544 clk_disable_unprepare(host->mck);
2545
b5b64fa6
WY
2546 pinctrl_pm_select_sleep_state(dev);
2547
7d2be074
HS
2548 return 0;
2549}
2550
ae552ab0
WY
2551static int atmci_runtime_resume(struct device *dev)
2552{
2553 struct atmel_mci *host = dev_get_drvdata(dev);
2554
b5b64fa6
WY
2555 pinctrl_pm_select_default_state(dev);
2556
ae552ab0
WY
2557 return clk_prepare_enable(host->mck);
2558}
2559#endif
2560
2561static const struct dev_pm_ops atmci_dev_pm_ops = {
2562 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
2563 pm_runtime_force_resume)
2564 SET_PM_RUNTIME_PM_OPS(atmci_runtime_suspend, atmci_runtime_resume, NULL)
2565};
2566
7d2be074
HS
2567static struct platform_driver atmci_driver = {
2568 .remove = __exit_p(atmci_remove),
2569 .driver = {
2570 .name = "atmel_mci",
e919fd20 2571 .of_match_table = of_match_ptr(atmci_dt_ids),
ae552ab0 2572 .pm = &atmci_dev_pm_ops,
7d2be074
HS
2573 },
2574};
2575
2576static int __init atmci_init(void)
2577{
2578 return platform_driver_probe(&atmci_driver, atmci_probe);
2579}
2580
2581static void __exit atmci_exit(void)
2582{
2583 platform_driver_unregister(&atmci_driver);
2584}
2585
74465b4f 2586late_initcall(atmci_init); /* try to load after dma driver when built-in */
7d2be074
HS
2587module_exit(atmci_exit);
2588
2589MODULE_DESCRIPTION("Atmel Multimedia Card Interface driver");
e05503ef 2590MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
7d2be074 2591MODULE_LICENSE("GPL v2");
This page took 0.532684 seconds and 5 git commands to generate.