Kevin O'Connor | 0775070 | 2009-07-13 20:35:38 -0400 | [diff] [blame] | 1 | Add int 0x1589 support. |
| 2 | |
Kevin O'Connor | 2ad3744 | 2008-05-06 19:49:01 -0400 | [diff] [blame] | 3 | Review changes committed to coreboot, virtualbox, qemu, kvm, and bochs |
| 4 | cvs tip. |
Kevin O'Connor | 0775070 | 2009-07-13 20:35:38 -0400 | [diff] [blame] | 5 | * bochs cvs (20090620): |
Kevin O'Connor | 6965665 | 2009-07-30 20:17:33 -0400 | [diff] [blame] | 6 | -- hpet, int1589, smbios mem>16GB, mptable on 1 cpu |
Kevin O'Connor | 0775070 | 2009-07-13 20:35:38 -0400 | [diff] [blame] | 7 | * coreboot (r3348): (bochs 20060708) |
| 8 | -- no noteworthy enhancements |
| 9 | * qemu (r6125): (bochs 20080603) |
| 10 | -- acpi hpet table |
| 11 | * kvm (1a33292): (bochs 20081016) |
| 12 | -- acpi dsdt changes, e820 vmx pages, setup mtrrs, clear tsc, acpi |
| 13 | intsrcovr table, different pci irqs, smbios always uses 16 |
| 14 | cpus, no acpi ssdt, fadt->gpe0_blk set |
| 15 | * virtualbox (r13560): (bochs 20061231) |
| 16 | -- lots of mouse changes, logo, scsi/etherboot hooks, int 1589, |
| 17 | floppy data rate?, int19 calls post |
Kevin O'Connor | 2ad3744 | 2008-05-06 19:49:01 -0400 | [diff] [blame] | 18 | |
Kevin O'Connor | 7a558e4 | 2008-03-11 20:38:33 -0400 | [diff] [blame] | 19 | Audit all sti/cli calls. Audit all call16 calls to make sure flags is |
| 20 | setup properly with respect to irqs. |
Kevin O'Connor | 44c631d | 2008-03-02 11:24:36 -0500 | [diff] [blame] | 21 | |
Kevin O'Connor | b8aacb0 | 2008-03-01 14:56:07 -0500 | [diff] [blame] | 22 | The __call16 code does a long jump to the interrupt trampolines - this |
| 23 | is unnecessary. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 24 | |
Kevin O'Connor | 2ad3744 | 2008-05-06 19:49:01 -0400 | [diff] [blame] | 25 | Possibly implement 32bit pcibios support. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 26 | |
| 27 | Allow one to select adding 32 bit code to 0xf000 or in a separate |
| 28 | location. |
| 29 | |
Kevin O'Connor | 0775070 | 2009-07-13 20:35:38 -0400 | [diff] [blame] | 30 | Support PCIv3 roms? Add support for PCI "configuration code" |
| 31 | extensions? Add support for PCI permanent memory extensions to PMM? |
Kevin O'Connor | b62d1ae | 2009-02-05 19:35:11 -0500 | [diff] [blame] | 32 | |
| 33 | Possibly add option to eliminate tsc based delays on emulators. |
Kevin O'Connor | 65e6342 | 2008-07-19 14:12:32 -0400 | [diff] [blame] | 34 | |
Kevin O'Connor | f13b008 | 2008-08-17 11:26:42 -0400 | [diff] [blame] | 35 | Add a kconfig style configuration program instead of requiring users |
| 36 | to modify config.h. |
| 37 | |
Kevin O'Connor | 0775070 | 2009-07-13 20:35:38 -0400 | [diff] [blame] | 38 | Support usb booting? Support usb keyboard/mice? |
Kevin O'Connor | 65e6342 | 2008-07-19 14:12:32 -0400 | [diff] [blame] | 39 | |
| 40 | Add a graphical boot splash screen? |
Kevin O'Connor | 0775070 | 2009-07-13 20:35:38 -0400 | [diff] [blame] | 41 | |
| 42 | Possibly support sending debug information over EHCI debug port. |