/* * This file is part of the coreboot project. * * Copyright (C) 2010 Advanced Micro Devices, Inc. * Copyright (C) 2017 Google, Inc. * * 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 #include #include #include #include #include #include #include void set_warm_reset_flag(void) { uint8_t ncp = inw(NCP_ERR); outb(NCP_ERR, ncp | NCP_WARM_BOOT); } int is_warm_reset(void) { return !!(inb(NCP_ERR) & NCP_WARM_BOOT); } 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_CMD | SYS_RST, SYS_RESET); } void do_warm_reset(void) { set_warm_reset_flag(); /* Assert reset signals only. */ outb(RST_CMD | SYS_RST, SYS_RESET); } void do_board_reset(void) { /* TODO: Would a warm_reset() suffice? */ do_cold_reset(); }