hekate/bootloader/libs/fatfs/diskio.c

92 lines
3.5 KiB
C
Raw Normal View History

2018-05-01 05:15:48 +00:00
/*-----------------------------------------------------------------------*/
/* Low level disk I/O module skeleton for FatFs (C)ChaN, 2016 */
/*-----------------------------------------------------------------------*/
/* If a working storage control module is available, it should be */
/* attached to the FatFs via a glue function rather than modifying it. */
/* This is an example of glue functions to attach various exsisting */
/* storage control modules to the FatFs module with a defined API. */
/*-----------------------------------------------------------------------*/
#include <string.h>
#include "diskio.h" /* FatFs lower layer API */
2018-08-13 08:58:24 +00:00
#include "../../storage/sdmmc.h"
2018-05-01 05:15:48 +00:00
#define SDMMC_UPPER_BUFFER 0xB8000000
#define DRAM_START 0x80000000
2018-05-01 05:15:48 +00:00
extern sdmmc_storage_t sd_storage;
2019-03-13 10:27:43 +00:00
/*-----------------------------------------------------------------------*/
/* Get Drive Status */
/*-----------------------------------------------------------------------*/
2018-05-01 05:15:48 +00:00
DSTATUS disk_status (
BYTE pdrv /* Physical drive nmuber to identify the drive */
)
{
return 0;
}
2019-03-13 10:27:43 +00:00
/*-----------------------------------------------------------------------*/
/* Inidialize a Drive */
/*-----------------------------------------------------------------------*/
2018-05-01 05:15:48 +00:00
DSTATUS disk_initialize (
BYTE pdrv /* Physical drive nmuber to identify the drive */
)
{
return 0;
}
2019-03-13 10:27:43 +00:00
/*-----------------------------------------------------------------------*/
/* Read Sector(s) */
/*-----------------------------------------------------------------------*/
2018-05-01 05:15:48 +00:00
DRESULT disk_read (
BYTE pdrv, /* Physical drive nmuber to identify the drive */
BYTE *buff, /* Data buffer to store read data */
DWORD sector, /* Start sector in LBA */
UINT count /* Number of sectors to read */
)
{
2019-12-04 17:42:25 +00:00
// Ensure that buffer resides in DRAM and it's DMA aligned.
if (((u32)buff >= DRAM_START) && !((u32)buff % 8))
2018-05-01 05:15:48 +00:00
return sdmmc_storage_read(&sd_storage, sector, count, buff) ? RES_OK : RES_ERROR;
2019-03-13 10:27:43 +00:00
u8 *buf = (u8 *)SDMMC_UPPER_BUFFER;
2018-05-01 05:15:48 +00:00
if (sdmmc_storage_read(&sd_storage, sector, count, buf))
{
memcpy(buff, buf, 512 * count);
return RES_OK;
}
return RES_ERROR;
}
2019-03-13 10:27:43 +00:00
/*-----------------------------------------------------------------------*/
/* Write Sector(s) */
/*-----------------------------------------------------------------------*/
2018-05-01 05:15:48 +00:00
DRESULT disk_write (
BYTE pdrv, /* Physical drive nmuber to identify the drive */
const BYTE *buff, /* Data to be written */
DWORD sector, /* Start sector in LBA */
UINT count /* Number of sectors to write */
)
{
2019-12-04 17:42:25 +00:00
// Ensure that buffer resides in DRAM and it's DMA aligned.
if (((u32)buff >= DRAM_START) && !((u32)buff % 8))
2018-05-01 05:15:48 +00:00
return sdmmc_storage_write(&sd_storage, sector, count, (void *)buff) ? RES_OK : RES_ERROR;
2019-12-04 17:42:25 +00:00
u8 *buf = (u8 *)SDMMC_UPPER_BUFFER;
2018-05-01 05:15:48 +00:00
memcpy(buf, buff, 512 * count);
if (sdmmc_storage_write(&sd_storage, sector, count, buf))
return RES_OK;
return RES_ERROR;
}
2019-03-13 10:27:43 +00:00
/*-----------------------------------------------------------------------*/
/* Miscellaneous Functions */
/*-----------------------------------------------------------------------*/
2018-05-01 05:15:48 +00:00
DRESULT disk_ioctl (
BYTE pdrv, /* Physical drive nmuber (0..) */
BYTE cmd, /* Control code */
void *buff /* Buffer to send/receive control data */
)
{
return RES_OK;
}