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

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

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