diff options
author | Philip Chen <philipchen@google.com> | 2021-07-01 17:03:20 -0700 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-07-14 18:06:31 +0000 |
commit | c97cb76b816fc8e02fe3de0652794e85fe38f4c6 (patch) | |
tree | e0f3cad98aa4e6f1093374bc7f6fe5dd9e84eadd /include/config.h | |
parent | 5236e3b1af983a46fe79a14d353354640c0e89cc (diff) | |
download | chrome-ec-c97cb76b816fc8e02fe3de0652794e85fe38f4c6.tar.gz |
cbi: Introduce CONFIG_CBI_GPIO
For the boards where SKU_ID/BRD_ID comes from the strapping pins on EC,
this new config enables AP to ask EC for those hardware configs using
the CBI host command `EC_CMD_GET_CROS_BOARD_INFO`.
BRANCH=None
BUG=b:186264627
TEST=make buildall -j
TEST=Enabled CONFIG_CBI_GPIO for lazor and manually verified with
`ectool cbi get`.
Change-Id: I7ec9097bab96d2076d9d42db2d003460db000113
Signed-off-by: Philip Chen <philipchen@google.com>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3002452
Reviewed-by: Keith Short <keithshort@chromium.org>
Commit-Queue: Philip Chen <philipchen@chromium.org>
Tested-by: Philip Chen <philipchen@chromium.org>
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 32ba1b71aa..3136dd18fe 100644 --- a/include/config.h +++ b/include/config.h @@ -5167,6 +5167,9 @@ */ #undef CONFIG_CBI_EEPROM +/* Define this to support Cros Board Info from GPIO. */ +#undef CONFIG_CBI_GPIO + /*****************************************************************************/ /* * ISH config defaults @@ -6365,6 +6368,10 @@ "are mutually exclusive. " #endif /* CONFIG_BOARD_VERSION_CBI && CONFIG_BOARD_VERSION_GPIO */ +#if defined(CONFIG_CBI_EEPROM) && defined(CONFIG_CBI_GPIO) +#error "CONFIG_CBI_EEPROM and CONFIG_CBI_GPIO are mutually exclusive." +#endif + #if !defined(CONFIG_ZEPHYR) && !defined(CONFIG_ACCELGYRO_ICM_COMM_SPI) && \ !defined(CONFIG_ACCELGYRO_ICM_COMM_I2C) #ifdef I2C_PORT_ACCEL |