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
|
|
|
*/
|
|
|
|
|
2020-03-04 13:38:35 +08:00
|
|
|
#include <sbi/sbi_bitops.h>
|
2018-12-11 21:54:06 +08:00
|
|
|
#include <sbi/sbi_hart.h>
|
2020-02-12 09:32:37 +08:00
|
|
|
#include <sbi/sbi_hsm.h>
|
2018-12-11 21:54:06 +08:00
|
|
|
#include <sbi/sbi_platform.h>
|
|
|
|
#include <sbi/sbi_system.h>
|
2019-02-17 09:52:44 +08:00
|
|
|
#include <sbi/sbi_ipi.h>
|
2020-01-03 13:47:44 +08:00
|
|
|
#include <sbi/sbi_init.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
|
|
|
{
|
2019-04-11 08:41:52 +08:00
|
|
|
return sbi_platform_early_init(sbi_platform_ptr(scratch), 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
|
|
|
{
|
2019-04-11 08:41:52 +08:00
|
|
|
return sbi_platform_final_init(sbi_platform_ptr(scratch), cold_boot);
|
2018-12-11 21:54:06 +08:00
|
|
|
}
|
|
|
|
|
2020-01-03 11:40:41 +08:00
|
|
|
void sbi_system_early_exit(struct sbi_scratch *scratch)
|
|
|
|
{
|
|
|
|
sbi_platform_early_exit(sbi_platform_ptr(scratch));
|
|
|
|
}
|
|
|
|
|
|
|
|
void sbi_system_final_exit(struct sbi_scratch *scratch)
|
|
|
|
{
|
|
|
|
sbi_platform_final_exit(sbi_platform_ptr(scratch));
|
|
|
|
}
|
|
|
|
|
2020-01-03 13:47:44 +08:00
|
|
|
void __noreturn sbi_system_reboot(struct sbi_scratch *scratch, u32 type)
|
2018-12-11 21:54:06 +08:00
|
|
|
{
|
2020-03-02 18:49:49 +08:00
|
|
|
ulong hbase = 0, hmask;
|
|
|
|
u32 current_hartid = sbi_current_hartid();
|
2020-01-03 13:47:44 +08:00
|
|
|
|
|
|
|
/* Send HALT IPI to every hart other than the current hart */
|
2020-03-02 18:49:49 +08:00
|
|
|
while (!sbi_hsm_hart_started_mask(scratch, hbase, &hmask)) {
|
|
|
|
if (hbase <= current_hartid)
|
|
|
|
hmask &= ~(1UL << (current_hartid - hbase));
|
|
|
|
if (hmask)
|
|
|
|
sbi_ipi_send_halt(scratch, hmask, hbase);
|
|
|
|
hbase += BITS_PER_LONG;
|
|
|
|
}
|
2020-01-03 13:47:44 +08:00
|
|
|
|
2020-03-02 18:49:49 +08:00
|
|
|
/* Stop current HART */
|
2020-02-12 09:32:37 +08:00
|
|
|
sbi_hsm_hart_stop(scratch, FALSE);
|
|
|
|
|
2020-01-03 13:47:44 +08:00
|
|
|
/* Platform specific reooot */
|
2018-12-11 21:54:06 +08:00
|
|
|
sbi_platform_system_reboot(sbi_platform_ptr(scratch), type);
|
2020-01-03 13:47:44 +08:00
|
|
|
|
|
|
|
/* If platform specific reboot did not work then do sbi_exit() */
|
|
|
|
sbi_exit(scratch);
|
2018-12-11 21:54:06 +08:00
|
|
|
}
|
|
|
|
|
2020-01-03 13:47:44 +08:00
|
|
|
void __noreturn sbi_system_shutdown(struct sbi_scratch *scratch, u32 type)
|
2018-12-11 21:54:06 +08:00
|
|
|
{
|
2020-03-02 18:49:49 +08:00
|
|
|
ulong hbase = 0, hmask;
|
|
|
|
u32 current_hartid = sbi_current_hartid();
|
2020-01-03 13:47:44 +08:00
|
|
|
|
|
|
|
/* Send HALT IPI to every hart other than the current hart */
|
2020-03-02 18:49:49 +08:00
|
|
|
while (!sbi_hsm_hart_started_mask(scratch, hbase, &hmask)) {
|
|
|
|
if (hbase <= current_hartid)
|
|
|
|
hmask &= ~(1UL << (current_hartid - hbase));
|
|
|
|
if (hmask)
|
|
|
|
sbi_ipi_send_halt(scratch, hmask, hbase);
|
|
|
|
hbase += BITS_PER_LONG;
|
|
|
|
}
|
2019-02-17 09:52:44 +08:00
|
|
|
|
2020-03-02 18:49:49 +08:00
|
|
|
/* Stop current HART */
|
2020-02-12 09:32:37 +08:00
|
|
|
sbi_hsm_hart_stop(scratch, FALSE);
|
|
|
|
|
2020-01-03 13:47:44 +08:00
|
|
|
/* Platform specific shutdown */
|
|
|
|
sbi_platform_system_shutdown(sbi_platform_ptr(scratch), type);
|
2019-02-17 09:52:44 +08:00
|
|
|
|
2020-01-03 13:47:44 +08:00
|
|
|
/* If platform specific shutdown did not work then do sbi_exit() */
|
|
|
|
sbi_exit(scratch);
|
2018-12-11 21:54:06 +08:00
|
|
|
}
|