10#ifndef STK_ARCH_RISC_V_H_
11#define STK_ARCH_RISC_V_H_
74#if STK_TLS && STK_TLS_PREFER_REGISTER
83 __asm
volatile(
"mv %0, tp" :
"=r"(tp) : : );
93 __asm
volatile(
"mv tp, %0" : :
"r"(tp) : );
97#define STK_INLINE_TLS (1)
111#ifndef STK_SUBMICORSECOND_PRECISION_TIMER
112 #define STK_SUBMICORSECOND_PRECISION_TIMER 0
118#ifndef STK_SYSTEM_CORE_CLOCK_FREQUENCY
119 #define STK_SYSTEM_CORE_CLOCK_FREQUENCY 150000000U
static __stk_forceinline void __stk_dmb()
Data memory barrier.
volatile uint32_t STK_SYSTEM_CORE_CLOCK_VAR
Contains interface definitions of the library.
#define __stk_forceinline
Forces compiler to always inline the decorated function, regardless of optimisation level.
#define STK_VIRT_DTOR
Makes destructors virtual and compliant to strict rules if STK_STRICT_COMPLIANCY=0.
Namespace of STK package.
uintptr_t Word
Native processor word type.
EWaitResult
Wait result (see IKernelService::Wait).
int64_t Ticks
Ticks value.
int32_t Timeout
Timeout time (ticks).
PlatformArmCortexM PlatformDefault
Default platform implementation.
uint64_t Cycles
Cycles value.
Word TId
Task (thread) id.
Concrete implementation of IPlatform driver for the Risc-V processors.
Cycles GetSysTimerCount() const override
Get system timer count value.
Word GetCallerSP() const override
Get caller's Stack Pointer (SP).
void Resume(Timeout elapsed_ticks) override
Resume scheduling after a prior Suspend() call.
void Start() override
Start scheduling.
uint32_t GetTickResolution() const override
Get resolution of the system tick timer in microseconds. Resolution means a number of microseconds be...
bool SleepUntil(Ticks timestamp) override
Put calling process into a sleep state until the specified timestamp.
uint32_t GetSysTimerFrequency() const override
Get system timer frequency.
void ProcessHardFault() override
Cause a hard fault of the system.
void InitStack(EStackType stack_type, Stack *stack, IStackMemory *stack_memory, ITask *user_task) override
Initialize stack memory of the user task.
void ProcessTick() override
Process one tick.
TId GetTid() const override
Get thread Id.
void ForceContextSwitch(TId id) override
Force context switch.
EWaitResult Wait(ISyncObject *sync_obj, IMutex *mutex, Timeout timeout) override
Put calling process into a waiting state until synchronization object is signaled or timeout occurs.
void SetSpecificEventHandler(ISpecificEventHandler *handler)
void SetCpuFrequency(uint8_t core_id, uint32_t frequency) override
Notify the scheduler of a CPU core's operating frequency.
void SetEventOverrider(IEventOverrider *overrider, bool non_secure) override
Set platform event overrider.
void Stop() override
Stop scheduling.
void SwitchToNext() override
Switch to a next task.
STK_VIRT_DTOR ~PlatformRiscV()=default
Destructor.
Timeout Suspend() override
Suspend scheduling.
void Sleep(Timeout ticks) override
Put calling process into a sleep state.
void Initialize(IEventHandler *event_handler, IKernelService *service, uint32_t resolution_us, Stack *exit_trap) override
Initialize scheduler's context.
virtual bool OnException(Word cause)=0
Called by ISR handler on IRQ_XXX (see encoding.h).
Interface for a stack memory region.
Synchronization object interface.
Interface for mutex synchronization primitive.
Interface for a user task.
Interface for a platform driver.
Interface for a back-end event handler.
Interface for a platform event overrider.
Interface for the kernel services exposed to the user processes during run-time when Kernel started s...