1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 /* Driver for the ARM PL180 SD/MMC controller inside AS3525 SoC */
25 /* TODO: Find the real capacity of >2GB models (will be useful for USB) */
27 #include "config.h" /* for HAVE_MULTIDRIVE & AMS_OF_SIZE */
38 #include "pl180.h" /* SD controller */
39 #include "pl081.h" /* DMA controller */
40 #include "dma-target.h" /* DMA request lines */
41 #include "clock-target.h"
43 #ifdef HAVE_BUTTON_LIGHT
44 #include "backlight-target.h"
47 #include "ata_idle_notify.h"
57 #define MCI_NO_FLAGS (0<<0)
58 #define MCI_RESP (1<<0)
59 #define MCI_LONG_RESP (1<<1)
60 #define MCI_ARG (1<<2)
62 /* ARM PL180 registers */
63 #define MCI_POWER(i) (*(volatile unsigned char *) (pl180_base[i]+0x00))
64 #define MCI_CLOCK(i) (*(volatile unsigned long *) (pl180_base[i]+0x04))
65 #define MCI_ARGUMENT(i) (*(volatile unsigned long *) (pl180_base[i]+0x08))
66 #define MCI_COMMAND(i) (*(volatile unsigned long *) (pl180_base[i]+0x0C))
67 #define MCI_RESPCMD(i) (*(volatile unsigned long *) (pl180_base[i]+0x10))
68 #define MCI_RESP0(i) (*(volatile unsigned long *) (pl180_base[i]+0x14))
69 #define MCI_RESP1(i) (*(volatile unsigned long *) (pl180_base[i]+0x18))
70 #define MCI_RESP2(i) (*(volatile unsigned long *) (pl180_base[i]+0x1C))
71 #define MCI_RESP3(i) (*(volatile unsigned long *) (pl180_base[i]+0x20))
72 #define MCI_DATA_TIMER(i) (*(volatile unsigned long *) (pl180_base[i]+0x24))
73 #define MCI_DATA_LENGTH(i) (*(volatile unsigned short*) (pl180_base[i]+0x28))
74 #define MCI_DATA_CTRL(i) (*(volatile unsigned char *) (pl180_base[i]+0x2C))
75 #define MCI_DATA_CNT(i) (*(volatile unsigned short*) (pl180_base[i]+0x30))
76 #define MCI_STATUS(i) (*(volatile unsigned long *) (pl180_base[i]+0x34))
77 #define MCI_CLEAR(i) (*(volatile unsigned long *) (pl180_base[i]+0x38))
78 #define MCI_MASK0(i) (*(volatile unsigned long *) (pl180_base[i]+0x3C))
79 #define MCI_MASK1(i) (*(volatile unsigned long *) (pl180_base[i]+0x40))
80 #define MCI_SELECT(i) (*(volatile unsigned long *) (pl180_base[i]+0x44))
81 #define MCI_FIFO_CNT(i) (*(volatile unsigned long *) (pl180_base[i]+0x48))
84 (MCI_DATA_CRC_FAIL | MCI_DATA_TIMEOUT | MCI_RX_OVERRUN | MCI_TX_UNDERRUN)
86 #define MCI_FIFO(i) ((unsigned long *) (pl180_base[i]+0x80))
88 #define INTERNAL_AS3525 0 /* embedded SD card */
89 #define SD_SLOT_AS3525 1 /* SD slot if present */
91 static const int pl180_base
[NUM_DRIVES
] = {
93 #ifdef HAVE_MULTIDRIVE
98 static int sd_select_bank(signed char bank
);
99 static int sd_init_card(const int drive
);
100 static void init_pl180_controller(const int drive
);
101 #define SECTOR_SIZE 512 /* XXX: different sector sizes ? */
102 #define BLOCKS_PER_BANK 0x7a7800
104 static tCardInfo card_info
[NUM_DRIVES
];
106 /* maximum timeouts recommanded in the SD Specification v2.00 */
107 #define SD_MAX_READ_TIMEOUT ((AS3525_PCLK_FREQ) / 1000 * 100) /* 100 ms */
108 #define SD_MAX_WRITE_TIMEOUT ((AS3525_PCLK_FREQ) / 1000 * 250) /* 250 ms */
110 /* for compatibility */
111 static long last_disk_activity
= -1;
113 #define MIN_YIELD_PERIOD 5 /* ticks */
114 static long next_yield
= 0;
116 static long sd_stack
[(DEFAULT_STACK_SIZE
*2 + 0x200)/sizeof(long)];
117 static const char sd_thread_name
[] = "ata/sd";
118 static struct mutex sd_mtx
;
119 static struct event_queue sd_queue
;
121 static bool sd_enabled
= false;
124 static struct wakeup transfer_completion_signal
;
125 static volatile unsigned int transfer_error
[NUM_VOLUMES
];
126 #define PL180_MAX_TRANSFER_ERRORS 10
128 #define UNALIGNED_NUM_SECTORS 10
129 static unsigned char aligned_buffer
[UNALIGNED_NUM_SECTORS
* SECTOR_SIZE
] __attribute__((aligned(32))); /* align on cache line size */
130 static unsigned char *uncached_buffer
= UNCACHED_ADDR(&aligned_buffer
[0]);
132 static inline void mci_delay(void) { int i
= 0xffff; while(i
--) ; }
135 #if defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2)
136 static int sd1_oneshot_callback(struct timeout
*tmo
)
140 /* This is called only if the state was stable for 300ms - check state
141 * and post appropriate event. */
142 if (card_detect_target())
144 queue_broadcast(SYS_HOTSWAP_INSERTED
, 0);
147 queue_broadcast(SYS_HOTSWAP_EXTRACTED
, 0);
154 static struct timeout sd1_oneshot
;
157 timeout_register(&sd1_oneshot
, sd1_oneshot_callback
, (3*HZ
/10), 0);
159 #endif /* defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2) */
160 #endif /* HAVE_HOTSWAP */
164 const int status
= MCI_STATUS(INTERNAL_AS3525
);
166 transfer_error
[INTERNAL_AS3525
] = status
& MCI_ERROR
;
168 wakeup_signal(&transfer_completion_signal
);
169 MCI_CLEAR(INTERNAL_AS3525
) = status
;
172 #ifdef HAVE_MULTIDRIVE
175 const int status
= MCI_STATUS(SD_SLOT_AS3525
);
177 transfer_error
[SD_SLOT_AS3525
] = status
& MCI_ERROR
;
179 wakeup_signal(&transfer_completion_signal
);
180 MCI_CLEAR(SD_SLOT_AS3525
) = status
;
184 static bool send_cmd(const int drive
, const int cmd
, const int arg
,
185 const int flags
, long *response
)
189 while(MCI_STATUS(drive
) & MCI_CMD_ACTIVE
);
191 if(MCI_COMMAND(drive
) & MCI_COMMAND_ENABLE
) /* clears existing command */
193 MCI_COMMAND(drive
) = 0;
197 val
= cmd
| MCI_COMMAND_ENABLE
;
200 val
|= MCI_COMMAND_RESPONSE
;
201 if(flags
& MCI_LONG_RESP
)
202 val
|= MCI_COMMAND_LONG_RESPONSE
;
205 MCI_CLEAR(drive
) = 0x7ff;
207 MCI_ARGUMENT(drive
) = (flags
& MCI_ARG
) ? arg
: 0;
208 MCI_COMMAND(drive
) = val
;
210 while(MCI_STATUS(drive
) & MCI_CMD_ACTIVE
); /* wait for cmd completion */
212 MCI_COMMAND(drive
) = 0;
213 MCI_ARGUMENT(drive
) = ~0;
215 status
= MCI_STATUS(drive
);
216 MCI_CLEAR(drive
) = 0x7ff;
220 if(status
& MCI_CMD_TIMEOUT
)
222 else if(status
& (MCI_CMD_CRC_FAIL
/* FIXME? */ | MCI_CMD_RESP_END
))
223 { /* resp received */
224 if(flags
& MCI_LONG_RESP
)
226 /* store the response in reverse words order */
227 response
[0] = MCI_RESP3(drive
);
228 response
[1] = MCI_RESP2(drive
);
229 response
[2] = MCI_RESP1(drive
);
230 response
[3] = MCI_RESP0(drive
);
233 response
[0] = MCI_RESP0(drive
);
237 else if(status
& MCI_CMD_SENT
)
243 static int sd_init_card(const int drive
)
245 unsigned long response
;
248 unsigned long temp_reg
[4];
251 if(!send_cmd(drive
, SD_GO_IDLE_STATE
, 0, MCI_NO_FLAGS
, NULL
))
257 if(send_cmd(drive
, SD_SEND_IF_COND
, 0x1AA, MCI_RESP
|MCI_ARG
, &response
))
258 if((response
& 0xFFF) == 0x1AA)
261 /* timeout for initialization is 1sec, from SD Specification 2.00 */
262 init_timeout
= current_tick
+ HZ
;
266 if(current_tick
> init_timeout
)
270 if( !send_cmd(drive
, SD_APP_CMD
, 0, MCI_RESP
|MCI_ARG
, &response
) ||
271 !(response
& (1<<5)) )
277 if(!send_cmd(drive
, SD_APP_OP_COND
, (sdhc
? 0x40FF8000 : (1<<23)),
278 MCI_RESP
|MCI_ARG
, &card_info
[drive
].ocr
))
283 } while(!(card_info
[drive
].ocr
& (1<<31)));
286 if(!send_cmd(drive
, SD_ALL_SEND_CID
, 0, MCI_RESP
|MCI_LONG_RESP
|MCI_ARG
,
291 card_info
[drive
].cid
[3-i
] = temp_reg
[i
];
294 if(!send_cmd(drive
, SD_SEND_RELATIVE_ADDR
, 0, MCI_RESP
|MCI_ARG
,
295 &card_info
[drive
].rca
))
299 if(!send_cmd(drive
, SD_SEND_CSD
, card_info
[drive
].rca
,
300 MCI_RESP
|MCI_LONG_RESP
|MCI_ARG
, temp_reg
))
304 card_info
[drive
].csd
[3-i
] = temp_reg
[i
];
306 sd_parse_csd(&card_info
[drive
]);
308 if(!send_cmd(drive
, SD_SELECT_CARD
, card_info
[drive
].rca
, MCI_ARG
, NULL
))
311 if(!send_cmd(drive
, SD_APP_CMD
, card_info
[drive
].rca
, MCI_ARG
, NULL
))
314 if(!send_cmd(drive
, SD_SET_BUS_WIDTH
, card_info
[drive
].rca
| 2, MCI_ARG
, NULL
))
317 if(!send_cmd(drive
, SD_SET_BLOCKLEN
, card_info
[drive
].blocksize
, MCI_ARG
,
321 card_info
[drive
].initialized
= 1;
323 MCI_CLOCK(drive
) |= MCI_CLOCK_BYPASS
; /* full speed for controller clock */
327 * enable bank switching
328 * without issuing this command, we only have access to 1/4 of the blocks
329 * of the first bank (0x1E9E00 blocks, which is the size reported in the
332 if(drive
== INTERNAL_AS3525
)
334 const int ret
= sd_select_bank(-1);
342 static void sd_thread(void) __attribute__((noreturn
));
343 static void sd_thread(void)
345 struct queue_event ev
;
346 bool idle_notified
= false;
350 queue_wait_w_tmo(&sd_queue
, &ev
, HZ
);
355 case SYS_HOTSWAP_INSERTED
:
356 case SYS_HOTSWAP_EXTRACTED
:
358 int microsd_init
= 1;
359 fat_lock(); /* lock-out FAT activity first -
360 prevent deadlocking via disk_mount that
361 would cause a reverse-order attempt with
363 mutex_lock(&sd_mtx
); /* lock-out card activity - direct calls
364 into driver that bypass the fat cache */
366 /* We now have exclusive control of fat cache and ata */
368 disk_unmount(SD_SLOT_AS3525
); /* release "by force", ensure file
369 descriptors aren't leaked and any busy
370 ones are invalid if mounting */
372 /* Force card init for new card, re-init for re-inserted one or
373 * clear if the last attempt to init failed with an error. */
374 card_info
[SD_SLOT_AS3525
].initialized
= 0;
376 if (ev
.id
== SYS_HOTSWAP_INSERTED
)
379 init_pl180_controller(SD_SLOT_AS3525
);
380 microsd_init
= sd_init_card(SD_SLOT_AS3525
);
381 if (microsd_init
< 0) /* initialisation failed */
382 panicf("microSD init failed : %d", microsd_init
);
384 microsd_init
= disk_mount(SD_SLOT_AS3525
); /* 0 if fail */
388 * Mount succeeded, or this was an EXTRACTED event,
389 * in both cases notify the system about the changed filesystems
392 queue_broadcast(SYS_FS_CHANGED
, 0);
394 /* Access is now safe */
395 mutex_unlock(&sd_mtx
);
402 if (TIME_BEFORE(current_tick
, last_disk_activity
+(3*HZ
)))
404 idle_notified
= false;
408 /* never let a timer wrap confuse us */
409 next_yield
= current_tick
;
413 call_storage_idle_notifys(false);
414 idle_notified
= true;
419 case SYS_USB_CONNECTED
:
420 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
421 /* Wait until the USB cable is extracted again */
422 usb_wait_for_disconnect(&sd_queue
);
425 case SYS_USB_DISCONNECTED
:
426 usb_acknowledge(SYS_USB_DISCONNECTED_ACK
);
432 static void init_pl180_controller(const int drive
)
434 MCI_COMMAND(drive
) = MCI_DATA_CTRL(drive
) = 0;
435 MCI_CLEAR(drive
) = 0x7ff;
437 MCI_MASK0(drive
) = MCI_MASK1(drive
) = MCI_ERROR
| MCI_DATA_END
;
439 #ifdef HAVE_MULTIDRIVE
441 (drive
== INTERNAL_AS3525
) ? INTERRUPT_NAND
: INTERRUPT_MCI0
;
443 #if defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2)
444 /* setup isr for microsd monitoring */
445 VIC_INT_ENABLE
|= (INTERRUPT_GPIOA
);
446 /* clear previous irq */
448 /* enable edge detecting */
450 /* detect both raising and falling edges */
456 VIC_INT_ENABLE
|= INTERRUPT_NAND
;
459 MCI_POWER(drive
) = MCI_POWER_UP
|(10 /*voltage*/ << 2); /* use OF voltage */
462 MCI_POWER(drive
) |= MCI_POWER_ON
;
465 MCI_SELECT(drive
) = 0;
467 MCI_CLOCK(drive
) = MCI_CLOCK_ENABLE
| AS3525_SD_IDENT_DIV
;
474 CGU_IDE
= (1<<7) /* AHB interface enable */ |
475 (1<<6) /* interface enable */ |
476 (AS3525_IDE_DIV
<< 2) |
477 AS3525_CLK_PLLA
; /* clock source = PLLA */
480 CGU_PERI
|= CGU_NAF_CLOCK_ENABLE
;
481 #ifdef HAVE_MULTIDRIVE
482 CGU_PERI
|= CGU_MCI_CLOCK_ENABLE
;
483 CCU_IO
&= ~(1<<3); /* bits 3:2 = 01, xpd is SD interface */
487 wakeup_init(&transfer_completion_signal
);
489 init_pl180_controller(INTERNAL_AS3525
);
490 ret
= sd_init_card(INTERNAL_AS3525
);
493 #ifdef HAVE_MULTIDRIVE
494 init_pl180_controller(SD_SLOT_AS3525
);
500 queue_init(&sd_queue
, true);
501 create_thread(sd_thread
, sd_stack
, sizeof(sd_stack
), 0,
502 sd_thread_name
IF_PRIO(, PRIORITY_USER_INTERFACE
) IF_COP(, CPU
));
512 bool sd_removable(IF_MD_NONVOID(int drive
))
514 #ifndef HAVE_MULTIDRIVE
520 bool sd_present(IF_MD_NONVOID(int drive
))
522 #ifndef HAVE_MULTIDRIVE
531 return card_detect_target();
536 static int sd_wait_for_state(const int drive
, unsigned int state
)
538 unsigned long response
= 0;
539 unsigned int timeout
= 100; /* ticks */
540 long t
= current_tick
;
546 if(!send_cmd(drive
, SD_SEND_STATUS
, card_info
[drive
].rca
,
547 MCI_RESP
|MCI_ARG
, &response
))
550 if (((response
>> 9) & 0xf) == state
)
553 if(TIME_AFTER(current_tick
, t
+ timeout
))
556 if (TIME_AFTER((tick
= current_tick
), next_yield
))
559 timeout
+= current_tick
- tick
;
560 next_yield
= tick
+ MIN_YIELD_PERIOD
;
565 static int sd_select_bank(signed char bank
)
571 if(loops
++ > PL180_MAX_TRANSFER_ERRORS
)
572 panicf("SD bank %d error : 0x%x", bank
,
573 transfer_error
[INTERNAL_AS3525
]);
575 ret
= sd_wait_for_state(INTERNAL_AS3525
, SD_TRAN
);
579 if(!send_cmd(INTERNAL_AS3525
, SD_SWITCH_FUNC
, 0x80ffffef, MCI_ARG
, NULL
))
584 if(!send_cmd(INTERNAL_AS3525
, 35, 0, MCI_NO_FLAGS
, NULL
))
589 memset(uncached_buffer
, 0, 512);
591 { /* enable bank switching */
592 uncached_buffer
[0] = 16;
593 uncached_buffer
[1] = 1;
594 uncached_buffer
[2] = 10;
597 uncached_buffer
[0] = bank
;
600 /* we don't use the uncached buffer here, because we need the
601 * physical memory address for DMA transfers */
602 dma_enable_channel(0, aligned_buffer
, MCI_FIFO(INTERNAL_AS3525
),
603 DMA_PERI_SD
, DMAC_FLOWCTRL_PERI_MEM_TO_PERI
, true, false, 0, DMA_S8
,
606 MCI_DATA_TIMER(INTERNAL_AS3525
) = SD_MAX_WRITE_TIMEOUT
;
607 MCI_DATA_LENGTH(INTERNAL_AS3525
) = 512;
608 MCI_DATA_CTRL(INTERNAL_AS3525
) = (1<<0) /* enable */ |
609 (0<<1) /* transfer direction */ |
611 (9<<4) /* 2^9 = 512 */ ;
613 wakeup_wait(&transfer_completion_signal
, TIMEOUT_BLOCK
);
619 ret
= sd_wait_for_state(INTERNAL_AS3525
, SD_TRAN
);
622 } while(transfer_error
[INTERNAL_AS3525
]);
624 card_info
[INTERNAL_AS3525
].current_bank
= (bank
== -1) ? 0 : bank
;
629 static int sd_transfer_sectors(IF_MD2(int drive
,) unsigned long start
,
630 int count
, void* buf
, const bool write
)
632 #ifndef HAVE_MULTIDRIVE
638 /* skip SanDisk OF */
639 if (drive
== INTERNAL_AS3525
)
640 start
+= AMS_OF_SIZE
;
648 if (card_info
[drive
].initialized
<= 0)
650 ret
= sd_init_card(drive
);
651 if (!(card_info
[drive
].initialized
))
652 goto sd_transfer_error
;
655 last_disk_activity
= current_tick
;
657 ret
= sd_wait_for_state(drive
, SD_TRAN
);
661 goto sd_transfer_error
;
668 /* 128 * 512 = 2^16, and doesn't fit in the 16 bits of DATA_LENGTH
669 * register, so we have to transfer maximum 127 sectors at a time. */
670 unsigned int transfer
= (count
>= 128) ? 127 : count
; /* sectors */
673 write
? SD_WRITE_MULTIPLE_BLOCK
: SD_READ_MULTIPLE_BLOCK
;
674 unsigned long bank_start
= start
;
676 /* Only switch banks for internal storage */
677 if(drive
== INTERNAL_AS3525
)
679 unsigned int bank
= start
/ BLOCKS_PER_BANK
; /* Current bank */
681 /* Switch bank if needed */
682 if(card_info
[INTERNAL_AS3525
].current_bank
!= bank
)
684 ret
= sd_select_bank(bank
);
688 goto sd_transfer_error
;
692 /* Adjust start block in current bank */
693 bank_start
-= bank
* BLOCKS_PER_BANK
;
695 /* Do not cross a bank boundary in a single transfer loop */
696 if((transfer
+ bank_start
) > BLOCKS_PER_BANK
)
697 transfer
= BLOCKS_PER_BANK
- bank_start
;
700 dma_buf
= aligned_buffer
;
701 if(transfer
> UNALIGNED_NUM_SECTORS
)
702 transfer
= UNALIGNED_NUM_SECTORS
;
704 memcpy(uncached_buffer
, buf
, transfer
* SECTOR_SIZE
);
706 /* Set bank_start to the correct unit (blocks or bytes) */
707 if(!(card_info
[drive
].ocr
& (1<<30))) /* not SDHC */
708 bank_start
*= SD_BLOCK_SIZE
;
710 if(!send_cmd(drive
, cmd
, bank_start
, MCI_ARG
, NULL
))
713 goto sd_transfer_error
;
717 dma_enable_channel(0, dma_buf
, MCI_FIFO(drive
),
718 (drive
== INTERNAL_AS3525
) ? DMA_PERI_SD
: DMA_PERI_SD_SLOT
,
719 DMAC_FLOWCTRL_PERI_MEM_TO_PERI
, true, false, 0, DMA_S8
, NULL
);
721 dma_enable_channel(0, MCI_FIFO(drive
), dma_buf
,
722 (drive
== INTERNAL_AS3525
) ? DMA_PERI_SD
: DMA_PERI_SD_SLOT
,
723 DMAC_FLOWCTRL_PERI_PERI_TO_MEM
, false, true, 0, DMA_S8
, NULL
);
725 /* FIXME : we should check if the timeouts calculated from the card's
726 * CSD are lower, and use them if it is the case
727 * Note : the OF doesn't seem to use them anyway */
728 MCI_DATA_TIMER(drive
) = write
?
729 SD_MAX_WRITE_TIMEOUT
: SD_MAX_READ_TIMEOUT
;
730 MCI_DATA_LENGTH(drive
) = transfer
* card_info
[drive
].blocksize
;
731 MCI_DATA_CTRL(drive
) = (1<<0) /* enable */ |
732 (!write
<<1) /* transfer direction */ |
734 (9<<4) /* 2^9 = 512 */ ;
737 wakeup_wait(&transfer_completion_signal
, TIMEOUT_BLOCK
);
738 if(!transfer_error
[drive
])
741 memcpy(buf
, uncached_buffer
, transfer
* SECTOR_SIZE
);
742 buf
+= transfer
* SECTOR_SIZE
;
745 loops
= 0; /* reset errors counter */
747 else if(loops
++ > PL180_MAX_TRANSFER_ERRORS
)
748 panicf("SD transfer error : 0x%x", transfer_error
[drive
]);
750 last_disk_activity
= current_tick
;
752 if(!send_cmd(drive
, SD_STOP_TRANSMISSION
, 0, MCI_NO_FLAGS
, NULL
))
755 goto sd_transfer_error
;
758 ret
= sd_wait_for_state(drive
, SD_TRAN
);
762 goto sd_transfer_error
;
766 ret
= 0; /* success */
778 card_info
[drive
].initialized
= 0;
780 mutex_unlock(&sd_mtx
);
784 int sd_read_sectors(IF_MD2(int drive
,) unsigned long start
, int count
,
787 return sd_transfer_sectors(IF_MD2(drive
,) start
, count
, buf
, false);
790 int sd_write_sectors(IF_MD2(int drive
,) unsigned long start
, int count
,
794 #ifdef BOOTLOADER /* we don't need write support in bootloader */
795 #ifdef HAVE_MULTIDRIVE
803 return sd_transfer_sectors(IF_MD2(drive
,) start
, count
, (void*)buf
, true);
808 long sd_last_disk_activity(void)
810 return last_disk_activity
;
813 void sd_enable(bool on
)
815 /* buttonlight AMSes need a bit of special handling for the buttonlight here,
816 * due to the dual mapping of GPIOD and XPD */
817 #if defined(HAVE_BUTTON_LIGHT) && defined(HAVE_MULTIDRIVE)
818 extern int buttonlight_is_on
;
820 if (sd_enabled
== on
)
821 return; /* nothing to do */
824 CGU_PERI
|= CGU_NAF_CLOCK_ENABLE
;
825 #ifdef HAVE_MULTIDRIVE
826 CGU_PERI
|= CGU_MCI_CLOCK_ENABLE
;
827 #ifdef HAVE_BUTTON_LIGHT
829 if (buttonlight_is_on
)
830 GPIOD_DIR
&= ~(1<<7);
835 CGU_IDE
|= (1<<7) /* AHB interface enable */ |
836 (1<<6) /* interface enable */;
841 CGU_PERI
&= ~CGU_NAF_CLOCK_ENABLE
;
842 #ifdef HAVE_MULTIDRIVE
843 #ifdef HAVE_BUTTON_LIGHT
845 if (buttonlight_is_on
)
848 CGU_PERI
&= ~CGU_MCI_CLOCK_ENABLE
;
850 CGU_IDE
&= ~((1<<7)|(1<<6));
855 tCardInfo
*card_get_info_target(int card_no
)
857 return &card_info
[card_no
];
860 bool card_detect_target(void)
862 #if defined(HAVE_HOTSWAP) && \
863 (defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2))
864 return !(GPIOA_PIN(2));
871 void card_enable_monitoring_target(bool on
)
875 /* add e200v2/c200v2 here */
876 #if defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2)
883 #if defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2)
891 #endif /* BOOTLOADER */
893 #ifdef CONFIG_STORAGE_MULTI
894 int sd_num_drives(int first_drive
)
896 /* We don't care which logical drive number(s) we have been assigned */
899 #ifdef HAVE_MULTIDRIVE