K
Kevin JM Liang
Hi,I am writing a kernel driver for an ACPI node.I declared resource in ASL for this node as below: Device (TEST) { Name (_HID, "ACPITEST") // _HID: Hardware ID Name (ACRS, ResourceTemplate() { Memory32Fixed (ReadWrite, 0xFE0B0000, 0x1000) IO (Decode16, 0x940, 0x940, 0, 0x01) }) Method (_CRS, 0, Serialized) { Return (ACRS) } }I created a KMDF driver based on the VS2022 template. I only modifed the INF to include the ACPI Hardware ID. %TestDriver.De
Continue reading...
Continue reading...