summaryrefslogtreecommitdiff
path: root/lib/sbi_system.c
blob: 738ff4568d961c8f86858a12d7cc755058503ea1 (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
/*
 * Copyright (c) 2018 Western Digital Corporation or its affiliates.
 *
 * Authors:
 *   Anup Patel <anup.patel@wdc.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <sbi/sbi_hart.h>
#include <sbi/sbi_platform.h>
#include <sbi/sbi_system.h>

int sbi_system_early_init(struct sbi_scratch *scratch, bool cold_boot)
{
	return sbi_platform_early_init(sbi_platform_ptr(scratch),
				       cold_boot);
}

int sbi_system_final_init(struct sbi_scratch *scratch, bool cold_boot)
{
	return sbi_platform_final_init(sbi_platform_ptr(scratch),
				       cold_boot);
}

void __attribute__((noreturn)) sbi_system_reboot(struct sbi_scratch *scratch,
						 u32 type)

{
	sbi_platform_system_reboot(sbi_platform_ptr(scratch), type);
	sbi_hart_hang();
}

void __attribute__((noreturn)) sbi_system_shutdown(struct sbi_scratch *scratch,
						   u32 type)
{
	sbi_platform_system_shutdown(sbi_platform_ptr(scratch), type);
	sbi_hart_hang();
}