Files
RedBear-OS/local/config/pcid.d/intel_gpu.toml
T
vasilito cefc9b8936 Add GPU driver interrupt handling, Intel GPU PCI config, and display improvements
AMD display driver: expanded DCN pipeline setup with plane/controller/stream mapping.
Intel driver: cleaned up module structure.
New interrupt module for MSI-X vector management across GPU drivers.
PCID config endpoint patch and Intel GPU TOML for automatic driver spawning.
Expanded redox_stubs with additional kernel API shims.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-04-12 23:52:19 +01:00

18 lines
394 B
TOML

# PCID configuration for Intel GPU auto-detection
# When pcid detects an Intel GPU (vendor 0x8086, class 0x03),
# it launches redox-drm with the PCI device location.
[[device]]
vendor = 0x8086
class = 0x03
subclass = 0x00
command = ["redox-drm"]
args = ["$BUS", "$DEV", "$FUNC"]
[[device]]
vendor = 0x8086
class = 0x03
subclass = 0x02
command = ["redox-drm"]
args = ["$BUS", "$DEV", "$FUNC"]