2017-05-05 05:17:45 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Advanced Micro Devices, Inc.
|
2017-11-12 22:54:09 +01:00
|
|
|
* Copyright (C) 2017 Google, Inc.
|
2017-05-05 05:17:45 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <arch/io.h>
|
|
|
|
#include <reset.h>
|
2017-11-12 22:54:09 +01:00
|
|
|
#include <soc/northbridge.h>
|
|
|
|
#include <soc/pci_devs.h>
|
2018-04-18 10:11:59 +02:00
|
|
|
#include <device/pci_ops.h>
|
2017-08-08 03:08:24 +02:00
|
|
|
#include <soc/southbridge.h>
|
2019-05-02 20:03:45 +02:00
|
|
|
#include <amdblocks/acpimmio.h>
|
2018-10-06 18:20:47 +02:00
|
|
|
#include <amdblocks/reset.h>
|
2017-05-05 05:17:45 +02:00
|
|
|
|
2018-08-04 01:05:22 +02:00
|
|
|
void set_warm_reset_flag(void)
|
|
|
|
{
|
|
|
|
u32 htic;
|
|
|
|
htic = pci_read_config32(SOC_HT_DEV, HT_INIT_CONTROL);
|
|
|
|
htic |= HTIC_COLD_RST_DET;
|
|
|
|
pci_write_config32(SOC_HT_DEV, HT_INIT_CONTROL, htic);
|
|
|
|
}
|
|
|
|
|
|
|
|
int is_warm_reset(void)
|
|
|
|
{
|
|
|
|
u32 htic;
|
|
|
|
htic = pci_read_config32(SOC_HT_DEV, HT_INIT_CONTROL);
|
|
|
|
return !!(htic & HTIC_COLD_RST_DET);
|
|
|
|
}
|
|
|
|
|
2017-11-12 22:54:09 +01:00
|
|
|
/* Clear bits 5, 9 & 10, used to signal the reset type */
|
|
|
|
static void clear_bios_reset(void)
|
2017-05-05 05:17:45 +02:00
|
|
|
{
|
|
|
|
u32 htic;
|
2017-11-12 22:54:09 +01:00
|
|
|
htic = pci_read_config32(SOC_HT_DEV, HT_INIT_CONTROL);
|
|
|
|
htic &= ~HTIC_BIOSR_DETECT;
|
|
|
|
pci_write_config32(SOC_HT_DEV, HT_INIT_CONTROL, htic);
|
2017-05-05 05:17:45 +02:00
|
|
|
}
|
|
|
|
|
2018-10-06 18:20:47 +02:00
|
|
|
void do_cold_reset(void)
|
2017-05-05 05:17:45 +02:00
|
|
|
{
|
2017-11-12 22:54:09 +01:00
|
|
|
clear_bios_reset();
|
|
|
|
|
|
|
|
/* 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_CMD | SYS_RST, SYS_RESET);
|
|
|
|
}
|
|
|
|
|
2018-10-06 18:20:47 +02:00
|
|
|
void do_warm_reset(void)
|
2017-11-12 22:54:09 +01:00
|
|
|
{
|
2018-08-04 01:05:22 +02:00
|
|
|
set_warm_reset_flag();
|
2017-11-12 22:54:09 +01:00
|
|
|
clear_bios_reset();
|
|
|
|
|
|
|
|
/* Assert reset signals only. */
|
|
|
|
outb(RST_CMD | SYS_RST, SYS_RESET);
|
2017-05-05 05:17:45 +02:00
|
|
|
}
|
2018-10-06 18:20:47 +02:00
|
|
|
|
|
|
|
void do_board_reset(void)
|
|
|
|
{
|
|
|
|
/* TODO: Would a warm_reset() suffice? */
|
|
|
|
do_cold_reset();
|
|
|
|
}
|