blob: 0c7f5f3dac781b69d79be7c4d8cb75cf0245f295 [file] [log] [blame]
/*
* Copyright (c) 2016 Jean-Paul Etienne <fractalclone@gmail.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/irq.h>
/*
* In RISC-V there is no conventional way to handle CPU power save.
* Each RISC-V SOC handles it in its own way.
* Hence, by default, arch_cpu_idle and arch_cpu_atomic_idle functions just
* unlock interrupts and return to the caller, without issuing any CPU power
* saving instruction.
*
* Nonetheless, define the default arch_cpu_idle and arch_cpu_atomic_idle
* functions as weak functions, so that they can be replaced at the SOC-level.
*/
void __weak arch_cpu_idle(void)
{
irq_unlock(MSTATUS_IEN);
}
void __weak arch_cpu_atomic_idle(unsigned int key)
{
irq_unlock(key);
}