summaryrefslogtreecommitdiff
path: root/src/soc/intel/quark/reset.c
blob: 4f8b169a35b12b2357deafc51c8895df4d73bf7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#include <cf9_reset.h>
#include <console/console.h>
#include <fsp/util.h>

void chipset_handle_reset(uint32_t status)
{
	/* Do a hard reset if Quark FSP ever requests a reset */
	printk(BIOS_ERR, "Unknown reset type %x\n", status);
	full_reset();
}