EC H8: remove dependence on IS_X201
Instead define brightness up/down function and gfx device and use preprocessor magic to glue it together. Change-Id: I03074ae07b33c1546d229efc3e80606ddbee6300 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4282 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martin.roth@se-eng.com>
This commit is contained in:
parent
72dccce0c9
commit
dfc0881272
|
@ -97,35 +97,23 @@ Device(EC)
|
|||
Notify(^SLPB, 0x80)
|
||||
}
|
||||
|
||||
#if IS_ENABLED (CONFIG_BOARD_LENOVO_X201)
|
||||
/* Brightness up GPE */
|
||||
Method(_Q14, 0, NotSerialized)
|
||||
{
|
||||
\_SB.PCI0.GFX0.LCD0.INCB()
|
||||
BRIGHTNESS_UP()
|
||||
}
|
||||
|
||||
/* Brightness down GPE */
|
||||
Method(_Q15, 0, NotSerialized)
|
||||
{
|
||||
\_SB.PCI0.GFX0.LCD0.DECB()
|
||||
BRIGHTNESS_DOWN()
|
||||
}
|
||||
|
||||
#ifdef ACPI_VIDEO_DEVICE
|
||||
/* Next display GPE */
|
||||
Method(_Q16, 0, NotSerialized)
|
||||
{
|
||||
Notify (\_SB.PCI0.GFX0, 0x82)
|
||||
}
|
||||
#else
|
||||
/* Brightness up GPE */
|
||||
Method(_Q14, 0, NotSerialized)
|
||||
{
|
||||
\DSPC.BRTU ()
|
||||
}
|
||||
|
||||
/* Brightness down GPE */
|
||||
Method(_Q15, 0, NotSerialized)
|
||||
{
|
||||
\DSPC.BRTD()
|
||||
Notify (ACPI_VIDEO_DEVICE, 0x82)
|
||||
}
|
||||
#endif
|
||||
/* AC status change: present */
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
*/
|
||||
|
||||
#define THINKPAD_EC_GPE 28
|
||||
#define BRIGHTNESS_UP \DSPC.BRTU
|
||||
#define BRIGHTNESS_DOWN \DSPC.BRTD
|
||||
|
||||
DefinitionBlock(
|
||||
"dsdt.aml",
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
*/
|
||||
|
||||
#define THINKPAD_EC_GPE 28
|
||||
#define BRIGHTNESS_UP \DSPC.BRTU
|
||||
#define BRIGHTNESS_DOWN \DSPC.BRTD
|
||||
|
||||
DefinitionBlock(
|
||||
"dsdt.aml",
|
||||
|
|
Loading…
Reference in New Issue