mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
111 lines
3.3 KiB
Markdown
111 lines
3.3 KiB
Markdown
# Renaming GPUs
|
|
|
|
So this is mainly needed for GPUs that are not natively supported OOB due to their names, most commonly:
|
|
|
|
* R9 290/390
|
|
* R9 280/380
|
|
* R7 270/370
|
|
* R9 260/360
|
|
* R7 250
|
|
* R7 240
|
|
|
|
Instead, these GPUs need to be "spoofed" or faked into a model that closely matches theirs, generally this will be the "X" variant of the card. For some reason Apple never bothered adding the PCI IDs for these other cards even though their GPU cores are supported by the driver.
|
|
|
|
So to spoof the GPU, we need to find a couple things:
|
|
|
|
* Suitable PCI ID for the GPU
|
|
* ACPI Path of the GPU
|
|
* [SSDT-GPU-SPOOF](https://github.com/khronokernel/Getting-Started-With-ACPI/blob/master/extra-files/SSDT-GPU-SPOOF.dsl.zip)
|
|
|
|
|
|
## Finding a suitable PCI ID
|
|
|
|
To find a suitable PCI ID, we'll be using [PCI ID Repository](https://pci-ids.ucw.cz/read/PC/1002) which has a full database of all AMD GPUs. For this example, we'll be creating a Spoof SSDT for the R9 390. For a full list of supported GPUs, please see the [GPU Buyers Guide](https://khronokernel-3.gitbook.io/catalina-gpu-buyers-guide/). The closest match to this GPU would be the 390X, and looking on that site near the top gives us this:
|
|
|
|
```
|
|
Vendor 1002 -> Device 1002:67b0
|
|
```
|
|
Now lets break this down into a device ID we can use:
|
|
|
|
* `1002`: The vendor ID, all AMD devices have this ID
|
|
* `67B0`: The device ID, this is what we care about
|
|
|
|
So how do we convert this to a fake ID? Well the format of a fake ID:
|
|
|
|
```
|
|
"device-id",
|
|
Buffer (0x04)
|
|
{
|
|
0xB0, 0x67, 0x00, 0x00
|
|
},
|
|
```
|
|
As you can see, the bytes are swapped in pairs. Keep this in mind when we make our SSDT
|
|
|
|
The specifics are due to [Endianness](https://en.wikipedia.org/wiki/Endianness) for those who are curious
|
|
|
|
## Finding the ACPI Path of the GPU
|
|
|
|
To find the PCI path of a GPU is fairly simple, best way to find it is running Windows:
|
|
|
|
* Open Device Manager
|
|
* Select Display Adapters, then right click your GPU and select Properties
|
|
* Under the Details Tab, search for "Loaction Paths"
|
|
|
|

|
|
|
|
|
|
The second "ACPI" is what we care about:
|
|
```
|
|
ACPI(_SB_)#ACPI(PC02)#ACPI(BR2A)#ACPI(PEGP)#PCI(0000)#PCI(0000)
|
|
```
|
|
|
|
Now converting this to an ACPI path is quite simple, remove the `#ACPI` and `#PCI(0000)`:
|
|
|
|
```
|
|
`_SB_.PC02.BR2A.PEGP
|
|
```
|
|
And voila! We've found our ACPI path, now that we have everything we're ready to get cooking
|
|
|
|
## Making the SSDT
|
|
|
|
To start grab our [SSDT-GPU-SPOOF](https://github.com/khronokernel/Getting-Started-With-ACPI/blob/master/extra-files/SSDT-GPU-SPOOF.dsl.zip) and open it up. Here there's a couple things to change:
|
|
|
|
```
|
|
External (_SB_.PCI0, DeviceObj)
|
|
External (_SB_.PCI0.PEG0.PEGP, DeviceObj)
|
|
```
|
|
For our example, we'll change all mentions of :
|
|
|
|
* `PCI0` with `PC02`
|
|
* `PEG0` with `BR2A`
|
|
|
|
Hint: If your ACPI path is a bit shorter than the example, this is fine. Just make sure the ACPI paths are correct to your device.
|
|
|
|
Now that the ACPI pathing is correct, we can finally apply our fake ID!!!
|
|
|
|
So the 2 parts we want to change:
|
|
|
|
**device ID**:
|
|
```
|
|
"device-id",
|
|
Buffer (0x04)
|
|
{
|
|
0xB0, 0x67, 0x00, 0x00
|
|
},
|
|
```
|
|
|
|
**Model**:
|
|
```
|
|
"model",
|
|
Buffer ()
|
|
{
|
|
"AMD Radeon R9 390"
|
|
}
|
|
```
|
|
|
|
`"device-id"` will be set to our PCI ID that we found in "Finding a suitable PCI ID" and `"model"` is mainly cosmetic
|
|
|
|
|
|
## [Now you're ready to compile the SSDT!](/Manual/compile.md)
|
|
|