Extract 'struct bregs' out of biosvar.h; clean up header includes.
[seabios.git] / src / disk.h
1 // Definitions for X86 bios disks.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU GPLv3 license.
6 #ifndef __DISK_H
7 #define __DISK_H
8
9 #include "types.h" // u8
10
11 #define DISK_RET_SUCCESS       0x00
12 #define DISK_RET_EPARAM        0x01
13 #define DISK_RET_EADDRNOTFOUND 0x02
14 #define DISK_RET_EWRITEPROTECT 0x03
15 #define DISK_RET_ECHANGED      0x06
16 #define DISK_RET_EBOUNDARY     0x09
17 #define DISK_RET_EBADTRACK     0x0c
18 #define DISK_RET_ECONTROLLER   0x20
19 #define DISK_RET_ETIMEOUT      0x80
20 #define DISK_RET_ENOTLOCKED    0xb0
21 #define DISK_RET_ELOCKED       0xb1
22 #define DISK_RET_ENOTREMOVABLE 0xb2
23 #define DISK_RET_ETOOMANYLOCKS 0xb4
24 #define DISK_RET_EMEDIA        0xC0
25 #define DISK_RET_ENOTREADY     0xAA
26
27 // Bios disk structures.
28 struct int13ext_s {
29     u8  size;
30     u8  reserved;
31     u16 count;
32     u16 offset;
33     u16 segment;
34     u64 lba;
35 } PACKED;
36
37 #define GET_INT13EXT(regs,var)                                          \
38     GET_FARVAR((regs)->ds, ((struct int13ext_s*)((regs)->si+0))->var)
39 #define SET_INT13EXT(regs,var,val)                                      \
40     SET_FARVAR((regs)->ds, ((struct int13ext_s*)((regs)->si+0))->var, (val))
41
42 // Disk Physical Table definition
43 struct int13dpt_s {
44     u16 size;
45     u16 infos;
46     u32 cylinders;
47     u32 heads;
48     u32 spt;
49     u64 sector_count;
50     u16 blksize;
51     u16 dpte_offset;
52     u16 dpte_segment;
53     u16 key;
54     u8  dpi_length;
55     u8  reserved1;
56     u16 reserved2;
57     u8  host_bus[4];
58     u8  iface_type[8];
59     u8  iface_path[8];
60     u8  device_path[8];
61     u8  reserved3;
62     u8  checksum;
63 } PACKED;
64
65 #define GET_INT13DPT(regs,var)                                          \
66     GET_FARVAR((regs)->ds, ((struct int13dpt_s*)((regs)->si+0))->var)
67 #define SET_INT13DPT(regs,var,val)                                      \
68     SET_FARVAR((regs)->ds, ((struct int13dpt_s*)((regs)->si+0))->var, (val))
69
70 // Floppy "Disk Base Table"
71 struct floppy_dbt_s {
72     u8 specify1;
73     u8 specify2;
74     u8 shutoff_ticks;
75     u8 bps_code;
76     u8 sectors;
77     u8 interblock_len;
78     u8 data_len;
79     u8 gap_len;
80     u8 fill_byte;
81     u8 settle_time;
82     u8 startup_time;
83 } PACKED;
84
85 struct floppy_ext_dbt_s {
86     struct floppy_dbt_s dbt;
87     // Extra fields
88     u8 max_track;
89     u8 data_rate;
90     u8 drive_type;
91 } PACKED;
92
93 // Helper function for setting up a return code.
94 struct bregs;
95 void __disk_ret(const char *fname, struct bregs *regs, u8 code);
96 #define disk_ret(regs, code) \
97     __disk_ret(__func__, (regs), (code))
98
99 // floppy.c
100 extern struct floppy_ext_dbt_s diskette_param_table2;
101 void floppy_drive_setup();
102 void floppy_13(struct bregs *regs, u8 drive);
103 void floppy_tick();
104
105 // disk.c
106 void disk_13(struct bregs *regs, u8 device);
107 void disk_13XX(struct bregs *regs, u8 device);
108
109 // cdrom.c
110 int cdrom_read_emu(u16 device, u32 lba, u32 count, void *far_buffer);
111 void cdrom_13(struct bregs *regs, u8 device);
112 void cdemu_13(struct bregs *regs);
113 void cdemu_134b(struct bregs *regs);
114 int cdrom_boot();
115
116
117 #endif // disk.h