summaryrefslogtreecommitdiff
path: root/power/intel_x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'power/intel_x86.c')
-rw-r--r--power/intel_x86.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/power/intel_x86.c b/power/intel_x86.c
index 290b16c885..d1f0b17d84 100644
--- a/power/intel_x86.c
+++ b/power/intel_x86.c
@@ -683,6 +683,15 @@ __override void power_chipset_handle_host_sleep_event(
#endif
+__overridable void intel_x86_sys_reset_delay(void)
+{
+ /*
+ * Debounce time for SYS_RESET_L is 16 ms. Wait twice that period
+ * to be safe.
+ */
+ udelay(32 * MSEC);
+}
+
void chipset_reset(enum chipset_reset_reason reason)
{
/*
@@ -708,11 +717,7 @@ void chipset_reset(enum chipset_reset_reason reason)
report_ap_reset(reason);
gpio_set_level(GPIO_SYS_RESET_L, 0);
- /*
- * Debounce time for SYS_RESET_L is 16 ms. Wait twice that period
- * to be safe.
- */
- udelay(32 * MSEC);
+ intel_x86_sys_reset_delay();
gpio_set_level(GPIO_SYS_RESET_L, 1);
}