Refactor to use new protocol module and sipo.
[bertos.git] / bertos / fs / fatfs / diskio.h
1 /*-----------------------------------------------------------------------
2 /  Low level disk interface modlue include file  R0.07   (C)ChaN, 2009
3 /-----------------------------------------------------------------------*/
4
5 #ifndef _DISKIO
6
7 #define _READONLY       0       /* 1: Read-only mode */
8 #define _USE_IOCTL      1
9
10 #include "integer.h"
11 #include <io/kblock.h>
12
13
14 /* Status of Disk Functions */
15 typedef BYTE    DSTATUS;
16
17 /* Results of Disk Functions */
18 typedef enum {
19         RES_OK = 0,             /* 0: Successful */
20         RES_ERROR,              /* 1: R/W Error */
21         RES_WRPRT,              /* 2: Write Protected */
22         RES_NOTRDY,             /* 3: Not Ready */
23         RES_PARERR              /* 4: Invalid Parameter */
24 } DRESULT;
25
26
27 /*---------------------------------------*/
28 /* Prototypes for disk control functions */
29 void disk_assignDrive(KBlock *dev, int dev_num);
30 BOOL assign_drives (int argc, char *argv[]);
31 DSTATUS disk_initialize (BYTE);
32 DSTATUS disk_status (BYTE);
33 DRESULT disk_read (BYTE, BYTE*, DWORD, BYTE);
34 #if     _READONLY == 0
35 DRESULT disk_write (BYTE, const BYTE*, DWORD, BYTE);
36 #endif
37 DRESULT disk_ioctl (BYTE, BYTE, void*);
38
39
40
41
42 /* Disk Status Bits (DSTATUS) */
43
44 #define STA_NOINIT              0x01    /* Drive not initialized */
45 #define STA_NODISK              0x02    /* No medium in the drive */
46 #define STA_PROTECT             0x04    /* Write protected */
47
48
49 /* Command code for disk_ioctrl() */
50
51 /* Generic command */
52 #define CTRL_SYNC                       0       /* Mandatory for write functions */
53 #define GET_SECTOR_COUNT        1       /* Mandatory for only f_mkfs() */
54 #define GET_SECTOR_SIZE         2
55 #define GET_BLOCK_SIZE          3       /* Mandatory for only f_mkfs() */
56 #define CTRL_POWER                      4
57 #define CTRL_LOCK                       5
58 #define CTRL_EJECT                      6
59 /* MMC/SDC command */
60 #define MMC_GET_TYPE            10
61 #define MMC_GET_CSD                     11
62 #define MMC_GET_CID                     12
63 #define MMC_GET_OCR                     13
64 #define MMC_GET_SDSTAT          14
65 /* ATA/CF command */
66 #define ATA_GET_REV                     20
67 #define ATA_GET_MODEL           21
68 #define ATA_GET_SN                      22
69
70
71 #define _DISKIO
72 #endif