summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/phoenix/reset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/phoenix/reset.c')
-rw-r--r--src/soc/amd/phoenix/reset.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/soc/amd/phoenix/reset.c b/src/soc/amd/phoenix/reset.c
new file mode 100644
index 000000000000..83bfcee5467c
--- /dev/null
+++ b/src/soc/amd/phoenix/reset.c
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+/* TODO: Move to common? */
+
+#include <arch/io.h>
+#include <cf9_reset.h>
+#include <reset.h>
+#include <soc/southbridge.h>
+#include <amdblocks/acpimmio.h>
+#include <amdblocks/reset.h>
+
+void do_cold_reset(void)
+{
+ /* De-assert and then assert all PwrGood signals on CF9 reset. */
+ pm_write16(PWR_RESET_CFG, pm_read16(PWR_RESET_CFG) |
+ TOGGLE_ALL_PWR_GOOD);
+ outb(RST_CPU | SYS_RST, RST_CNT);
+}
+
+void do_warm_reset(void)
+{
+ /* Assert reset signals only. */
+ outb(RST_CPU | SYS_RST, RST_CNT);
+}
+
+void do_board_reset(void)
+{
+ do_cold_reset();
+}