summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/quark/reset.c
blob: af7ff30f7abddd5c9c8d008561e1f5780cb172e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#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();
}