diff options
-rw-r--r-- | src/mainboard/google/gale/chromeos.c | 2 | ||||
-rw-r--r-- | src/soc/qualcomm/ipq40xx/include/soc/cdp.h | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/mainboard/google/gale/chromeos.c b/src/mainboard/google/gale/chromeos.c index 06b3d8537b..01f1e03d9b 100644 --- a/src/mainboard/google/gale/chromeos.c +++ b/src/mainboard/google/gale/chromeos.c @@ -34,6 +34,7 @@ static int get_rec_sw_gpio_pin(void) { uint8_t board_rev = board_id(); switch (board_rev) { + case BOARD_ID_GALE_PROTO: case BOARD_ID_GALE_EVT: case BOARD_ID_GALE_EVT2: return 7; @@ -47,6 +48,7 @@ static int get_wp_status_gpio_pin(void) { uint8_t board_rev = board_id(); switch (board_rev) { + case BOARD_ID_GALE_PROTO: case BOARD_ID_GALE_EVT: case BOARD_ID_GALE_EVT2: return 6; diff --git a/src/soc/qualcomm/ipq40xx/include/soc/cdp.h b/src/soc/qualcomm/ipq40xx/include/soc/cdp.h index e5ea8288ca..1b21273f36 100644 --- a/src/soc/qualcomm/ipq40xx/include/soc/cdp.h +++ b/src/soc/qualcomm/ipq40xx/include/soc/cdp.h @@ -134,9 +134,10 @@ typedef struct { #define IPQ_GMAC_NMACS 4 enum gale_board_id { - BOARD_ID_GALE_EVT = 0, - BOARD_ID_GALE_EVT2 = 1, - BOARD_ID_GALE_EVT3 = 2, + BOARD_ID_GALE_PROTO = 0, + BOARD_ID_GALE_EVT = 1, + BOARD_ID_GALE_EVT2 = 2, + BOARD_ID_GALE_EVT3 = 5, }; /* Board specific parameters */ |