mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
as3525v1: detect correctly internal storage capacity
check if SD transfers fit with the card capacity git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26029 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e72d2daad8
commit
84b7747069
1 changed files with 25 additions and 0 deletions
|
|
@ -374,6 +374,25 @@ static int sd_init_card(const int drive)
|
||||||
const int ret = sd_select_bank(-1);
|
const int ret = sd_select_bank(-1);
|
||||||
if(ret < 0)
|
if(ret < 0)
|
||||||
return ret -16;
|
return ret -16;
|
||||||
|
|
||||||
|
/* CMD7 w/rca = 0: Select card to put it in STBY state */
|
||||||
|
if(!send_cmd(drive, SD_SELECT_CARD, 0, MCI_ARG, NULL))
|
||||||
|
return -17;
|
||||||
|
mci_delay();
|
||||||
|
|
||||||
|
/* CMD9 send CSD again, so we got the correct number of blocks */
|
||||||
|
if(!send_cmd(drive, SD_SEND_CSD, card_info[drive].rca,
|
||||||
|
MCI_RESP|MCI_LONG_RESP|MCI_ARG, card_info[drive].csd))
|
||||||
|
return -18;
|
||||||
|
|
||||||
|
sd_parse_csd(&card_info[drive]);
|
||||||
|
/* The OF is stored in the first blocks */
|
||||||
|
card_info[INTERNAL_AS3525].numblocks -= AMS_OF_SIZE;
|
||||||
|
|
||||||
|
/* CMD7 w/rca: Select card to put it in TRAN state */
|
||||||
|
if(!send_cmd(drive, SD_SELECT_CARD, card_info[drive].rca, MCI_ARG, NULL))
|
||||||
|
return -19;
|
||||||
|
mci_delay();
|
||||||
}
|
}
|
||||||
|
|
||||||
card_info[drive].initialized = 1;
|
card_info[drive].initialized = 1;
|
||||||
|
|
@ -667,6 +686,12 @@ static int sd_transfer_sectors(IF_MD2(int drive,) unsigned long start,
|
||||||
goto sd_transfer_error;
|
goto sd_transfer_error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if((start+count) > card_info[drive].numblocks)
|
||||||
|
{
|
||||||
|
ret = -20;
|
||||||
|
goto sd_transfer_error;
|
||||||
|
}
|
||||||
|
|
||||||
last_disk_activity = current_tick;
|
last_disk_activity = current_tick;
|
||||||
|
|
||||||
dma_retain();
|
dma_retain();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue