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