Kevin O'Connor | 65e6342 | 2008-07-19 14:12:32 -0400 | [diff] [blame] | 1 | Clean up timer code. Don't use PORT_DIAG as delay mechanism. |
| 2 | |
Kevin O'Connor | f292f3b | 2008-06-28 12:19:52 -0400 | [diff] [blame] | 3 | Disable a20 on jump to 16bit mode. |
Kevin O'Connor | 22dfb85 | 2008-06-07 15:24:19 -0400 | [diff] [blame] | 4 | |
| 5 | Do a pci scan for ide controllers - don't just assume ISA ports are |
| 6 | available. |
| 7 | |
Kevin O'Connor | c781293 | 2008-06-08 23:08:12 -0400 | [diff] [blame] | 8 | The keyboard driver should detect ctrl+alt+del and reboot the |
| 9 | machine. |
| 10 | |
Kevin O'Connor | f292f3b | 2008-06-28 12:19:52 -0400 | [diff] [blame] | 11 | Fix keyboard LEDs. |
| 12 | |
Kevin O'Connor | 2ad3744 | 2008-05-06 19:49:01 -0400 | [diff] [blame] | 13 | Review changes committed to coreboot, virtualbox, qemu, kvm, and bochs |
| 14 | cvs tip. |
Kevin O'Connor | 22dfb85 | 2008-06-07 15:24:19 -0400 | [diff] [blame] | 15 | * bochs cvs (1.209) -- all changes synched |
| 16 | * coreboot (r3348): 1.163 -- no noteworthy enhancements |
| 17 | * qemu (r4675): 1.207 -- supports >4Gig memory |
Kevin O'Connor | c781293 | 2008-06-08 23:08:12 -0400 | [diff] [blame] | 18 | * kvm (45a442c): 1.182 -- >4gig, e820 vmx pages, enable cache?, |
| 19 | wrmsr in smp_start and rombios32, acpi insrcovr table |
Kevin O'Connor | 22dfb85 | 2008-06-07 15:24:19 -0400 | [diff] [blame] | 20 | * virtualbox (r9404): 1.176 -- f11/f12 kbd, lots of mouse changes, |
| 21 | logo, set text mode?, int 1589, floppy data rate?, |
| 22 | dummy_isr_function, int19 calls post |
Kevin O'Connor | 2ad3744 | 2008-05-06 19:49:01 -0400 | [diff] [blame] | 23 | |
Kevin O'Connor | 5c4a8c6 | 2008-05-12 23:50:16 -0400 | [diff] [blame] | 24 | Look into ways to reduce stack usage. Alter ISRs so that they do not |
| 25 | enable irqs. Only call out to other bios functions after minimizing |
| 26 | stack usage. |
Kevin O'Connor | 2ad3744 | 2008-05-06 19:49:01 -0400 | [diff] [blame] | 27 | |
Kevin O'Connor | 7a558e4 | 2008-03-11 20:38:33 -0400 | [diff] [blame] | 28 | Audit all sti/cli calls. Audit all call16 calls to make sure flags is |
| 29 | setup properly with respect to irqs. |
Kevin O'Connor | 44c631d | 2008-03-02 11:24:36 -0500 | [diff] [blame] | 30 | |
Kevin O'Connor | ed12849 | 2008-03-11 11:14:59 -0400 | [diff] [blame] | 31 | Audit statements where a 32bit intermediary changes meaning of a 16bit |
| 32 | comparison. |
| 33 | |
Kevin O'Connor | 63dbcfb | 2008-03-01 22:17:07 -0500 | [diff] [blame] | 34 | Code assumes ebda segment is static - it doesn't read 0x40e. |
| 35 | |
Kevin O'Connor | b8aacb0 | 2008-03-01 14:56:07 -0500 | [diff] [blame] | 36 | The __call16 code does a long jump to the interrupt trampolines - this |
| 37 | is unnecessary. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 38 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 39 | Cleanup setting of ES on GET/SET_BDA |
| 40 | |
Kevin O'Connor | 65e6342 | 2008-07-19 14:12:32 -0400 | [diff] [blame] | 41 | Audit code for 16bit protected mode accesses. |
| 42 | |
| 43 | Support 1ab1 from 16bit protected mode. |
| 44 | |
| 45 | Verify option roms wont stomp on seabios stack and bss. |
| 46 | |
Kevin O'Connor | 2ad3744 | 2008-05-06 19:49:01 -0400 | [diff] [blame] | 47 | Possibly implement 32bit pcibios support. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 48 | |
| 49 | Allow one to select adding 32 bit code to 0xf000 or in a separate |
| 50 | location. |
| 51 | |
Kevin O'Connor | 65e6342 | 2008-07-19 14:12:32 -0400 | [diff] [blame] | 52 | See if it is possible to handle interrupts while in 32bit mode. |
| 53 | |
Kevin O'Connor | 22dfb85 | 2008-06-07 15:24:19 -0400 | [diff] [blame] | 54 | Look at integrating the lgpl vgabios into tree. |
Kevin O'Connor | 65e6342 | 2008-07-19 14:12:32 -0400 | [diff] [blame] | 55 | |
| 56 | Look at usb booting specs. Look at possibly supporting usb |
| 57 | keyboard/mice. |
| 58 | |
| 59 | Add a graphical boot splash screen? |