Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 1 | #ifndef __BLOCK_H |
| 2 | #define __BLOCK_H |
| 3 | |
| 4 | #include "types.h" // u32 |
| 5 | |
| 6 | |
| 7 | /**************************************************************** |
| 8 | * Disk command request |
| 9 | ****************************************************************/ |
| 10 | |
| 11 | struct disk_op_s { |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 12 | void *buf_fl; |
Kevin O'Connor | e5a0b61 | 2017-07-11 12:24:50 -0400 | [diff] [blame] | 13 | struct drive_s *drive_fl; |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 14 | u8 command; |
Kevin O'Connor | 4dbe829 | 2015-07-07 09:53:54 -0400 | [diff] [blame] | 15 | u16 count; |
| 16 | union { |
| 17 | // Commands: READ, WRITE, VERIFY, SEEK, FORMAT |
| 18 | u64 lba; |
| 19 | // Commands: SCSI |
| 20 | struct { |
| 21 | u16 blocksize; |
| 22 | void *cdbcmd; |
| 23 | }; |
| 24 | }; |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 25 | }; |
| 26 | |
| 27 | #define CMD_RESET 0x00 |
| 28 | #define CMD_READ 0x02 |
| 29 | #define CMD_WRITE 0x03 |
| 30 | #define CMD_VERIFY 0x04 |
| 31 | #define CMD_FORMAT 0x05 |
| 32 | #define CMD_SEEK 0x07 |
| 33 | #define CMD_ISREADY 0x10 |
Kevin O'Connor | 4dbe829 | 2015-07-07 09:53:54 -0400 | [diff] [blame] | 34 | #define CMD_SCSI 0x20 |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 35 | |
| 36 | |
| 37 | /**************************************************************** |
| 38 | * Global storage |
| 39 | ****************************************************************/ |
| 40 | |
| 41 | struct chs_s { |
Kevin O'Connor | 8ab9a34 | 2013-09-28 23:34:49 -0400 | [diff] [blame] | 42 | u16 head; |
| 43 | u16 cylinder; |
| 44 | u16 sector; |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 45 | u16 pad; |
| 46 | }; |
| 47 | |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 48 | struct drive_s { |
| 49 | u8 type; // Driver type (DTYPE_*) |
| 50 | u8 floppy_type; // Type of floppy (only for floppy drives). |
| 51 | struct chs_s lchs; // Logical CHS |
| 52 | u64 sectors; // Total sectors count |
| 53 | u32 cntl_id; // Unique id for a given driver type. |
| 54 | u8 removable; // Is media removable (currently unused) |
| 55 | |
| 56 | // Info for EDD calls |
| 57 | u8 translation; // type of translation |
| 58 | u16 blksize; // block size |
| 59 | struct chs_s pchs; // Physical CHS |
| 60 | }; |
| 61 | |
| 62 | #define DISK_SECTOR_SIZE 512 |
| 63 | #define CDROM_SECTOR_SIZE 2048 |
| 64 | |
| 65 | #define DTYPE_NONE 0x00 |
Kevin O'Connor | d1bb7e5 | 2013-12-30 22:06:47 -0500 | [diff] [blame] | 66 | #define DTYPE_FLOPPY 0x10 |
| 67 | #define DTYPE_ATA 0x20 |
| 68 | #define DTYPE_ATA_ATAPI 0x21 |
| 69 | #define DTYPE_RAMDISK 0x30 |
| 70 | #define DTYPE_CDEMU 0x40 |
| 71 | #define DTYPE_AHCI 0x50 |
| 72 | #define DTYPE_AHCI_ATAPI 0x51 |
| 73 | #define DTYPE_VIRTIO_SCSI 0x60 |
| 74 | #define DTYPE_VIRTIO_BLK 0x61 |
| 75 | #define DTYPE_USB 0x70 |
Kevin O'Connor | de30dad | 2013-12-30 22:09:04 -0500 | [diff] [blame] | 76 | #define DTYPE_USB_32 0x71 |
| 77 | #define DTYPE_UAS 0x72 |
| 78 | #define DTYPE_UAS_32 0x73 |
Kevin O'Connor | d1bb7e5 | 2013-12-30 22:06:47 -0500 | [diff] [blame] | 79 | #define DTYPE_LSI_SCSI 0x80 |
| 80 | #define DTYPE_ESP_SCSI 0x81 |
| 81 | #define DTYPE_MEGASAS 0x82 |
| 82 | #define DTYPE_PVSCSI 0x83 |
Don Slutz | f2645a8 | 2016-03-25 17:04:31 +0100 | [diff] [blame] | 83 | #define DTYPE_MPT_SCSI 0x84 |
Kevin O'Connor | 72691a5 | 2014-12-16 09:55:16 -0500 | [diff] [blame] | 84 | #define DTYPE_SDCARD 0x90 |
Julian Stecklina | c83e15b | 2017-02-13 10:03:59 +0100 | [diff] [blame] | 85 | #define DTYPE_NVME 0x91 |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 86 | |
| 87 | #define MAXDESCSIZE 80 |
| 88 | |
| 89 | #define TRANSLATION_NONE 0 |
| 90 | #define TRANSLATION_LBA 1 |
| 91 | #define TRANSLATION_LARGE 2 |
| 92 | #define TRANSLATION_RECHS 3 |
| 93 | |
| 94 | #define EXTTYPE_FLOPPY 0 |
| 95 | #define EXTTYPE_HD 1 |
| 96 | #define EXTTYPE_CD 2 |
| 97 | |
| 98 | #define EXTSTART_HD 0x80 |
| 99 | #define EXTSTART_CD 0xE0 |
| 100 | |
| 101 | |
| 102 | /**************************************************************** |
| 103 | * Function defs |
| 104 | ****************************************************************/ |
| 105 | |
| 106 | // block.c |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 107 | extern u8 FloppyCount, CDCount; |
| 108 | extern u8 *bounce_buf_fl; |
| 109 | struct drive_s *getDrive(u8 exttype, u8 extdriveoffset); |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 110 | int getDriveId(u8 exttype, struct drive_s *drive); |
| 111 | void map_floppy_drive(struct drive_s *drive); |
| 112 | void map_hd_drive(struct drive_s *drive); |
| 113 | void map_cd_drive(struct drive_s *drive); |
Kevin O'Connor | 39ca498 | 2014-05-10 11:42:22 -0400 | [diff] [blame] | 114 | struct int13dpt_s; |
Kevin O'Connor | e5a0b61 | 2017-07-11 12:24:50 -0400 | [diff] [blame] | 115 | int fill_edd(struct segoff_s edd, struct drive_s *drive_fl); |
Kevin O'Connor | 7c48076 | 2016-02-03 11:00:17 -0500 | [diff] [blame] | 116 | void block_setup(void); |
Kevin O'Connor | 85c72c6 | 2015-07-07 09:01:52 -0400 | [diff] [blame] | 117 | int default_process_op(struct disk_op_s *op); |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 118 | int process_op(struct disk_op_s *op); |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 119 | int create_bounce_buf(void); |
| 120 | |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 121 | #endif // block.h |