summaryrefslogtreecommitdiff
path: root/board/fizz/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/fizz/board.c')
-rw-r--r--board/fizz/board.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/board/fizz/board.c b/board/fizz/board.c
index 3682d8e89e..1fa6a57865 100644
--- a/board/fizz/board.c
+++ b/board/fizz/board.c
@@ -689,3 +689,11 @@ int fan_percent_to_rpm(int fan, int pct)
}
return get_custom_rpm(fan, pct, oem_id);
}
+
+void board_rtc_reset(void)
+{
+ CPRINTS("Asserting RTCRST# to PCH");
+ gpio_set_level(GPIO_PCH_RTCRST, 1);
+ udelay(100);
+ gpio_set_level(GPIO_PCH_RTCRST, 0);
+}