mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-02 20:09:48 -08:00
Misc lint'ing
This commit is contained in:
@@ -2,18 +2,16 @@
|
||||
|
||||
This section of the guide refers to fixing AppleSMBus support in macOS, what is AppleSMBus? Well this mainly handles the System Management Bus, which has many functions like:
|
||||
|
||||
|
||||
* AppleSMBusController
|
||||
* Aids with correct temperature, fan, voltage, ICH, etc readings
|
||||
* Aids with correct temperature, fan, voltage, ICH, etc readings
|
||||
* AppleSMBusPCI
|
||||
* Same idea as AppleSMBusController except for low bandwidth PCI devices
|
||||
* Same idea as AppleSMBusController except for low bandwidth PCI devices
|
||||
* Memory Reporting
|
||||
* Aids in proper memory reporting and can aid in getting better kernel panic details if memory related
|
||||
* Other things SMBus does: [SMBus wiki](https://en.wikipedia.org/wiki/System_Management_Bus)
|
||||
* Aids in proper memory reporting and can aid in getting better kernel panic details if memory related
|
||||
* Other things SMBus does: [SMBus wiki](https://en.wikipedia.org/wiki/System_Management_Bus)
|
||||
|
||||
For install purposes, this SSDT isn't needed but for post-install it's recommended to put the final touches on your hack.
|
||||
|
||||
|
||||
So to get started, we'll want to grab our SMBus SSDT:
|
||||
|
||||
* [SSDT-SBUS-MCHC.dsl](https://github.com/acidanthera/OpenCorePkg/blob/master/Docs/AcpiSamples/SSDT-SBUS-MCHC.dsl)
|
||||
@@ -34,6 +32,7 @@ Scope (_SB.PCI0) <- Rename this
|
||||
|
||||
Device (_SB.PCI0.SBUS.BUS0) <- Rename this
|
||||
```
|
||||
|
||||
To find the correct pathing for your devices, grab [Hackintool](https://www.tonymacx86.com/threads/release-hackintool-v3-x-x.254559/) ([Github link](https://github.com/headkaze/Hackintool)) and head to the PCI tab:
|
||||
|
||||

|
||||
@@ -41,14 +40,13 @@ Look for the SMBus device under Subclass, then look beside and you'll see the AC
|
||||
|
||||
* `/PC00@0/SMBS@1F,4` -> `PC00.SMBS`
|
||||
|
||||
|
||||
Once finished, it'll look something like this:
|
||||
|
||||
```text
|
||||
External (_SB_.PC00, DeviceObj) <- Renamed
|
||||
External (_SB_.PC00.SMBS.BUS0, DeviceObj) <- Renamed
|
||||
|
||||
Scope (_SB.PC00)
|
||||
Scope (_SB.PC00)
|
||||
{
|
||||
Device (MCHC)
|
||||
{
|
||||
@@ -65,5 +63,4 @@ For those having issues, you can also check Device Manager -> CPU -> BIOS device
|
||||
|
||||
**Note**: The MCHC is actually the DRAM controller, similar idea to SMBus for fixing memory reporting
|
||||
|
||||
|
||||
## [Now you're ready to compile the SSDT!](/Manual/compile.md)
|
||||
## [Now you're ready to compile the SSDT!](/Manual/compile.md)
|
||||
|
||||
Reference in New Issue
Block a user