Misc minor updates.
[seabios.git] / TODO
1 Split rombios32.c up into multiple files.
2
3 Support parsing of linuxbios/coreboot table.
4
5 Do a pci scan for ide controllers - don't just assume ISA ports are
6 available.
7
8 Review changes committed to coreboot, virtualbox, qemu, kvm, and bochs
9 cvs tip.
10   * bochs cvs (1.209)         -- all changes synched
11   * coreboot (r3348): 1.163   -- no noteworthy enhancements
12   * qemu (r4675): 1.207       -- supports >4Gig memory
13   * kvm (45a442c): 1.182      -- >4gig, e820 vmx pages, enable cache?
14   * virtualbox (r9404): 1.176 -- f11/f12 kbd, lots of mouse changes,
15     logo, set text mode?, int 1589, floppy data rate?,
16     dummy_isr_function, int19 calls post
17
18 Look into ways to reduce stack usage.  Alter ISRs so that they do not
19 enable irqs.  Only call out to other bios functions after minimizing
20 stack usage.
21
22 Audit all sti/cli calls.  Audit all call16 calls to make sure flags is
23 setup properly with respect to irqs.
24
25 Audit statements where a 32bit intermediary changes meaning of a 16bit
26 comparison.
27
28 Code assumes ebda segment is static - it doesn't read 0x40e.
29
30 The __call16 code does a long jump to the interrupt trampolines - this
31 is unnecessary.
32
33 Fix makefiles so that they rebuild the required files automatically.
34
35 Cleanup setting of ES on GET/SET_BDA
36
37 Possibly implement 32bit pcibios support.
38
39 Allow one to select adding 32 bit code to 0xf000 or in a separate
40 location.
41
42 Look at integrating the lgpl vgabios into tree.
43
44 Try generating bios tables at compile time.
45
46 Move e820 map generation to post time (just have e820 code copy pre
47 made tables back to user).