summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/board_config.h12
-rw-r--r--include/config.h13
2 files changed, 6 insertions, 19 deletions
diff --git a/include/board_config.h b/include/board_config.h
index 6682d8f9f4..5b21be8236 100644
--- a/include/board_config.h
+++ b/include/board_config.h
@@ -34,7 +34,6 @@ void board_config_pre_init(void);
void board_config_post_gpio_init(void);
#endif
-#ifdef CONFIG_BOARD_HAS_BEFORE_RSMRST
/**
* Configure board before RSMRST# state change
*
@@ -46,19 +45,20 @@ void board_config_post_gpio_init(void);
* not get interrupts in time to handle workarounds. For x86 platforms and
* boards which support RSMRST# passthrough this hook will allow the board
* to apply workarounds despite the PMIC sequencing.
+ *
+ * The default implementation does nothing.
*/
-void board_before_rsmrst(int rsmrst);
-#endif
+__override_proto void board_before_rsmrst(int rsmrst);
-#ifdef CONFIG_BOARD_HAS_AFTER_RSMRST
/**
* Configure board after RSMRST# state change
*
* Similar to board_before_rsmrst, except this is called after passing RSMRST#
* to the AP.
+ *
+ * The default implementation does nothing.
*/
-void board_after_rsmrst(int rsmrst);
-#endif
+__override_proto void board_after_rsmrst(int rsmrst);
/**
* Configure chip early in main(), just after board_config_pre_init().
diff --git a/include/config.h b/include/config.h
index 3729ce0f76..dc137bac87 100644
--- a/include/config.h
+++ b/include/config.h
@@ -635,19 +635,6 @@
#undef CONFIG_BOARD_HAS_RTC_RESET
/*
- * Call board_after_rsmrst(state) after passing RSMRST# to the AP. This is for
- * board workarounds that are required just after RSMRST is passed to the AP.
- */
-#undef CONFIG_BOARD_HAS_AFTER_RSMRST
-
-/*
- * Call board_before_rsmrst(state) before passing RSMRST# to the AP.
- * This is for board workarounds that are required after rails are up
- * but before the AP is out of reset.
- */
-#undef CONFIG_BOARD_HAS_BEFORE_RSMRST
-
-/*
* Call board_config_post_gpio_init() after GPIOs are initialized. See
* include/board_config.h for more information.
*/