From 1f81af52a4efde39ba0127b724c6c2e19d0329cd Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Mon, 5 Dec 2022 08:49:46 -0700 Subject: mb/system76: Add custom backlight levels for Intel GMA Add custom backlight levels for all models except: - addw1/addw2: Uses an OLED display - bonw14: Does not use the iGPU Change-Id: Ibea37f19acca0d718211fc41706019a92a240c70 Signed-off-by: Tim Crawford Reviewed-on: https://review.coreboot.org/c/coreboot/+/61301 Tested-by: build bot (Jenkins) Reviewed-by: Jeremy Soller --- src/mainboard/system76/whl-u/acpi/backlight.asl | 31 +++++++++++++++++++++++++ src/mainboard/system76/whl-u/acpi/mainboard.asl | 3 +++ src/mainboard/system76/whl-u/dsdt.asl | 1 - 3 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 src/mainboard/system76/whl-u/acpi/backlight.asl (limited to 'src/mainboard/system76/whl-u') diff --git a/src/mainboard/system76/whl-u/acpi/backlight.asl b/src/mainboard/system76/whl-u/acpi/backlight.asl new file mode 100644 index 0000000000..f020234450 --- /dev/null +++ b/src/mainboard/system76/whl-u/acpi/backlight.asl @@ -0,0 +1,31 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include + +Scope (GFX0) +{ + Name (BRIG, Package (22) { + 40, /* default AC */ + 40, /* default Battery */ + 5, + 10, + 15, + 20, + 25, + 30, + 35, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 80, + 85, + 90, + 95, + 100 + }) +} diff --git a/src/mainboard/system76/whl-u/acpi/mainboard.asl b/src/mainboard/system76/whl-u/acpi/mainboard.asl index ade0bb2625..2495377d68 100644 --- a/src/mainboard/system76/whl-u/acpi/mainboard.asl +++ b/src/mainboard/system76/whl-u/acpi/mainboard.asl @@ -6,6 +6,9 @@ Scope (\_SB) { #include "sleep.asl" + Scope (PCI0) { + #include "backlight.asl" + } } Scope (\_GPE) { diff --git a/src/mainboard/system76/whl-u/dsdt.asl b/src/mainboard/system76/whl-u/dsdt.asl index 982e226118..b633254edd 100644 --- a/src/mainboard/system76/whl-u/dsdt.asl +++ b/src/mainboard/system76/whl-u/dsdt.asl @@ -19,7 +19,6 @@ DefinitionBlock( { #include #include - #include } #include -- cgit v1.2.3