2018-12-11 21:54:06 +08:00
|
|
|
/*
|
2019-01-24 14:11:10 +08:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
2018-12-11 21:54:06 +08:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anup Patel <anup.patel@wdc.com>
|
2019-02-17 09:52:44 +08:00
|
|
|
* Nick Kossifidis <mick@ics.forth.gr>
|
2018-12-11 21:54:06 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sbi/sbi_hart.h>
|
|
|
|
#include <sbi/sbi_platform.h>
|
|
|
|
#include <sbi/sbi_system.h>
|
2019-02-17 09:52:44 +08:00
|
|
|
#include <sbi/sbi_ipi.h>
|
2018-12-11 21:54:06 +08:00
|
|
|
|
2019-01-22 16:22:25 +08:00
|
|
|
int sbi_system_early_init(struct sbi_scratch *scratch, bool cold_boot)
|
2018-12-11 21:54:06 +08:00
|
|
|
{
|
2018-12-26 20:51:22 +08:00
|
|
|
return sbi_platform_early_init(sbi_platform_ptr(scratch),
|
2019-01-22 16:22:25 +08:00
|
|
|
cold_boot);
|
2018-12-11 21:54:06 +08:00
|
|
|
}
|
|
|
|
|
2019-01-22 16:22:25 +08:00
|
|
|
int sbi_system_final_init(struct sbi_scratch *scratch, bool cold_boot)
|
2018-12-11 21:54:06 +08:00
|
|
|
{
|
2018-12-26 20:51:22 +08:00
|
|
|
return sbi_platform_final_init(sbi_platform_ptr(scratch),
|
2019-01-22 16:22:25 +08:00
|
|
|
cold_boot);
|
2018-12-11 21:54:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2019-02-17 09:52:44 +08:00
|
|
|
/* First try the platform-specific method */
|
2018-12-11 21:54:06 +08:00
|
|
|
sbi_platform_system_shutdown(sbi_platform_ptr(scratch), type);
|
2019-02-17 09:52:44 +08:00
|
|
|
|
|
|
|
/* If that fails (or is not implemented) send an IPI on every
|
|
|
|
* hart to hang and then hang the current hart */
|
2019-03-10 04:57:20 +08:00
|
|
|
sbi_ipi_send_many(scratch, NULL, SBI_IPI_EVENT_HALT, NULL);
|
2019-02-17 09:52:44 +08:00
|
|
|
|
2018-12-11 21:54:06 +08:00
|
|
|
sbi_hart_hang();
|
|
|
|
}
|