diff options
author | Furquan Shaikh <furquan@google.com> | 2018-07-10 18:33:26 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2018-07-12 00:39:51 +0000 |
commit | 13367490b0eb4cae5295d4def6d8a942d60aea8c (patch) | |
tree | f28549bf2fb887a5fa1ea2c021f2214e2b032dd8 /src/mainboard | |
parent | 4d98916721d8e46ed35fc4ecf4f6cefdcf75a973 (diff) | |
download | coreboot-13367490b0eb4cae5295d4def6d8a942d60aea8c.tar.xz |
mb/google/octopus: Enable TBMC device only for phaser
Enabling of TBMC device on AP side requires corresponding support on the
EC side as well. Since not all octopus variants have tablet mode support
enabled, this change enables TBMC device only for phaser.
BUG=b:111264961
Change-Id: I1ce181baa8ebaff0a9d767e97ddc256eef9789e8
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/27429
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Jett Rink <jettrink@google.com>
Reviewed-by: Justin TerAvest <teravest@chromium.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/octopus/variants/baseboard/include/baseboard/ec.h | 3 | ||||
-rw-r--r-- | src/mainboard/google/octopus/variants/phaser/include/variant/ec.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/google/octopus/variants/baseboard/include/baseboard/ec.h b/src/mainboard/google/octopus/variants/baseboard/include/baseboard/ec.h index 33988758b8..471495aa80 100644 --- a/src/mainboard/google/octopus/variants/baseboard/include/baseboard/ec.h +++ b/src/mainboard/google/octopus/variants/baseboard/include/baseboard/ec.h @@ -67,9 +67,6 @@ #define EC_ENABLE_LID_SWITCH #define EC_ENABLE_WAKE_PIN GPE_EC_WAKE -/* Enable Tablet switch */ -#define EC_ENABLE_TBMC_DEVICE - /* Enable EC backed PD MCU device in ACPI */ #define EC_ENABLE_PD_MCU_DEVICE diff --git a/src/mainboard/google/octopus/variants/phaser/include/variant/ec.h b/src/mainboard/google/octopus/variants/phaser/include/variant/ec.h index 16f931b6cd..48cb5841d2 100644 --- a/src/mainboard/google/octopus/variants/phaser/include/variant/ec.h +++ b/src/mainboard/google/octopus/variants/phaser/include/variant/ec.h @@ -18,4 +18,7 @@ #include <baseboard/ec.h> +/* Enable Tablet switch */ +#define EC_ENABLE_TBMC_DEVICE + #endif |