mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
Add DeviceManager Images
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -57,3 +57,8 @@ _book/extra-files/SSDT-dGPU-Off.dsl
|
|||||||
_book/Desktops/desktop-ec.html
|
_book/Desktops/desktop-ec.html
|
||||||
_book/Desktops/desktop-disable.html
|
_book/Desktops/desktop-disable.html
|
||||||
_book/cleanup.html
|
_book/cleanup.html
|
||||||
|
_book/images/Universal/smbus-md/smbus.png
|
||||||
|
_book/images/Universal/plug-md/plug-x299.png
|
||||||
|
_book/images/Universal/plug-md/plug-bios.png
|
||||||
|
_book/images/Laptops/ec.png
|
||||||
|
_book/images/Desktops/ec.png
|
||||||
|
|||||||
@@ -99,6 +99,10 @@ Scope (\_SB.PC00.LPC0) <- Rename this
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
For those having issues, you can also check `Device Manager -> CPU -> BIOS device Name`. Widows will only report the main EC so will save you some headache on that
|
||||||
|
|
||||||
## Correcting USB Power
|
## Correcting USB Power
|
||||||
|
|
||||||
> Hey what about USBX? Do I need to do anything?
|
> Hey what about USBX? Do I need to do anything?
|
||||||
|
|||||||
@@ -26,6 +26,10 @@ Mainly relevant for Lenovo and a few other OEMs, when this happens that means th
|
|||||||
|
|
||||||
**And please verify that the DSDT hasn't already been patched by Clover or OpenCore**, please dump it without booting either of them to be sure or triple check that there aren't any EC renames in your config already
|
**And please verify that the DSDT hasn't already been patched by Clover or OpenCore**, please dump it without booting either of them to be sure or triple check that there aren't any EC renames in your config already
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
For those having issues, you can also check `Device Manager -> CPU -> BIOS device Name`. Widows will only report the main EC so will save you some headache on that
|
||||||
|
|
||||||
# Applying your EC patch
|
# Applying your EC patch
|
||||||
|
|
||||||
As you can see from the table below, we'll be renaming our EC listed in the DSDT. Do note you cannot just throw random renames without checking which is the main EC first, as **this can cause actual damage to your laptop.**
|
As you can see from the table below, we'll be renaming our EC listed in the DSDT. Do note you cannot just throw random renames without checking which is the main EC first, as **this can cause actual damage to your laptop.**
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
# Fixing Power Management
|
# Fixing Power Management
|
||||||
|
|
||||||
**Intel CPUs only**
|
|
||||||
|
|
||||||
CPU naming is fairly easy to figure out as well, open your decompiled DSDT and search for `Processor`. This should give you a result like this:
|
CPU naming is fairly easy to figure out as well, open your decompiled DSDT and search for `Processor`. This should give you a result like this:
|
||||||
|
|
||||||

|

|
||||||
@@ -35,4 +33,11 @@ Scope (\_PR.CPU0) <- Rename this
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
For those having issues, you can also check `Device Manager -> CPU -> BIOS device Name`
|
||||||
|
|
||||||
|
**Note**: X299 may report CP10 or higher for the CPU, when this happens use CP00 instead. This issue is due to weird numeration on Windows' side
|
||||||
|
|
||||||
## [Now you're ready to compile the SSDT!](/Manual/compile.md)
|
## [Now you're ready to compile the SSDT!](/Manual/compile.md)
|
||||||
|
|||||||
@@ -60,6 +60,10 @@ Scope (_SB.PC00)
|
|||||||
Device (_SB.PC00.SMBS.BUS0) <- Renamed
|
Device (_SB.PC00.SMBS.BUS0) <- Renamed
|
||||||
```
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
For those having issues, you can also check Device Manager -> CPU -> BIOS device Name
|
||||||
|
|
||||||
**Note**: The MCHC is actually the DRAM controller, similar idea to SMBus for fixing memory reporting
|
**Note**: The MCHC is actually the DRAM controller, similar idea to SMBus for fixing memory reporting
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
54
_book/.gitignore
vendored
54
_book/.gitignore
vendored
@@ -3,3 +3,57 @@
|
|||||||
icons/.DS_Store
|
icons/.DS_Store
|
||||||
icons/.DS_Store
|
icons/.DS_Store
|
||||||
icons/.DS_Store
|
icons/.DS_Store
|
||||||
|
_book/.gitattributes
|
||||||
|
_book/.travis.yml
|
||||||
|
_book/Universal/xosi.md
|
||||||
|
_book/Universal/vbios.md
|
||||||
|
_book/Universal/spoof.html
|
||||||
|
_book/Universal/smbus.html
|
||||||
|
_book/Universal/plug.html
|
||||||
|
_book/Universal/nvram.html
|
||||||
|
_book/Universal/irq.html
|
||||||
|
_book/Universal/awac.html
|
||||||
|
_book/styles/website.css
|
||||||
|
_book/ssdt-long.html
|
||||||
|
_book/ssdt-easy.html
|
||||||
|
_book/Manual/dump.html
|
||||||
|
_book/Manual/compile.html
|
||||||
|
_book/Laptops/trackpad.html
|
||||||
|
_book/Laptops/laptop-ec.html
|
||||||
|
_book/Laptops/laptop-disable.html
|
||||||
|
_book/Laptops/backlight.html
|
||||||
|
_book/index.html
|
||||||
|
_book/images/README-md/acpi-logo.png
|
||||||
|
_book/icons/favicon.ico
|
||||||
|
_book/icons/apple-touch-icon-precomposed-152.png
|
||||||
|
_book/gitbook/theme.js
|
||||||
|
_book/gitbook/style.css
|
||||||
|
_book/gitbook/images/favicon.ico
|
||||||
|
_book/gitbook/images/apple-touch-icon-precomposed-152.png
|
||||||
|
_book/gitbook/gitbook.js
|
||||||
|
_book/gitbook/gitbook-plugin-sharing/buttons.js
|
||||||
|
_book/gitbook/gitbook-plugin-livereload/plugin.js
|
||||||
|
_book/gitbook/gitbook-plugin-highlight/website.css
|
||||||
|
_book/gitbook/gitbook-plugin-highlight/ebook.css
|
||||||
|
_book/gitbook/gitbook-plugin-fontsettings/website.css
|
||||||
|
_book/gitbook/gitbook-plugin-fontsettings/fontsettings.js
|
||||||
|
_book/gitbook/fonts/fontawesome/FontAwesome.otf
|
||||||
|
_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2
|
||||||
|
_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff
|
||||||
|
_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf
|
||||||
|
_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg
|
||||||
|
_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot
|
||||||
|
_book/extra-files/SSDT-PNLF.aml
|
||||||
|
_book/extra-files/SSDT-NoHybGfx.dsl.zip
|
||||||
|
_book/extra-files/SSDT-NoHybGfx.dsl
|
||||||
|
_book/extra-files/SSDT-GPU-SPOOF.dsl.zip
|
||||||
|
_book/extra-files/SSDT-GPU-SPOOF.dsl
|
||||||
|
_book/extra-files/SSDT-GPU-DISABLE.dsl.zip
|
||||||
|
_book/extra-files/SSDT-GPU-DISABLE.dsl
|
||||||
|
_book/extra-files/SSDT-GPI0.dsl.zip
|
||||||
|
_book/extra-files/SSDT-GPI0.dsl
|
||||||
|
_book/extra-files/SSDT-dGPU-Off.dsl.zip
|
||||||
|
_book/extra-files/SSDT-dGPU-Off.dsl
|
||||||
|
_book/Desktops/desktop-ec.html
|
||||||
|
_book/Desktops/desktop-disable.html
|
||||||
|
_book/cleanup.html
|
||||||
|
|||||||
BIN
images/Desktops/ec.png
Normal file
BIN
images/Desktops/ec.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 407 KiB |
BIN
images/Laptops/ec.png
Normal file
BIN
images/Laptops/ec.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 407 KiB |
BIN
images/Universal/plug-md/plug-bios.png
Normal file
BIN
images/Universal/plug-md/plug-bios.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
BIN
images/Universal/plug-md/plug-x299.png
Normal file
BIN
images/Universal/plug-md/plug-x299.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 447 KiB |
BIN
images/Universal/smbus-md/smbus.png
Normal file
BIN
images/Universal/smbus-md/smbus.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 326 KiB |
@@ -20,7 +20,7 @@ What this tool does is dumps your DSDT from your firmware, and then creates SSDT
|
|||||||
* **PMC SSDT**:
|
* **PMC SSDT**:
|
||||||
* For fixing 300 series intel NVRAM
|
* For fixing 300 series intel NVRAM
|
||||||
* **USBX SSDT**:
|
* **USBX SSDT**:
|
||||||
* This is included on sample SSDTs but SSDTTime only makes the SSDT-EC part, Skylake and newer users can grab a prebuilt here: [SSDT-USBX.aml](https://github.com/khronokernel/Opencore-Vanilla-Desktop-Guide/blob/master/extra-files/SSDT-USBX.aml)
|
* This is included on sample SSDTs but SSDTTime only makes the SSDT-EC part, Skylake and newer users can grab a prebuilt here: [SSDT-USBX.aml](https://github.com/dortania/Opencore-Desktop-Guide/blob//master/extra-files/SSDT-USBX.aml)
|
||||||
|
|
||||||
For users who don't have all the options avaible to them in SSDTTime, you can follow the "SSDTs: The long way" section. You can still use SSDTTime for SSDTs it support for you.
|
For users who don't have all the options avaible to them in SSDTTime, you can follow the "SSDTs: The long way" section. You can still use SSDTTime for SSDTs it support for you.
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@ What we want to do is select option `4. Dump DSDT` first, then select the approp
|
|||||||
|
|
||||||
> What about USBX?
|
> What about USBX?
|
||||||
|
|
||||||
For Skylake and newer plus AMD, you can grab a prebuilt file here: [SSDT-USBX.aml](https://github.com/khronokernel/Opencore-Vanilla-Desktop-Guide/blob/master/extra-files/SSDT-USBX.aml). This file is plug and play and requires no device configuration, **do not use on Broadwell and older**.
|
For Skylake and newer plus AMD, you can grab a prebuilt file here: [SSDT-USBX.aml](https://github.com/dortania/Opencore-Desktop-Guide/blob//master/extra-files/SSDT-USBX.aml). This file is plug and play and requires no device configuration, **do not use on Broadwell and older**.
|
||||||
|
|
||||||
**Troubleshooting note**: See [General Troubleshooting](https://desktop.dortania.ml/troubleshooting/troubleshooting.html) if you're having issues running SSDTTime
|
**Troubleshooting note**: See [General Troubleshooting](https://desktop.dortania.ml/troubleshooting/troubleshooting.html) if you're having issues running SSDTTime
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user