summaryrefslogtreecommitdiff
path: root/src/lib/reset.c
blob: 283f72c2bff3b293697a5a614491b3ecb7dc8efd (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2017 Google, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

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

__noreturn void board_reset(void)
{
	printk(BIOS_INFO, "%s() called!\n", __func__);
	dcache_clean_all();
	do_board_reset();
	halt();
}

#if IS_ENABLED(CONFIG_MISSING_BOARD_RESET)
void do_board_reset(void)
{
	printk(BIOS_CRIT, "No board_reset implementation, hanging...\n");
}
#else
/*
 * Fall back to hard_reset() for a regression free transition.
 * FIXME: Remove after everything is converted to board_reset().
 */
__weak void do_board_reset(void)
{
	hard_reset();
}
#endif

__noreturn static void __hard_reset(void) {
	if (IS_ENABLED(CONFIG_HAVE_HARD_RESET))
		do_hard_reset();
	else
		printk(BIOS_CRIT, "No hard_reset implementation, hanging...\n");
	halt();
}

/* Not all platforms implement all reset types. Fall back to hard_reset. */
__weak void do_global_reset(void) { __hard_reset(); }
__weak void do_soft_reset(void) { __hard_reset(); }

__weak void soc_reset_prepare(enum reset_type rt) { /* no-op */ }

void global_reset(void)
{
	printk(BIOS_INFO, "%s() called!\n", __func__);
	soc_reset_prepare(GLOBAL_RESET);
	dcache_clean_all();
	do_global_reset();
	halt();
}

void hard_reset(void)
{
	printk(BIOS_INFO, "%s() called!\n", __func__);
	soc_reset_prepare(HARD_RESET);
	dcache_clean_all();
	__hard_reset();
}

void soft_reset(void)
{
	printk(BIOS_INFO, "%s() called!\n", __func__);
	soc_reset_prepare(SOFT_RESET);
	dcache_clean_all();
	do_soft_reset();
	halt();
}