blob: 15e12be6bef152a1ec480d876e55e4c01ad08f6a [file] [log] [blame]
Pete Popovba264b32005-09-21 06:18:27 +00001/*
2 * linux/drivers/mmc/au1xmmc.c - AU1XX0 MMC driver
3 *
4 * Copyright (c) 2005, Advanced Micro Devices, Inc.
5 *
6 * Developed with help from the 2.4.30 MMC AU1XXX controller including
7 * the following copyright notices:
8 * Copyright (c) 2003-2004 Embedded Edge, LLC.
9 * Portions Copyright (C) 2002 Embedix, Inc
10 * Copyright 2002 Hewlett-Packard Company
11
12 * 2.6 version of this driver inspired by:
13 * (drivers/mmc/wbsd.c) Copyright (C) 2004-2005 Pierre Ossman,
14 * All Rights Reserved.
15 * (drivers/mmc/pxa.c) Copyright (C) 2003 Russell King,
16 * All Rights Reserved.
17 *
18
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License version 2 as
21 * published by the Free Software Foundation.
22 */
23
24/* Why is a timer used to detect insert events?
25 *
26 * From the AU1100 MMC application guide:
27 * If the Au1100-based design is intended to support both MultiMediaCards
28 * and 1- or 4-data bit SecureDigital cards, then the solution is to
29 * connect a weak (560KOhm) pull-up resistor to connector pin 1.
30 * In doing so, a MMC card never enters SPI-mode communications,
31 * but now the SecureDigital card-detect feature of CD/DAT3 is ineffective
32 * (the low to high transition will not occur).
33 *
34 * So we use the timer to check the status manually.
35 */
36
37#include <linux/config.h>
38#include <linux/module.h>
39#include <linux/init.h>
Martin Michlmayrb256f9d2006-03-04 23:01:13 +000040#include <linux/platform_device.h>
Pete Popovba264b32005-09-21 06:18:27 +000041#include <linux/mm.h>
42#include <linux/interrupt.h>
43#include <linux/dma-mapping.h>
44
45#include <linux/mmc/host.h>
46#include <linux/mmc/protocol.h>
47#include <asm/io.h>
48#include <asm/mach-au1x00/au1000.h>
49#include <asm/mach-au1x00/au1xxx_dbdma.h>
50#include <asm/mach-au1x00/au1100_mmc.h>
51#include <asm/scatterlist.h>
52
53#include <au1xxx.h>
54#include "au1xmmc.h"
55
56#define DRIVER_NAME "au1xxx-mmc"
57
58/* Set this to enable special debugging macros */
59/* #define MMC_DEBUG */
60
61#ifdef MMC_DEBUG
62#define DEBUG(fmt, idx, args...) printk("au1xx(%d): DEBUG: " fmt, idx, ##args)
63#else
64#define DEBUG(fmt, idx, args...)
65#endif
66
67const struct {
68 u32 iobase;
69 u32 tx_devid, rx_devid;
70 u16 bcsrpwr;
71 u16 bcsrstatus;
72 u16 wpstatus;
73} au1xmmc_card_table[] = {
74 { SD0_BASE, DSCR_CMD0_SDMS_TX0, DSCR_CMD0_SDMS_RX0,
75 BCSR_BOARD_SD0PWR, BCSR_INT_SD0INSERT, BCSR_STATUS_SD0WP },
76#ifndef CONFIG_MIPS_DB1200
77 { SD1_BASE, DSCR_CMD0_SDMS_TX1, DSCR_CMD0_SDMS_RX1,
78 BCSR_BOARD_DS1PWR, BCSR_INT_SD1INSERT, BCSR_STATUS_SD1WP }
79#endif
80};
81
82#define AU1XMMC_CONTROLLER_COUNT \
83 (sizeof(au1xmmc_card_table) / sizeof(au1xmmc_card_table[0]))
84
85/* This array stores pointers for the hosts (used by the IRQ handler) */
86struct au1xmmc_host *au1xmmc_hosts[AU1XMMC_CONTROLLER_COUNT];
87static int dma = 1;
88
89#ifdef MODULE
90MODULE_PARM(dma, "i");
91MODULE_PARM_DESC(dma, "Use DMA engine for data transfers (0 = disabled)");
92#endif
93
94static inline void IRQ_ON(struct au1xmmc_host *host, u32 mask)
95{
96 u32 val = au_readl(HOST_CONFIG(host));
97 val |= mask;
98 au_writel(val, HOST_CONFIG(host));
99 au_sync();
100}
101
102static inline void FLUSH_FIFO(struct au1xmmc_host *host)
103{
104 u32 val = au_readl(HOST_CONFIG2(host));
105
106 au_writel(val | SD_CONFIG2_FF, HOST_CONFIG2(host));
107 au_sync_delay(1);
108
109 /* SEND_STOP will turn off clock control - this re-enables it */
110 val &= ~SD_CONFIG2_DF;
111
112 au_writel(val, HOST_CONFIG2(host));
113 au_sync();
114}
115
116static inline void IRQ_OFF(struct au1xmmc_host *host, u32 mask)
117{
118 u32 val = au_readl(HOST_CONFIG(host));
119 val &= ~mask;
120 au_writel(val, HOST_CONFIG(host));
121 au_sync();
122}
123
124static inline void SEND_STOP(struct au1xmmc_host *host)
125{
126
127 /* We know the value of CONFIG2, so avoid a read we don't need */
128 u32 mask = SD_CONFIG2_EN;
129
130 WARN_ON(host->status != HOST_S_DATA);
131 host->status = HOST_S_STOP;
132
133 au_writel(mask | SD_CONFIG2_DF, HOST_CONFIG2(host));
134 au_sync();
135
136 /* Send the stop commmand */
137 au_writel(STOP_CMD, HOST_CMD(host));
138}
139
140static void au1xmmc_set_power(struct au1xmmc_host *host, int state)
141{
142
143 u32 val = au1xmmc_card_table[host->id].bcsrpwr;
144
145 bcsr->board &= ~val;
146 if (state) bcsr->board |= val;
147
148 au_sync_delay(1);
149}
150
151static inline int au1xmmc_card_inserted(struct au1xmmc_host *host)
152{
153 return (bcsr->sig_status & au1xmmc_card_table[host->id].bcsrstatus)
154 ? 1 : 0;
155}
156
157static inline int au1xmmc_card_readonly(struct au1xmmc_host *host)
158{
159 return (bcsr->status & au1xmmc_card_table[host->id].wpstatus)
160 ? 1 : 0;
161}
162
163static void au1xmmc_finish_request(struct au1xmmc_host *host)
164{
165
166 struct mmc_request *mrq = host->mrq;
167
168 host->mrq = NULL;
169 host->flags &= HOST_F_ACTIVE;
170
171 host->dma.len = 0;
172 host->dma.dir = 0;
173
174 host->pio.index = 0;
175 host->pio.offset = 0;
176 host->pio.len = 0;
177
178 host->status = HOST_S_IDLE;
179
180 bcsr->disk_leds |= (1 << 8);
181
182 mmc_request_done(host->mmc, mrq);
183}
184
185static void au1xmmc_tasklet_finish(unsigned long param)
186{
187 struct au1xmmc_host *host = (struct au1xmmc_host *) param;
188 au1xmmc_finish_request(host);
189}
190
191static int au1xmmc_send_command(struct au1xmmc_host *host, int wait,
192 struct mmc_command *cmd)
193{
194
195 u32 mmccmd = (cmd->opcode << SD_CMD_CI_SHIFT);
196
Russell Kinge9225172006-02-02 12:23:12 +0000197 switch (mmc_rsp_type(cmd->flags)) {
Pete Popovba264b32005-09-21 06:18:27 +0000198 case MMC_RSP_R1:
199 mmccmd |= SD_CMD_RT_1;
200 break;
201 case MMC_RSP_R1B:
202 mmccmd |= SD_CMD_RT_1B;
203 break;
204 case MMC_RSP_R2:
205 mmccmd |= SD_CMD_RT_2;
206 break;
207 case MMC_RSP_R3:
208 mmccmd |= SD_CMD_RT_3;
209 break;
210 }
211
212 switch(cmd->opcode) {
213 case MMC_READ_SINGLE_BLOCK:
214 case SD_APP_SEND_SCR:
215 mmccmd |= SD_CMD_CT_2;
216 break;
217 case MMC_READ_MULTIPLE_BLOCK:
218 mmccmd |= SD_CMD_CT_4;
219 break;
220 case MMC_WRITE_BLOCK:
221 mmccmd |= SD_CMD_CT_1;
222 break;
223
224 case MMC_WRITE_MULTIPLE_BLOCK:
225 mmccmd |= SD_CMD_CT_3;
226 break;
227 case MMC_STOP_TRANSMISSION:
228 mmccmd |= SD_CMD_CT_7;
229 break;
230 }
231
232 au_writel(cmd->arg, HOST_CMDARG(host));
233 au_sync();
234
235 if (wait)
236 IRQ_OFF(host, SD_CONFIG_CR);
237
238 au_writel((mmccmd | SD_CMD_GO), HOST_CMD(host));
239 au_sync();
240
241 /* Wait for the command to go on the line */
242
243 while(1) {
244 if (!(au_readl(HOST_CMD(host)) & SD_CMD_GO))
245 break;
246 }
247
248 /* Wait for the command to come back */
249
250 if (wait) {
251 u32 status = au_readl(HOST_STATUS(host));
252
253 while(!(status & SD_STATUS_CR))
254 status = au_readl(HOST_STATUS(host));
255
256 /* Clear the CR status */
257 au_writel(SD_STATUS_CR, HOST_STATUS(host));
258
259 IRQ_ON(host, SD_CONFIG_CR);
260 }
261
262 return MMC_ERR_NONE;
263}
264
265static void au1xmmc_data_complete(struct au1xmmc_host *host, u32 status)
266{
267
268 struct mmc_request *mrq = host->mrq;
269 struct mmc_data *data;
270 u32 crc;
271
272 WARN_ON(host->status != HOST_S_DATA && host->status != HOST_S_STOP);
273
274 if (host->mrq == NULL)
275 return;
276
277 data = mrq->cmd->data;
278
279 if (status == 0)
280 status = au_readl(HOST_STATUS(host));
281
282 /* The transaction is really over when the SD_STATUS_DB bit is clear */
283
284 while((host->flags & HOST_F_XMIT) && (status & SD_STATUS_DB))
285 status = au_readl(HOST_STATUS(host));
286
287 data->error = MMC_ERR_NONE;
288 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len, host->dma.dir);
289
290 /* Process any errors */
291
292 crc = (status & (SD_STATUS_WC | SD_STATUS_RC));
293 if (host->flags & HOST_F_XMIT)
294 crc |= ((status & 0x07) == 0x02) ? 0 : 1;
295
296 if (crc)
297 data->error = MMC_ERR_BADCRC;
298
299 /* Clear the CRC bits */
300 au_writel(SD_STATUS_WC | SD_STATUS_RC, HOST_STATUS(host));
301
302 data->bytes_xfered = 0;
303
304 if (data->error == MMC_ERR_NONE) {
305 if (host->flags & HOST_F_DMA) {
306 u32 chan = DMA_CHANNEL(host);
307
308 chan_tab_t *c = *((chan_tab_t **) chan);
309 au1x_dma_chan_t *cp = c->chan_ptr;
310 data->bytes_xfered = cp->ddma_bytecnt;
311 }
312 else
313 data->bytes_xfered =
314 (data->blocks * (1 << data->blksz_bits)) -
315 host->pio.len;
316 }
317
318 au1xmmc_finish_request(host);
319}
320
321static void au1xmmc_tasklet_data(unsigned long param)
322{
323 struct au1xmmc_host *host = (struct au1xmmc_host *) param;
324
325 u32 status = au_readl(HOST_STATUS(host));
326 au1xmmc_data_complete(host, status);
327}
328
329#define AU1XMMC_MAX_TRANSFER 8
330
331static void au1xmmc_send_pio(struct au1xmmc_host *host)
332{
333
334 struct mmc_data *data = 0;
335 int sg_len, max, count = 0;
336 unsigned char *sg_ptr;
337 u32 status = 0;
338 struct scatterlist *sg;
339
340 data = host->mrq->data;
341
342 if (!(host->flags & HOST_F_XMIT))
343 return;
344
345 /* This is the pointer to the data buffer */
346 sg = &data->sg[host->pio.index];
347 sg_ptr = page_address(sg->page) + sg->offset + host->pio.offset;
348
349 /* This is the space left inside the buffer */
350 sg_len = data->sg[host->pio.index].length - host->pio.offset;
351
352 /* Check to if we need less then the size of the sg_buffer */
353
354 max = (sg_len > host->pio.len) ? host->pio.len : sg_len;
355 if (max > AU1XMMC_MAX_TRANSFER) max = AU1XMMC_MAX_TRANSFER;
356
357 for(count = 0; count < max; count++ ) {
358 unsigned char val;
359
360 status = au_readl(HOST_STATUS(host));
361
362 if (!(status & SD_STATUS_TH))
363 break;
364
365 val = *sg_ptr++;
366
367 au_writel((unsigned long) val, HOST_TXPORT(host));
368 au_sync();
369 }
370
371 host->pio.len -= count;
372 host->pio.offset += count;
373
374 if (count == sg_len) {
375 host->pio.index++;
376 host->pio.offset = 0;
377 }
378
379 if (host->pio.len == 0) {
380 IRQ_OFF(host, SD_CONFIG_TH);
381
382 if (host->flags & HOST_F_STOP)
383 SEND_STOP(host);
384
385 tasklet_schedule(&host->data_task);
386 }
387}
388
389static void au1xmmc_receive_pio(struct au1xmmc_host *host)
390{
391
392 struct mmc_data *data = 0;
393 int sg_len = 0, max = 0, count = 0;
394 unsigned char *sg_ptr = 0;
395 u32 status = 0;
396 struct scatterlist *sg;
397
398 data = host->mrq->data;
399
400 if (!(host->flags & HOST_F_RECV))
401 return;
402
403 max = host->pio.len;
404
405 if (host->pio.index < host->dma.len) {
406 sg = &data->sg[host->pio.index];
407 sg_ptr = page_address(sg->page) + sg->offset + host->pio.offset;
408
409 /* This is the space left inside the buffer */
410 sg_len = sg_dma_len(&data->sg[host->pio.index]) - host->pio.offset;
411
412 /* Check to if we need less then the size of the sg_buffer */
413 if (sg_len < max) max = sg_len;
414 }
415
416 if (max > AU1XMMC_MAX_TRANSFER)
417 max = AU1XMMC_MAX_TRANSFER;
418
419 for(count = 0; count < max; count++ ) {
420 u32 val;
421 status = au_readl(HOST_STATUS(host));
422
423 if (!(status & SD_STATUS_NE))
424 break;
425
426 if (status & SD_STATUS_RC) {
427 DEBUG("RX CRC Error [%d + %d].\n", host->id,
428 host->pio.len, count);
429 break;
430 }
431
432 if (status & SD_STATUS_RO) {
433 DEBUG("RX Overrun [%d + %d]\n", host->id,
434 host->pio.len, count);
435 break;
436 }
437 else if (status & SD_STATUS_RU) {
438 DEBUG("RX Underrun [%d + %d]\n", host->id,
439 host->pio.len, count);
440 break;
441 }
442
443 val = au_readl(HOST_RXPORT(host));
444
445 if (sg_ptr)
446 *sg_ptr++ = (unsigned char) (val & 0xFF);
447 }
448
449 host->pio.len -= count;
450 host->pio.offset += count;
451
452 if (sg_len && count == sg_len) {
453 host->pio.index++;
454 host->pio.offset = 0;
455 }
456
457 if (host->pio.len == 0) {
458 //IRQ_OFF(host, SD_CONFIG_RA | SD_CONFIG_RF);
459 IRQ_OFF(host, SD_CONFIG_NE);
460
461 if (host->flags & HOST_F_STOP)
462 SEND_STOP(host);
463
464 tasklet_schedule(&host->data_task);
465 }
466}
467
468/* static void au1xmmc_cmd_complete
469 This is called when a command has been completed - grab the response
470 and check for errors. Then start the data transfer if it is indicated.
471*/
472
473static void au1xmmc_cmd_complete(struct au1xmmc_host *host, u32 status)
474{
475
476 struct mmc_request *mrq = host->mrq;
477 struct mmc_command *cmd;
478 int trans;
479
480 if (!host->mrq)
481 return;
482
483 cmd = mrq->cmd;
484 cmd->error = MMC_ERR_NONE;
485
Russell Kinge9225172006-02-02 12:23:12 +0000486 if (cmd->flags & MMC_RSP_PRESENT) {
487 if (cmd->flags & MMC_RSP_136) {
488 u32 r[4];
489 int i;
Pete Popovba264b32005-09-21 06:18:27 +0000490
Russell Kinge9225172006-02-02 12:23:12 +0000491 r[0] = au_readl(host->iobase + SD_RESP3);
492 r[1] = au_readl(host->iobase + SD_RESP2);
493 r[2] = au_readl(host->iobase + SD_RESP1);
494 r[3] = au_readl(host->iobase + SD_RESP0);
Pete Popovba264b32005-09-21 06:18:27 +0000495
Russell Kinge9225172006-02-02 12:23:12 +0000496 /* The CRC is omitted from the response, so really
497 * we only got 120 bytes, but the engine expects
498 * 128 bits, so we have to shift things up
499 */
Pete Popovba264b32005-09-21 06:18:27 +0000500
Russell Kinge9225172006-02-02 12:23:12 +0000501 for(i = 0; i < 4; i++) {
502 cmd->resp[i] = (r[i] & 0x00FFFFFF) << 8;
503 if (i != 3)
504 cmd->resp[i] |= (r[i + 1] & 0xFF000000) >> 24;
505 }
506 } else {
507 /* Techincally, we should be getting all 48 bits of
508 * the response (SD_RESP1 + SD_RESP2), but because
509 * our response omits the CRC, our data ends up
510 * being shifted 8 bits to the right. In this case,
511 * that means that the OSR data starts at bit 31,
512 * so we can just read RESP0 and return that
513 */
514 cmd->resp[0] = au_readl(host->iobase + SD_RESP0);
Pete Popovba264b32005-09-21 06:18:27 +0000515 }
516 }
517
518 /* Figure out errors */
519
520 if (status & (SD_STATUS_SC | SD_STATUS_WC | SD_STATUS_RC))
521 cmd->error = MMC_ERR_BADCRC;
522
523 trans = host->flags & (HOST_F_XMIT | HOST_F_RECV);
524
525 if (!trans || cmd->error != MMC_ERR_NONE) {
526
527 IRQ_OFF(host, SD_CONFIG_TH | SD_CONFIG_RA|SD_CONFIG_RF);
528 tasklet_schedule(&host->finish_task);
529 return;
530 }
531
532 host->status = HOST_S_DATA;
533
534 if (host->flags & HOST_F_DMA) {
535 u32 channel = DMA_CHANNEL(host);
536
537 /* Start the DMA as soon as the buffer gets something in it */
538
539 if (host->flags & HOST_F_RECV) {
540 u32 mask = SD_STATUS_DB | SD_STATUS_NE;
541
542 while((status & mask) != mask)
543 status = au_readl(HOST_STATUS(host));
544 }
545
546 au1xxx_dbdma_start(channel);
547 }
548}
549
550static void au1xmmc_set_clock(struct au1xmmc_host *host, int rate)
551{
552
553 unsigned int pbus = get_au1x00_speed();
554 unsigned int divisor;
555 u32 config;
556
557 /* From databook:
558 divisor = ((((cpuclock / sbus_divisor) / 2) / mmcclock) / 2) - 1
559 */
560
561 pbus /= ((au_readl(SYS_POWERCTRL) & 0x3) + 2);
562 pbus /= 2;
563
564 divisor = ((pbus / rate) / 2) - 1;
565
566 config = au_readl(HOST_CONFIG(host));
567
568 config &= ~(SD_CONFIG_DIV);
569 config |= (divisor & SD_CONFIG_DIV) | SD_CONFIG_DE;
570
571 au_writel(config, HOST_CONFIG(host));
572 au_sync();
573}
574
575static int
576au1xmmc_prepare_data(struct au1xmmc_host *host, struct mmc_data *data)
577{
578
579 int datalen = data->blocks * (1 << data->blksz_bits);
580
581 if (dma != 0)
582 host->flags |= HOST_F_DMA;
583
584 if (data->flags & MMC_DATA_READ)
585 host->flags |= HOST_F_RECV;
586 else
587 host->flags |= HOST_F_XMIT;
588
589 if (host->mrq->stop)
590 host->flags |= HOST_F_STOP;
591
592 host->dma.dir = DMA_BIDIRECTIONAL;
593
594 host->dma.len = dma_map_sg(mmc_dev(host->mmc), data->sg,
595 data->sg_len, host->dma.dir);
596
597 if (host->dma.len == 0)
598 return MMC_ERR_TIMEOUT;
599
600 au_writel((1 << data->blksz_bits) - 1, HOST_BLKSIZE(host));
601
602 if (host->flags & HOST_F_DMA) {
603 int i;
604 u32 channel = DMA_CHANNEL(host);
605
606 au1xxx_dbdma_stop(channel);
607
608 for(i = 0; i < host->dma.len; i++) {
609 u32 ret = 0, flags = DDMA_FLAGS_NOIE;
610 struct scatterlist *sg = &data->sg[i];
611 int sg_len = sg->length;
612
613 int len = (datalen > sg_len) ? sg_len : datalen;
614
615 if (i == host->dma.len - 1)
616 flags = DDMA_FLAGS_IE;
617
618 if (host->flags & HOST_F_XMIT){
619 ret = au1xxx_dbdma_put_source_flags(channel,
620 (void *) (page_address(sg->page) +
621 sg->offset),
622 len, flags);
623 }
624 else {
625 ret = au1xxx_dbdma_put_dest_flags(channel,
626 (void *) (page_address(sg->page) +
627 sg->offset),
628 len, flags);
629 }
630
631 if (!ret)
632 goto dataerr;
633
634 datalen -= len;
635 }
636 }
637 else {
638 host->pio.index = 0;
639 host->pio.offset = 0;
640 host->pio.len = datalen;
641
642 if (host->flags & HOST_F_XMIT)
643 IRQ_ON(host, SD_CONFIG_TH);
644 else
645 IRQ_ON(host, SD_CONFIG_NE);
646 //IRQ_ON(host, SD_CONFIG_RA|SD_CONFIG_RF);
647 }
648
649 return MMC_ERR_NONE;
650
651 dataerr:
652 dma_unmap_sg(mmc_dev(host->mmc),data->sg,data->sg_len,host->dma.dir);
653 return MMC_ERR_TIMEOUT;
654}
655
656/* static void au1xmmc_request
657 This actually starts a command or data transaction
658*/
659
660static void au1xmmc_request(struct mmc_host* mmc, struct mmc_request* mrq)
661{
662
663 struct au1xmmc_host *host = mmc_priv(mmc);
664 int ret = MMC_ERR_NONE;
665
666 WARN_ON(irqs_disabled());
667 WARN_ON(host->status != HOST_S_IDLE);
668
669 host->mrq = mrq;
670 host->status = HOST_S_CMD;
671
672 bcsr->disk_leds &= ~(1 << 8);
673
674 if (mrq->data) {
675 FLUSH_FIFO(host);
676 ret = au1xmmc_prepare_data(host, mrq->data);
677 }
678
679 if (ret == MMC_ERR_NONE)
680 ret = au1xmmc_send_command(host, 0, mrq->cmd);
681
682 if (ret != MMC_ERR_NONE) {
683 mrq->cmd->error = ret;
684 au1xmmc_finish_request(host);
685 }
686}
687
688static void au1xmmc_reset_controller(struct au1xmmc_host *host)
689{
690
691 /* Apply the clock */
692 au_writel(SD_ENABLE_CE, HOST_ENABLE(host));
693 au_sync_delay(1);
694
695 au_writel(SD_ENABLE_R | SD_ENABLE_CE, HOST_ENABLE(host));
696 au_sync_delay(5);
697
698 au_writel(~0, HOST_STATUS(host));
699 au_sync();
700
701 au_writel(0, HOST_BLKSIZE(host));
702 au_writel(0x001fffff, HOST_TIMEOUT(host));
703 au_sync();
704
705 au_writel(SD_CONFIG2_EN, HOST_CONFIG2(host));
706 au_sync();
707
708 au_writel(SD_CONFIG2_EN | SD_CONFIG2_FF, HOST_CONFIG2(host));
709 au_sync_delay(1);
710
711 au_writel(SD_CONFIG2_EN, HOST_CONFIG2(host));
712 au_sync();
713
714 /* Configure interrupts */
715 au_writel(AU1XMMC_INTERRUPTS, HOST_CONFIG(host));
716 au_sync();
717}
718
719
720static void au1xmmc_set_ios(struct mmc_host* mmc, struct mmc_ios* ios)
721{
722 struct au1xmmc_host *host = mmc_priv(mmc);
723
724 DEBUG("set_ios (power=%u, clock=%uHz, vdd=%u, mode=%u)\n",
725 host->id, ios->power_mode, ios->clock, ios->vdd,
726 ios->bus_mode);
727
728 if (ios->power_mode == MMC_POWER_OFF)
729 au1xmmc_set_power(host, 0);
730 else if (ios->power_mode == MMC_POWER_ON) {
731 au1xmmc_set_power(host, 1);
732 }
733
734 if (ios->clock && ios->clock != host->clock) {
735 au1xmmc_set_clock(host, ios->clock);
736 host->clock = ios->clock;
737 }
738}
739
740static void au1xmmc_dma_callback(int irq, void *dev_id, struct pt_regs *regs)
741{
742 struct au1xmmc_host *host = (struct au1xmmc_host *) dev_id;
743 u32 status;
744
745 /* Avoid spurious interrupts */
746
747 if (!host->mrq)
748 return;
749
750 if (host->flags & HOST_F_STOP)
751 SEND_STOP(host);
752
753 tasklet_schedule(&host->data_task);
754}
755
756#define STATUS_TIMEOUT (SD_STATUS_RAT | SD_STATUS_DT)
757#define STATUS_DATA_IN (SD_STATUS_NE)
758#define STATUS_DATA_OUT (SD_STATUS_TH)
759
760static irqreturn_t au1xmmc_irq(int irq, void *dev_id, struct pt_regs *regs)
761{
762
763 u32 status;
764 int i, ret = 0;
765
766 disable_irq(AU1100_SD_IRQ);
767
768 for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) {
769 struct au1xmmc_host * host = au1xmmc_hosts[i];
770 u32 handled = 1;
771
772 status = au_readl(HOST_STATUS(host));
773
774 if (host->mrq && (status & STATUS_TIMEOUT)) {
775 if (status & SD_STATUS_RAT)
776 host->mrq->cmd->error = MMC_ERR_TIMEOUT;
777
778 else if (status & SD_STATUS_DT)
779 host->mrq->data->error = MMC_ERR_TIMEOUT;
780
781 /* In PIO mode, interrupts might still be enabled */
782 IRQ_OFF(host, SD_CONFIG_NE | SD_CONFIG_TH);
783
784 //IRQ_OFF(host, SD_CONFIG_TH|SD_CONFIG_RA|SD_CONFIG_RF);
785 tasklet_schedule(&host->finish_task);
786 }
787#if 0
788 else if (status & SD_STATUS_DD) {
789
790 /* Sometimes we get a DD before a NE in PIO mode */
791
792 if (!(host->flags & HOST_F_DMA) &&
793 (status & SD_STATUS_NE))
794 au1xmmc_receive_pio(host);
795 else {
796 au1xmmc_data_complete(host, status);
797 //tasklet_schedule(&host->data_task);
798 }
799 }
800#endif
801 else if (status & (SD_STATUS_CR)) {
802 if (host->status == HOST_S_CMD)
803 au1xmmc_cmd_complete(host,status);
804 }
805 else if (!(host->flags & HOST_F_DMA)) {
806 if ((host->flags & HOST_F_XMIT) &&
807 (status & STATUS_DATA_OUT))
808 au1xmmc_send_pio(host);
809 else if ((host->flags & HOST_F_RECV) &&
810 (status & STATUS_DATA_IN))
811 au1xmmc_receive_pio(host);
812 }
813 else if (status & 0x203FBC70) {
814 DEBUG("Unhandled status %8.8x\n", host->id, status);
815 handled = 0;
816 }
817
818 au_writel(status, HOST_STATUS(host));
819 au_sync();
820
821 ret |= handled;
822 }
823
824 enable_irq(AU1100_SD_IRQ);
825 return ret;
826}
827
828static void au1xmmc_poll_event(unsigned long arg)
829{
830 struct au1xmmc_host *host = (struct au1xmmc_host *) arg;
831
832 int card = au1xmmc_card_inserted(host);
833 int controller = (host->flags & HOST_F_ACTIVE) ? 1 : 0;
834
835 if (card != controller) {
836 host->flags &= ~HOST_F_ACTIVE;
837 if (card) host->flags |= HOST_F_ACTIVE;
838 mmc_detect_change(host->mmc, 0);
839 }
840
841 if (host->mrq != NULL) {
842 u32 status = au_readl(HOST_STATUS(host));
843 DEBUG("PENDING - %8.8x\n", host->id, status);
844 }
845
846 mod_timer(&host->timer, jiffies + AU1XMMC_DETECT_TIMEOUT);
847}
848
849static dbdev_tab_t au1xmmc_mem_dbdev =
850{
851 DSCR_CMD0_ALWAYS, DEV_FLAGS_ANYUSE, 0, 8, 0x00000000, 0, 0
852};
853
854static void au1xmmc_init_dma(struct au1xmmc_host *host)
855{
856
857 u32 rxchan, txchan;
858
859 int txid = au1xmmc_card_table[host->id].tx_devid;
860 int rxid = au1xmmc_card_table[host->id].rx_devid;
861
862 /* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride
863 of 8 bits. And since devices are shared, we need to create
864 our own to avoid freaking out other devices
865 */
866
867 int memid = au1xxx_ddma_add_device(&au1xmmc_mem_dbdev);
868
869 txchan = au1xxx_dbdma_chan_alloc(memid, txid,
870 au1xmmc_dma_callback, (void *) host);
871
872 rxchan = au1xxx_dbdma_chan_alloc(rxid, memid,
873 au1xmmc_dma_callback, (void *) host);
874
875 au1xxx_dbdma_set_devwidth(txchan, 8);
876 au1xxx_dbdma_set_devwidth(rxchan, 8);
877
878 au1xxx_dbdma_ring_alloc(txchan, AU1XMMC_DESCRIPTOR_COUNT);
879 au1xxx_dbdma_ring_alloc(rxchan, AU1XMMC_DESCRIPTOR_COUNT);
880
881 host->tx_chan = txchan;
882 host->rx_chan = rxchan;
883}
884
885struct mmc_host_ops au1xmmc_ops = {
886 .request = au1xmmc_request,
887 .set_ios = au1xmmc_set_ios,
888};
889
Martin Michlmayrb256f9d2006-03-04 23:01:13 +0000890static int __devinit au1xmmc_probe(struct platform_device *pdev)
Pete Popovba264b32005-09-21 06:18:27 +0000891{
892
893 int i, ret = 0;
894
895 /* THe interrupt is shared among all controllers */
896 ret = request_irq(AU1100_SD_IRQ, au1xmmc_irq, SA_INTERRUPT, "MMC", 0);
897
898 if (ret) {
899 printk(DRIVER_NAME "ERROR: Couldn't get int %d: %d\n",
900 AU1100_SD_IRQ, ret);
901 return -ENXIO;
902 }
903
904 disable_irq(AU1100_SD_IRQ);
905
906 for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) {
Martin Michlmayrb256f9d2006-03-04 23:01:13 +0000907 struct mmc_host *mmc = mmc_alloc_host(sizeof(struct au1xmmc_host), &pdev->dev);
Pete Popovba264b32005-09-21 06:18:27 +0000908 struct au1xmmc_host *host = 0;
909
910 if (!mmc) {
911 printk(DRIVER_NAME "ERROR: no mem for host %d\n", i);
912 au1xmmc_hosts[i] = 0;
913 continue;
914 }
915
916 mmc->ops = &au1xmmc_ops;
917
918 mmc->f_min = 450000;
919 mmc->f_max = 24000000;
920
921 mmc->max_seg_size = AU1XMMC_DESCRIPTOR_SIZE;
922 mmc->max_phys_segs = AU1XMMC_DESCRIPTOR_COUNT;
923
924 mmc->ocr_avail = AU1XMMC_OCR;
925
926 host = mmc_priv(mmc);
927 host->mmc = mmc;
928
929 host->id = i;
930 host->iobase = au1xmmc_card_table[host->id].iobase;
931 host->clock = 0;
932 host->power_mode = MMC_POWER_OFF;
933
934 host->flags = au1xmmc_card_inserted(host) ? HOST_F_ACTIVE : 0;
935 host->status = HOST_S_IDLE;
936
937 init_timer(&host->timer);
938
939 host->timer.function = au1xmmc_poll_event;
940 host->timer.data = (unsigned long) host;
941 host->timer.expires = jiffies + AU1XMMC_DETECT_TIMEOUT;
942
943 tasklet_init(&host->data_task, au1xmmc_tasklet_data,
944 (unsigned long) host);
945
946 tasklet_init(&host->finish_task, au1xmmc_tasklet_finish,
947 (unsigned long) host);
948
949 spin_lock_init(&host->lock);
950
951 if (dma != 0)
952 au1xmmc_init_dma(host);
953
954 au1xmmc_reset_controller(host);
955
956 mmc_add_host(mmc);
957 au1xmmc_hosts[i] = host;
958
959 add_timer(&host->timer);
960
961 printk(KERN_INFO DRIVER_NAME ": MMC Controller %d set up at %8.8X (mode=%s)\n",
962 host->id, host->iobase, dma ? "dma" : "pio");
963 }
964
965 enable_irq(AU1100_SD_IRQ);
966
967 return 0;
968}
969
Martin Michlmayrb256f9d2006-03-04 23:01:13 +0000970static int __devexit au1xmmc_remove(struct platform_device *pdev)
Pete Popovba264b32005-09-21 06:18:27 +0000971{
972
973 int i;
974
975 disable_irq(AU1100_SD_IRQ);
976
977 for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) {
978 struct au1xmmc_host *host = au1xmmc_hosts[i];
979 if (!host) continue;
980
981 tasklet_kill(&host->data_task);
982 tasklet_kill(&host->finish_task);
983
984 del_timer_sync(&host->timer);
985 au1xmmc_set_power(host, 0);
986
987 mmc_remove_host(host->mmc);
988
989 au1xxx_dbdma_chan_free(host->tx_chan);
990 au1xxx_dbdma_chan_free(host->rx_chan);
991
992 au_writel(0x0, HOST_ENABLE(host));
993 au_sync();
994 }
995
996 free_irq(AU1100_SD_IRQ, 0);
997 return 0;
998}
999
Martin Michlmayrb256f9d2006-03-04 23:01:13 +00001000static struct platform_driver au1xmmc_driver = {
Pete Popovba264b32005-09-21 06:18:27 +00001001 .probe = au1xmmc_probe,
1002 .remove = au1xmmc_remove,
1003 .suspend = NULL,
Martin Michlmayrb256f9d2006-03-04 23:01:13 +00001004 .resume = NULL,
1005 .driver = {
1006 .name = DRIVER_NAME,
1007 },
Pete Popovba264b32005-09-21 06:18:27 +00001008};
1009
1010static int __init au1xmmc_init(void)
1011{
Martin Michlmayrb256f9d2006-03-04 23:01:13 +00001012 return platform_driver_register(&au1xmmc_driver);
Pete Popovba264b32005-09-21 06:18:27 +00001013}
1014
1015static void __exit au1xmmc_exit(void)
1016{
Martin Michlmayrb256f9d2006-03-04 23:01:13 +00001017 platform_driver_unregister(&au1xmmc_driver);
Pete Popovba264b32005-09-21 06:18:27 +00001018}
1019
1020module_init(au1xmmc_init);
1021module_exit(au1xmmc_exit);
1022
1023#ifdef MODULE
1024MODULE_AUTHOR("Advanced Micro Devices, Inc");
1025MODULE_DESCRIPTION("MMC/SD driver for the Alchemy Au1XXX");
1026MODULE_LICENSE("GPL");
1027#endif
1028