aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-09-28 21:32:08 -0400
committerKevin O'Connor <kevin@koconnor.net>2009-09-28 21:32:08 -0400
commit114592f000d5bc89b7d149e320a31ab209e20b41 (patch)
tree124c00dc27a4ecb755d37027193a4f6419fdd3ea /src/config.h
parent6aee52dd45843bbc884692a34c3a6b4e3eb392e8 (diff)
downloadseabios-114592f000d5bc89b7d149e320a31ab209e20b41.tar.gz
Initial support for USB, UHCI, and USB Keyboards.
This adds preliminary support for USB controllers and keyboards. Add support for UHCI controllers. Add support for "HID" USB keyboards. Also, fix bug in hexdump() - len need not be power of 4.
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index df10bbe4..e93b0806 100644
--- a/src/config.h
+++ b/src/config.h
@@ -28,6 +28,12 @@
#define CONFIG_DRIVES 1
// Support floppy drive access
#define CONFIG_FLOPPY 1
+// Support USB devices
+#define CONFIG_USB 1
+// Support USB UHCI controllers
+#define CONFIG_USB_UHCI 1
+// Support USB keyboards
+#define CONFIG_USB_KEYBOARD 1
// Support for IDE disk code
#define CONFIG_ATA 1
// Use 32bit PIO accesses on ATA (minor optimization on PCI transfers)