summaryrefslogtreecommitdiff
path: root/board/delbin
diff options
context:
space:
mode:
Diffstat (limited to 'board/delbin')
-rw-r--r--board/delbin/board.c18
-rw-r--r--board/delbin/board.h2
2 files changed, 16 insertions, 4 deletions
diff --git a/board/delbin/board.c b/board/delbin/board.c
index 150c72a7f1..d7e7ad7f56 100644
--- a/board/delbin/board.c
+++ b/board/delbin/board.c
@@ -36,11 +36,12 @@
#define CPRINTS(format, args...) cprints(CC_CHIPSET, format, ## args)
/*
- * Reconfigure Volteer GPIOs based on the board ID
+ * FW_CONFIG defaults for Delbin if the CBI data is not initialized.
*/
-__override void config_volteer_gpios(void)
-{
-}
+union volteer_cbi_fw_config fw_config_defaults = {
+ /* Set all FW_CONFIG fields default to 0 */
+ .raw_value = 0,
+};
static void board_init(void)
{
@@ -232,4 +233,13 @@ const int usb_port_enable[USB_PORT_COUNT] = {
GPIO_EN_PP5000_USBA,
};
+void board_reset_pd_mcu(void)
+{
+ /* TODO(b/159336576): Delbin: check USB PD reset operation */
+}
+
+__override void board_cbi_init(void)
+{
+ /* TODO(b/159336576): Delbin: check FW_CONFIG fields for USB DB type */
+}
diff --git a/board/delbin/board.h b/board/delbin/board.h
index 0c81052f58..03c495d8d6 100644
--- a/board/delbin/board.h
+++ b/board/delbin/board.h
@@ -151,6 +151,8 @@ enum sensor_id {
SENSOR_COUNT,
};
+void board_reset_pd_mcu(void);
+
#endif /* !__ASSEMBLER__ */
#endif /* __CROS_EC_BOARD_H */