123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*
- * fat_disk.c
- *
- * Copyright (c) 2022 - 2023 Thomas Buck (thomas@xythobuz.de)
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that 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.
- *
- * See <http://www.gnu.org/licenses/>.
- */
-
- #include <string.h>
- #include <stdlib.h>
- #include <stdio.h>
-
- #include "pico/stdlib.h"
- #include "ff.h"
- #include "diskio.h"
-
- #include "config.h"
- #include "log.h"
- #include "debug.h"
- #include "fat_disk.h"
-
- static uint8_t disk[DISK_BLOCK_COUNT * DISK_BLOCK_SIZE];
-
- void fat_disk_init(void) {
- BYTE work[FF_MAX_SS];
- FRESULT res = f_mkfs("", 0, work, sizeof(work));
- if (res != FR_OK) {
- debug("error: f_mkfs returned %d", res);
- return;
- }
-
- if (debug_msc_mount() != 0) {
- debug("error mounting disk");
- return;
- }
-
- // maximum length: 11 bytes
- f_setlabel("DEBUG DISK");
-
- FIL file;
- res = f_open(&file, "README.md", FA_CREATE_ALWAYS | FA_WRITE);
- if (res != FR_OK) {
- debug("error: f_open returned %d", res);
- } else {
- char readme[1024];
- size_t pos = 0;
- pos += snprintf(readme + pos, 1024 - pos, "# Volcano Remote Control Gadget\r\n");
- pos += snprintf(readme + pos, 1024 - pos, "\r\n");
- pos += snprintf(readme + pos, 1024 - pos, "Project by Thomas Buck <thomas@xythobuz.de>\r\n");
- pos += snprintf(readme + pos, 1024 - pos, "Licensed under GPLv3.\r\n");
- pos += snprintf(readme + pos, 1024 - pos, "Source at https://git.xythobuz.de/thomas/sb-py\r\n");
-
- size_t len = strlen(readme);
- UINT bw;
- res = f_write(&file, readme, len, &bw);
- if ((res != FR_OK) || (bw != len)) {
- debug("error: f_write returned %d", res);
- }
-
- res = f_close(&file);
- if (res != FR_OK) {
- debug("error: f_close returned %d", res);
- }
- }
-
- if (debug_msc_unmount() != 0) {
- debug("error unmounting disk");
- }
- }
-
- uint8_t *fat_disk_get_sector(uint32_t sector) {
- return disk + (sector * DISK_BLOCK_SIZE);
- }
-
- /*
- * FatFS ffsystem.c
- */
-
- void* ff_memalloc(UINT msize) {
- return malloc((size_t)msize);
- }
-
- void ff_memfree(void* mblock) {
- free(mblock);
- }
-
- /*
- * FatFS diskio.c
- */
-
- DSTATUS disk_status(BYTE pdrv) {
- if (pdrv != 0) {
- debug("invalid drive number %d", pdrv);
- return STA_NODISK;
- }
-
- return 0;
- }
-
- DSTATUS disk_initialize(BYTE pdrv) {
- if (pdrv != 0) {
- debug("invalid drive number %d", pdrv);
- return STA_NODISK;
- }
-
- return 0;
- }
-
- DRESULT disk_read(BYTE pdrv, BYTE *buff, LBA_t sector, UINT count) {
- if (pdrv != 0) {
- debug("invalid drive number %d", pdrv);
- return RES_PARERR;
- }
-
- if ((sector + count) > DISK_BLOCK_COUNT) {
- debug("invalid read ((%lu + %u) > %u)", sector, count, DISK_BLOCK_COUNT);
- return RES_ERROR;
- }
-
- memcpy(buff, disk + (sector * DISK_BLOCK_SIZE), count * DISK_BLOCK_SIZE);
- return RES_OK;
- }
-
- DRESULT disk_write(BYTE pdrv, const BYTE *buff, LBA_t sector, UINT count) {
- if (pdrv != 0) {
- debug("invalid drive number %d", pdrv);
- return RES_PARERR;
- }
-
- if ((sector + count) > DISK_BLOCK_COUNT) {
- debug("invalid read ((%lu + %u) > %u)", sector, count, DISK_BLOCK_COUNT);
- return RES_ERROR;
- }
-
- memcpy(disk + (sector * DISK_BLOCK_SIZE), buff, count * DISK_BLOCK_SIZE);
- return RES_OK;
- }
-
- DRESULT disk_ioctl(BYTE pdrv, BYTE cmd, void *buff) {
- if (pdrv != 0) {
- debug("invalid drive number %d", pdrv);
- return RES_PARERR;
- }
-
- switch (cmd) {
- case GET_SECTOR_COUNT:
- *((LBA_t *)buff) = DISK_BLOCK_COUNT;
- break;
-
- case GET_SECTOR_SIZE:
- *((WORD *)buff) = DISK_BLOCK_SIZE;
- break;
-
- case GET_BLOCK_SIZE:
- *((DWORD *)buff) = 1; // non flash memory media
- break;
- }
-
- return RES_OK;
- }
|