chromeec: Decouple EC tablet event and TBMC device

This change decouples EC tablet event and TBMC device by guarding
TBMC definition and notification using EC_ENABLE_TBMC_DEVICE. It
allows mainboards to use tablet events without having to define a TBMC
device.

BUG=b:72554519

Change-Id: Ie38b6d68486e8e644dd0d6d406def3ae7fdb5152
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/23461
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
This commit is contained in:
Furquan Shaikh
2018-01-26 10:40:09 -08:00
committed by Furquan Shaikh
parent ec91dd8feb
commit c96ad868d4
4 changed files with 8 additions and 1 deletions

View File

@@ -365,6 +365,8 @@ Device (EC0)
If (CondRefOf (\_SB.DPTF.TPET)) {
\_SB.DPTF.TPET()
}
#endif
#ifdef EC_ENABLE_TBMC_DEVICE
Notify (TBMC, 0x80)
#endif
}
@@ -517,7 +519,7 @@ Device (EC0)
#include "pd.asl"
#endif
#ifdef EC_ENABLE_TABLET_EVENT
#ifdef EC_ENABLE_TBMC_DEVICE
#include "tbmc.asl"
#endif
}