mb/google/herobrine: Transition BOARD_HEROBRINE to BOARD_HEROBRINE_REV0
Deprecating Herobrine Rev0 board. The next board is very different from the Rev0 board (ie: Most GPIOs have been remapped). Deprecating and reusing the GOOGLE_BOARD_HEROBRINE Kconfig for next board and reslotting the old GOOGLE_BOARD_HEROBRINE source under GOOGLE_BOARD_HEROBRINE_REV0 config. Want to keep the code around in case somebody needs it but we can remove this code in future after we recall all the Rev0 devices. Also updating the remapped GPIOs to match those of the current herobrine board. BUG=b:211644878 BRANCH=None TEST=emerge-herobrine coreboot Change-Id: I67a0b282710031b927ce9022c7c535bd8d4ca1aa Signed-off-by: Shelley Chen <shchen@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60284 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Douglas Anderson <dianders@chromium.org>
This commit is contained in:
parent
a5b6ec05a8
commit
8bdbe23a93
|
@ -47,6 +47,7 @@ config MAINBOARD_VENDOR
|
|||
|
||||
config MAINBOARD_PART_NUMBER
|
||||
default "Herobrine" if BOARD_GOOGLE_HEROBRINE
|
||||
default "Herobrine.rev0" if BOARD_GOOGLE_HEROBRINE_REV0
|
||||
default "Senor" if BOARD_GOOGLE_SENOR
|
||||
default "Piglin" if BOARD_GOOGLE_PIGLIN
|
||||
default "Hoglin" if BOARD_GOOGLE_HOGLIN
|
||||
|
|
|
@ -6,6 +6,10 @@ config BOARD_GOOGLE_HEROBRINE
|
|||
bool "-> Herobrine"
|
||||
select BOARD_GOOGLE_HEROBRINE_COMMON
|
||||
|
||||
config BOARD_GOOGLE_HEROBRINE_REV0
|
||||
bool "-> Herobrine_Rev0"
|
||||
select BOARD_GOOGLE_HEROBRINE_COMMON
|
||||
|
||||
config BOARD_GOOGLE_SENOR
|
||||
bool "-> Senor"
|
||||
select BOARD_GOOGLE_HEROBRINE_COMMON
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
|
||||
/* Fingerprint-specific GPIOs. Only for fingerprint-enabled devices. */
|
||||
#if CONFIG(HEROBRINE_HAS_FINGERPRINT)
|
||||
#define GPIO_FPMCU_BOOT0 GPIO(77)
|
||||
#define GPIO_FPMCU_BOOT0 (CONFIG(BOARD_GOOGLE_HEROBRINE_REV0) ? GPIO(77) : GPIO(68))
|
||||
#define GPIO_FP_RST_L GPIO(78)
|
||||
#define GPIO_EN_FP_RAILS GPIO(42)
|
||||
#define GPIO_EN_FP_RAILS (CONFIG(BOARD_GOOGLE_HEROBRINE_REV0) ? GPIO(42) : GPIO(77))
|
||||
#else
|
||||
#define GPIO_FPMCU_BOOT0 dead_code_t(gpio_t)
|
||||
#define GPIO_FP_RST_L dead_code_t(gpio_t)
|
||||
|
|
|
@ -57,7 +57,7 @@ static void mainboard_init(struct device *dev)
|
|||
qupv3_se_fw_load_and_init(QUPV3_1_SE5, SE_PROTOCOL_I2C, MIXED); /* Touch I2C */
|
||||
qupv3_se_fw_load_and_init(QUPV3_0_SE7, SE_PROTOCOL_UART, FIFO); /* BT UART */
|
||||
|
||||
if (CONFIG(BOARD_GOOGLE_HEROBRINE)) {
|
||||
if (CONFIG(BOARD_GOOGLE_HEROBRINE_REV0)) {
|
||||
/* Audio I2C */
|
||||
qupv3_se_fw_load_and_init(QUPV3_0_SE0, SE_PROTOCOL_I2C, MIXED);
|
||||
/* Trackpad I2C */
|
||||
|
@ -73,6 +73,15 @@ static void mainboard_init(struct device *dev)
|
|||
qupv3_se_fw_load_and_init(QUPV3_1_SE4, SE_PROTOCOL_SPI, MIXED);
|
||||
/* Fingerprint SPI */
|
||||
qupv3_se_fw_load_and_init(QUPV3_1_SE6, SE_PROTOCOL_SPI, MIXED);
|
||||
} else {
|
||||
/* Trackpad I2C */
|
||||
qupv3_se_fw_load_and_init(QUPV3_0_SE0, SE_PROTOCOL_I2C, MIXED);
|
||||
/* SAR sensor I2C */
|
||||
qupv3_se_fw_load_and_init(QUPV3_0_SE1, SE_PROTOCOL_I2C, MIXED);
|
||||
/* Audio I2C */
|
||||
qupv3_se_fw_load_and_init(QUPV3_0_SE2, SE_PROTOCOL_I2C, MIXED);
|
||||
/* Fingerprint SPI */
|
||||
qupv3_se_fw_load_and_init(QUPV3_1_SE1, SE_PROTOCOL_SPI, MIXED);
|
||||
}
|
||||
|
||||
/* Take FPMCU out of reset. Power was already applied
|
||||
|
|
Loading…
Reference in New Issue