Files
Getting-Started-With-ACPI/Universal/nvram.md
Mykola Grymalyuk 3756ef935b Bit of clean up
2020-05-28 19:11:22 -06:00

25 lines
936 B
Markdown

# Fixing NVRAM
This SSDT is required for all "true" 300 series motherboards and newer(Z370 is excluded), it specifically brings back NVRAM support and requires very little configuration for the end user.
* B360
* B365
* H310
* H370
* Z390
* 400 series (Cometlake)
* 495 series (Icelake)
By default it uses `PCI0.LPCB` for the PCI and LowPinCount path. The device names can vary between `PC00` and `PCI0` for PCI path and `LPCB`, `LBC` and `LBC0` for LowPinCount path. To see what you have:
* Finding the LowPinCount path:
* Intel: Search `Name (_ADR, 0x001F0000)`
* Finding the PCI path:
* Intel: Search `PNP0A08` (If multiple show up, use the first one)
![](/images/Universal/nvram-md/lpc.png)
A pre-built can be found here if you have issues: [SSDT-PMC.aml](https://github.com/dortania/Getting-Started-With-ACPI/blob/master/extra-files/compiled/SSDT-PMC.aml)
## [Now you're ready to compile the SSDT!](/Manual/compile.md)