2021-09-22 17:57:45 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2023-12-22 15:44:45 +08:00
|
|
|
* 2023-10-25 Shell Move ffs to cpuport, add general implementation
|
|
|
|
* by inline assembly
|
2021-09-22 17:57:45 +08:00
|
|
|
*/
|
|
|
|
|
2022-12-20 17:49:37 +08:00
|
|
|
#ifndef CPUPORT_H__
|
|
|
|
#define CPUPORT_H__
|
2021-09-22 17:57:45 +08:00
|
|
|
|
2022-12-20 17:49:37 +08:00
|
|
|
#include <armv8.h>
|
2023-01-09 10:08:55 +08:00
|
|
|
#include <rtdef.h>
|
2022-01-07 13:49:06 +08:00
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
#ifdef RT_USING_SMP
|
2023-10-25 20:31:25 +08:00
|
|
|
typedef struct {
|
|
|
|
volatile unsigned int lock;
|
2022-12-03 12:07:44 +08:00
|
|
|
} rt_hw_spinlock_t;
|
|
|
|
#endif
|
|
|
|
|
2023-08-02 12:48:24 +08:00
|
|
|
#define rt_hw_barrier(cmd, ...) \
|
|
|
|
__asm__ volatile (RT_STRINGIFY(cmd) " "RT_STRINGIFY(__VA_ARGS__):::"memory")
|
|
|
|
|
|
|
|
#define rt_hw_isb() rt_hw_barrier(isb)
|
|
|
|
#define rt_hw_dmb() rt_hw_barrier(dmb, ish)
|
|
|
|
#define rt_hw_wmb() rt_hw_barrier(dmb, ishst)
|
|
|
|
#define rt_hw_rmb() rt_hw_barrier(dmb, ishld)
|
|
|
|
#define rt_hw_dsb() rt_hw_barrier(dsb, ish)
|
|
|
|
|
|
|
|
#define rt_hw_wfi() rt_hw_barrier(wfi)
|
|
|
|
#define rt_hw_wfe() rt_hw_barrier(wfe)
|
|
|
|
#define rt_hw_sev() rt_hw_barrier(sev)
|
|
|
|
|
|
|
|
#define rt_hw_cpu_relax() rt_hw_barrier(yield)
|
2021-09-22 17:57:45 +08:00
|
|
|
|
2023-05-14 23:48:16 +08:00
|
|
|
void _thread_start(void);
|
2023-12-22 15:44:45 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_CPU_FFS
|
|
|
|
/**
|
|
|
|
* This function finds the first bit set (beginning with the least significant bit)
|
|
|
|
* in value and return the index of that bit.
|
|
|
|
*
|
|
|
|
* Bits are numbered starting at 1 (the least significant bit). A return value of
|
|
|
|
* zero from any of these functions means that the argument was zero.
|
|
|
|
*
|
|
|
|
* @return return the index of the first bit set. If value is 0, then this function
|
|
|
|
* shall return 0.
|
|
|
|
*/
|
|
|
|
rt_inline int __rt_ffs(int value)
|
|
|
|
{
|
|
|
|
#ifdef __GNUC__
|
|
|
|
return __builtin_ffs(value);
|
|
|
|
#else
|
|
|
|
__asm__ volatile (
|
|
|
|
"rbit w1, %w0\n"
|
|
|
|
"cmp %w0, 0\n"
|
|
|
|
"clz w1, w1\n"
|
|
|
|
"csinc %w0, wzr, w1, eq\n"
|
|
|
|
: "=r"(value)
|
|
|
|
: "0"(value)
|
|
|
|
);
|
|
|
|
return value;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* RT_USING_CPU_FFS */
|
|
|
|
|
2022-12-20 17:49:37 +08:00
|
|
|
#endif /*CPUPORT_H__*/
|