2020-04-04 18:50:57 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2019-04-22 22:55:16 +02:00
|
|
|
|
|
|
|
#include <arch/io.h>
|
2020-12-09 02:18:00 +01:00
|
|
|
#include <cf9_reset.h>
|
2019-04-22 22:55:16 +02:00
|
|
|
#include <reset.h>
|
|
|
|
#include <soc/southbridge.h>
|
|
|
|
#include <amdblocks/acpimmio.h>
|
|
|
|
#include <amdblocks/reset.h>
|
|
|
|
|
|
|
|
void set_warm_reset_flag(void)
|
|
|
|
{
|
2019-06-26 00:06:12 +02:00
|
|
|
uint8_t ncp = inw(NCP_ERR);
|
2019-04-22 22:55:16 +02:00
|
|
|
|
2019-06-26 00:06:12 +02:00
|
|
|
outb(NCP_ERR, ncp | NCP_WARM_BOOT);
|
2019-04-22 22:55:16 +02:00
|
|
|
}
|
|
|
|
|
2019-06-26 00:06:12 +02:00
|
|
|
int is_warm_reset(void)
|
2019-04-22 22:55:16 +02:00
|
|
|
{
|
2019-06-26 00:06:12 +02:00
|
|
|
return !!(inb(NCP_ERR) & NCP_WARM_BOOT);
|
2019-04-22 22:55:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2020-12-09 02:18:00 +01:00
|
|
|
outb(RST_CPU | SYS_RST, RST_CNT);
|
2019-04-22 22:55:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void do_warm_reset(void)
|
|
|
|
{
|
|
|
|
set_warm_reset_flag();
|
|
|
|
|
|
|
|
/* Assert reset signals only. */
|
2020-12-09 02:18:00 +01:00
|
|
|
outb(RST_CPU | SYS_RST, RST_CNT);
|
2019-04-22 22:55:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void do_board_reset(void)
|
|
|
|
{
|
|
|
|
/* TODO: Would a warm_reset() suffice? */
|
|
|
|
do_cold_reset();
|
|
|
|
}
|