1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:27:35 +00:00

Kernel/USB: Start fleshing out a basic UHCI controller driver :^)

Let's see if we can talk to some USB devices. We will now detect
a UHCI controller if present on the PCI bus.
This commit is contained in:
Andreas Kling 2020-09-04 09:59:38 +02:00
parent 2e01f1f9b9
commit e834c24eea
5 changed files with 149 additions and 0 deletions

View file

@ -33,6 +33,7 @@ set(KERNEL_SOURCES
Devices/RandomDevice.cpp
Devices/SB16.cpp
Devices/SerialDevice.cpp
Devices/UHCIController.cpp
Devices/VMWareBackdoor.cpp
Devices/ZeroDevice.cpp
DoubleBuffer.cpp