b9de373b31
Restore all bootprocess branch files that were overwritten by later 0.2.0 commits. This overlay brings back the complete boot infrastructure: - Configs: redbear-full, redbear-mini, redbear-device-services, driver .d files - Kernel: IRQ affinity, x2APIC, C-states, NUMA (SLIT/SRAT), MCS locks, cpuidle - Base patches: P0-P55 + new P6 (lived block_size=512) + P57 (fbbootlogd graceful init) - Driver infra: driver-manager, udev-shim, thermald, cpufreqd, iommu, redox-driver-sys/core - GPU: redox-drm with improved connector handling - System: redbear-info, redbear-hwutils phase-timer-check - Build system: fetch.rs improvements, build-iso.sh, run_full.sh - Kernel source: new ACPI (SLIT, SRAT), cpuidle, cstate, MCS lock modules 83 files changed, +3966/-1248 lines
118 lines
2.2 KiB
TOML
118 lines
2.2 KiB
TOML
# USB host controller drivers
|
|
|
|
# xHCI (USB 3.x)
|
|
[[driver]]
|
|
name = "xhcid"
|
|
description = "xHCI USB host controller"
|
|
priority = 80
|
|
command = ["/usr/lib/drivers/xhcid"]
|
|
|
|
[[driver.match]]
|
|
class = 0x0C
|
|
subclass = 0x03
|
|
prog_if = 0x30
|
|
|
|
# EHCI (USB 2.0)
|
|
[[driver]]
|
|
name = "ehcid"
|
|
description = "EHCI USB 2.0 host controller"
|
|
priority = 80
|
|
command = ["/usr/lib/drivers/ehcid"]
|
|
|
|
[[driver.match]]
|
|
class = 0x0C
|
|
subclass = 0x03
|
|
prog_if = 0x20
|
|
|
|
# OHCI (USB 1.1 — non-Intel chipsets)
|
|
[[driver]]
|
|
name = "ohcid"
|
|
description = "OHCI USB 1.1 host controller"
|
|
priority = 80
|
|
command = ["/usr/lib/drivers/ohcid"]
|
|
|
|
[[driver.match]]
|
|
class = 0x0C
|
|
subclass = 0x03
|
|
prog_if = 0x10
|
|
|
|
# UHCI (USB 1.1 — Intel chipsets)
|
|
[[driver]]
|
|
name = "uhcid"
|
|
description = "UHCI USB 1.1 host controller (Intel)"
|
|
priority = 80
|
|
command = ["/usr/lib/drivers/uhcid"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
class = 0x0C
|
|
subclass = 0x03
|
|
prog_if = 0x30
|
|
|
|
# EHCI (USB 2.0)
|
|
[[driver]]
|
|
name = "ehcid"
|
|
description = "EHCI USB 2.0 host controller"
|
|
priority = 80
|
|
command = ["/usr/lib/drivers/ehcid"]
|
|
|
|
# EHCI now owns a simple /scheme/usb controller surface for per-port status and
|
|
# control-transfer pass-through while the wider USB stack continues converging.
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
class = 0x0C
|
|
subclass = 0x03
|
|
prog_if = 0x20
|
|
|
|
# OHCI (USB 1.1 — non-Intel chipsets)
|
|
[[driver]]
|
|
name = "ohcid"
|
|
description = "OHCI USB 1.1 host controller"
|
|
priority = 80
|
|
command = ["/usr/lib/drivers/ohcid"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
class = 0x0C
|
|
subclass = 0x03
|
|
prog_if = 0x10
|
|
|
|
# UHCI (USB 1.1 — Intel chipsets)
|
|
[[driver]]
|
|
name = "uhcid"
|
|
description = "UHCI USB 1.1 host controller (Intel)"
|
|
priority = 80
|
|
command = ["/usr/lib/drivers/uhcid"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
class = 0x0C
|
|
subclass = 0x03
|
|
prog_if = 0x00
|
|
|
|
# USB class drivers
|
|
|
|
[[driver]]
|
|
name = "usbhubd"
|
|
description = "USB Hub driver"
|
|
priority = 75
|
|
command = ["/usr/lib/drivers/usbhubd"]
|
|
# Spawned by xhcid when hubs are detected
|
|
|
|
[[driver]]
|
|
name = "usbctl"
|
|
description = "USB control daemon"
|
|
priority = 70
|
|
command = ["/usr/lib/drivers/usbctl"]
|
|
|
|
[[driver]]
|
|
name = "ucsid"
|
|
description = "USB-C UCSI topology detector"
|
|
priority = 60
|
|
command = ["/usr/lib/drivers/ucsid"]
|
|
|
|
# Example: xhcid depends on pci scheme being available
|
|
# [driver.depends_on]
|
|
# scheme = "pci"
|