diff options
author | Kapil Porwal <kapilporwal@google.com> | 2024-11-12 08:30:50 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-11-13 10:07:13 +0000 |
commit | 8808e8c2b124dd8641754bdef4a47a8369158518 (patch) | |
tree | 0aaa3b2c8c63df59e1370a753e15e62dacd8f331 /src/mainboard/google/dedede | |
parent | 20f95c7050364f8c09fc8f1a8cf9e6b020232f60 (diff) |
vc/google: Refactor config to set Fn key scancode
Create a new config option to indicate that a board has Google Strauss
keyboard. The scan code for Fn key will be set to 94 if the new config
is selected.
Previously each board was setting the integer config option for Fn key
scan code which was not scalable. The new option is a bool and can be
easily selected by different boards.
BUG=none
TEST=Verify coreboot.config before and after this change.
Change-Id: I2b5d54879d415e4403b2d7948432bb06ab983b86
Signed-off-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85109
Reviewed-by: Eric Lai <ericllai@google.com>
Reviewed-by: Jayvik Desai <jayvik@google.com>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/dedede')
-rw-r--r-- | src/mainboard/google/dedede/Kconfig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mainboard/google/dedede/Kconfig b/src/mainboard/google/dedede/Kconfig index 46beebc6b3..d6d41368c8 100644 --- a/src/mainboard/google/dedede/Kconfig +++ b/src/mainboard/google/dedede/Kconfig @@ -1,8 +1,5 @@ ## SPDX-License-Identifier: GPL-2.0-only -config ACPI_FNKEY_GEN_SCANCODE - default 94 if BOARD_GOOGLE_AWASUKI - config BOARD_GOOGLE_BASEBOARD_DEDEDE def_bool n select BOARD_ROMSIZE_KB_16384 if !BOARD_ROMSIZE_KB_32768 @@ -42,6 +39,7 @@ config BOARD_GOOGLE_BASEBOARD_DEDEDE config BOARD_GOOGLE_AWASUKI select BOARD_GOOGLE_BASEBOARD_DEDEDE_CR50 select BASEBOARD_DEDEDE_LAPTOP + select MAINBOARD_HAS_GOOGLE_STRAUSS_KEYBOARD select SOC_INTEL_COMMON_BLOCK_IPU select INTEL_GMA_HAVE_VBT |