blob: 4f8b169a35b12b2357deafc51c8895df4d73bf7b [file] [log] [blame]
Angel Pons230e4f9d2020-04-05 15:47:14 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Lee Leahy102f6252016-07-25 07:41:54 -07002
Patrick Rudolphf677d172018-10-01 19:17:11 +02003#include <cf9_reset.h>
Lee Leahy102f6252016-07-25 07:41:54 -07004#include <console/console.h>
5#include <fsp/util.h>
Lee Leahy102f6252016-07-25 07:41:54 -07006
Lee Leahy44ec92a2016-09-28 17:16:44 -07007void chipset_handle_reset(uint32_t status)
Lee Leahy102f6252016-07-25 07:41:54 -07008{
9 /* Do a hard reset if Quark FSP ever requests a reset */
10 printk(BIOS_ERR, "Unknown reset type %x\n", status);
Patrick Rudolphf677d172018-10-01 19:17:11 +020011 full_reset();
Lee Leahy102f6252016-07-25 07:41:54 -070012}