diff options
author | Luke D. Jones <luke@ljones.dev> | 2023-06-30 08:35:48 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2023-07-12 18:01:49 +0300 |
commit | d4eca58aafe241f68e9d7e015d262abe8c8507ac (patch) | |
tree | c4531fb1af01ff6893e02499614a3f8940648c90 /include/linux/platform_data | |
parent | ee887807d05d3d6fb68917df59e450385fe630d3 (diff) | |
download | linux-d4eca58aafe241f68e9d7e015d262abe8c8507ac.tar.xz |
platform/x86: asus-wmi: add WMI method to show if egpu connected
Exposes the WMI method which tells if the eGPU is properly connected
on the devices that support it.
Signed-off-by: Luke D. Jones <luke@ljones.dev>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20230630053552.976579-5-luke@ljones.dev
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r-- | include/linux/platform_data/x86/asus-wmi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/platform_data/x86/asus-wmi.h b/include/linux/platform_data/x86/asus-wmi.h index 329efc086993..2034648f8cdf 100644 --- a/include/linux/platform_data/x86/asus-wmi.h +++ b/include/linux/platform_data/x86/asus-wmi.h @@ -100,7 +100,9 @@ /* Charging mode - 1=Barrel, 2=USB */ #define ASUS_WMI_DEVID_CHARGE_MODE 0x0012006C -/* dgpu on/off */ +/* epu is connected? 1 == true */ +#define ASUS_WMI_DEVID_EGPU_CONNECTED 0x00090018 +/* egpu on/off */ #define ASUS_WMI_DEVID_EGPU 0x00090019 /* dgpu on/off */ |