sd-as3525v2: check the (supposedly) card data line for business when writing
[kugel-rb.git] / firmware / target / arm / as3525 / sd-as3525v2.c
bloba668f65e0cd50df6ff2a15b56edde5fd9fb2a06d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 Daniel Ankers
11 * Copyright © 2008-2009 Rafaël Carré
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
23 #include "config.h" /* for HAVE_MULTIVOLUME */
24 #include "fat.h"
25 #include "thread.h"
26 #include "led.h"
27 #include "sdmmc.h"
28 #include "system.h"
29 #include "kernel.h"
30 #include "cpu.h"
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include "as3525v2.h"
35 #include "pl081.h" /* DMA controller */
36 #include "dma-target.h" /* DMA request lines */
37 #include "clock-target.h"
38 #include "panic.h"
39 #include "stdbool.h"
40 #include "ata_idle_notify.h"
41 #include "sd.h"
42 #include "usb.h"
44 #ifdef HAVE_HOTSWAP
45 #include "disk.h"
46 #endif
48 #ifdef SANSA_FUZEV2
49 #include "backlight-target.h"
50 #endif
52 #include "lcd.h"
53 #include <stdarg.h>
54 #include "sysfont.h"
56 #define INTERNAL_AS3525 0 /* embedded SD card */
57 #define SD_SLOT_AS3525 1 /* SD slot if present */
59 /* Clipv2 Clip+ and Fuzev2 OF all occupy the same size */
60 #define AMS_OF_SIZE 0xf000
62 /* command flags */
63 #define MCI_NO_RESP (0<<0)
64 #define MCI_RESP (1<<0)
65 #define MCI_LONG_RESP (1<<1)
67 /* controller registers */
68 #define SD_BASE 0xC6070000
70 #define SD_REG(x) (*(volatile unsigned long *) (SD_BASE+x))
72 #define MCI_CTRL SD_REG(0x00)
74 /* control bits */
75 #define CTRL_RESET (1<<0)
76 #define FIFO_RESET (1<<1)
77 #define DMA_RESET (1<<2)
78 #define INT_ENABLE (1<<4)
79 #define DMA_ENABLE (1<<5)
80 #define READ_WAIT (1<<6)
81 #define SEND_IRQ_RESP (1<<7)
82 #define ABRT_READ_DATA (1<<8)
83 #define SEND_CCSD (1<<9)
84 #define SEND_AS_CCSD (1<<10)
85 #define EN_OD_PULLUP (1<<24)
88 #define MCI_PWREN SD_REG(0x04) /* power enable */
90 #define PWR_CRD_0 (1<<0)
91 #define PWR_CRD_1 (1<<1)
92 #define PWR_CRD_2 (1<<2)
93 #define PWR_CRD_3 (1<<3)
95 #define MCI_CLKDIV SD_REG(0x08) /* clock divider */
96 /* CLK_DIV_0 : bits 7:0
97 * CLK_DIV_1 : bits 15:8
98 * CLK_DIV_2 : bits 23:16
99 * CLK_DIV_3 : bits 31:24
102 #define MCI_CLKSRC SD_REG(0x0C) /* clock source */
103 /* CLK_SRC_CRD0: bits 1:0
104 * CLK_SRC_CRD1: bits 3:2
105 * CLK_SRC_CRD2: bits 5:4
106 * CLK_SRC_CRD3: bits 7:6
109 #define MCI_CLKENA SD_REG(0x10) /* clock enable */
111 #define CCLK_ENA_CRD0 (1<<0)
112 #define CCLK_ENA_CRD1 (1<<1)
113 #define CCLK_ENA_CRD2 (1<<2)
114 #define CCLK_ENA_CRD3 (1<<3)
115 #define CCLK_LP_CRD0 (1<<16) /* LP --> Low Power Mode? */
116 #define CCLK_LP_CRD1 (1<<17)
117 #define CCLK_LP_CRD2 (1<<18)
118 #define CCLK_LP_CRD3 (1<<19)
120 #define MCI_TMOUT SD_REG(0x14) /* timeout */
121 /* response timeout bits 0:7
122 * data timeout bits 8:31
125 #define MCI_CTYPE SD_REG(0x18) /* card type */
126 /* 1 bit per card, set = wide bus */
127 #define WIDTH4_CRD0 (1<<0)
128 #define WIDTH4_CRD1 (1<<1)
129 #define WIDTH4_CRD2 (1<<2)
130 #define WIDTH4_CRD3 (1<<3)
132 #define MCI_BLKSIZ SD_REG(0x1C) /* block size bits 0:15*/
133 #define MCI_BYTCNT SD_REG(0x20) /* byte count bits 0:31*/
134 #define MCI_MASK SD_REG(0x24) /* interrupt mask */
138 #define MCI_ARGUMENT SD_REG(0x28)
139 #define MCI_COMMAND SD_REG(0x2C)
141 /* command bits (bits 5:0 are the command index) */
142 #define CMD_RESP_EXP_BIT (1<<6)
143 #define CMD_RESP_LENGTH_BIT (1<<7)
144 #define CMD_CHECK_CRC_BIT (1<<8)
145 #define CMD_DATA_EXP_BIT (1<<9)
146 #define CMD_RW_BIT (1<<10)
147 #define CMD_TRANSMODE_BIT (1<<11)
148 #define CMD_SENT_AUTO_STOP_BIT (1<<12)
149 #define CMD_WAIT_PRV_DAT_BIT (1<<13)
150 #define CMD_ABRT_CMD_BIT (1<<14)
151 #define CMD_SEND_INIT_BIT (1<<15)
152 #define CMD_CARD_NO(x) ((x)<<16) /* 5 bits wide */
153 #define CMD_SEND_CLK_ONLY (1<<21)
154 #define CMD_READ_CEATA (1<<22)
155 #define CMD_CCS_EXPECTED (1<<23)
156 #define CMD_DONE_BIT (1<<31)
158 #define TRANSFER_CMD (cmd == SD_READ_MULTIPLE_BLOCK || \
159 cmd == SD_WRITE_MULTIPLE_BLOCK)
161 #define MCI_RESP0 SD_REG(0x30)
162 #define MCI_RESP1 SD_REG(0x34)
163 #define MCI_RESP2 SD_REG(0x38)
164 #define MCI_RESP3 SD_REG(0x3C)
166 #define MCI_MASK_STATUS SD_REG(0x40) /* masked interrupt status */
167 #define MCI_RAW_STATUS SD_REG(0x44) /* raw interrupt status, also used as
168 * status clear */
170 /* interrupt bits */ /* C D E (Cmd) (Data) (End) */
171 #define MCI_INT_CRDDET (1<<0) /* card detect */
172 #define MCI_INT_RE (1<<1) /* x response error */
173 #define MCI_INT_CD (1<<2) /* x command done */
174 #define MCI_INT_DTO (1<<3) /* x data transfer over */
175 #define MCI_INT_TXDR (1<<4) /* tx fifo data request */
176 #define MCI_INT_RXDR (1<<5) /* rx fifo data request */
177 #define MCI_INT_RCRC (1<<6) /* x response crc error */
178 #define MCI_INT_DCRC (1<<7) /* x data crc error */
179 #define MCI_INT_RTO (1<<8) /* x response timeout */
180 #define MCI_INT_DRTO (1<<9) /* x data read timeout */
181 #define MCI_INT_HTO (1<<10) /* x data starv timeout */
182 #define MCI_INT_FRUN (1<<11) /* x fifo over/underrun */
183 #define MCI_INT_HLE (1<<12) /* x x hw locked while error */
184 #define MCI_INT_SBE (1<<13) /* x start bit error */
185 #define MCI_INT_ACD (1<<14) /* auto command done */
186 #define MCI_INT_EBE (1<<15) /* x end bit error */
187 #define MCI_INT_SDIO (0xf<<16)
190 * STATUS register
191 * & 0xBA80 = MCI_INT_DCRC | MCI_INT_DRTO | MCI_INT_FRUN | \
192 * MCI_INT_HLE | MCI_INT_SBE | MCI_INT_EBE
193 * & 8 = MCI_INT_DTO
194 * & 0x428 = MCI_INT_DTO | MCI_INT_RXDR | MCI_INT_HTO
195 * & 0x418 = MCI_INT_DTO | MCI_INT_TXDR | MCI_INT_HTO
198 #define MCI_CMD_ERROR \
199 (MCI_INT_RE | \
200 MCI_INT_RCRC | \
201 MCI_INT_RTO | \
202 MCI_INT_HLE)
204 #define MCI_DATA_ERROR \
205 ( MCI_INT_DCRC | \
206 MCI_INT_DRTO | \
207 MCI_INT_HTO | \
208 MCI_INT_FRUN | \
209 MCI_INT_HLE | \
210 MCI_INT_SBE | \
211 MCI_INT_EBE)
213 #define MCI_STATUS SD_REG(0x48)
215 #define FIFO_RX_WM (1<<0)
216 #define FIFO_TX_WM (1<<1)
217 #define FIFO_EMPTY (1<<2)
218 #define FIFO_FULL (1<<3)
219 #define CMD_FSM_STATE_B0 (1<<4)
220 #define CMD_FSM_STATE_B1 (1<<5)
221 #define CMD_FSM_STATE_B2 (1<<6)
222 #define CMD_FSM_STATE_B3 (1<<7)
223 #define DATA_3_STAT (1<<8)
224 #define DATA_BUSY (1<<9)
225 #define DATA_STAT_MC_BUSY (1<<10)
226 #define RESP_IDX_B0 (1<<11)
227 #define RESP_IDX_B1 (1<<12)
228 #define RESP_IDX_B2 (1<<13)
229 #define RESP_IDX_B3 (1<<14)
230 #define RESP_IDX_B4 (1<<15)
231 #define RESP_IDX_B5 (1<<16)
232 #define FIFO_CNT_B00 (1<<17)
233 #define FIFO_CNT_B01 (1<<18)
234 #define FIFO_CNT_B02 (1<<19)
235 #define FIFO_CNT_B03 (1<<20)
236 #define FIFO_CNT_B04 (1<<21)
237 #define FIFO_CNT_B05 (1<<22)
238 #define FIFO_CNT_B06 (1<<23)
239 #define FIFO_CNT_B07 (1<<24)
240 #define FIFO_CNT_B08 (1<<25)
241 #define FIFO_CNT_B09 (1<<26)
242 #define FIFO_CNT_B10 (1<<27)
243 #define FIFO_CNT_B11 (1<<28)
244 #define FIFO_CNT_B12 (1<<29)
245 #define DMA_ACK (1<<30)
246 #define START_CMD (1<<31)
248 #define MCI_FIFOTH SD_REG(0x4C) /* FIFO threshold */
249 /* TX watermark : bits 11:0
250 * RX watermark : bits 27:16
251 * DMA MTRANS SIZE : bits 30:28
252 * bits 31, 15:12 : unused
254 #define MCI_FIFOTH_MASK 0x8000f000
256 #define MCI_CDETECT SD_REG(0x50) /* card detect */
258 #define CDETECT_CRD_0 (1<<0)
259 #define CDETECT_CRD_1 (1<<1)
260 #define CDETECT_CRD_2 (1<<2)
261 #define CDETECT_CRD_3 (1<<3)
263 #define MCI_WRTPRT SD_REG(0x54) /* write protect */
264 #define MCI_GPIO SD_REG(0x58)
265 #define MCI_TCBCNT SD_REG(0x5C) /* transferred CIU byte count (card)*/
266 #define MCI_TBBCNT SD_REG(0x60) /* transferred host/DMA to/from bytes (FIFO)*/
267 #define MCI_DEBNCE SD_REG(0x64) /* card detect debounce bits 23:0*/
268 #define MCI_USRID SD_REG(0x68) /* user id */
269 #define MCI_VERID SD_REG(0x6C) /* version id */
271 #define MCI_HCON SD_REG(0x70) /* hardware config */
272 /* bit 0 : card type
273 * bits 5:1 : maximum card index
274 * bit 6 : BUS TYPE
275 * bits 9:7 : DATA WIDTH
276 * bits 15:10 : ADDR WIDTH
277 * bits 17:16 : DMA IF
278 * bits 20:18 : DMA WIDTH
279 * bit 21 : FIFO RAM INSIDE
280 * bit 22 : IMPL HOLD REG
281 * bit 23 : SET CLK FALSE
282 * bits 25:24 : MAX CLK DIV IDX
283 * bit 26 : AREA OPTIM
286 #define MCI_BMOD SD_REG(0x80) /* bus mode */
287 /* bit 0 : SWR
288 * bit 1 : FB
289 * bits 6:2 : DSL
290 * bit 7 : DE
291 * bit 10:8 : PBL
294 #define MCI_PLDMND SD_REG(0x84) /* poll demand */
295 #define MCI_DBADDR SD_REG(0x88) /* descriptor base address */
296 #define MCI_IDSTS SD_REG(0x8C) /* internal DMAC status */
297 /* bit 0 : TI
298 * bit 1 : RI
299 * bit 2 : FBE
300 * bit 3 : unused
301 * bit 4 : DU
302 * bit 5 : CES
303 * bits 7:6 : unused
304 * bits 8 : NIS
305 * bit 9 : AIS
306 * bits 12:10 : EB
307 * bits 16:13 : FSM
310 #define MCI_IDINTEN SD_REG(0x90) /* internal DMAC interrupt enable */
311 /* bit 0 : TI
312 * bit 1 : RI
313 * bit 2 : FBE
314 * bit 3 : unused
315 * bit 4 : DU
316 * bit 5 : CES
317 * bits 7:6 : unused
318 * bits 8 : NI
319 * bit 9 : AI
321 #define MCI_DSCADDR SD_REG(0x94) /* current host descriptor address */
322 #define MCI_BUFADDR SD_REG(0x98) /* current host buffer address */
324 #define MCI_FIFO ((unsigned long *) (SD_BASE+0x100))
326 #define UNALIGNED_NUM_SECTORS 10
327 static unsigned char aligned_buffer[UNALIGNED_NUM_SECTORS* SD_BLOCK_SIZE] __attribute__((aligned(32))); /* align on cache line size */
328 static unsigned char *uncached_buffer = AS3525_UNCACHED_ADDR(&aligned_buffer[0]);
330 static void init_controller(void);
331 static int sd_wait_for_tran_state(const int drive);
333 static tCardInfo card_info[NUM_DRIVES];
335 /* for compatibility */
336 static long last_disk_activity = -1;
338 #define MIN_YIELD_PERIOD 5 /* ticks */
339 static long next_yield = 0;
341 static long sd_stack [(DEFAULT_STACK_SIZE*2 + 0x200)/sizeof(long)];
342 static const char sd_thread_name[] = "ata/sd";
343 static struct mutex sd_mtx SHAREDBSS_ATTR;
344 static struct event_queue sd_queue;
345 #ifndef BOOTLOADER
346 bool sd_enabled = false;
347 #endif
349 static struct wakeup transfer_completion_signal;
350 static struct wakeup command_completion_signal;
351 static volatile bool retry;
352 static volatile int cmd_error;
354 #if defined(HAVE_MULTIDRIVE)
355 #define EXT_SD_BITS (1<<2)
356 #endif
358 static inline void mci_delay(void) { udelay(1000); }
360 void INT_NAND(void)
362 MCI_CTRL &= ~INT_ENABLE;
363 /* use raw status here as we need to check some Ints that are masked */
364 const int status = MCI_RAW_STATUS;
366 MCI_RAW_STATUS = status; /* clear status */
368 if(status & MCI_DATA_ERROR)
369 retry = true;
371 if( status & (MCI_INT_DTO|MCI_DATA_ERROR))
372 wakeup_signal(&transfer_completion_signal);
374 cmd_error = status & MCI_CMD_ERROR;
376 if(status & MCI_INT_CD)
377 wakeup_signal(&command_completion_signal);
379 MCI_CTRL |= INT_ENABLE;
382 static inline bool card_detect_target(void)
384 #if defined(HAVE_MULTIDRIVE)
385 #if defined(SANSA_FUZEV2)
386 return GPIOA_PIN(2);
387 #elif defined(SANSA_CLIPPLUS)
388 return !(GPIOA_PIN(2));
389 #else
390 #error "microSD pin not defined for your target"
391 #endif
392 #else
393 return false;
394 #endif
397 static bool send_cmd(const int drive, const int cmd, const int arg, const int flags,
398 unsigned long *response)
400 #if defined(HAVE_MULTIDRIVE)
401 if(sd_present(SD_SLOT_AS3525))
402 GPIOB_PIN(5) = (1-drive) << 5;
403 #endif
405 MCI_ARGUMENT = arg;
407 /* Construct MCI_COMMAND */
408 MCI_COMMAND =
409 /*b5:0*/ cmd
410 /*b6 */ | ((flags & MCI_RESP) ? CMD_RESP_EXP_BIT: 0)
411 /*b7 */ | ((flags & MCI_LONG_RESP) ? CMD_RESP_LENGTH_BIT: 0)
412 /*b8 | CMD_CHECK_CRC_BIT unused */
413 /*b9 */ | (TRANSFER_CMD ? CMD_DATA_EXP_BIT: 0)
414 /*b10 */ | ((cmd == SD_WRITE_MULTIPLE_BLOCK) ? CMD_RW_BIT: 0)
415 /*b11 | CMD_TRANSMODE_BIT unused */
416 /*b12 | CMD_SENT_AUTO_STOP_BIT unused */
417 /*b13 */ | (TRANSFER_CMD ? CMD_WAIT_PRV_DAT_BIT: 0)
418 /*b14 | CMD_ABRT_CMD_BIT unused */
419 /*b15 | CMD_SEND_INIT_BIT unused */
420 /*b20:16 */ | CMD_CARD_NO(drive)
421 /*b21 | CMD_SEND_CLK_ONLY unused */
422 /*b22 | CMD_READ_CEATA unused */
423 /*b23 | CMD_CCS_EXPECTED unused */
424 /*b31 */ | CMD_DONE_BIT;
426 #ifdef SANSA_FUZEV2
427 extern int buttonlight_is_on;
428 if(buttonlight_is_on)
429 _buttonlight_on();
430 else
431 _buttonlight_off();
432 #endif
433 wakeup_wait(&command_completion_signal, TIMEOUT_BLOCK);
435 /* Handle command responses & errors */
436 if(flags & MCI_RESP)
438 if(cmd_error & (MCI_INT_RCRC | MCI_INT_RTO))
439 return false;
441 if(flags & MCI_LONG_RESP)
443 response[0] = MCI_RESP3;
444 response[1] = MCI_RESP2;
445 response[2] = MCI_RESP1;
446 response[3] = MCI_RESP0;
448 else
449 response[0] = MCI_RESP0;
451 return true;
454 static int sd_init_card(const int drive)
456 unsigned long response;
457 long init_timeout;
458 bool sd_v2 = false;
460 /* assume 24 MHz clock / 60 = 400 kHz */
461 MCI_CLKDIV = (MCI_CLKDIV & ~(0xFF)) | 0x3C; /* CLK_DIV_0 : bits 7:0 */
463 /* 100 - 400kHz clock required for Identification Mode */
464 /* Start of Card Identification Mode ************************************/
466 /* CMD0 Go Idle */
467 if(!send_cmd(drive, SD_GO_IDLE_STATE, 0, MCI_NO_RESP, NULL))
468 return -1;
469 mci_delay();
471 /* CMD8 Check for v2 sd card. Must be sent before using ACMD41
472 Non v2 cards will not respond to this command*/
473 if(send_cmd(drive, SD_SEND_IF_COND, 0x1AA, MCI_RESP, &response))
474 if((response & 0xFFF) == 0x1AA)
475 sd_v2 = true;
477 /* timeout for initialization is 1sec, from SD Specification 2.00 */
478 init_timeout = current_tick + HZ;
480 do {
481 /* this timeout is the only valid error for this loop*/
482 if(TIME_AFTER(current_tick, init_timeout))
483 return -2;
485 /* app_cmd */
486 send_cmd(drive, SD_APP_CMD, 0, MCI_RESP, &response);
488 /* ACMD41 For v2 cards set HCS bit[30] & send host voltage range to all */
489 if(!send_cmd(drive, SD_APP_OP_COND, (0x00FF8000 | (sd_v2 ? 1<<30 : 0)),
490 MCI_RESP, &card_info[drive].ocr))
491 return -3;
492 } while(!(card_info[drive].ocr & (1<<31)) );
494 /* CMD2 send CID */
495 if(!send_cmd(drive, SD_ALL_SEND_CID, 0, MCI_RESP|MCI_LONG_RESP, card_info[drive].cid))
496 return -4;
498 /* CMD3 send RCA */
499 if(!send_cmd(drive, SD_SEND_RELATIVE_ADDR, 0, MCI_RESP, &card_info[drive].rca))
500 return -5;
502 #ifdef HAVE_MULTIDRIVE
503 /* Make sure we have 2 unique rca numbers */
504 if(card_info[INTERNAL_AS3525].rca == card_info[SD_SLOT_AS3525].rca)
505 if(!send_cmd(drive, SD_SEND_RELATIVE_ADDR, 0, MCI_RESP, &card_info[drive].rca))
506 return -6;
507 #endif
508 /* End of Card Identification Mode ************************************/
510 /* Attempt to switch cards to HS timings, non HS cards just ignore this */
511 /* CMD7 w/rca: Select card to put it in TRAN state */
512 if(!send_cmd(drive, SD_SELECT_CARD, card_info[drive].rca, MCI_NO_RESP, NULL))
513 return -7;
515 if(sd_wait_for_tran_state(drive))
516 return -8;
518 /* CMD6 */
519 if(!send_cmd(drive, SD_SWITCH_FUNC, 0x80fffff1, MCI_NO_RESP, NULL))
520 return -9;
521 mci_delay();
523 /* We need to go back to STBY state now so we can read csd */
524 /* CMD7 w/rca=0: Deselect card to put it in STBY state */
525 if(!send_cmd(drive, SD_DESELECT_CARD, 0, MCI_NO_RESP, NULL))
526 return -10;
528 /* CMD9 send CSD */
529 if(!send_cmd(drive, SD_SEND_CSD, card_info[drive].rca,
530 MCI_RESP|MCI_LONG_RESP, card_info[drive].csd))
531 return -11;
533 sd_parse_csd(&card_info[drive]);
535 if(drive == INTERNAL_AS3525) /* The OF is stored in the first blocks */
536 card_info[INTERNAL_AS3525].numblocks -= AMS_OF_SIZE;
538 /* Card back to full speed */
539 MCI_CLKDIV &= ~(0xFF); /* CLK_DIV_0 : bits 7:0 = 0x00 */
541 /* CMD7 w/rca: Select card to put it in TRAN state */
542 if(!send_cmd(drive, SD_SELECT_CARD, card_info[drive].rca, MCI_NO_RESP, NULL))
543 return -12;
545 #ifndef BOOTLOADER
546 /* Switch to to 4 bit widebus mode */
547 if(sd_wait_for_tran_state(drive) < 0)
548 return -13;
549 /* CMD55 */ /* Response is requested due to timing issue */
550 if(!send_cmd(drive, SD_APP_CMD, card_info[drive].rca, MCI_RESP, &response))
551 return -14;
552 /* ACMD6 */
553 if(!send_cmd(drive, SD_SET_BUS_WIDTH, 2, MCI_NO_RESP, NULL))
554 return -15;
555 mci_delay();
556 /* CMD55 */ /* Response is requested due to timing issue */
557 if(!send_cmd(drive, SD_APP_CMD, card_info[drive].rca, MCI_RESP, &response))
558 return -16;
559 /* ACMD42 */
560 if(!send_cmd(drive, SD_SET_CLR_CARD_DETECT, 0, MCI_NO_RESP, NULL))
561 return -17;
562 /* Now that card is widebus make controller aware */
563 MCI_CTYPE |= (1<<drive);
564 #endif
566 card_info[drive].initialized = 1;
568 MCI_CLKENA |= 1<<(drive + 16); /* Set low power mode */
570 return 0;
573 static void sd_thread(void) __attribute__((noreturn));
574 static void sd_thread(void)
576 struct queue_event ev;
577 bool idle_notified = false;
579 while (1)
581 queue_wait_w_tmo(&sd_queue, &ev, HZ);
583 switch ( ev.id )
585 #ifdef HAVE_HOTSWAP
586 case SYS_HOTSWAP_INSERTED:
587 case SYS_HOTSWAP_EXTRACTED:
589 int microsd_init = 1;
590 fat_lock(); /* lock-out FAT activity first -
591 prevent deadlocking via disk_mount that
592 would cause a reverse-order attempt with
593 another thread */
594 mutex_lock(&sd_mtx); /* lock-out card activity - direct calls
595 into driver that bypass the fat cache */
597 /* We now have exclusive control of fat cache and ata */
599 disk_unmount(SD_SLOT_AS3525); /* release "by force", ensure file
600 descriptors aren't leaked and any busy
601 ones are invalid if mounting */
602 /* Force card init for new card, re-init for re-inserted one or
603 * clear if the last attempt to init failed with an error. */
604 card_info[SD_SLOT_AS3525].initialized = 0;
606 if (ev.id == SYS_HOTSWAP_INSERTED)
608 sd_enable(true);
609 microsd_init = sd_init_card(SD_SLOT_AS3525);
610 if (microsd_init < 0) /* initialisation failed */
611 panicf("microSD init failed : %d", microsd_init);
613 microsd_init = disk_mount(SD_SLOT_AS3525); /* 0 if fail */
617 * Mount succeeded, or this was an EXTRACTED event,
618 * in both cases notify the system about the changed filesystems
620 if (microsd_init)
621 queue_broadcast(SYS_FS_CHANGED, 0);
622 /* Access is now safe */
623 mutex_unlock(&sd_mtx);
624 fat_unlock();
625 sd_enable(false);
627 break;
628 #endif
629 case SYS_TIMEOUT:
630 if (TIME_BEFORE(current_tick, last_disk_activity+(3*HZ)))
632 idle_notified = false;
634 else
636 /* never let a timer wrap confuse us */
637 next_yield = current_tick;
639 if (!idle_notified)
641 call_storage_idle_notifys(false);
642 idle_notified = true;
645 break;
647 case SYS_USB_CONNECTED:
648 usb_acknowledge(SYS_USB_CONNECTED_ACK);
649 /* Wait until the USB cable is extracted again */
650 usb_wait_for_disconnect(&sd_queue);
652 break;
653 case SYS_USB_DISCONNECTED:
654 usb_acknowledge(SYS_USB_DISCONNECTED_ACK);
655 break;
660 static void init_controller(void)
662 int hcon_numcards = ((MCI_HCON>>1) & 0x1F) + 1;
663 int card_mask = (1 << hcon_numcards) - 1;
665 MCI_PWREN &= ~card_mask; /* power off all cards */
667 MCI_CLKSRC = 0x00; /* All CLK_SRC_CRD set to 0*/
668 MCI_CLKDIV = 0x00; /* CLK_DIV_0 : bits 7:0 */
670 MCI_PWREN |= card_mask; /* power up cards */
671 mci_delay();
673 MCI_CTRL |= CTRL_RESET;
674 while(MCI_CTRL & CTRL_RESET)
677 MCI_RAW_STATUS = 0xffffffff; /* Clear all MCI Interrupts */
679 MCI_TMOUT = 0xffffffff; /* data b31:8, response b7:0 */
681 MCI_CTYPE = 0x0; /* all cards 1 bit bus for now */
683 MCI_CLKENA = card_mask; /* Enables card clocks */
685 MCI_ARGUMENT = 0;
686 MCI_COMMAND = CMD_DONE_BIT|CMD_SEND_CLK_ONLY|CMD_WAIT_PRV_DAT_BIT;
687 while(MCI_COMMAND & CMD_DONE_BIT)
690 MCI_DEBNCE = 0xfffff; /* default value */
692 /* Rx watermark = 63(sd reads) Tx watermark = 128 (sd writes) */
693 MCI_FIFOTH = (MCI_FIFOTH & MCI_FIFOTH_MASK) | 0x503f0080;
695 /* RCRC & RTO interrupts should be set together with the CD interrupt but
696 * in practice sometimes incorrectly precede the CD interrupt. If we leave
697 * them masked for now we can check them in the isr by reading raw status when
698 * the CD int is triggered.
700 MCI_MASK |= (MCI_DATA_ERROR | MCI_INT_DTO | MCI_INT_CD);
702 MCI_CTRL |= INT_ENABLE | DMA_ENABLE;
704 MCI_BLKSIZ = SD_BLOCK_SIZE;
707 int sd_init(void)
709 int ret;
711 CGU_PERI |= CGU_MCI_CLOCK_ENABLE;
713 CGU_IDE = (1<<7) /* AHB interface enable */
714 | (AS3525_IDE_DIV << 2)
715 | 1; /* clock source = PLLA */
717 CGU_MEMSTICK = (1<<7) /* interface enable */
718 | (AS3525_MS_DIV << 2)
719 | 1; /* clock source = PLLA */
721 CGU_SDSLOT = (1<<7) /* interface enable */
722 | (AS3525_SDSLOT_DIV << 2)
723 | 1; /* clock source = PLLA */
725 wakeup_init(&transfer_completion_signal);
726 wakeup_init(&command_completion_signal);
727 #ifdef HAVE_MULTIDRIVE
728 /* clear previous irq */
729 GPIOA_IC = EXT_SD_BITS;
730 /* enable edge detecting */
731 GPIOA_IS &= ~EXT_SD_BITS;
732 /* detect both raising and falling edges */
733 GPIOA_IBE |= EXT_SD_BITS;
734 /* enable the card detect interrupt */
735 GPIOA_IE |= EXT_SD_BITS;
737 /* Configure XPD for SD-MCI interface */
738 CCU_IO |= (1<<2);
739 #endif
741 VIC_INT_ENABLE = INTERRUPT_NAND;
743 init_controller();
744 ret = sd_init_card(INTERNAL_AS3525);
745 if(ret < 0)
746 return ret;
748 /* init mutex */
749 mutex_init(&sd_mtx);
751 queue_init(&sd_queue, true);
752 create_thread(sd_thread, sd_stack, sizeof(sd_stack), 0,
753 sd_thread_name IF_PRIO(, PRIORITY_USER_INTERFACE) IF_COP(, CPU));
755 #ifndef BOOTLOADER
756 sd_enabled = true;
757 sd_enable(false);
758 #endif
759 return 0;
762 static int sd_wait_for_tran_state(const int drive)
764 unsigned long response;
765 unsigned int timeout = current_tick + 5*HZ;
767 while (1)
769 while(!(send_cmd(drive, SD_SEND_STATUS, card_info[drive].rca, MCI_RESP, &response)));
771 if (((response >> 9) & 0xf) == SD_TRAN)
772 return 0;
774 if(TIME_AFTER(current_tick, timeout))
775 return -10 * ((response >> 9) & 0xf);
777 if (TIME_AFTER(current_tick, next_yield))
779 yield();
780 next_yield = current_tick + MIN_YIELD_PERIOD;
785 static int sd_transfer_sectors(IF_MD2(int drive,) unsigned long start,
786 int count, void* buf, bool write)
788 int ret = 0;
789 #ifndef HAVE_MULTIDRIVE
790 const int drive = 0;
791 #endif
793 mutex_lock(&sd_mtx);
794 #ifndef BOOTLOADER
795 sd_enable(true);
796 led(true);
797 #endif
799 if (card_info[drive].initialized <= 0)
801 ret = sd_init_card(drive);
802 if (!(card_info[drive].initialized))
804 panicf("card not initialised (%d)", ret);
805 goto sd_transfer_error;
809 if(count < 0) /* XXX: why is it signed ? */
811 ret = -18;
812 goto sd_transfer_error;
814 if((start+count) > card_info[drive].numblocks)
816 ret = -19;
817 goto sd_transfer_error;
820 /* skip SanDisk OF */
821 if (drive == INTERNAL_AS3525)
822 start += AMS_OF_SIZE;
824 /* CMD7 w/rca: Select card to put it in TRAN state */
825 if(!send_cmd(drive, SD_SELECT_CARD, card_info[drive].rca, MCI_NO_RESP, NULL))
826 return -20;
828 last_disk_activity = current_tick;
829 dma_retain();
831 const int cmd = write ? SD_WRITE_MULTIPLE_BLOCK : SD_READ_MULTIPLE_BLOCK;
835 void *dma_buf = aligned_buffer;
836 unsigned int transfer = count;
837 if(transfer > UNALIGNED_NUM_SECTORS)
838 transfer = UNALIGNED_NUM_SECTORS;
840 if(write)
841 memcpy(uncached_buffer, buf, transfer * SD_BLOCK_SIZE);
843 /* Interrupt handler might set this to true during transfer */
844 retry = false;
846 MCI_BYTCNT = transfer * SD_BLOCK_SIZE;
848 ret = sd_wait_for_tran_state(drive);
849 if (ret < 0)
851 static const char *st[9] = {
852 "IDLE", "RDY", "IDENT", "STBY", "TRAN", "DATA", "RCV",
853 "PRG", "DIS"};
854 if(ret <= -10)
855 panicf("wait for TRAN state failed (%s) %d",
856 st[(-ret / 10) % 9], drive);
857 else
858 panicf("wait for state failed");
859 goto sd_transfer_error;
862 int arg = start;
863 if(!(card_info[drive].ocr & (1<<30))) /* not SDHC */
864 arg *= SD_BLOCK_SIZE;
866 if(write)
867 dma_enable_channel(0, dma_buf, MCI_FIFO, DMA_PERI_SD,
868 DMAC_FLOWCTRL_PERI_MEM_TO_PERI, true, false, 0, DMA_S8, NULL);
869 else
870 dma_enable_channel(0, MCI_FIFO, dma_buf, DMA_PERI_SD,
871 DMAC_FLOWCTRL_PERI_PERI_TO_MEM, false, true, 0, DMA_S8, NULL);
873 unsigned long dummy; /* if we don't ask for a response, writing fails */
874 if(!send_cmd(drive, cmd, arg, MCI_RESP, &dummy))
875 panicf("%s multiple blocks failed", write ? "write" : "read");
877 wakeup_wait(&transfer_completion_signal, TIMEOUT_BLOCK);
879 last_disk_activity = current_tick;
881 if(write)
883 /* wait for the card to exit programming state */
884 while(MCI_STATUS & DATA_BUSY) ;
887 if(!send_cmd(drive, SD_STOP_TRANSMISSION, 0, MCI_NO_RESP, NULL))
889 ret = -666;
890 panicf("STOP TRANSMISSION failed");
891 goto sd_transfer_error;
894 if(!retry)
896 if(!write)
897 memcpy(buf, uncached_buffer, transfer * SD_BLOCK_SIZE);
898 buf += transfer * SD_BLOCK_SIZE;
899 start += transfer;
900 count -= transfer;
902 else /* reset controller if we had an error */
904 MCI_CTRL |= (FIFO_RESET|DMA_RESET);
905 while(MCI_CTRL & (FIFO_RESET|DMA_RESET))
909 } while(retry || count);
911 dma_release();
913 #ifndef BOOTLOADER
914 sd_enable(false);
915 led(false);
916 #endif
917 mutex_unlock(&sd_mtx);
918 return 0;
920 sd_transfer_error:
921 panicf("transfer error : %d",ret);
922 card_info[drive].initialized = 0;
923 return ret;
926 int sd_read_sectors(IF_MD2(int drive,) unsigned long start, int count,
927 void* buf)
929 return sd_transfer_sectors(IF_MD2(drive,) start, count, buf, false);
932 int sd_write_sectors(IF_MD2(int drive,) unsigned long start, int count,
933 const void* buf)
935 #if defined(BOOTLOADER) /* we don't need write support in bootloader */
936 #ifdef HAVE_MULTIDRIVE
937 (void) drive;
938 #endif
939 (void) start;
940 (void) count;
941 (void) buf;
942 return -1;
943 #else
944 return sd_transfer_sectors(IF_MD2(drive,) start, count, (void*)buf, true);
945 #endif /* defined(BOOTLOADER) */
948 #ifndef BOOTLOADER
949 long sd_last_disk_activity(void)
951 return last_disk_activity;
954 void sd_enable(bool on)
956 /* TODO */
957 (void) on;
960 tCardInfo *card_get_info_target(int card_no)
962 return &card_info[card_no];
964 #endif /* BOOTLOADER */
966 #ifdef HAVE_HOTSWAP
967 bool sd_removable(IF_MD_NONVOID(int drive))
969 return (drive==1);
972 bool sd_present(IF_MD_NONVOID(int drive))
974 return (drive == 0) ? true : card_detect_target();
977 static int sd1_oneshot_callback(struct timeout *tmo)
979 (void)tmo;
981 /* This is called only if the state was stable for 300ms - check state
982 * and post appropriate event. */
983 if (card_detect_target())
985 queue_broadcast(SYS_HOTSWAP_INSERTED, 0);
987 else
988 queue_broadcast(SYS_HOTSWAP_EXTRACTED, 0);
990 return 0;
993 void sd_gpioa_isr(void)
995 static struct timeout sd1_oneshot;
996 if (GPIOA_MIS & EXT_SD_BITS)
997 timeout_register(&sd1_oneshot, sd1_oneshot_callback, (3*HZ/10), 0);
998 /* acknowledge interrupt */
999 GPIOA_IC = EXT_SD_BITS;
1001 #endif /* HAVE_HOTSWAP */
1003 #ifdef CONFIG_STORAGE_MULTI
1004 int sd_num_drives(int first_drive)
1006 /* We don't care which logical drive number(s) we have been assigned */
1007 (void)first_drive;
1009 return NUM_DRIVES;
1011 #endif /* CONFIG_STORAGE_MULTI */