diff options
Diffstat (limited to 'src/mainboard/google/brya/acpi/gpu_top.asl')
-rw-r--r-- | src/mainboard/google/brya/acpi/gpu_top.asl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/google/brya/acpi/gpu_top.asl b/src/mainboard/google/brya/acpi/gpu_top.asl index c23a0ce003..b7e90335b6 100644 --- a/src/mainboard/google/brya/acpi/gpu_top.asl +++ b/src/mainboard/google/brya/acpi/gpu_top.asl @@ -22,6 +22,7 @@ Scope (\_SB.PCI0.PEG0) #include "power.asl" #include "nvop.asl" #include "nvjt.asl" + #include "nbci.asl" Method (_DSM, 4, Serialized) { @@ -39,6 +40,13 @@ Scope (\_SB.PCI0.PEG0) Return (NVJT (Arg2, Arg3)) } } + ElseIf (Arg0 == ToUUID (UUID_NBCI)) + { + If (ToInteger (Arg1) >= REVISION_MIN_NBCI) + { + Return (NBCI (Arg2, Arg3)) + } + } Return (NV_ERROR_UNSUPPORTED) } |