mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 00:51:29 +00:00
ryu: export board version
Export the board version through the usual EC_CMD_GET_BOARD_VERSION. Add an option to use the board-specific board_get_version() callback rather than doing the generic GPIO binary decoding since here the version is ternary encoded. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BRANCH=smaug BUG=none TEST=execute 'ectool boardversion' on the AP and see the right number. Change-Id: I89c328573d09be02232756797ba3fdd5979b0292 Reviewed-on: https://chromium-review.googlesource.com/303368 Trybot-Ready: Vincent Palatin <vpalatin@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org> Reviewed-by: Alec Berg <alecaberg@chromium.org> Commit-Queue: Vincent Palatin <vpalatin@chromium.org> (cherry picked from commit 6c620c51e5ab812b4e6751e4c630da2e6bee4b74) Reviewed-on: https://chromium-review.googlesource.com/303803 Commit-Ready: Vincent Palatin <vpalatin@chromium.org>
This commit is contained in:
committed by
chrome-bot
parent
e498de6ad6
commit
5d82dbc491
@@ -21,6 +21,8 @@
|
||||
|
||||
/* Optional features */
|
||||
#undef CONFIG_CMD_HASH
|
||||
#define CONFIG_BOARD_VERSION
|
||||
#define CONFIG_BOARD_SPECIFIC_VERSION
|
||||
#define CONFIG_CHARGE_MANAGER
|
||||
#define CONFIG_CHARGE_MANAGER_DRP_CHARGING
|
||||
#define CONFIG_CHARGE_MANAGER_EXTERNAL_POWER_LIMIT
|
||||
|
||||
@@ -597,12 +597,16 @@ int system_get_board_version(void)
|
||||
int v = 0;
|
||||
|
||||
#ifdef CONFIG_BOARD_VERSION
|
||||
#ifdef CONFIG_BOARD_SPECIFIC_VERSION
|
||||
v = board_get_version();
|
||||
#else
|
||||
if (gpio_get_level(GPIO_BOARD_VERSION1))
|
||||
v |= 0x01;
|
||||
if (gpio_get_level(GPIO_BOARD_VERSION2))
|
||||
v |= 0x02;
|
||||
if (gpio_get_level(GPIO_BOARD_VERSION3))
|
||||
v |= 0x04;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
return v;
|
||||
|
||||
@@ -251,6 +251,8 @@
|
||||
|
||||
/* EC has GPIOs attached to board version stuffing resistors */
|
||||
#undef CONFIG_BOARD_VERSION
|
||||
/* The decoding of the GPIOs defining board version is defined in board code */
|
||||
#undef CONFIG_BOARD_SPECIFIC_VERSION
|
||||
|
||||
/* Permanent LM4 boot configuration */
|
||||
#undef CONFIG_BOOTCFG_VALUE
|
||||
|
||||
Reference in New Issue
Block a user