Fix inconsistencies with RHUB

Closes https://github.com/dortania/bugtracker/issues/101
This commit is contained in:
Mykola Grymalyuk
2020-11-08 10:23:47 -07:00
parent 0525209533
commit a954252fe4
5 changed files with 9 additions and 8 deletions

View File

@@ -228,6 +228,7 @@ module.exports = {
sidebarDepth: 2, sidebarDepth: 2,
children: [ children: [
['/Universal/rhub-methods/prebuilt', 'Prebuilt'], ['/Universal/rhub-methods/prebuilt', 'Prebuilt'],
['/Universal/rhub-methods/ssdttime', 'SSDTTime'],
['/Universal/rhub-methods/manual', 'Manual'], ['/Universal/rhub-methods/manual', 'Manual'],
] ]
}, },

View File

@@ -30,16 +30,16 @@ Now that we have our ACPI path, lets grab our SSDT and get to work:
* [SSDT-RHUB.dsl](https://github.com/dortania/Getting-Started-With-ACPI/blob/master/extra-files/decompiled/SSDT-RHUB.dsl) * [SSDT-RHUB.dsl](https://github.com/dortania/Getting-Started-With-ACPI/blob/master/extra-files/decompiled/SSDT-RHUB.dsl)
By default, this uses `PCI0.XHC_.RHUB` for the pathing. you'll want to rename accordingly. By default, this uses `PCI0.XHC1.RHUB` for the pathing. you'll want to rename accordingly.
Following the example from above, we'll be renaming it to `PCI0.XHC1.RHUB`: Following the example from above, we'll be renaming it to `PCI0.XHC.RHUB`:
**Before**: **Before**:
``` ```
External (_SB_.PCI0.XHC_.RHUB, DeviceObj) <- Rename this External (_SB_.PCI0.XHC1.RHUB, DeviceObj) <- Rename this
Scope (_SB.PCI0.XHC_.RHUB) <- Rename this Scope (_SB.PCI0.XHC1.RHUB) <- Rename this
``` ```
![](../../images/Universal/rhub-md/ssdt-before.png) ![](../../images/Universal/rhub-md/ssdt-before.png)
@@ -49,9 +49,9 @@ Following the example pathing we found, the SSDT should look something like this
**After**: **After**:
``` ```
External (_SB.PCI0.XHC1.RHUB, DeviceObj) <- Renamed External (_SB.PCI0.XHC.RHUB, DeviceObj) <- Renamed
Scope (_SB.PCI0.XHC1.RHUB) <- Renamed Scope (_SB.PCI0.XHC.RHUB) <- Renamed
``` ```
![](../../images/Universal/rhub-md/ssdt-after.png) ![](../../images/Universal/rhub-md/ssdt-after.png)

View File

@@ -4,10 +4,10 @@
*/ */
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "RhubOff", 0x00001000) DefinitionBlock ("", "SSDT", 2, "DRTNIA", "RhubOff", 0x00001000)
{ {
External (_SB_.PCI0.XHC1.RHUB, DeviceObj) // Full pathing to RHUB, change to yours External (_SB_.PCI0.XHC.RHUB, DeviceObj) // Full pathing to RHUB, change to yours
Scope (_SB.PCI0.XHC1.RHUB) // Full pathing to RHUB, change to yours Scope (_SB.PCI0.XHC.RHUB) // Full pathing to RHUB, change to yours
{ {
Method (_STA, 0, NotSerialized) Method (_STA, 0, NotSerialized)
{ {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 501 KiB

After

Width:  |  Height:  |  Size: 661 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 502 KiB

After

Width:  |  Height:  |  Size: 663 KiB