summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/picasso/psp_verstage/reset.c
blob: 5619e457aea6c053d5d1f00de3b13b97ae1ba870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

#include <bl_uapp/bl_syscall_public.h>
#include <console/console.h>
#include <reset.h>
#include <stdint.h>


void do_board_reset(void)
{
	printk(BIOS_ERR, "Resetting the board now.\n");
	svc_reset_system(RESET_TYPE_COLD);
}