blob: c6462b738f61f4fe09b447f37c04bcdc19dc0f46 [file] [log] [blame]
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05001This code implements an X86 legacy bios. It is intended to be
2compiled using standard gnu tools (eg, gas and gcc).
3
4To build, one should be able to run "make" in the main directory. The
Kevin O'Connor59fead62008-05-10 15:49:20 -04005resulting file "out/bios.bin" contains the processed bios image.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05006
Kevin O'Connor838f08f2008-03-30 11:07:42 -04007
8Testing of images:
9
10To test the bios under bochs, one will need to instruct bochs to use
11the new bios image. Use the 'romimage' option - for example:
12
Kevin O'Connor59fead62008-05-10 15:49:20 -040013bochs -q 'floppya: 1_44=myfdimage.img' 'romimage: file=out/bios.bin'
Kevin O'Connor838f08f2008-03-30 11:07:42 -040014
15To test under qemu, one will need to create a directory with all the
16bios images and then overwrite the main bios image. For example:
17
18cp /usr/share/qemu/*.bin mybiosdir/
Kevin O'Connor59fead62008-05-10 15:49:20 -040019cp out/bios.bin mybiosdir/
Kevin O'Connor838f08f2008-03-30 11:07:42 -040020
21Once this is setup, one can instruct qemu to use the newly created
22directory for rom images. For example:
23
24qemu -L mybiosdir/ -fda myfdimage.img
25
26
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050027Overview of files:
28
Kevin O'Connor838f08f2008-03-30 11:07:42 -040029The src/ directory contains the bios source code. Several of the
30files are compiled twice - once for 16bit mode and once for 32bit
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040031mode. (The build system will remove code that is not needed for a
32particular mode.)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050033
34The tools/ directory contains helper utilities for manipulating and
35building the final rom.
36
37The out/ directory is created by the build process - it contains all
38temporary and final files.
39
40
41Build overview:
42
Kevin O'Connor0afee522009-02-05 20:32:41 -050043The 16bit code is compiled via gcc to assembler (file out/ccode.16.s).
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040044The gcc "-fwhole-program" and "-ffunction-sections -fdata-sections"
45options are used to optimize the process so that gcc can efficiently
46compile and discard unneeded code. (In the code, one can use the
Kevin O'Connor0fdf1932011-10-04 21:12:28 -040047macros 'VISIBLE16' and 'VISIBLE32FLAT' to instruct a symbol to be
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040048outputted in 16bit and 32bit mode respectively.)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050049
50This resulting assembler code is pulled into romlayout.S. The gas
51option ".code16gcc" is used prior to including the gcc generated
Kevin O'Connor838f08f2008-03-30 11:07:42 -040052assembler - this option enables gcc to generate valid 16 bit code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050053
Kevin O'Connor0fdf1932011-10-04 21:12:28 -040054The post code (post.c) is entered, via the function handle_post(), in
5532bit mode. The 16bit post vector (in romlayout.S) transitions the
56cpu into 32 bit mode before calling the post.c code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050057
Kevin O'Connor838f08f2008-03-30 11:07:42 -040058In the last step of compilation, the 32 bit code is merged into the 16
59bit code so that one binary file contains both. Currently, both 16bit
Kevin O'Connor0fdf1932011-10-04 21:12:28 -040060and 32bit code will be located in the memory at 0xe0000-0xfffff.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050061
62
63GCC 16 bit limitations:
64
65Although the 16bit code is compiled with gcc, developers need to be
66aware of the environment. In particular, global variables _must_ be
67treated specially.
68
69The code has full access to stack variables and general purpose
70registers. The entry code in romlayout.S will push the original
71registers on the stack before calling the C code and then pop them off
72(including any required changes) before returning from the interrupt.
73Changes to CS, DS, and ES segment registers in C code is also safe.
74Changes to other segment registers (SS, FS, GS) need to be restored
75manually.
76
77Stack variables (and pointers to stack variables) work as they
78normally do in standard C code.
79
80However, variables stored outside the stack need to be accessed via
Kevin O'Connor838f08f2008-03-30 11:07:42 -040081the GET_VAR and SET_VAR macros (or one of the helper macros described
82below). This is due to the 16bit segment nature of the X86 cpu when
83it is in "real mode". The C entry code will set DS and SS to point to
84the stack segment. Variables not on the stack need to be accessed via
Kevin O'Connor0afee522009-02-05 20:32:41 -050085an explicit segment register. Any other access requires altering one
86of the other segment registers (usually ES) and then accessing the
87variable via that segment register.
Kevin O'Connor838f08f2008-03-30 11:07:42 -040088
89There are three low-level ways to access a remote variable:
Kevin O'Connor0afee522009-02-05 20:32:41 -050090GET/SET_VAR, GET/SET_FARVAR, and GET/SET_FLATPTR. The first set takes
Kevin O'Connor838f08f2008-03-30 11:07:42 -040091an explicit segment descriptor (eg, "CS") and offset. The second set
Kevin O'Connor0afee522009-02-05 20:32:41 -050092will take a segment id and offset, set ES to the segment id, and then
Kevin O'Connor838f08f2008-03-30 11:07:42 -040093make the access via the ES segment. The last method is similar to the
Kevin O'Connor0afee522009-02-05 20:32:41 -050094second, except it takes a pointer that would be valid in 32-bit flat
95mode instead of a segment/offset pair.
Kevin O'Connor838f08f2008-03-30 11:07:42 -040096
Kevin O'Connor0afee522009-02-05 20:32:41 -050097Most BIOS variables are stored in global variables, the "BDA", or
98"EBDA" memory areas. Because this is common, three sets of helper
99macros (GET/SET_GLOBAL, GET/SET_BDA, and GET/SET_EBDA) are available
100to simplify these accesses.
101
102Global variables defined in the C code can be read in 16bit mode if
Kevin O'Connor372e0712009-09-09 09:51:31 -0400103the variable declaration is marked with VAR16, VAR16VISIBLE,
104VAR16EXPORT, or VAR16FIXED. The GET_GLOBAL macro will then allow read
105access to the variable. Global variables are stored in the 0xf000
Kevin O'Connor88ab34e2013-01-20 10:46:51 -0500106segment. Because the f-segment is marked read-only during run-time,
107the 16bit code is not permitted to change the value of 16bit variables
108(use of the SET_GLOBAL macro from 16bit mode will cause a link error).
109Code running in 32bit mode can not access variables with VAR16, but
110can access variables marked with VAR16VISIBLE, VAR16EXPORT,
111VAR16FIXED, or with no marking at all. The 32bit code can use the
112GET/SET_GLOBAL macros, but they are not required.
Kevin O'Connor838f08f2008-03-30 11:07:42 -0400113
114
115GCC 16 bit stack limitations:
116
117Another limitation of gcc is its use of 32-bit temporaries. Gcc will
118allocate 32-bits of space for every variable - even if that variable
119is only defined as a 'u8' or 'u16'. If one is not careful, using too
120much stack space can break old DOS applications.
121
122There does not appear to be explicit documentation on the minimum
123stack space available for bios calls. However, Freedos has been
Kevin O'Connor0bb2a442008-04-01 21:09:05 -0400124observed to call into the bios with less than 150 bytes available.
Kevin O'Connor838f08f2008-03-30 11:07:42 -0400125
126Note that the post code and boot code (irq 18/19) do not have a stack
Kevin O'Connor0afee522009-02-05 20:32:41 -0500127limitation because the entry points for these functions transition the
128cpu to 32bit mode and reset the stack to a known state. Only the
129general purpose 16-bit service entry points are affected.
Kevin O'Connor838f08f2008-03-30 11:07:42 -0400130
131There are some ways to reduce stack usage: making sure functions are
132tail-recursive often helps, reducing the number of parameters passed
133to functions often helps, sometimes reordering variable declarations
134helps, inlining of functions can sometimes help, and passing of packed
Kevin O'Connor0afee522009-02-05 20:32:41 -0500135structures can also help. It is also possible to transition to/from
136an extra stack stored in the EBDA using the stack_hop helper function.
Kevin O'Connor838f08f2008-03-30 11:07:42 -0400137
Kevin O'Connor0bb2a442008-04-01 21:09:05 -0400138Some useful stats: the overhead for the entry to a bios handler that
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400139takes a 'struct bregs' is 42 bytes of stack space (6 bytes from
140interrupt insn, 32 bytes to store registers, and 4 bytes for call
Kevin O'Connor0bb2a442008-04-01 21:09:05 -0400141insn). An entry to an ISR handler without args takes 30 bytes (6 + 20
142+ 4).
143
Kevin O'Connor838f08f2008-03-30 11:07:42 -0400144
145Debugging the bios:
146
147The bios will output information messages to a special debug port.
Kevin O'Connor0fdf1932011-10-04 21:12:28 -0400148Under qemu, one can view these messages by adding '-chardev
149stdio,id=seabios -device isa-debugcon,iobase=0x402,chardev=seabios' to
150the qemu command line. Once this is done, one should see status
151messages on the console.
Kevin O'Connor838f08f2008-03-30 11:07:42 -0400152
153The gdb-server mechanism of qemu is also useful. One can use gdb with
154qemu to debug system images. To use this, add '-s -S' to the qemu
155command line. For example:
156
157qemu -L mybiosdir/ -fda myfdimage.img -s -S
158
159Then, in another session, run gdb with either out/rom16.o (to debug
160bios 16bit code) or out/rom32.o (to debug bios 32bit code). For
161example:
162
163gdb out/rom16.o
164
165Once in gdb, use the command "target remote localhost:1234" to have
166gdb connect to qemu. See the qemu documentation for more information
167on using gdb and qemu in this mode. Note that gdb seems to get
168breakpoints confused when the cpu is in 16-bit real mode. This makes
169stepping through the program difficult (though 'step instruction'
170still works). Also, one may need to set 16bit break points at both
171the cpu address and memory address (eg, break *0x1234 ; break
172*0xf1234).