2019-03-05 00:05:42 +01:00
|
|
|
/*
|
2020-04-16 01:04:07 +02:00
|
|
|
* Copyright (c) 2019-2020 shchmue
|
2019-03-05 00:05:42 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
/* 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>
|
2019-12-09 03:17:46 +01:00
|
|
|
|
2020-06-26 22:17:06 +02:00
|
|
|
#include <libs/fatfs/diskio.h> /* FatFs lower layer API */
|
|
|
|
#include <memory_map.h>
|
|
|
|
#include <storage/nx_sd.h>
|
|
|
|
#include "../../storage/nx_emmc_bis.h"
|
|
|
|
#include <storage/sdmmc.h>
|
2019-03-05 00:05:42 +01:00
|
|
|
|
2020-06-26 22:17:06 +02:00
|
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
/* Get Drive Status */
|
|
|
|
/*-----------------------------------------------------------------------*/
|
2019-03-05 00:05:42 +01:00
|
|
|
DSTATUS disk_status (
|
2020-06-26 22:49:42 +02:00
|
|
|
BYTE pdrv /* Physical drive number to identify the drive */
|
2019-03-05 00:05:42 +01:00
|
|
|
)
|
|
|
|
{
|
2020-06-26 22:49:42 +02:00
|
|
|
return 0;
|
2019-03-05 00:05:42 +01:00
|
|
|
}
|
|
|
|
|
2020-06-26 22:17:06 +02:00
|
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
/* Inidialize a Drive */
|
|
|
|
/*-----------------------------------------------------------------------*/
|
2019-03-05 00:05:42 +01:00
|
|
|
DSTATUS disk_initialize (
|
2020-06-26 22:49:42 +02:00
|
|
|
BYTE pdrv /* Physical drive number to identify the drive */
|
2019-03-05 00:05:42 +01:00
|
|
|
)
|
|
|
|
{
|
2020-06-26 22:49:42 +02:00
|
|
|
return 0;
|
2019-03-05 00:05:42 +01:00
|
|
|
}
|
|
|
|
|
2020-06-26 22:17:06 +02:00
|
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
/* Read Sector(s) */
|
|
|
|
/*-----------------------------------------------------------------------*/
|
2019-03-05 00:05:42 +01:00
|
|
|
DRESULT disk_read (
|
2020-06-26 22:49:42 +02:00
|
|
|
BYTE pdrv, /* Physical drive number 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-03-05 00:05:42 +01:00
|
|
|
)
|
|
|
|
{
|
2020-06-26 22:49:42 +02:00
|
|
|
switch (pdrv)
|
|
|
|
{
|
|
|
|
case DRIVE_SD:
|
|
|
|
return sdmmc_storage_read(&sd_storage, sector, count, buff) ? RES_OK : RES_ERROR;
|
2019-03-05 00:05:42 +01:00
|
|
|
|
2020-06-26 22:49:42 +02:00
|
|
|
case DRIVE_BIS:
|
|
|
|
return nx_emmc_bis_read(sector, count, buff);
|
|
|
|
}
|
2020-06-25 23:11:40 +02:00
|
|
|
|
2020-06-26 22:49:42 +02:00
|
|
|
return RES_ERROR;
|
2019-03-05 00:05:42 +01:00
|
|
|
}
|
|
|
|
|
2020-06-26 22:17:06 +02:00
|
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
/* Write Sector(s) */
|
|
|
|
/*-----------------------------------------------------------------------*/
|
2019-03-05 00:05:42 +01:00
|
|
|
DRESULT disk_write (
|
2020-06-26 22:49:42 +02:00
|
|
|
BYTE pdrv, /* Physical drive number 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-03-05 00:05:42 +01:00
|
|
|
)
|
|
|
|
{
|
2020-06-26 22:49:42 +02:00
|
|
|
switch (pdrv)
|
|
|
|
{
|
|
|
|
case DRIVE_SD:
|
|
|
|
return sdmmc_storage_write(&sd_storage, sector, count, (void *)buff) ? RES_OK : RES_ERROR;
|
2020-06-25 23:11:40 +02:00
|
|
|
|
2020-06-26 22:49:42 +02:00
|
|
|
case DRIVE_BIS:
|
2020-07-02 22:10:44 +02:00
|
|
|
return nx_emmc_bis_write(sector, count, buff);
|
2020-06-26 22:49:42 +02:00
|
|
|
}
|
2019-09-25 20:18:08 +02:00
|
|
|
|
2020-06-26 22:49:42 +02:00
|
|
|
return RES_ERROR;
|
2019-03-05 00:05:42 +01:00
|
|
|
}
|
|
|
|
|
2020-06-26 22:17:06 +02:00
|
|
|
/*-----------------------------------------------------------------------*/
|
|
|
|
/* Miscellaneous Functions */
|
|
|
|
/*-----------------------------------------------------------------------*/
|
2019-03-05 00:05:42 +01:00
|
|
|
DRESULT disk_ioctl (
|
2020-06-26 22:49:42 +02:00
|
|
|
BYTE pdrv, /* Physical drive number (0..) */
|
|
|
|
BYTE cmd, /* Control code */
|
|
|
|
void *buff /* Buffer to send/receive control data */
|
2019-03-05 00:05:42 +01:00
|
|
|
)
|
|
|
|
{
|
2020-06-26 22:49:42 +02:00
|
|
|
return RES_OK;
|
2019-03-05 00:05:42 +01:00
|
|
|
}
|