summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/common/block/include/amdblocks/reset.h
blob: 353720c1e04612dc7ea2d6f1260e7962c925acb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef AMD_BLOCK_RESET_H
#define AMD_BLOCK_RESET_H

#include <console/console.h>
#include <arch/cache.h>
#include <halt.h>

void do_warm_reset(void);
void do_cold_reset(void);
void set_warm_reset_flag(void);
int is_warm_reset(void);

static inline __noreturn void warm_reset(void)
{
	printk(BIOS_INFO, "%s() called!\n", __func__);
	dcache_clean_all();
	do_warm_reset();
	halt();
}

static inline __noreturn void cold_reset(void)
{
	printk(BIOS_INFO, "%s() called!\n", __func__);
	dcache_clean_all();
	do_cold_reset();
	halt();
}

#endif /* AMD_BLOCK_RESET_H */