blob: e89fe4cc5358563c13e85f1f9a4a1bf0c8a44b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
#include <fsp/util.h>
#include <soc/intel/common/reset.h>
void chipset_handle_reset(uint32_t status)
{
if (status == CONFIG_FSP_STATUS_GLOBAL_RESET) {
printk(BIOS_DEBUG, "GLOBAL RESET!\n");
global_reset();
}
printk(BIOS_ERR, "unhandled reset type %x\n", status);
die("unknown reset type");
}
|