1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2004 by Jens Arnold
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
25 #include "ata_idle_notify.h"
39 #include "disk.h" /* for mount/unmount */
42 #define BLOCK_SIZE 512 /* fixed */
44 /* Command definitions */
45 #define CMD_GO_IDLE_STATE 0x40 /* R1 */
46 #define CMD_SEND_OP_COND 0x41 /* R1 */
47 #define CMD_SEND_CSD 0x49 /* R1 */
48 #define CMD_SEND_CID 0x4a /* R1 */
49 #define CMD_STOP_TRANSMISSION 0x4c /* R1 */
50 #define CMD_SEND_STATUS 0x4d /* R2 */
51 #define CMD_SET_BLOCKLEN 0x50 /* R1 */
52 #define CMD_READ_SINGLE_BLOCK 0x51 /* R1 */
53 #define CMD_READ_MULTIPLE_BLOCK 0x52 /* R1 */
54 #define CMD_WRITE_BLOCK 0x58 /* R1b */
55 #define CMD_WRITE_MULTIPLE_BLOCK 0x59 /* R1b */
56 #define CMD_READ_OCR 0x7a /* R3 */
59 R1 = single byte, msb=0, various error flags
60 R1b = R1 + busy token(s)
61 R2 = 2 bytes (1st byte identical to R1), additional flags
62 R3 = 5 bytes (R1 + OCR register)
65 #define R1_PARAMETER_ERR 0x40
66 #define R1_ADDRESS_ERR 0x20
67 #define R1_ERASE_SEQ_ERR 0x10
68 #define R1_COM_CRC_ERR 0x08
69 #define R1_ILLEGAL_CMD 0x04
70 #define R1_ERASE_RESET 0x02
71 #define R1_IN_IDLE_STATE 0x01
73 #define R2_OUT_OF_RANGE 0x80
74 #define R2_ERASE_PARAM 0x40
75 #define R2_WP_VIOLATION 0x20
76 #define R2_CARD_ECC_FAIL 0x10
77 #define R2_CC_ERROR 0x08
79 #define R2_ERASE_SKIP 0x02
80 #define R2_CARD_LOCKED 0x01
82 /* Data start tokens */
84 #define DT_START_BLOCK 0xfe
85 #define DT_START_WRITE_MULTIPLE 0xfc
86 #define DT_STOP_TRAN 0xfd
88 /* for compatibility */
89 static long last_disk_activity
= -1;
91 /* private variables */
93 static struct mutex mmc_mutex
;
96 static bool mmc_monitor_enabled
= true;
97 static long mmc_stack
[((DEFAULT_STACK_SIZE
*2) + 0x800)/sizeof(long)];
99 static long mmc_stack
[(DEFAULT_STACK_SIZE
*2)/sizeof(long)];
101 static const char mmc_thread_name
[] = "mmc";
102 static struct event_queue mmc_queue
;
103 static bool initialized
= false;
104 static bool new_mmc_circuit
;
110 } mmc_status
= MMC_UNKNOWN
;
118 static const unsigned char dummy
[] = {
119 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
122 /* 2 buffers used alternatively for writing, including start token,
123 * dummy CRC and an extra byte to keep word alignment. */
124 static unsigned char write_buffer
[2][BLOCK_SIZE
+4];
125 static int current_buffer
= 0;
126 static const unsigned char *send_block_addr
= NULL
;
128 static tCardInfo card_info
[2];
129 #ifndef HAVE_MULTIDRIVE
130 static int current_card
= 0;
132 static bool last_mmc_status
= false;
133 static int countdown
= HZ
/3; /* for mmc switch debouncing */
134 static bool usb_activity
; /* monitoring the USB bridge */
135 static long last_usb_activity
;
137 /* private function declarations */
139 static int select_card(int card_no
);
140 static void deselect_card(void);
141 static void setup_sci1(int bitrate_register
);
142 static void set_sci1_poll_read(void);
143 static void write_transfer(const unsigned char *buf
, int len
)
144 __attribute__ ((section(".icode")));
145 static void read_transfer(unsigned char *buf
, int len
)
146 __attribute__ ((section(".icode")));
147 static unsigned char poll_byte(long timeout
);
148 static unsigned char poll_busy(long timeout
);
149 static unsigned char send_cmd(int cmd
, unsigned long parameter
, void *data
);
150 static int receive_cxd(unsigned char *buf
);
151 static int initialize_card(int card_no
);
152 static int receive_block(unsigned char *inbuf
, long timeout
);
153 static void send_block_prepare(void);
154 static int send_block_send(unsigned char start_token
, long timeout
,
156 static void mmc_tick(void);
160 void mmc_enable_int_flash_clock(bool on
)
162 /* Internal flash clock is enabled by setting PA12 high with the new
163 * clock circuit, and by setting it low with the old clock circuit */
164 if (on
^ new_mmc_circuit
)
165 and_b(~0x10, &PADRH
); /* clear clock gate PA12 */
167 or_b(0x10, &PADRH
); /* set clock gate PA12 */
170 static int select_card(int card_no
)
172 mutex_lock(&mmc_mutex
);
174 last_disk_activity
= current_tick
;
176 mmc_enable_int_flash_clock(card_no
== 0);
178 if (!card_info
[card_no
].initialized
)
180 setup_sci1(7); /* Initial rate: 375 kbps (need <= 400 per mmc specs) */
181 write_transfer(dummy
, 10); /* allow the card to synchronize */
182 while (!(SSR1
& SCI_TEND
));
185 if (card_no
== 0) /* internal */
186 and_b(~0x04, &PADRH
); /* assert CS */
188 and_b(~0x02, &PADRH
); /* assert CS */
190 if (card_info
[card_no
].initialized
)
192 setup_sci1(card_info
[card_no
].bitrate_register
);
197 return initialize_card(card_no
);
201 static void deselect_card(void)
203 while (!(SSR1
& SCI_TEND
)); /* wait for end of transfer */
204 or_b(0x06, &PADRH
); /* deassert CS (both cards) */
207 mutex_unlock(&mmc_mutex
);
208 last_disk_activity
= current_tick
;
211 static void setup_sci1(int bitrate_register
)
213 while (!(SSR1
& SCI_TEND
)); /* wait for end of transfer */
215 SCR1
= 0; /* disable serial port */
216 SMR1
= SYNC_MODE
; /* no prescale */
217 BRR1
= bitrate_register
;
220 SCR1
= SCI_TE
; /* enable transmitter */
221 serial_mode
= SER_POLL_WRITE
;
224 static void set_sci1_poll_read(void)
226 while (!(SSR1
& SCI_TEND
)); /* wait for end of transfer */
227 SCR1
= 0; /* disable transmitter (& receiver) */
228 SCR1
= (SCI_TE
|SCI_RE
); /* re-enable transmitter & receiver */
229 while (!(SSR1
& SCI_TEND
)); /* wait for SCI init completion (!) */
230 serial_mode
= SER_POLL_READ
;
231 TDR1
= 0xFF; /* send do-nothing while reading */
234 static void write_transfer(const unsigned char *buf
, int len
)
236 const unsigned char *buf_end
= buf
+ len
;
237 register unsigned char data
;
239 if (serial_mode
!= SER_POLL_WRITE
)
241 while (!(SSR1
& SCI_TEND
)); /* wait for end of transfer */
242 SCR1
= 0; /* disable transmitter & receiver */
243 SSR1
= 0; /* clear all flags */
244 SCR1
= SCI_TE
; /* enable transmitter only */
245 serial_mode
= SER_POLL_WRITE
;
248 while (buf
< buf_end
)
250 data
= fliptable
[(signed char)(*buf
++)]; /* bitswap */
251 while (!(SSR1
& SCI_TDRE
)); /* wait for end of transfer */
252 TDR1
= data
; /* write byte */
253 SSR1
= 0; /* start transmitting */
257 /* don't call this with len == 0 */
258 static void read_transfer(unsigned char *buf
, int len
)
260 unsigned char *buf_end
= buf
+ len
- 1;
261 register signed char data
;
263 if (serial_mode
!= SER_POLL_READ
)
264 set_sci1_poll_read();
266 SSR1
= 0; /* start receiving first byte */
267 while (buf
< buf_end
)
269 while (!(SSR1
& SCI_RDRF
)); /* wait for data */
270 data
= RDR1
; /* read byte */
271 SSR1
= 0; /* start receiving */
272 *buf
++ = fliptable
[data
]; /* bitswap */
274 while (!(SSR1
& SCI_RDRF
)); /* wait for last byte */
275 *buf
= fliptable
[(signed char)(RDR1
)]; /* read & bitswap */
278 /* returns 0xFF on timeout, timeout is in bytes */
279 static unsigned char poll_byte(long timeout
)
282 unsigned char data
= 0; /* stop the compiler complaining */
284 if (serial_mode
!= SER_POLL_READ
)
285 set_sci1_poll_read();
289 SSR1
= 0; /* start receiving */
290 while (!(SSR1
& SCI_RDRF
)); /* wait for data */
291 data
= RDR1
; /* read byte */
292 } while ((data
== 0xFF) && (++i
< timeout
));
294 return fliptable
[(signed char)data
];
297 /* returns 0 on timeout, timeout is in bytes */
298 static unsigned char poll_busy(long timeout
)
301 unsigned char data
, dummy
;
303 if (serial_mode
!= SER_POLL_READ
)
304 set_sci1_poll_read();
306 /* get data response */
307 SSR1
= 0; /* start receiving */
308 while (!(SSR1
& SCI_RDRF
)); /* wait for data */
309 data
= fliptable
[(signed char)(RDR1
)]; /* read byte */
311 /* wait until the card is ready again */
314 SSR1
= 0; /* start receiving */
315 while (!(SSR1
& SCI_RDRF
)); /* wait for data */
316 dummy
= RDR1
; /* read byte */
317 } while ((dummy
!= 0xFF) && (++i
< timeout
));
319 return (dummy
== 0xFF) ? data
: 0;
322 /* Send MMC command and get response. Returns R1 byte directly.
323 * Returns further R2 or R3 bytes in *data (can be NULL for other commands) */
324 static unsigned char send_cmd(int cmd
, unsigned long parameter
, void *data
)
328 unsigned long parameter
;
329 const unsigned char crc7
; /* fixed, valid for CMD0 only */
330 const unsigned char trailer
;
331 } __attribute__((packed
)) command
= {0x40, 0, 0x95, 0xFF};
336 command
.parameter
= htobe32(parameter
);
338 write_transfer((unsigned char *)&command
, sizeof(command
));
344 case CMD_SEND_CSD
: /* R1 response, leave open */
346 case CMD_READ_SINGLE_BLOCK
:
347 case CMD_READ_MULTIPLE_BLOCK
:
350 case CMD_SEND_STATUS
: /* R2 response, close with dummy */
351 read_transfer(data
, 1);
354 case CMD_READ_OCR
: /* R3 response, close with dummy */
355 read_transfer(data
, 4);
358 default: /* R1 response, close with dummy */
359 break; /* also catches block writes */
361 write_transfer(dummy
, 1);
365 /* Receive CID/ CSD data (16 bytes) */
366 static int receive_cxd(unsigned char *buf
)
368 if (poll_byte(20) != DT_START_BLOCK
)
370 write_transfer(dummy
, 1);
371 return -1; /* not start of data */
374 read_transfer(buf
, 16);
375 write_transfer(dummy
, 3); /* 2 bytes dontcare crc + 1 byte trailer */
380 static int initialize_card(int card_no
)
383 int blk_exp
, ts_exp
, taac_exp
;
384 tCardInfo
*card
= &card_info
[card_no
];
386 static const char mantissa
[] = { /* *10 */
387 0, 10, 12, 13, 15, 20, 25, 30,
388 35, 40, 45, 50, 55, 60, 70, 80
390 static const int exponent
[] = { /* use varies */
391 1, 10, 100, 1000, 10000, 100000, 1000000,
392 10000000, 100000000, 1000000000
396 mmc_status
= MMC_TOUCHED
;
398 /* switch to SPI mode */
399 if (send_cmd(CMD_GO_IDLE_STATE
, 0, NULL
) != 0x01)
400 return -1; /* error or no response */
402 /* initialize card */
403 for (i
= HZ
;;) /* try for 1 second*/
406 if (send_cmd(CMD_SEND_OP_COND
, 0, NULL
) == 0)
409 return -2; /* timeout */
412 /* get OCR register */
413 if (send_cmd(CMD_READ_OCR
, 0, &card
->ocr
))
415 card
->ocr
= betoh32(card
->ocr
); /* no-op on big endian */
418 if (!(card
->ocr
& 0x00100000)) /* 3.2 .. 3.3 V */
421 /* get CSD register */
422 if (send_cmd(CMD_SEND_CSD
, 0, NULL
))
424 rc
= receive_cxd((unsigned char*)card
->csd
);
428 blk_exp
= card_extract_bits(card
->csd
, 83, 4);
429 if (blk_exp
< 9) /* block size < 512 bytes not supported */
432 card
->numblocks
= (card_extract_bits(card
->csd
, 73, 12) + 1)
433 << (card_extract_bits(card
->csd
, 49, 3) + 2 + blk_exp
- 9);
434 card
->blocksize
= BLOCK_SIZE
;
436 /* max transmission speed, clock divider */
437 ts_exp
= card_extract_bits(card
->csd
, 98, 3);
438 ts_exp
= (ts_exp
> 3) ? 3 : ts_exp
;
439 card
->speed
= mantissa
[card_extract_bits(card
->csd
, 102, 4)]
440 * exponent
[ts_exp
+ 4];
441 card
->bitrate_register
= (FREQ
/4-1) / card
->speed
;
443 /* NSAC, TAAC, read timeout */
444 card
->nsac
= 100 * card_extract_bits(card
->csd
, 111, 8);
445 card
->taac
= mantissa
[card_extract_bits(card
->csd
, 118, 4)];
446 taac_exp
= card_extract_bits(card
->csd
, 114, 3);
447 card
->read_timeout
= ((FREQ
/4) / (card
->bitrate_register
+ 1)
448 * card
->taac
/ exponent
[9 - taac_exp
]
449 + (10 * card
->nsac
));
450 card
->read_timeout
/= 8; /* clocks -> bytes */
451 card
->taac
= card
->taac
* exponent
[taac_exp
] / 10;
453 /* r2w_factor, write timeout */
454 card
->r2w_factor
= BIT_N(card_extract_bits(card
->csd
, 28, 3));
455 card
->write_timeout
= card
->read_timeout
* card
->r2w_factor
;
457 if (card
->r2w_factor
> 32) /* Such cards often need extra read delay */
458 card
->read_timeout
*= 4;
460 /* switch to full speed */
461 setup_sci1(card
->bitrate_register
);
463 /* always use 512 byte blocks */
464 if (send_cmd(CMD_SET_BLOCKLEN
, BLOCK_SIZE
, NULL
))
467 /* get CID register */
468 if (send_cmd(CMD_SEND_CID
, 0, NULL
))
470 rc
= receive_cxd((unsigned char*)card
->cid
);
474 card
->initialized
= true;
478 tCardInfo
*mmc_card_info(int card_no
)
480 tCardInfo
*card
= &card_info
[card_no
];
482 if (!card
->initialized
&& ((card_no
== 0) || mmc_detect()))
484 select_card(card_no
);
490 /* Receive one block with DMA and bitswap it (chasing bitswap). */
491 static int receive_block(unsigned char *inbuf
, long timeout
)
493 unsigned long buf_end
;
495 if (poll_byte(timeout
) != DT_START_BLOCK
)
497 write_transfer(dummy
, 1);
498 return -1; /* not start of data */
501 while (!(SSR1
& SCI_TEND
)); /* wait for end of transfer */
503 SCR1
= 0; /* disable serial */
504 SSR1
= 0; /* clear all flags */
506 /* setup DMA channel 0 */
507 CHCR0
= 0; /* disable */
509 DAR0
= (unsigned long) inbuf
;
511 CHCR0
= 0x4601; /* fixed source address, RXI1, enable */
513 SCR1
= (SCI_RE
|SCI_RIE
); /* kick off DMA */
515 /* DMA receives 2 bytes more than DTCR2, but the last 2 bytes are not
516 * stored. The first extra byte is available from RDR1 after the DMA ends,
517 * the second one is lost because of the SCI overrun. However, this
518 * behaviour conveniently discards the crc. */
520 yield(); /* be nice */
522 /* Bitswap received data, chasing the DMA pointer */
523 buf_end
= (unsigned long)inbuf
+ BLOCK_SIZE
;
526 /* Call bitswap whenever (a multiple of) 8 bytes are
527 * available (value optimised by experimentation). */
528 int swap_now
= (DAR0
- (unsigned long)inbuf
) & ~0x00000007;
531 bitswap(inbuf
, swap_now
);
535 while ((unsigned long)inbuf
< buf_end
);
537 while (!(CHCR0
& 0x0002)); /* wait for end of DMA */
538 while (!(SSR1
& SCI_ORER
)); /* wait for the trailing bytes */
540 serial_mode
= SER_DISABLED
;
542 write_transfer(dummy
, 1); /* send trailer */
543 last_disk_activity
= current_tick
;
547 /* Prepare a block for sending by copying it to the next write buffer
548 * and bitswapping it. */
549 static void send_block_prepare(void)
553 current_buffer
^= 1; /* toggle buffer */
554 dest
= write_buffer
[current_buffer
] + 2;
556 memcpy(dest
, send_block_addr
, BLOCK_SIZE
);
557 bitswap(dest
, BLOCK_SIZE
);
559 send_block_addr
+= BLOCK_SIZE
;
562 /* Send one block with DMA from the current write buffer, possibly preparing
563 * the next block within the next write buffer in the background. */
564 static int send_block_send(unsigned char start_token
, long timeout
,
568 unsigned char *curbuf
= write_buffer
[current_buffer
];
570 curbuf
[1] = fliptable
[(signed char)start_token
];
571 *(unsigned short *)(curbuf
+ BLOCK_SIZE
+ 2) = 0xFFFF;
573 while (!(SSR1
& SCI_TEND
)); /* wait for end of transfer */
575 SCR1
= 0; /* disable serial */
576 SSR1
= 0; /* clear all flags */
578 /* setup DMA channel 0 */
579 CHCR0
= 0; /* disable */
580 SAR0
= (unsigned long)(curbuf
+ 1);
582 DTCR0
= BLOCK_SIZE
+ 3; /* start token + block + dummy crc */
583 CHCR0
= 0x1701; /* fixed dest. address, TXI1, enable */
585 SCR1
= (SCI_TE
|SCI_TIE
); /* kick off DMA */
588 send_block_prepare();
589 yield(); /* be nice */
591 while (!(CHCR0
& 0x0002)); /* wait for end of DMA */
592 while (!(SSR1
& SCI_TEND
)); /* wait for end of transfer */
594 serial_mode
= SER_DISABLED
;
596 if ((poll_busy(timeout
) & 0x1F) != 0x05) /* something went wrong */
599 write_transfer(dummy
, 1);
600 last_disk_activity
= current_tick
;
605 int mmc_read_sectors(IF_MD2(int drive
,)
612 unsigned long end_block
;
614 #ifndef HAVE_MULTIDRIVE
615 int drive
= current_card
;
618 card
= &card_info
[drive
];
619 rc
= select_card(drive
);
626 end_block
= start
+ incount
;
627 if (end_block
> card
->numblocks
)
633 /* Some cards don't like reading the very last block with
634 * CMD_READ_MULTIPLE_BLOCK, so make sure this block is always
635 * read with CMD_READ_SINGLE_BLOCK. */
636 if (end_block
== card
->numblocks
)
641 /* MMC4.2: make multiplication conditional */
642 if (send_cmd(CMD_READ_MULTIPLE_BLOCK
, start
* BLOCK_SIZE
, NULL
))
647 while (--incount
>= lastblock
)
649 rc
= receive_block(inbuf
, card
->read_timeout
);
652 /* If an error occurs during multiple block reading, the
653 * host still needs to send CMD_STOP_TRANSMISSION */
654 send_cmd(CMD_STOP_TRANSMISSION
, 0, NULL
);
660 /* ^^ necessary for the abovementioned last block special case */
662 if (send_cmd(CMD_STOP_TRANSMISSION
, 0, NULL
))
670 /* MMC4.2: make multiplication conditional */
671 if (send_cmd(CMD_READ_SINGLE_BLOCK
, start
* BLOCK_SIZE
, NULL
))
676 rc
= receive_block(inbuf
, card
->read_timeout
);
691 int mmc_write_sectors(IF_MD2(int drive
,)
698 unsigned char start_token
;
700 #ifndef HAVE_MULTIDRIVE
701 int drive
= current_card
;
704 card
= &card_info
[drive
];
705 rc
= select_card(drive
);
712 if (start
+ count
> card
->numblocks
)
713 panicf("Writing past end of card");
715 send_block_addr
= buf
;
716 send_block_prepare();
720 write_cmd
= CMD_WRITE_MULTIPLE_BLOCK
;
721 start_token
= DT_START_WRITE_MULTIPLE
;
725 write_cmd
= CMD_WRITE_BLOCK
;
726 start_token
= DT_START_BLOCK
;
728 /* MMC4.2: make multiplication conditional */
729 if (send_cmd(write_cmd
, start
* BLOCK_SIZE
, NULL
))
736 rc
= send_block_send(start_token
, card
->write_timeout
, count
> 0);
741 /* If an error occurs during multiple block writing,
742 * the STOP_TRAN token still needs to be sent. */
745 if (write_cmd
== CMD_WRITE_MULTIPLE_BLOCK
)
747 static const unsigned char stop_tran
= DT_STOP_TRAN
;
748 write_transfer(&stop_tran
, 1);
749 poll_busy(card
->write_timeout
);
759 bool mmc_disk_is_active(void)
761 /* this is correct unless early return from write gets implemented */
762 return mmc_mutex
.locked
;
765 static void mmc_thread(void)
767 struct queue_event ev
;
768 bool idle_notified
= false;
771 queue_wait_w_tmo(&mmc_queue
, &ev
, HZ
);
774 case SYS_USB_CONNECTED
:
775 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
776 /* Wait until the USB cable is extracted again */
777 usb_wait_for_disconnect(&mmc_queue
);
781 case SYS_HOTSWAP_INSERTED
:
782 disk_mount(1); /* mount MMC */
783 queue_broadcast(SYS_FS_CHANGED
, 0);
786 case SYS_HOTSWAP_EXTRACTED
:
787 disk_unmount(1); /* release "by force" */
788 queue_broadcast(SYS_FS_CHANGED
, 0);
793 if (TIME_BEFORE(current_tick
, last_disk_activity
+(3*HZ
)))
795 idle_notified
= false;
801 call_storage_idle_notifys(false);
802 idle_notified
= true;
811 void mmc_enable_monitoring(bool on
)
813 mmc_monitor_enabled
= on
;
817 bool mmc_detect(void)
819 return (adc_read(ADC_MMC_SWITCH
) < 0x200);
822 bool mmc_touched(void)
824 if (mmc_status
== MMC_UNKNOWN
) /* try to detect */
826 mutex_lock(&mmc_mutex
);
827 setup_sci1(7); /* safe value */
828 and_b(~0x02, &PADRH
); /* assert CS */
829 if (send_cmd(CMD_SEND_OP_COND
, 0, NULL
) == 0xFF)
830 mmc_status
= MMC_UNTOUCHED
;
832 mmc_status
= MMC_TOUCHED
;
836 return mmc_status
== MMC_TOUCHED
;
839 bool mmc_usb_active(int delayticks
)
841 /* reading "inactive" is delayed by user-supplied monoflop value */
842 return (usb_activity
||
843 TIME_BEFORE(current_tick
, last_usb_activity
+ delayticks
));
846 static void mmc_tick(void)
850 const bool mmc_monitor_enabled
= true;
854 /* USB bridge activity is 0 on idle, ~527 on active */
855 current_status
= adc_read(ADC_USB_ACTIVE
) > 0x100;
857 current_status
= adc_read(ADC_USB_ACTIVE
) < 0x190;
859 if (!current_status
&& usb_activity
)
860 last_usb_activity
= current_tick
;
861 usb_activity
= current_status
;
863 if (mmc_monitor_enabled
)
865 current_status
= mmc_detect();
866 /* Only report when the status has changed */
867 if (current_status
!= last_mmc_status
)
869 last_mmc_status
= current_status
;
874 /* Count down until it gets negative */
882 queue_broadcast(SYS_HOTSWAP_INSERTED
, 0);
886 queue_broadcast(SYS_HOTSWAP_EXTRACTED
, 0);
887 mmc_status
= MMC_UNTOUCHED
;
888 card_info
[1].initialized
= false;
895 void mmc_enable(bool on
)
897 PBCR1
&= ~0x0CF0; /* PB13, PB11 and PB10 become GPIO,
898 * if not modified below */
900 PBCR1
|= 0x08A0; /* as SCK1, TxD1, RxD1 */
902 and_b(~0x80, &PADRL
); /* assert flash reset */
904 or_b(0x80, &PADRL
); /* de-assert flash reset */
906 card_info
[0].initialized
= false;
907 card_info
[1].initialized
= false;
916 mutex_init(&mmc_mutex
);
917 queue_init(&mmc_queue
, true);
919 mutex_lock(&mmc_mutex
);
922 last_mmc_status
= mmc_detect();
923 #ifndef HAVE_MULTIDRIVE
924 /* Use MMC if inserted, internal flash otherwise */
925 current_card
= last_mmc_status
? 1 : 0;
930 if (!last_mmc_status
)
931 mmc_status
= MMC_UNTOUCHED
;
934 PACR1
&= ~0x0F3C; /* GPIO function for PA13 (flash busy), PA12
935 * (clk gate), PA10 (flash CS), PA9 (MMC CS) */
936 PACR2
&= ~0x4000; /* GPIO for PA7 (flash reset) */
937 PADR
|= 0x0680; /* set all the selects + reset high (=inactive) */
938 PAIOR
|= 0x1680; /* make outputs for them and the PA12 clock gate */
940 PBCR1
&= ~0x0CF0; /* GPIO function for PB13, PB11 and PB10 */
941 PBDR
|= 0x2C00; /* SCK1, TxD1 and RxD1 high in GPIO */
942 PBIOR
|= 0x2000; /* SCK1 output */
943 PBIOR
&= ~0x0C00; /* TxD1, RxD1 input */
945 IPRE
&= 0x0FFF; /* disable SCI1 interrupts for the CPU */
947 new_mmc_circuit
= ((HW_MASK
& MMC_CLOCK_POLARITY
) != 0);
949 create_thread(mmc_thread
, mmc_stack
,
950 sizeof(mmc_stack
), 0, mmc_thread_name
951 IF_PRIO(, PRIORITY_SYSTEM
)
953 tick_add_task(mmc_tick
);
958 mutex_unlock(&mmc_mutex
);
962 long mmc_last_disk_activity(void)
964 return last_disk_activity
;
967 #ifdef STORAGE_GET_INFO
968 void mmc_get_info(IF_MD2(int drive
,) struct storage_info
*info
)
970 #ifndef HAVE_MULTIDRIVE
973 info
->sector_size
=card_info
[drive
].blocksize
;
974 info
->num_sectors
=card_info
[drive
].numblocks
;
975 info
->vendor
="Rockbox";
978 info
->product
="Internal Storage";
982 info
->product
="MMC Card Slot";
984 info
->revision
="0.00";
989 bool mmc_removable(IF_MD_NONVOID(int drive
))
991 #ifndef HAVE_MULTIDRIVE
997 bool mmc_present(IF_MD_NONVOID(int drive
))
999 #ifndef HAVE_MULTIDRIVE
1008 return mmc_detect();
1014 void mmc_sleep(void)
1022 void mmc_spindown(int seconds
)
1027 #ifdef CONFIG_STORAGE_MULTI
1028 int mmc_num_drives(int first_drive
)
1030 /* We don't care which logical drive number(s) we have been assigned */
1033 #ifdef HAVE_MULTIDRIVE