HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
diskio.c
Go to the documentation of this file.
1 /*-----------------------------------------------------------------------*/
2 /* Low level disk I/O module skeleton for FatFs (C)ChaN, 2019 */
3 /*-----------------------------------------------------------------------*/
4 /* If a working storage control module is available, it should be */
5 /* attached to the FatFs via a glue function rather than modifying it. */
6 /* This is an example of glue functions to attach various exsisting */
7 /* storage control modules to the FatFs module with a defined API. */
8 
9 /* mmc.c */
10 #include "user_config.h"
11 #include "fatfs.h"
12 
13 #include "ff.h" /* Obtains integer types for FatFs */
14 #include "diskio.h" /* FatFs lower layer API */
15 
16 #ifdef DRV_MMC
17 #include "mmc.h" /* Header file of existing SD control module */
18 #endif
19 
20 #ifdef DRV_CFC
21 #include "cfc.h" /* Header file of existing CF control module */
22 #endif
23 
24 #ifdef DRV_RAM
25 #include "ram.h" /* Header file of existing ram control module */
26 #endif
27 
28 #ifdef DRV_USB
29 #include "usb.h" /* Header file of existing CF control module */
30 #endif
31 
32 /*-----------------------------------------------------------------------*/
33 
34 #include "ff.h" /* Obtains integer types */
35 #include "diskio.h" /* Declarations of disk functions */
36 
37 /* Definitions of physical drive number for each drive */
38 #define DEV_MMC 0 /* Example: Map MMC/SD card to physical drive 1 */
39 #define DEV_CFC 1 /* Example: Map CF card to physical drive 2 */
40 #define DEV_RAM 2 /* Example: Map Ramdisk to physical drive 0 */
41 #define DEV_USB 3 /* Example: Map USB MSD to physical drive 2 */
42 
43 /*-----------------------------------------------------------------------*/
44 /* Get Drive Status */
45 /*-----------------------------------------------------------------------*/
46 
48 BYTE pdrv /* Physical drive nmuber to identify the drive */
49 )
50 {
51  switch (pdrv)
52  {
53 #ifdef DRV_MMC
54  case DEV_MMC :
55  return ( mmc_disk_status() );
56 #endif
57 #ifdef DRV_CFC
58  case DEV_CF :
59  return ( cf_disk_status() );
60 #endif
61 #ifdef DRV_RAM
62  case DEV_RAM :
63  return ( ram_disk_status() );
64 #endif
65 #ifdef DRV_USB
66  case DEV_USB :
67  return ( usb_disk_status() );
68 #endif
69  }
70  return STA_NOINIT;
71 }
72 
73 
74 /*-----------------------------------------------------------------------*/
75 /* Inidialize a Drive */
76 /*-----------------------------------------------------------------------*/
77 
79 BYTE pdrv /* Physical drive nmuber to identify the drive */
80 )
81 {
82 
83  switch (pdrv)
84  {
85 #ifdef DRV_MMC
86  case DEV_MMC :
87  return ( mmc_disk_initialize() );
88 #endif
89 #ifdef DRV_CFC
90  case DEV_CF :
91  return ( cfc_disk_initialize() );
92 #endif
93 #ifdef DRV_RAM
94  case DEV_RAM :
95  return ( ram_disk_initialize() );
96 #endif
97 #ifdef DRV_USB
98  case DEV_USB :
99  return ( usb_disk_initialize() );
100 #endif
101  }
102  return STA_NOINIT;
103 }
104 
105 
106 /*-----------------------------------------------------------------------*/
107 /* Read Sector(s) */
108 /*-----------------------------------------------------------------------*/
109 
111 BYTE pdrv, /* Physical drive nmuber to identify the drive */
112 BYTE *buff, /* Data buffer to store read data */
113 LBA_t sector, /* Start sector in LBA */
114 UINT count /* Number of sectors to read */
115 )
116 {
117  switch (pdrv)
118  {
119 #ifdef DRV_MMC
120  case DEV_MMC :
121  return ( mmc_disk_read(buff, sector, count) );
122 #endif
123 #ifdef DRV_CFC
124  case DEV_CF :
125  return ( cf_disk_read(buff, sector, count) );
126 #endif
127 #ifdef DRV_RAM
128  case DEV_RAM :
129  return ( ram_disk_read(buff, sector, count) );
130 #endif
131 #ifdef DRV_USB
132  case DEV_USB :
133  return ( usb_disk_read(buff, sector, count) );
134 #endif
135  }
136  return RES_PARERR;
137 }
138 
139 
140 /*-----------------------------------------------------------------------*/
141 /* Write Sector(s) */
142 /*-----------------------------------------------------------------------*/
143 
144 #if FF_FS_READONLY == 0
146 BYTE pdrv, /* Physical drive nmuber to identify the drive */
147 const BYTE *buff, /* Data to be written */
148 LBA_t sector, /* Start sector in LBA */
149 UINT count /* Number of sectors to write */
150 )
151 {
152  switch (pdrv)
153  {
154 #ifdef DRV_MMC
155  case DEV_MMC :
156  return ( mmc_disk_write(buff, sector, count) );
157 #endif
158 #ifdef DRV_CFC
159  case DEV_CF :
160  return ( cf_disk_write(buff, sector, count) );
161 #endif
162 #ifdef DRV_RAM
163  case DEV_RAM :
164  return ( ram_disk_write(buff, sector, count) );
165 #endif
166 #ifdef DRV_USB
167  case DEV_USB :
168  return ( usb_disk_write(buff, sector, count) );
169 #endif
170  }
171 
172  return RES_PARERR;
173 }
174 #endif
175 
176 /*-----------------------------------------------------------------------*/
177 /* Miscellaneous Functions */
178 /*-----------------------------------------------------------------------*/
179 
180 #if _USE_IOCTL
182 BYTE pdrv, /* Physical drive nmuber (0..) */
183 BYTE cmd, /* Control code */
184 void *buff /* Buffer to send/receive control data */
185 )
186 {
187  switch (pdrv)
188  {
189 #ifdef DRV_MMC
190  case DEV_MMC :
191  return ( mmc_disk_ioctl(cmd, buff) );
192 #endif
193 #ifdef DRV_CFC
194  case DEV_CFC :
195  return ( cf_disk_ioctl(cmd, buff) );
196 #endif
197 #ifdef DRV_RAM
198  case DEV_RAM :
199  return ( ram_disk_ioctl(cmd, buff) );
200 #endif
201 #ifdef DRV_USB
202  case DEV_MMC :
203  return ( usb_disk_ioctl(cmd, buff) );
204 #endif
205  }
206  return RES_PARERR;
207 }
208 #endif
209 
210 /*-----------------------------------------------------------------------*/
211 /* Timer driven procedure */
212 /*-----------------------------------------------------------------------*/
213 
214 void disk_timerproc (void)
215 {
216 #ifdef DRV_MMC
218 #endif
219 #ifdef DRV_CFC
220  cf_disk_timerproc();
221 #endif
222 #ifdef DRV_RAM
223  ram_disk_timerproc();
224 #endif
225 #ifdef DRV_USB
226  usb_disk_timerproc();
227 #endif
228 
229 }
fatfs.h
DEV_RAM
#define DEV_RAM
Definition: diskio.c:40
DSTATUS
BYTE DSTATUS
Definition: diskio.h:26
mmc_disk_initialize
MEMSPACE DSTATUS mmc_disk_initialize(void)
Public Functions.
Definition: mmc.c:334
DRESULT
DRESULT
Definition: diskio.h:29
mmc_disk_read
MEMSPACE DRESULT mmc_disk_read(BYTE *buff, DWORD sector, UINT count)
Read Sector(s)
Definition: mmc.c:424
BYTE
unsigned char BYTE
Definition: ff.h:54
mmc_disk_write
MEMSPACE DRESULT mmc_disk_write(const BYTE *buff, DWORD sector, UINT count)
DEV_USB
#define DEV_USB
Definition: diskio.c:41
mmc_disk_timerproc
void mmc_disk_timerproc(void)
Write Sector(s)
Definition: mmc.c:761
UINT
unsigned int UINT
Definition: ff.h:53
LBA_t
DWORD LBA_t
Definition: ff.h:125
ram.h
Memory Utilities and safe free for AVR.
mmc_disk_status
MEMSPACE DSTATUS mmc_disk_status(void)
Get Disk Status.
Definition: mmc.c:411
disk_initialize
DSTATUS disk_initialize(BYTE pdrv)
Definition: diskio.c:78
DEV_CFC
#define DEV_CFC
Definition: diskio.c:39
RES_PARERR
@ RES_PARERR
Definition: diskio.h:35
diskio.h
ff.h
disk_read
DRESULT disk_read(BYTE pdrv, BYTE *buff, LBA_t sector, UINT count)
Definition: diskio.c:110
mmc.h
STA_NOINIT
#define STA_NOINIT
Definition: diskio.h:60
mmc_disk_ioctl
MEMSPACE DRESULT mmc_disk_ioctl(BYTE cmd, void *buff)
disk_status
DSTATUS disk_status(BYTE pdrv)
Definition: diskio.c:47
disk_timerproc
void disk_timerproc(void)
Definition: diskio.c:214
disk_write
DRESULT disk_write(BYTE pdrv, const BYTE *buff, LBA_t sector, UINT count)
Definition: diskio.c:145
disk_ioctl
DRESULT disk_ioctl(BYTE pdrv, BYTE cmd, void *buff)
Definition: diskio.c:181
DEV_MMC
#define DEV_MMC
Definition: diskio.c:38