Inital import

This commit is contained in:
Mykola Grymalyuk
2020-07-17 14:46:53 -06:00
parent 5232db073b
commit 3586de127a
33 changed files with 11223 additions and 70 deletions

View File

@@ -30,7 +30,7 @@ Finding the ACPI pathing is quite easy actually, first open your decompiled DSDT
Next, search for `PNP0C09`. You should get something similar:
![](/images/Desktops/pnp.png)
![](../../images/Desktops/pnp.png)
From the above example we see 2 main things:
@@ -64,7 +64,7 @@ If you already have Windows installed on this machine, finding the EC pathing is
Start by opening up Device Manager in Windows and looking for a device named `Embedded Controller`. Once found, click on it and select the `BIOS device Name` entry. You should get something like this:
![](/images/Desktops/ec.png)
![](../../images/Desktops/ec.png)
From the above, we can see that our pathing is `SB.PC00.LPC0.EC0`
@@ -96,7 +96,7 @@ External (_SB_.PCI0.LPCB, DeviceObj) <- Rename this
Scope (_SB.PCI0.LPCB) <- Rename this
```
![](/images/Desktops/ssdt-before.png)
![](../../images/Desktops/ssdt-before.png)
Following the example pathing we found, the SSDT should look something like this:
@@ -108,7 +108,7 @@ External (_SB_.PC00.LPC0, DeviceObj) <- Renamed
Scope (_SB.PC00.LPC0) <- Renamed
```
![](/images/Desktops/ssdt-after.png)
![](../../images/Desktops/ssdt-after.png)
@@ -142,7 +142,7 @@ This is the equivalent of not having an EC as we can't control it with our SSDT-
Example of an EC with STA already:
![Credit to rottenpants466](/images/Desktops/sta.png)
![Credit to rottenpants466](../../images/Desktops/sta.png)
## Compiling the SSDT