Track base pointer to bd379e07 (usbhubd debounce/reset-wait/U0-wait/
wHubDelay + SET_ISOCH_DELAY, HubDescriptorV3 device_removable fix).
USB-IMPLEMENTATION-PLAN.md: P3-A marked CORE COMPLETE with the full
Linux equivalence inventory and documented follow-ups (USB 2.0 bitmaps,
SS.Inactive warm-reset loop, multi-TT, hub LPM). Hub gap-table row
updated (249 -> ~700 LoC with Linux state machine).
HARDWARE-VALIDATION-MATRIX.md: hub row updated — enumeration core
complete with 14 unit tests; runtime hub proof tracked under P8-B.
40 KiB
Red Bear OS USB Plan — v3
Status: Canonical (v3). Supersedes v1 (pre-fork draft) and v2 (archived at
local/docs/archived/USB-IMPLEMENTATION-PLAN-v2-2026-07.md). Date: 2026-07-07; last revised 2026-07-18 (P2-A/P2-B completion records, P2-C status, doc consolidation). Goal: Make USB a first-class citizen in Red Bear OS — mature, reliable, feature-complete host stack matching the user-visible capability of Linux 7.1.
0. Scope and method
This plan is the comprehensive roadmap for Red Bear OS USB. It is built from three sources:
- Code audit (v2 era, 2026-07-07): every USB source file enumerated; TODOs, unwraps, and panic sites catalogued; maturity assessed per component.
- Linux 7.1 reference deep-dive:
local/reference/linux-7.1/drivers/usb/mapped feature-by-feature against Red Bear. Linux is treated as the implementation of excellence — structures, sequences, and edge-case handling are cross-referenced and reimplemented in Rust as needed. - Upstream Redox commit scan: 33 USB-relevant upstream commits (Jan 2025 – May 2026) tracked; 28 already adopted, 4 needing verification, 1 outstanding.
Validation labels
- builds — code is in tree and compiles.
- enumerates — runtime surfaces can discover controllers, ports, descriptors.
- usable-narrow — one controller family / one class family works in a bounded scenario.
- validated-QEMU — a documented QEMU script passed on the matching recipe, config, and commit.
- validated-hardware — a named physical controller + class, with a captured log, on real bare metal.
- experimental — present for bring-up but not in any support-promised path.
Linux 7.1 as the implementation of excellence
Where the v2 plan referenced Redox upstream commits, v3 references Linux 7.1 as the canonical reference. When implementation detail is in doubt:
- Check Linux 7.1 first.
- If Linux has the algorithm, port it to Rust line-by-line (preserving the data structure layouts).
- If Linux has multiple approaches (e.g., kernel vs. userspace), use the userspace model since Red Bear's USB drivers are all userspace.
- Cite the Linux source file:line in commit messages.
1. Executive summary — gap analysis
| Dimension | Red Bear | Linux 7.1 | Gap |
|---|---|---|---|
| Total USB source lines | ~13,000 | ~280,000+ | ~22× |
| Host controllers with real implementations | 1 (xhcid) | 4 (xHCI, EHCI, UHCI, OHCI) | 3 missing |
| Host controllers building | 3 (ehcid, uhcid, ohcid) | — | — |
| Storage protocols | 1 (BOT) | 5+ (BOT, UAS, SAT, UASP, multi-LUN) | 4 missing |
| HID class features | Boot protocol only | Full report descriptor parsing, multi-touch, quirks | ~80% gap |
| Class drivers | 6 working (acm 133, ecm 261, audio 308, HID, storage, hub) | 80+ drivers | ~75 missing |
| Hub driver lines | ~700 (usbhubd + port_ops) with Linux state machine | 6,567 (hub.c) | Enumeration core done (P3-A); interrupt EP/LED/TT gaps |
| xHCI quirks | 51 flags + ~85-entry canonical table (redox-driver-sys, P2-A); ~40 check sites in xhcid | 51 quirks | ✅ Done |
| Error recovery | All 36 codes with active recovery (P2-C core ✅); runtime injection tests open | Babble, transaction error, split error, clear-TT | Core done; validation gap |
| Power management | HW LPM substrate + U3 gate + PORTPMSC helpers (P2-B); per-device LPM, U1/U2, autosuspend missing | Runtime PM, U1/U2, LPM, autosuspend | Core missing |
| Hardware validation matrix | 0 entries | ~200 known-good controllers | All missing |
P0 — already done (carried from v2)
P0 is complete and committed:
- P0-A1 xHCI interrupts re-enabled (base fork
cbd40e0d) - P0-A2 Reset fix verified in 0.1.0 baseline
- P0-A3 CSZ cleanup (removed stale TODO, base fork
7cfed158) - P0-A4 Bounds check on
root_hub_port_index()(base fork774a0ac1) - P0-B1 EHCI auto-spawn + xhcid-compat scheme (ehcid + usb-core)
- P0-B2 UHCI + OHCI real drivers (459 + 280 LoC, compile clean)
Architectural goal ✅ ACHIEVED (2026-07-08)
All 4 host controllers implement usb_core::UsbHostController:
xhcidviaXhciAdapter<N>(trait_adapter.rs)ehcidvia its native schemeuhcidviaUhciController(bulk/interrupt transfers implemented 2026-07-08)ohcidviaOhciController
P0 + P1 complete (2026-07-08): panic reduction done, PortId bounds check, protocol_speeds cap, crossbeam channels bounded, 23 unit tests.
Critical risks ✅ RESOLVED (2026-07-08)
- usbscsid
.unwrap()/.expect()fixed — event queue creation and subscribe now usematchwith error logging - xhcid panic sites reduced — #![allow(warnings)] removed, EDTLA fixed, PortId Option return
- 232 test cases remain for TRB (12) + hub (7) + SCSI (4)
- Class drivers — all functional (verified 2026-07-08):
redbear-acmd(133 lines, CDC ACM serial),redbear-ecmd(261 lines, CDC ECM Ethernet),redbear-usbaudiod(308 lines, USB Audio). Previously incorrectly listed as 32-line stubs.
2. Phase roadmap
| Phase | Goal | Exit criteria |
|---|---|---|
| P1 | Trait unification + panic hardening | All 4 controllers implement UsbHostController; usbscsid 0 panic sites; xhcid <20 unwraps |
| P2 | xHCI core completeness | ✅ Quirk table (P2-A, 2026-07-18); ✅ HCCPARAMS2 parsed + gated (P2-B, 2026-07-18); 🚧 error recovery (36 codes defined; active recovery in progress) |
| P3 | Hub driver maturity | Full enumeration sequence; USB 3.0 SS hub support; port power/reset timing; wHubDelay accumulation |
| P4 | Storage: UAS + multi-LUN | UAS protocol implementation; multi-LUN dispatch; SYNCHRONIZE_CACHE; WRITE SAME/UNMAP |
| P5 | HID: report descriptor parser + input mapping | Full HID report descriptor parser; usage→evdev mapping; HID quirks; multi-touch support |
| P6 | Class driver completeness ✅ RESOLVED | All 6 USB class drivers functional: ACM (133 LOC), ECM (261 LOC), Audio (308 LOC), HID, storage, hub |
| P7 | Power management | USB 2.0 LPM; USB 3.0 U1/U2/U3; runtime PM autosuspend; xHCI link state management |
| P8 | Validation: hardware matrix + QEMU harness expansion | Hardware-validation matrix with one row per controller; new QEMU tests for OHCI/UHCI/EHCI; error-injection tests |
| P9 | Modern USB scope ADR (inherited from v2 §12) | Decided: host-only. Already written. |
3. P1 — Trait unification and panic hardening
Why first: Without a unified trait, every later phase has to write per-controller glue. Panic hardening is unconditional — the system cannot ship with mass-storage and xHCI crashes.
P1-A: All four controllers implement usb_core::UsbHostController
Reference: local/reference/linux-7.1/drivers/usb/core/hcd.c (Host Controller Driver framework, 3,194 lines) and drivers/usb/host/ (4 host drivers, all conforming to a shared struct hc_driver).
Current state:
| Controller | Trait | Scheme | Status |
|---|---|---|---|
| xhcid | ❌ | own scheme.rs | ad-hoc |
| ehcid | ✅ | redox-scheme::SchemeSync | good template |
| uhcid | ❌ | none | enum-only |
| ohcid | ❌ | none | enum-only |
Tasks:
- Define unified scheme path:
usb-core::SCHEME_NAMESPACE = "usb.<pci_name>_<controller_name>"(xhcid-style). All controllers register under this namespace. - Refactor xhcid's
scheme.rsto satisfyUsbHostControllertrait. The trait'scontrol_transfer/bulk_transfer/interrupt_transferdelegate to existing xhcid scheme handlers. - Add scheme registration to uhcid and ohcid using the same pattern. Their existing in-guest enumeration stays; we add a
SchemeSyncserver under the new namespace. - Replace ad-hoc class spawn in all four controllers with
usb-core::spawn::spawn_class_driver_for_port. Class daemons open the namespace from the controller'sscheme_name.
Files to touch:
local/sources/base/drivers/usb/xhcid/src/xhci/scheme.rs(refactor)local/recipes/drivers/uhcid/source/src/main.rs(add scheme)local/recipes/drivers/ohcid/source/src/main.rs(add scheme)local/recipes/drivers/usb-core/source/src/scheme.rs(extend trait if needed)
Linux 7.1 cross-reference: drivers/usb/core/hcd.c:1700 usb_create_hcd() — uniform scheme-name pattern bus_name-hcd_name. Adapt for Redox's scheme namespace.
Exit: all four controllers implement the trait; class daemons can connect to all four via the same scheme.
P1-B: usbscsid panic hardening
Reference: local/reference/linux-7.1/drivers/usb/storage/transport.c (1,462 lines) and drivers/usb/core/urb.c (1,021 lines). Linux USB storage never panics on stall — it returns -EPIPE, -ETIME, -EIO, etc.
Files to touch: local/sources/base/drivers/storage/usbscsid/src/
Tasks:
- Replace every
panic!()inprotocol/bot.rs(12 sites) withreturn Err(...)orbail!(). - Each panic site maps to a specific failure mode. Audit each one:
- CBW send failure →
Err(StorageError::CommandBlockError) - Data-phase stall →
Err(StorageError::Stall)(don't kill the daemon) - CSW parse error →
Err(StorageError::InvalidStatusWrapper) - Mass storage reset → call
usbscsid::reset_port()instead of panicking
- CBW send failure →
- Replace
mod uas { // TODO }stub with either a real UAS implementation (see P4) or a cleanunimplemented!()that returnsErr(UasError::NotSupported). - Add
#[derive(Debug, thiserror::Error)]for all error types — no string-based panic messages.
Exit: cargo check passes; grep -c panic!() on the usbscsid tree returns 0.
P1-C: xhcid panic reduction
Reference: local/reference/linux-7.1/drivers/usb/host/xhci.c — uses dev_err(), dev_warn(), and explicit return -EINVAL for every error path. Linux xhci never panics in normal operation.
Files to touch: local/sources/base/drivers/usb/xhcid/src/xhci/
Tasks:
- Replace each
.unwrap()on Mutex locks with.lock().unwrap_or_else(|e| e.into_inner())— already done in some sites; complete across the tree. - Replace each
.expect()with explicit error logging + fallible helper functions. - Remove the 5 explicit
panic!()calls in hot paths:irq_reactor.rs:31—Failed to received an enumeration request!→ log error + returnirq_reactor.rs:71—No XHCI controllers found→ log error + abort init cleanlyirq_reactor.rs:620—Polling finished EventTrbFuture again→ log warning + skipirq_reactor.rs:672/703/731—Invalid TRB type→ log error + corrupt-ring recoveryscheme.rs:2011—unreachableHandleKind → log error + return EBADF
- Convert
mod.rs:694TODO handle the second unwrapand similar known-fragile sites.
Target: ≤20 unwrap/expect total in xhcid (down from ~125).
Exit: grep -c 'panic!\|\\.unwrap()\|\\.expect(' local/sources/base/drivers/usb/xhcid/src/xhci/*.rs ≤20.
P1-D: Remove the 3 empty stubs ✅ RESOLVED (2026-07-08)
All 3 class drivers are fully implemented (verified 2026-07-08):
redbear-acmd: 133 lines, CDC ACM serialredbear-ecmd: 261 lines, CDC ECM Ethernetredbear-usbaudiod: 308 lines, USB Audio
None are stubs. Original plan incorrectly stated they were 32-line "not yet implemented" stubs.
4. P2 — xHCI core completeness
Why this matters: The 51-entry xHCI quirk table in Linux is the difference between "works on QEMU" and "works on real hardware." Without quirks, xhcid will silently misbehave on Intel, AMD, NEC, ASMedia, Etron, Cadence, and Fresco Logic controllers.
P2-A: xHCI quirk table ✅ COMPLETE (2026-07-18)
Reference: local/reference/linux-7.1/drivers/usb/host/xhci.h:1587-1649 (51 quirk flags).
Status: Complete, and converged into the canonical quirks path
(redox-driver-sys) per the quirks-system single-source-of-truth policy —
not a per-driver private table as originally scoped.
XhciControllerQuirkFlagswith all 51 Linux 7.1 flags (bit positions matchingxhci.h) lives inredox-driver-sys/src/quirks/mod.rs.- Canonical controller table
redox-driver-sys/src/quirks/xhci_table.rs: ~85 entries ported fromxhci-pci.c:xhci_pci_quirks()(lines 251-517),XhciQuirkEntrywith vendor/device/revision matching + WILDCARD, 38 unit tests. - Lookup:
lookup_xhci_controller_quirks_full(vendor, device, revision, hci_version, dmi_info)— revision + hci_version enable the two table entries that need them (AMD_0x96_HOST, >= 0x120 spec rule). - xhcid consumes via a thin re-export shim (
xhci/quirks.rs); reads the real HCIVERSION from MMIO offset 0x04 (mirrorsxhci_gen_setup()xhci.c:5455). - BROKEN_MSI now skips MSI/MSI-X probing inside
get_int_method()so the interrupt handle and delivery method always agree (previously a handle/method mismatch bug). - ~40 quirk check sites active across xhcid (reset, run, MSI, streams, ring sizing, LPM, suspend).
Bugs fixed vs xhcid's old self-contained table (7): Intel 0x9c31 duplicate, WildcatPoint→0x9cb1, Panther Point→0x1e31, VIA VL805 flags, Phytium flags, ASMedia 0x1142 flags, Intel 0x9a13 list placement.
Commits: base 9fc1947d, parent 980fb994ae.
Exit met: per-controller quirk probe at init; quirk-aware behavior in 5+ paths.
P2-B: HCCPARAMS2 parsing (xHCI 1.1+ features) ✅ COMPLETE (2026-07-18)
Reference: local/reference/linux-7.1/drivers/usb/host/xhci-caps.h:94-119
13 HCCPARAMS2 bits enable U3 entry, extended TBC, eUSB2, etc. Current xhcid reads only HCCPARAMS1.
Status: Parsing was already complete (all 11 HCCPARAMS2 bit constants +
accessors + HCS3 latencies in capability.rs). Gating implemented per Linux
7.1 cross-reference:
- LEC gate (HCC2_LEC) —
scheme.rs:lec = hci_ver > 0x100 && cap.lec()(Linux xhci-mem.c:1350 exact condition); gates isoch Mult field (existingisoch_mult(lec)) and zeroes Max ESIT Payload Hi when LEC=0 (spec Table 6-8 RsvdZ requirement). - U3C gate (HCC2_U3C) —
suspend_port()refuses SS U3 entry with ENOSYS whenhci_ver >= 0x110 && !hcc2_u3c()(spec §4.15.1; Linux ignores the bit, xhcid is spec-strict). USB2 suspend unaffected (bus-level suspended state). - CMC (HCC2_CMC) — no active gate (mirrors Linux: error 0x1D MaxExitLatencyTooLarge handled unconditionally via P2-C completion codes).
- CIC (HCC2_CIC) — already gated pre-existing: CONFIG.CIE set from
cic()(mod.rs), now withhci_ver > 0x100guard; CIE consumed in input control context build (scheme.rs). - HW LPM (XHCI_HLC/BLC/L1C) — new
SupportedProtoCap::{hw_lpm_capable, besl_lpm_capable, l1_capable}accessors (protocol-defined bits, Linux xhci-ext-caps.h:62-66);Xhci::hw_lpm_supportcomputed per Linux xhci-mem.c:2137 (hci_ver >= 0x100 && !HW_LPM_DISABLE && any USB2 protocol cap has HLC); defensive LPM clear on USB2 ports at attach when unsupported (Linux xhci.c:4725 disable path);Port::enable_lpm/disable_lpmregister targets fixed (HLE/HIRD/RWE/L1DS belong in PORTPMSC, not PORTHLPMC — spec Tables 5-21/5-23). Per-device L1 enablement (BESL computation, MEL Evaluate Context) deferred to P3 hub work. - Bug fix: removed bogus
CapabilityRegs::hlc()+HCC_PARAMS1_HLC_BIT(read xECP pointer bits, not HLC — HLC is in the protocol caps, not HCCPARAMS1). - Version guards: HCC2 log block +
set_ciegated onhci_ver > 0x100(HCCPARAMS2 register space is reserved on xHCI 1.0).
Exit met: HCCPARAMS2 parsed; 4 features gated (LEC×2, U3C, CIC, HW LPM substrate). cargo check clean (138 warnings, -2 vs baseline), 43/43 tests pass.
P2-C: Error recovery ✅ CORE COMPLETE (2026-07-18); runtime injection tests open (P8-C)
Reference: local/reference/linux-7.1/drivers/usb/host/xhci-ring.c (4,472 lines), specifically handle_tx_event() for the 36 completion codes.
Status: Active recovery is implemented for all 36 completion codes.
maybe_recover_transfer_error() (scheme.rs:559-925) is the dispatch,
wired into both execute_control_transfer() and execute_transfer() retry
loops. Linux equivalences verified line-by-line against xhci-ring.c.
Recovery matrix (implemented):
| Code | xhcid behavior | Linux equivalent |
|---|---|---|
UsbTransaction (0x04) |
Soft retry ×3 (reset_endpoint(tsp=true) + restart_endpoint), then hard reset |
process_bulk_intr_td ring.c:2529, MAX_SOFT_RETRY=3 |
Resource (0x07) |
Backoff retry ×3 (10 ms×count) + reset, then hard reset | giveback + re-queue |
Stall (0x06) |
reset_endpoint(tsp=false) + restart_endpoint + CLEAR_FEATURE(ENDPOINT_HALT), no retry |
finish_td → xhci_handle_halted_endpoint(EP_HARD_RESET) + usb_clear_halt |
Babble/DataBuffer/Trb/SplitTransaction |
Hard reset + clear_tt_buffer_once() when behind_highspeed_hub, no retry |
xhci_handle_halted_endpoint + usb_hub_clear_tt_buffer (hub.c:920) |
Stopped* (0x1A-0x1C) |
restart + retry ×3, then hard reset | stop-endpoint completion path |
InvalidStreamType/Id |
soft reset + retry ×3 | stream error path |
IncompatibleDevice (0x16) |
disable_slot — re-enumeration required |
ring.c:2757 comment |
MissedService/NoPingResponse |
log + surface | ep->skip semantics |
ContextState/Parameter/IsochBuffer/EventLost/Undefined |
hard reset | fatal class |
MaxExitLatencyTooLarge (0x1D) |
log (CMC detection, see P2-B) | xhci.c:2198 |
| Command errors on transfer events | log (xHC state confusion) | — |
Infrastructure (verified 2026-07-18):
reset_endpoint/restart_endpoint/set_tr_deque_ptrcommand chain mirrors Linux's RESET_EP → SET_TR_DEQUEUE → doorbell sequence.restart_endpoint()fixed this pass: (a) latent deadlock — theport_stateswrite guard was held acrossset_tr_deque_ptr()'s internal read-guard acquisition on the same key (std RwLock read-while-write); (b) doorbell ordering — spec 4.6.8/4.6.10 requires Set TR Dequeue before doorbell (TR Dequeue Pointer is undefined after Reset Endpoint); (c) NoOp priming — dequeue now points at the priming NoOp so the xHC executes it on restart (Linuxxhci_move_dequeue_past_tdsemantics).CLEAR_FEATURE(ENDPOINT_HALT)control transfer (clear_endpoint_halt_no_recovery) =usb_clear_haltdevice-side half.clear_tt_buffer_once()for FS/LS devices behind HS hubs = boundedusb_hub_clear_tt_bufferequivalent (hub.c:920).
Known simplifications vs Linux (documented, acceptable for current usage):
- Retry budget is per-transfer-call (matches Linux's per-TD
err_count; Linux resets it on success, so semantics are equivalent within one transfer). No cross-transfer cumulative counters yet. - On stall, pending TRBs after the failed TD are abandoned (Linux NoOps the stalled TD in place and resumes subsequent TDs). xhcid's transfer model is synchronous/single-TD, so this is not observable today.
handle_event_trbmaps all non-Success command completions to EIO without per-code discrimination.
Exit met: 36 completion codes handled with appropriate recovery. Remaining: runtime error-injection proof (P8-C: hot-unplug mid-transfer, stall injection, 10k random disconnects without panic).
5. P3 — Hub driver maturity
Why this matters: The current usbhubd is 249 LoC doing basic port-change detection. Linux hub.c is 6,567 lines doing full enumeration. The gap is 95%.
P3-A: Full enumeration sequence ✅ CORE COMPLETE (2026-07-18)
Reference: local/reference/linux-7.1/drivers/usb/core/hub.c:1449 hub_configure() and hub_port_connect().
Status: usbhubd (now ~700 LoC incl. port_ops.rs) implements the full
Linux port state machine with injected-side-effect, unit-tested ops
(14 tests). Enumeration of hub-attached devices remains delegated to
xhcid's attach_device() — architecturally correct (xhcid owns slot
allocation/addressing for root and hub ports alike).
Implemented (Linux hub.c equivalence):
- ✅ Hub descriptor read (V2/V3) — pre-existing. Fixed:
HubDescriptorV3now reads the full 12-byte SS descriptor includingdevice_removable: u16(spec Table 10-15; previously under-read by 2 bytes; SS descriptors have no PortPwrCtrlMask — stale TODO comment corrected). Non-removable ports logged at startup. - ✅ Power-on delay
max(bPwrOn2PwrGood * 2ms, 100ms)— pre-existing, verified vshub_power_on_good_delay()(hub.h:165-173). - ✅ USB 3.0 polling→U0 wait (
port_ops::wait_for_u0) — after port power-on, poll link state every 36 ms until out of Polling(7), 400 ms ceiling (tPollingLFPSTimeout = 360 ms; Linux hub.c:1226 debounce path). - ✅ Per-port enumeration:
- Reset signaling + completion wait (
port_ops::wait_for_reset) — Linuxhub_port_wait_reset()(hub.c:2953-3047): 10 ms polls until RESET clears with CONNECTION set, escalate to 200 ms after two short waits, 800 ms budget; then 50 ms TRSTRCY recovery (hub.c:3159) and C_PORT_RESET clear. Replaces the previous baresleep(10ms). - Debounce (
port_ops::debounce_until_connected) — Linuxhub_port_debounce_be_connected()(hub.c:4696-4737): 25 ms polls, connection stable for 100 ms, 2 s budget, change bit cleared in-loop. - Change-bit hygiene — C_PORT_CONNECTION (debounce), C_PORT_RESET
(reset-wait), C_PORT_ENABLE (post-handling) all cleared per Linux
port_event()semantics; over-current recovery preserved. - Address/descriptor/configuration — via xhcid
attach_device()(enable slot → address device → descriptors → driver spawn), the same path as root-hub ports.
- Reset signaling + completion wait (
- ✅
HUB_SET_DEPTH(0x0C) for USB 3 hubs — pre-existing. - ✅
wHubDelaychain accumulation —port_ops::accumulate_hub_delay_ns(Linux hub.c:1507-1519:wHubDelay + parent->hub_delay + 40ns, cap 65535 ns). usbhubd walks the PortId ancestor chain fetching ancestor V3 hub descriptors, then delivers the result to each newly attached SuperSpeed child viaSET_ISOCH_DELAY(USB 3.0 §9.4.11; Linux message.c:1142-1158 — hubs and non-SS skipped; children inherit the hub's accumulated delay verbatim per hub.c:5128-5129).
Remaining (documented follow-ups): USB 2.0 device_removable/
PortPwrCtrlMask variable-length bitmaps unparsed (separate fetch needed);
SS.Inactive warm-reset recovery loop (hub.c:5841-5868); multi-TT switching;
U1/U2 LPM on hub ports (P7); interrupt-EP usage on USB 3 hubs without one
(polling fallback works).
Exit met: complete hub enumeration including power timing, USB 3 hub handling, and TT accumulation.
P3-B: Hub interrupt-driven change detection
Reference: linux-7.1/drivers/usb/core/hub.c:1000+ hub_irq().
Current usbhubd polls at 100ms intervals. Linux uses hub interrupt endpoints (USB_ENDPOINT_DIR_IN + USB_USAGE_TYPE_INTERRUPT) for immediate change notification.
Tasks:
- Add interrupt endpoint configuration to usbhubd (USB hub interrupt endpoint is always EP1).
- Subscribe to interrupt IN transfers for status change bitmap.
- Fall back to polling only when interrupt endpoint is unavailable.
Exit: interrupt-driven on USB 2 hubs; polling fallback on USB 3 hubs (which lack interrupt endpoints).
P3-C: Port LED control
Reference: linux-7.1/drivers/usb/host/xhci-port.h:64-67 (PORT_LED_OFF/AMBER/GREEN).
Tasks:
- Expose hub port LED control via
SET_HUB_FEATURE(PORT_INDICATOR). - Implement in usbhidd keyboard LED sync (cross-couple with P5-C).
Exit: port LEDs controllable via scheme.
6. P4 — Storage: UAS + multi-LUN + SAT
Why this matters: BOT alone limits USB 3.0 storage to ~30-40 MB/s. UAS unlocks 350+ MB/s. Multi-LUN is needed for card readers. SYNCHRONIZE_CACHE / UNMAP are needed for SSD correctness and TRIM.
P4-A: UAS protocol
Reference: local/reference/linux-7.1/drivers/usb/storage/uas.c (1,304 lines).
UAS uses 4 endpoints (cmd BULK OUT, status BULK IN, data-in BULK IN, data-out BULK OUT) and Information Units (Command IU, Sense IU, Response IU).
Tasks:
- Detect UAS interface (interface class 0x08, subclass 0x04, protocol 0x62 for UAS; 0x50 for BOT).
- Implement the 4-endpoint setup in usbscsid.
- Implement Command IU submission (32-byte structured).
- Implement Sense IU / Response IU parsing.
- Wire to xHCI streams (P2 prerequisite): UAS needs streams for true concurrent commands.
Files: local/sources/base/drivers/storage/usbscsid/src/protocol/uas.rs (new).
Linux cross-reference: uas.c:35-74 struct definitions; uas.c:600-900 command submission.
Exit: UAS path functional, fallback to BOT for non-UAS devices.
P4-B: Multi-LUN dispatch
Reference: linux-7.1/drivers/usb/storage/usb.c:1258 (usb_stor_scan_thread()).
Tasks:
- Extend SCSI dispatch to iterate LUN 0..max_lun.
- REPORT_LUNS opcode handling — list of LUNs available.
- Per-LUN device state — each LUN gets its own BlockDevice.
Files: local/sources/base/drivers/storage/usbscsid/src/scsi/cmds.rs, scsi/mod.rs.
Exit: 4-slot card reader enumerates as 4 separate block devices.
P4-C: SYNCHRONIZE_CACHE / WRITE SAME / UNMAP
Reference: linux-7.1/drivers/scsi/sd.c (sd driver issues these).
Tasks:
- Add
SYNCHRONIZE_CACHE(10)andSYNCHRONIZE_CACHE(16)opcodes toscsi/opcodes.rs. - Add
WRITE_SAME(10/16)andUNMAPopcodes. - Dispatch them in
scsi/cmds.rsto the BOT transport.
Exit: SSD TRIM works, data integrity on disconnect improves.
P4-D: Mass-storage quirks integration
Reference: linux-7.1/drivers/usb/storage/unusual_devs.h (2,513 lines, 323 entries).
Current state: Red Bear has 214 mass-storage quirks extracted from unusual_devs.h. Verify they're loaded at runtime and applied during enumeration.
Tasks:
- Verify
usb-core::spawn::class_driver_for_usb_class()for mass storage (0x08). - Add runtime quirk lookup: when usbscsid enumerates a device, look up its VID:PID in the quirk table, apply
IGNORE_RESIDUE,FIX_CAPACITY,SINGLE_LUN,MAX_SECTORS_64, etc. - Implement the runtime application in
usbscsid/src/main.rsat theread_capacity()andread_write()paths.
Exit: quirks applied at enumeration; redbear-usb-storage-check verifies a quirk-affected device behaves correctly.
7. P5 — HID: report descriptor parser + input mapping
Why this matters: usbhidd at 566 LoC only handles boot-protocol keyboard/mouse. Linux's hid-core.c (3,228 LoC) + hid-input.c (2,454 LoC) together handle every HID device class. The gap blocks touchscreens, gamepads (partially), consumer keys, and every non-trivial mouse/keyboard.
P5-A: HID report descriptor parser
Reference: local/reference/linux-7.1/drivers/hid/hid-core.c:1273 hid_open_report().
Tasks:
- Implement a full HID Report Descriptor parser in a new crate
local/recipes/drivers/redbear-hid-core/source/src/lib.rs:ReportDescriptorstruct: tree ofUsagePage,Usage,Collection(Application/Physical/Logical),Field(Input/Output/Feature with bit fields),Report(with report IDs and sizes).
- Parse the main item types:
Usage Page,Usage,Logical Minimum/Maximum,Report Size,Report Count,Report ID,Push/Pop,Collection/End Collection. - Output a tree that other HID drivers can walk.
Files: new crate local/recipes/drivers/redbear-hid-core/.
Exit: parses a Logitech mouse descriptor correctly into a structured tree.
P5-B: HID input mapping (usages → evdev)
Reference: local/reference/linux-7.1/drivers/hid/hid-input.c:1244 hidinput_configure_usage().
Tasks:
- Implement usage → input event mapping table:
- Generic Desktop 0x01: X/Y/Wheel → ABS_X/ABS_Y/REL_WHEEL
- Keyboard 0x07: a/A/Enter/etc → KEY_A/KEY_A/KEY_ENTER
- Button 0x09: mouse buttons → BTN_MOUSE/BTN_LEFT
- LED 0x08: keyboard LEDs
- Consumer 0x0C: Mute/Volume → KEY_MUTE/KEY_VOLUMEUP
- Digitizer 0x0D: Touch/Position → BTN_TOUCH/ABS_MT_POSITION_X
- Wire to
redbear-inputdvia evdev events (or whatever input daemon we use). - Switch from Orbital KeyEvent protocol to evdev for unified input.
Linux cross-reference: hid-input.c:140-200 (the usage→keycode mapping table).
Exit: media keys, gamepad buttons, and touchpad gestures work via USB HID.
P5-C: LED sync
Reference: local/reference/linux-7.1/drivers/hid/hid-input.c:317 hidinput_output_event() (Caps Lock → LED report).
Tasks:
- usbhidd: after boot completion, send
SET_REPORTto set Caps Lock / Num Lock / Scroll Lock LED state. - Wire to
redbear-inputdLED state events. - For both USB HID boot protocol and report protocol.
Exit: Caps Lock LED on a USB keyboard actually lights up when toggled.
P5-D: HID quirks
Reference: local/reference/linux-7.1/drivers/hid/hid-quirks.c (1,397 lines, ~200 device quirks).
Tasks:
- Add HID quirks table in
redbear-hid-core. - Per-device VID:PID overrides:
HID_QUIRK_NOTOUCH,HID_QUIRK_NO_INIT_REPORTS,HID_QUIRK_NOGET,HID_QUIRK_MULTI_INPUT, etc. - Apply at
usbhiddenumeration time.
Exit: Logitech Unifying receivers, Apple Magic Mouse, and Surface keyboards all work.
P5-E: Multi-touch
Reference: local/reference/linux-7.1/drivers/hid/hid-multitouch.c (2,756 lines).
Tasks:
- Detect multi-touch class (Usage Page 0x0D).
- Implement slot-based protocol (Type B) and report-based protocol (Type A).
- Forward ABS_MT_POSITION_X, ABS_MT_POSITION_Y, ABS_MT_SLOT, BTN_TOUCH to
inputd.
Exit: a USB touchscreen or touchpad produces touch events.
8. P6 — Class driver completeness
Why this matters: Red Bear has 6 class drivers, of which only 3 work (usbhubd, usbhidd, usbscsid). The other 3 are 32-line stubs. Plus we're missing CDC NCM (ethernet), USB Audio, USB-serial, and others.
P6-A: CDC ACM (remove the stub)
Reference: local/reference/linux-7.1/drivers/usb/class/cdc-acm.c (2,186 lines).
Files: local/recipes/system/redbear-acmd/ (currently stub).
Tasks:
- Implement a real CDC ACM class driver (
redbear-cdc-acmdor just keep the name and add code). - Line coding: baud rate, parity, stop bits, data bits.
- Flow control: RTS/CTS, DTR/DSR via control transfers.
- Break signaling.
- Multi-port modems (data + control + notification interfaces).
- Expose
/scheme/ttyfor userspace clients (replacing the stubredbear-acmdadmin CLI).
Exit: an FTDI USB-serial adapter or Arduino appears as a TTY device.
P6-B: CDC NCM (Ethernet over USB)
Reference: linux-7.1/drivers/net/usb/cdc_ncm.c (in drivers/net/usb/).
Tasks:
- Detect CDC NCM interface (subclass 0x0D).
- NTB (Network Transfer Block) framing.
- Aggregate frames into NTBs for efficiency.
- Wire to the netstack as a new interface.
Exit: a USB-Ethernet adapter (e.g., a phone-tethered device) works.
P6-C: USB Audio
Reference: local/reference/linux-7.1/sound/usb/ (USB audio class driver, ~5,000 lines).
redbear-usbaudiod/ is currently a 32-line stub. Replace with a real USB Audio Class 1.0 driver:
Tasks:
- Detect AudioControl interface + AudioStreaming interface.
- Parse Audio Control descriptors (unit IDs, terminals, mixer units).
- Configure audio streaming endpoint (alternate settings, packet size, format).
- Isochronous transfer ring setup (xHCI isoch — new code path).
- PCM playback/capture path to
redbear-audiod.
Exit: USB headphones / headset produce audio.
P6-D: USB-serial (top 5 drivers)
Reference: linux-7.1/drivers/usb/serial/ (56 .c files).
For v3, implement only the top 5 most common USB-serial chip families:
- FTDI (
ftdi_sio.c, 3,176 lines) — FT232, FT2232, FT4232 - CP210x (
cp210x.c, 753 lines) — Silicon Labs CP2102/CP2104 - PL2303 (
pl2303.c, 615 lines) — Prolific PL2303 - CH341 (
ch341.c, 583 lines) — QinHeng CH341 - CDC-ACM subset (covered by P6-A)
Exit: common USB-serial adapters work.
P6-E: USB compliance test driver
Reference: linux-7.1/drivers/usb/misc/usbtest.c (3,079 lines).
A redbear-usbtest tool that exercises:
- Bulk IN/OUT loopback with pattern verification
- Control endpoint round-trip
- Interrupt endpoint reception
- Isochronous endpoint loopback
- Halt/reset recovery
Exit: USB protocol compliance can be validated in-tree.
9. P7 — Power management
Why this matters: Without PM, USB devices draw full power forever, draining laptop batteries and overheating peripherals. Linux's PM framework handles U1/U2/U3/LPM/autosuspend.
P7-A: USB 2.0 LPM
Reference: linux-7.1/drivers/usb/host/xhci-port.h:135-173, xhci-hub.c.
Status (2026-07-18): Substrate done in P2-B — HLC/BLC/L1C parsed from the
Supported Protocol capability (NOT HCCPARAMS1: an earlier plan version and
driver accessor were wrong; HLC lives in the protocol caps port_info DWORD per
xHCI §7.2.2.1.3.2). Xhci::hw_lpm_support computed per Linux xhci-mem.c:2137;
Port::enable_lpm/disable_lpm implement the Linux two-register sequence;
defensive LPM clear runs on USB2 ports at attach when unsupported.
Remaining tasks:
Parse HLC✅ done (P2-B, protocol caps).- Implement
usb_set_device_initiated_lpm()(port hardware LPM control via PORTSC.PORT_L1DEV). - xhcid: per-device
PORT_HLEenablement at attach — gate chain per Linux xhci.c:4650:!HW_LPM_DISABLE && hw_lpm_support && udev->lpm_capable && root-hub-direct && non-hub, then BESL params + MEL Evaluate Context +enable_lpm(). - ehcid: implement via USBCMD.HIRD (Host Initiated Resume Duration).
Exit: USB 2.0 devices on HWA LPM-capable hubs enter L1 state when idle.
P7-B: USB 3.0 U1/U2/U3
Reference: linux-7.1/drivers/usb/host/xhci-port.h:17-30, xhci.c:2800+ xhci_stop_device().
Tasks:
- Implement U1/U2 entry per port via
PORT_U1_TIMEOUT/PORT_U2_TIMEOUTregisters. - U3 (suspend) via
Port Link State Writecommand TRB. - U3 → Resume (U0) detection on PORTSC.PLC.
- xHC-initiated suspend/resume (device responds to
SetPortFeature(PORT_SUSPEND)).
Exit: USB 3.0 devices enter U1/U2/U3 when idle, resume on traffic.
P7-C: Runtime PM autosuspend
Reference: linux-7.1/drivers/usb/core/driver.c:2081 usb_autosuspend().
Tasks:
- Add per-device idle timer (default 2s).
- Suspend device (U1/U2/U3) when timer expires.
- Resume on URBs being submitted (auto-resume).
- Disable autosuspend for devices that explicitly opt out.
Exit: USB mice, keyboards, storage automatically suspend after idle, resume instantly on activity.
10. P8 — Validation: hardware matrix + QEMU harness expansion
Why this matters: All USB work so far is QEMU-only. We need to validate on real hardware. This phase builds the harness for that.
P8-A: Hardware validation matrix
Reference: local/docs/HARDWARE-VALIDATION-MATRIX.md (existing, currently tiny).
Tasks:
- Expand the matrix: one row per (controller, class, board) tuple.
- Required test points per row:
- Controller PCI ID → driver recognizes
- Device enumeration succeeds
- Specific class test (HID keypress, storage read+write, audio playback)
- Hot-plug works (USB 3.x + USB 2.0)
- Suspend/resume works (if device supports)
- Minimum viable matrix entries (10+):
- xhcid on AMD Ryzen (USB 3.2, multiple hubs)
- xhcid on Intel Tiger Lake (USB 4 / Thunderbolt 3 compatible)
- xhcid on Intel C620 server chipset
- ehcid on a USB 2.0-only motherboard
- uhcid on a Via-based legacy system
- ohcid on an Nvidia nForce board
- USB HID: Logitech MX Master, Apple Magic Mouse, Cherry keyboard
- USB Storage: Samsung T7 SSD (UAS-capable), SanDisk Ultra (BOT-only)
- USB Hub: Anker 7-port powered hub, USB 3.0 hub chain
Exit: matrix has ≥10 rows; each row's last-tested date <6 months.
P8-B: New QEMU tests
The v3 plan calls for QEMU test scripts that don't exist yet:
Tasks:
test-uhci-runtime-qemu.sh --check— boot with-device piix3-usb-uhci, verify enumeration.test-ohci-runtime-qemu.sh --check— boot with-device nec-usb-xhciemulating OHCI compat, verify enumeration.test-ehci-class-autospawn-qemu.sh --check— boot with USB keyboard on EHCI route, verify usbhidd spawns and keypress reaches inputd.test-usb-hub-qemu.sh --check— boot with a USB hub attached, verify the hub enumerates and devices behind it enumerate.test-usb-error-recovery-qemu.sh --check— hot-unplug during transfer, verify graceful error (not panic).test-usb-uas-qemu.sh --check— boot with USB 3.0 storage device supporting UAS, verify UAS path active.
Exit: all 6 scripts pass.
P8-C: Error injection tests
Reference: Linux's usbtest.c includes error injection patterns.
Tasks:
- Build a
redbear-usb-fuzztool that performs:- Random disconnects mid-transfer
- Stall injection on specific endpoints
- Babble simulation
- CRC error injection (in conjunction with
usbtestif available)
- Verify usbscsid / usbhidd / usbaudiod handle errors without panic.
Exit: no panics under 10,000 random disconnect events.
11. Build-and-verify workflow (per-session)
# After any P-phase change:
cd local/sources/base && git checkout <phase-branch>
cargo check -p xhcid --offline
cd local/recipes/drivers/uhcid/source && cargo check --offline
cd local/recipes/drivers/ohcid/source && cargo check --offline
cd local/recipes/drivers/ehcid/source && cargo check --offline
cd local/recipes/drivers/usb-core/source && cargo check --offline
# Full build:
./local/scripts/build-redbear.sh --upstream redbear-mini
# QEMU tests:
./local/scripts/test-xhci-irq-qemu.sh --check
./local/scripts/test-xhci-device-lifecycle-qemu.sh --check
./local/scripts/test-usb-storage-qemu.sh
./local/scripts/test-usb-qemu.sh
./local/scripts/test-usb-maturity-qemu.sh
# After P1 completes:
./local/scripts/test-uhci-runtime-qemu.sh --check # new
./local/scripts/test-ohci-runtime-qemu.sh --check # new
./local/scripts/test-ehci-class-autospawn-qemu.sh --check # new
./local/scripts/test-usb-hub-qemu.sh --check # new
./local/scripts/test-usb-error-recovery-qemu.sh --check # new
12. Documentation lineage (2026-07-18, consolidated)
Current live documents:
local/docs/USB-IMPLEMENTATION-PLAN.md— this document (v3), the canonical USB plan. Updated 2026-07-18 with P2-A and P2-B completion records.local/docs/USB-VALIDATION-RUNBOOK.md— live v3 companion runbook (validation scripts, QEMU/bare-metal paths, failure triage).
Archived lineage (read for history only):
local/docs/archived/USB-IMPLEMENTATION-PLAN-v2-2026-07.md— v2 plan.local/docs/archived/USB-VALIDATION-RUNBOOK-2026-07.md— v2 runbook.- v1 — initial pre-fork draft (superseded).
archived/README.md records the v1 → v2 → v3 supersession chain.
All Linux 7.0 references in active docs were migrated to Linux 7.1 earlier in
the v2 era; active cross-references target local/reference/linux-7.1/.
13. Cross-reference summary
For every feature in v3, the cross-reference is to Linux 7.1 at local/reference/linux-7.1/:
| Feature | Linux 7.1 file | Lines | Implementation strategy |
|---|---|---|---|
| xHCI quirk table | drivers/usb/host/xhci.h:1587-1649 |
63 | Reimplement as bitflags struct + per-controller lookup table |
| xHCI error recovery | drivers/usb/host/xhci-ring.c:1700-1900 |
200+ | Port 36-code dispatch table; line-by-line Rust translation |
| USB 2.0 LPM | drivers/usb/host/xhci-port.h:135-173 |
39 | Reimplement port-link-state transitions |
| Full hub enumeration | drivers/usb/core/hub.c:1449-1521,3000-3300 |
300+ | Sequential port-and-hub init with timing-aware power-on |
| UAS protocol | drivers/usb/storage/uas.c |
1304 | Port full protocol, port 4-endpoint + IU framing |
| HID report descriptor parser | drivers/hid/hid-core.c:1273 |
200+ | Token-based parser → tree of usage/collection/field |
| HID input mapping | drivers/hid/hid-input.c:1244+ |
200+ | Usage page → keycode/rel/abs table |
| CDC ACM | drivers/usb/class/cdc-acm.c |
2186 | Line discipline + tty interface |
| Multi-touch HID | drivers/hid/hid-multitouch.c |
2756 | Slot-based protocol parser |
For all of these: when implementation detail is unclear, port line-by-line from Linux 7.1, preserving the data structure layouts and edge-case handling.
14. See also
v1— initial draft (pre-fork era; now superseded by this live plan)local/docs/USB-IMPLEMENTATION-PLAN.md— v2 lineage and current live roadmap (archived copy restored here)local/docs/IRQ-AND-LOWLEVEL-CONTROLLERS-ENHANCEMENT-PLAN.md— IRQ/MSI-X quality surface that P2-A depends onlocal/docs/WIFI-IMPLEMENTATION-PLAN.md— Wi-Fi subsystem plan; sibling first-class-citizen effortlocal/docs/BLUETOOTH-IMPLEMENTATION-PLAN.md— Bluetooth plan; usesredbear-btusb(USB Bluetooth transport)local/reference/linux-7.1/drivers/usb/— Linux 7.1 reference (the implementation of excellence)