HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
diskio.h
Go to the documentation of this file.
1 /*-----------------------------------------------------------------------/
2 / Low level disk interface modlue include file (C)ChaN, 2019 /
3 /-----------------------------------------------------------------------*/
4 
5 #include "ff.h"
6 
7 #ifndef _DISKIO_DEFINED
8 #define _DISKIO_DEFINED
9 
10 #ifdef __cplusplus
11 extern "C"
12 {
13 #endif
14 
15 /* Definitions of physical drive number for each drive */
16 #define DEV_MMC 0 /* Example: Map MMC/SD card to physical drive 1 */
17 #define DEV_CFC 1 /* Example: Map CF card to physical drive 2 */
18 #define DEV_RAM 2 /* Example: Map Ramdisk to physical drive 0 */
19 #define DEV_USB 3 /* Example: Map USB MSD to physical drive 2 */
20 
21 #define _USE_WRITE 1 /* 1: Enable disk_write function */
22 #define _USE_IOCTL 1 /* 1: Enable disk_ioctl fucntion */
23 #define _USE_ISDIO 1 /* 1: Enable iSDIO controls via disk_ioctl */
24 
25 /* Status of Disk Functions */
26  typedef BYTE DSTATUS;
27 
28 /* Results of Disk Functions */
29  typedef enum
30  {
31  RES_OK = 0, /* 0: Successful */
32  RES_ERROR, /* 1: R/W Error */
33  RES_WRPRT, /* 2: Write Protected */
34  RES_NOTRDY, /* 3: Not Ready */
35  RES_PARERR /* 4: Invalid Parameter */
36  } DRESULT;
37 
38 /* Command structure for iSDIO ioctl command */
39  typedef struct
40  {
41  BYTE func; /* Function number: 0..7 */
42  WORD ndata; /* Number of bytes to transfer: 1..512, or mask + data */
43  DWORD addr; /* Register address: 0..0x1FFFF */
44  void* data; /* Pointer to the data (to be written | read buffer) */
45  } SDIO_CTRL;
46 
47 /*---------------------------------------*/
48 /* Prototypes for disk control functions */
49 
50 /* diskio.c */
51  DSTATUS disk_status ( BYTE pdrv );
52  DSTATUS disk_initialize ( BYTE pdrv );
53  DRESULT disk_read ( BYTE pdrv , BYTE *buff , LBA_t sector , UINT count );
54  DRESULT disk_write ( BYTE pdrv , const BYTE *buff , LBA_t sector , UINT count );
55  DRESULT disk_ioctl ( BYTE pdrv , BYTE cmd , void *buff );
56  void disk_timerproc ( void );
57 
58 /* Disk Status Bits (DSTATUS) */
59 
60 #define STA_NOINIT 0x01 /* Drive not initialized */
61 #define STA_NODISK 0x02 /* No medium in the drive */
62 #define STA_PROTECT 0x04 /* Write protected */
63 
64 /* Command code for disk_ioctrl fucntion */
65 
66 /* Generic command (Used by FatFs) */
67 #define CTRL_SYNC 0 /* Complete pending write process (needed at FF_FS_READONLY == 0) */
68 #define GET_SECTOR_COUNT 1 /* Get media size (needed at FF_USE_MKFS == 1) */
69 #define GET_SECTOR_SIZE 2 /* Get sector size (needed at FF_MAX_SS != FF_MIN_SS) */
70 #define GET_BLOCK_SIZE 3 /* Get erase block size (needed at FF_USE_MKFS == 1) */
71 #define CTRL_TRIM 4 /* Inform device that the data on the block of sectors is no longer used (needed at FF_USE_TRIM == 1) */
72 
73 /* Generic command (Not used by FatFs) */
74 #define CTRL_FORMAT 5 /* Create physical format on the media */
75 #define CTRL_POWER_IDLE 6 /* Put the device idle state */
76 #define CTRL_POWER_OFF 7 /* Put the device off state */
77 #define CTRL_LOCK 8 /* Lock media removal */
78 #define CTRL_UNLOCK 9 /* Unlock media removal */
79 #define CTRL_EJECT 10 /* Eject media */
80 #define CTRL_GET_SMART 11 /* Read SMART information */
81 
82 /* MMC/SDC specific command (Not used by FatFs) */
83 #define MMC_GET_TYPE 50 /* Get card type */
84 #define MMC_GET_CSD 51 /* Read CSD */
85 #define MMC_GET_CID 52 /* Read CID */
86 #define MMC_GET_OCR 53 /* Read OCR */
87 #define MMC_GET_SDSTAT 54 /* Read SD status */
88 #define ISDIO_READ 55 /* Read data form SD iSDIO register */
89 #define ISDIO_WRITE 56 /* Write data to SD iSDIO register */
90 #define ISDIO_MRITE 57 /* Masked write data to SD iSDIO register */
91 
92 /* ATA/CF specific command (Not used by FatFs) */
93 #define ATA_GET_REV 60 /* Get F/W revision */
94 #define ATA_GET_MODEL 61 /* Get model name */
95 #define ATA_GET_SN 62 /* Get serial number */
96 
97 /* MMC card type flags (MMC_GET_TYPE) */
98 #define CT_MMC 0x01 /* MMC ver 3 */
99 #define CT_SD1 0x02 /* SD ver 1 */
100 #define CT_SD2 0x04 /* SD ver 2 */
101 #define CT_SDC (CT_SD1|CT_SD2) /* SD */
102 #define CT_BLOCK 0x08 /* Block addressing */
103 
104 #ifdef __cplusplus
105 }
106 #endif
107 #endif
RES_WRPRT
@ RES_WRPRT
Definition: diskio.h:33
DSTATUS
BYTE DSTATUS
Definition: diskio.h:26
RES_ERROR
@ RES_ERROR
Definition: diskio.h:32
DRESULT
DRESULT
Definition: diskio.h:29
BYTE
unsigned char BYTE
Definition: ff.h:54
SDIO_CTRL::addr
DWORD addr
Definition: diskio.h:43
SDIO_CTRL::func
BYTE func
Definition: diskio.h:41
disk_timerproc
void disk_timerproc(void)
Definition: diskio.c:214
UINT
unsigned int UINT
Definition: ff.h:53
LBA_t
DWORD LBA_t
Definition: ff.h:125
disk_initialize
DSTATUS disk_initialize(BYTE pdrv)
Definition: diskio.c:78
SDIO_CTRL
Definition: diskio.h:39
disk_read
DRESULT disk_read(BYTE pdrv, BYTE *buff, LBA_t sector, UINT count)
Definition: diskio.c:110
RES_PARERR
@ RES_PARERR
Definition: diskio.h:35
ff.h
disk_write
DRESULT disk_write(BYTE pdrv, const BYTE *buff, LBA_t sector, UINT count)
Definition: diskio.c:145
SDIO_CTRL::data
void * data
Definition: diskio.h:44
SDIO_CTRL::ndata
WORD ndata
Definition: diskio.h:42
disk_status
DSTATUS disk_status(BYTE pdrv)
Definition: diskio.c:47
RES_NOTRDY
@ RES_NOTRDY
Definition: diskio.h:34
WORD
unsigned short WORD
Definition: ff.h:55
DWORD
unsigned long DWORD
Definition: ff.h:56
RES_OK
@ RES_OK
Definition: diskio.h:31
disk_ioctl
DRESULT disk_ioctl(BYTE pdrv, BYTE cmd, void *buff)
Definition: diskio.c:181