18#ifndef __VSF_ARCH_ABSTRACTION_H__
19#define __VSF_ARCH_ABSTRACTION_H__
32#ifndef __LITTLE_ENDIAN
33# define __LITTLE_ENDIAN 1234
36# define __BIG_ENDIAN 4321
41#define VSF_SYSTIMER_IMPL_NONE 0
42#define VSF_SYSTIMER_IMPL_REQUEST_RESPONSE 1
43#define VSF_SYSTIMER_IMPL_WITH_NORMAL_TIMER 2
44#define VSF_SYSTIMER_IMPL_WITH_COMP_TIMER 3
45#define VSF_SYSTIMER_IMPL_TICK_MODE 4
50#ifndef VSF_ARCH_ASSERT
51# define VSF_ARCH_ASSERT(...) VSF_ASSERT(__VA_ARGS__)
86#if !defined(VSF_ARCH_HEADER)
89# define VSF_ARCH_HEADER "./rtos/rtos_generic.h"
90# elif defined(__CPU_GENERIC__)
91# if defined(__MACOS__)
92# define VSF_ARCH_HEADER "./generic/macos/macos_generic.h"
93# elif defined(__LINUX__)
94# define VSF_ARCH_HEADER "./generic/linux/linux_generic.h"
96# error not supported generic arch
98# elif (defined(__ARM_ARCH_PROFILE) && __ARM_ARCH_PROFILE == 'M') || __TARGET_PROFILE_M
99# define VSF_ARCH_HEADER "./arm/cortex-m/cortex_m_generic.h"
100# elif defined(__ARM_ARCH_PROFILE) && __ARM_ARCH_PROFILE == 'A' || __TARGET_PROFILE_A
101# define VSF_ARCH_HEADER "./arm/cortex-a/cortex_a_generic.h"
102# elif defined(__ARM_ARCH_PROFILE) && __ARM_ARCH_PROFILE == 'R' || __TARGET_PROFILE_R
103# define VSF_ARCH_HEADER "./arm/cortex-r/cortex_r_generic.h"
105# elif (defined(__CPU_X86__) || defined(__CPU_X64__)) && defined(__WIN__)
106# define VSF_ARCH_HEADER "./x86/win/win_generic.h"
107# elif (defined(__CPU_X86__) || defined(__CPU_X64__) || defined(__CPU_WEBASSEMBLY__)) && defined(__LINUX__)
108# define VSF_ARCH_HEADER "./generic/linux/linux_generic.h"
109# elif defined(__CPU_MCS51__)
110# define VSF_ARCH_HEADER "./mcs51/mcs51_generic.h"
111# elif defined(__CPU_RV__) || defined(__CPU_RISCV__)
112# define VSF_ARCH_HEADER "./rv/rv_generic.h"
113# elif defined(__CPU_ARM9__)
114# define VSF_ARCH_HEADER "./arm/arm9/arm9_generic.h"
116# warning no supported architecture found, use default arch template!
117# define VSF_ARCH_HEADER "./template/template_generic.h"
120#include VSF_ARCH_HEADER
128#ifndef VSF_ARCH_SWI_NUM
129# define VSF_ARCH_SWI_NUM 0
131#ifndef VSF_DEV_SWI_NUM
132# define VSF_DEV_SWI_NUM 0
136# error "__BYTE_ORDER MUST be defined in arch"
139#define VSF_SWI_NUM (VSF_ARCH_SWI_NUM + VSF_DEV_SWI_NUM)
141#define ___constant_swab16(__x) ((uint16_t)( \
142 (((uint16_t)(__x) & (uint16_t)0x00FFU) << 8) | \
143 (((uint16_t)(__x) & (uint16_t)0xFF00U) >> 8)))
145#define ___constant_swab32(__x) ((uint32_t)( \
146 (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
147 (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \
148 (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \
149 (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24)))
151#define ___constant_swab64(__x) ((uint64_t)( \
152 (((uint64_t)(__x) & (uint64_t)0x00000000000000ffULL) << 56) | \
153 (((uint64_t)(__x) & (uint64_t)0x000000000000ff00ULL) << 40) | \
154 (((uint64_t)(__x) & (uint64_t)0x0000000000ff0000ULL) << 24) | \
155 (((uint64_t)(__x) & (uint64_t)0x00000000ff000000ULL) << 8) | \
156 (((uint64_t)(__x) & (uint64_t)0x000000ff00000000ULL) >> 8) | \
157 (((uint64_t)(__x) & (uint64_t)0x0000ff0000000000ULL) >> 24) | \
158 (((uint64_t)(__x) & (uint64_t)0x00ff000000000000ULL) >> 40) | \
159 (((uint64_t)(__x) & (uint64_t)0xff00000000000000ULL) >> 56)))
161#define bswap16 bswap_16
162#define bswap32 bswap_32
163#define bswap64 bswap_64
164#if __BYTE_ORDER == __BIG_ENDIAN
169# define htole16 bswap_16
175# define le16toh bswap_16
181# define htole32 bswap_32
187# define le32toh bswap_32
193# define htole64 bswap_64
199# define le64toh bswap_64
202# define cpu_to_le16 bswap_16
203# define cpu_to_le32 bswap_32
204# define cpu_to_le64 bswap_64
205# define le16_to_cpu bswap_16
206# define le32_to_cpu bswap_32
207# define le64_to_cpu bswap_64
215# define __constant_cpu_to_le16 ___constant_swab16
216# define __constant_le16_to_cpu ___constant_swab16
217# define __constant_cpu_to_le32 ___constant_swab32
218# define __constant_le32_to_cpu ___constant_swab32
219# define __constant_cpu_to_le64 ___constant_swab64
220# define __constant_le64_to_cpu ___constant_swab64
221# define __constant_cpu_to_be16
222# define __constant_be16_to_cpu
223# define __constant_cpu_to_be32
224# define __constant_be32_to_cpu
225# define __constant_cpu_to_be64
226# define __constant_be64_to_cpu
229# define htobe16 bswap_16
235# define be16toh bswap_16
241# define htobe32 bswap_32
247# define be32toh bswap_32
253# define htobe64 bswap_64
259# define be64toh bswap_64
271# define cpu_to_be16 bswap_16
272# define cpu_to_be32 bswap_32
273# define cpu_to_be64 bswap_64
274# define be16_to_cpu bswap_16
275# define be32_to_cpu bswap_32
276# define be64_to_cpu bswap_64
278# define __constant_cpu_to_le16
279# define __constant_le16_to_cpu
280# define __constant_cpu_to_le32
281# define __constant_le32_to_cpu
282# define __constant_cpu_to_le64
283# define __constant_le64_to_cpu
284# define __constant_cpu_to_be16 ___constant_swab16
285# define __constant_be16_to_cpu ___constant_swab16
286# define __constant_cpu_to_be32 ___constant_swab32
287# define __constant_be32_to_cpu ___constant_swab32
288# define __constant_cpu_to_be64 ___constant_swab64
289# define __constant_be64_to_cpu ___constant_swab64
292#define DECLARE_ENDIAN_FUNC(__bitlen) \
293extern uint_fast##__bitlen##_t cpu_to_le##__bitlen##p(uint##__bitlen##_t *); \
294extern uint_fast##__bitlen##_t cpu_to_be##__bitlen##p(uint##__bitlen##_t *); \
295extern uint_fast##__bitlen##_t le##__bitlen##_to_cpup(uint##__bitlen##_t *); \
296extern uint_fast##__bitlen##_t be##__bitlen##_to_cpup(uint##__bitlen##_t *); \
297extern void cpu_to_le##__bitlen##s(uint##__bitlen##_t *); \
298extern void cpu_to_be##__bitlen##s(uint##__bitlen##_t *); \
299extern void le##__bitlen##_to_cpus(uint##__bitlen##_t *); \
300extern void be##__bitlen##_to_cpus(uint##__bitlen##_t *); \
301extern uint_fast##__bitlen##_t get_unaligned_cpu##__bitlen(const void *); \
302extern uint_fast##__bitlen##_t get_unaligned_le##__bitlen(const void *); \
303extern uint_fast##__bitlen##_t get_unaligned_be##__bitlen(const void *); \
304extern void put_unaligned_cpu##__bitlen(uint_fast##__bitlen##_t, void *); \
305extern void put_unaligned_le##__bitlen(uint_fast##__bitlen##_t, void *); \
306extern void put_unaligned_be##__bitlen(uint_fast##__bitlen##_t, void *);
308#define __vsf_protect_region(__region) \
309 for (vsf_protect_t VSF_MACRO_SAFE_NAME(protect_status), \
310 VSF_MACRO_SAFE_NAME(local_cnt) = 1; \
311 (((__region) != NULL) && VSF_MACRO_SAFE_NAME(local_cnt)--) ? \
312 ((VSF_MACRO_SAFE_NAME(protect_status) = (__region)->enter()), true) : false;\
313 (__region)->leave(VSF_MACRO_SAFE_NAME(protect_status)))
314#define vsf_protect_region(__region) __vsf_protect_region(__region)
315#define vsf_protect_region_exit(__region) continue
317#define vsf_protect_region_simple(__region, ...) \
319 if (__region != NULL) { \
320 vsf_protect_t VSF_MACRO_SAFE_NAME(protect_status) = (__region)->enter();\
322 (__region)->leave(VSF_MACRO_SAFE_NAME(protect_status)); \
332#ifndef __vsf_interrupt_safe
333# if (!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L) && !defined(__cplusplus)
334# define __vsf_interrupt_safe(__code) \
336 vsf_gint_state_t VSF_MACRO_SAFE_NAME(gint_state) = vsf_disable_interrupt();\
338 vsf_set_interrupt(VSF_MACRO_SAFE_NAME(gint_state)); \
341# define __vsf_interrupt_safe(...) \
343 vsf_gint_state_t VSF_MACRO_SAFE_NAME(gint_state) = vsf_disable_interrupt();\
345 vsf_set_interrupt(VSF_MACRO_SAFE_NAME(gint_state)); \
354#ifndef vsf_interrupt_safe
355# define vsf_interrupt_safe() vsf_protect_region(&vsf_protect_region_int)
363#ifndef vsf_interrupt_safe_simple
365# define vsf_interrupt_safe_simple(...) \
366 vsf_protect_region_simple(&vsf_protect_region_int, __VA_ARGS__)
371#define vsf_protect_interrupt() vsf_disable_interrupt()
372#define vsf_unprotect_interrupt(__state) vsf_set_interrupt(__state)
373#define vsf_protect_none() (0)
374#define vsf_unprotect_none(__state) VSF_UNUSED_PARAM(__state)
376#define vsf_protect_int vsf_protect_interrupt
377#define vsf_unprotect_int vsf_unprotect_interrupt
379#define __vsf_protect(__type) vsf_protect_##__type
380#define __vsf_unprotect(__type) vsf_unprotect_##__type
381#define vsf_protect(__type) __vsf_protect(__type)
382#define vsf_unprotect(__type) __vsf_unprotect(__type)
387# define vsf_atom64_op(__ptr, ...) \
389 vsf_protect_t VSF_MACRO_SAFE_NAME(orig) = vsf_protect_int(); \
390 int64_t _ = (*(int64_t *)(__ptr)); \
391 *(int64_t *)(__ptr) = (__VA_ARGS__); \
392 vsf_unprotect_int(VSF_MACRO_SAFE_NAME(orig)); \
398# define vsf_atom32_op(__ptr, ...) \
400 vsf_protect_t VSF_MACRO_SAFE_NAME(orig) = vsf_protect_int(); \
401 int32_t _ = (*(int32_t *)(__ptr)); \
402 *(int32_t *)(__ptr) = (__VA_ARGS__); \
403 vsf_unprotect_int(VSF_MACRO_SAFE_NAME(orig)); \
409# define vsf_atom16_op(__ptr, ...) \
411 vsf_protect_t VSF_MACRO_SAFE_NAME(orig) = vsf_protect_int(); \
412 int16_t _ = (*(int16_t *)(__ptr)); \
413 *(int16_t *)(__ptr) = (__VA_ARGS__); \
414 vsf_unprotect_int(VSF_MACRO_SAFE_NAME(orig)); \
420# define vsf_atom8_op(__ptr, ...) \
422 vsf_protect_t VSF_MACRO_SAFE_NAME(orig) = vsf_protect_int(); \
423 int8_t _ = (*(int8_t *)(__ptr)); \
424 *(int8_t *)(__ptr) = (__VA_ARGS__); \
425 vsf_unprotect_int(VSF_MACRO_SAFE_NAME(orig)); \
431# define vsf_atom_add(__bitlen, __ptr, __value) \
432 VSF_MCONNECT(vsf_atom, __bitlen, _op)((__ptr), _ + (__value))
435# define vsf_atom_dec(__bitlen, __ptr, __value) \
436 vsf_atom_add(__bitlen, (__ptr), - (__value))
439# define vsf_atom_or(__bitlen, __ptr, __value) \
440 VSF_MCONNECT(vsf_atom, __bitlen, _op)((__ptr), _ | (__value))
443# define vsf_atom_and(__bitlen, __ptr, __value) \
444 VSF_MCONNECT(vsf_atom, __bitlen, _op)((__ptr), _ & (__value))
447# define vsf_atom_xor(__bitlen, __ptr, __value) \
448 VSF_MCONNECT(vsf_atom, __bitlen, _op)((__ptr), _ ^ (__value))
451# define vsf_atom_xchg(__bitlen, __ptr, __new_value) \
452 VSF_MCONNECT(vsf_atom, __bitlen, _op)((__ptr), (__new_value))
456#define vsf_arch_host_invoke_ctx_t(__name) VSF_MCONNECT(__name, _ctx_t)
457#define declare_vsf_arch_host_invoke(__name) \
458 typedef struct vsf_arch_host_invoke_ctx_t(__name) \
459 vsf_arch_host_invoke_ctx_t(__name); \
460 typedef struct VSF_MCONNECT(__name, _t) VSF_MCONNECT(__name, _t); \
461 extern void VSF_MCONNECT(__name, _callback_t) \
462 (vsf_arch_host_invoke_ctx_t(__name) *ctx); \
463 extern VSF_MCONNECT(__name, _t) VSF_MCONNECT(__name, _instance);
464#define dcl_vsf_arch_host_invoke declare_vsf_arch_host_invoke
465#define define_vsf_arch_host_invoke(__name, ...) \
466 typedef struct vsf_arch_host_invoke_ctx_t(__name) { \
469 } vsf_arch_host_invoke_ctx_t(__name); \
470 typedef struct VSF_MCONNECT(__name, _t) { \
471 implement(vsf_arch_irq_thread_t); \
472 vsf_arch_irq_request_t request; \
474 vsf_arch_host_invoke_ctx_t(__name) ctx; \
475 } VSF_MCONNECT(__name, _t);
476#define def_vsf_arch_host_invoke define_vsf_arch_host_invoke
477#define implement_vsf_arch_host_invoke(__name) \
478 VSF_MCONNECT(__name, _t) VSF_MCONNECT(__name, _instance); \
479 extern void VSF_MCONNECT(__name, _callback_t) \
480 (vsf_arch_host_invoke_ctx_t(__name) *ctx); \
481 static void VSF_MCONNECT(__name, _thread)(void *arg) \
484 VSF_MCONNECT(__name, _t) *ctx = arg; \
485 __vsf_arch_irq_set_background(&ctx->use_as__vsf_arch_irq_thread_t); \
487 __vsf_arch_irq_request_pend(&ctx->request); \
488 VSF_MCONNECT(__name, _callback_t)(&ctx->ctx); \
490 __vsf_arch_irq_start(&ctx->use_as__vsf_arch_irq_thread_t); \
491 caller = ctx->caller; \
492 if (caller != NULL) { \
493 ctx->caller = NULL; \
494 vsf_eda_post_evt(caller, VSF_EVT_USER); \
496 __vsf_arch_irq_end(&ctx->use_as__vsf_arch_irq_thread_t, false); \
499 void VSF_MCONNECT(__name, _callback_t)(vsf_arch_host_invoke_ctx_t(__name) *_)
500#define imp_vsf_arch_host_invoke implement_vsf_arch_host_invoke
501#define initialize_vsf_arch_host_invoke(__name, __priority) \
503 memset(&VSF_MCONNECT(__name, _instance), 0, \
504 sizeof(VSF_MCONNECT(__name, _t))); \
505 __vsf_arch_irq_request_init(&VSF_MCONNECT(__name, _instance).request);\
506 __vsf_arch_irq_init( \
507 &VSF_MCONNECT(__name, _instance).use_as__vsf_arch_irq_thread_t,\
508 VSF_STR(__name), VSF_MCONNECT(__name, _thread), (__priority));\
510#define init_vsf_arch_host_invoke initialize_vsf_arch_host_invoke
511#define vsf_arch_host_invoke_nb(__name, __eda_ptr, __ctx_ptr) \
513 VSF_MCONNECT(__name, _instance).ctx = *(__ctx_ptr); \
514 VSF_MCONNECT(__name, _instance).caller = (__eda_ptr); \
515 __vsf_arch_irq_request_send(&VSF_MCONNECT(__name, _instance).request);\
517#define vsf_arch_host_invoke_get_result_nb(__name, __ctx_ptr) \
519 *(__ctx_ptr) = VSF_MCONNECT(__name, _instance).ctx; \
521#define vsf_arch_host_invoke_in_thread(__name, __ctx_ptr) \
523 vsf_eda_t VSF_MACRO_SAFE_NAME(eda) = vsf_eda_get_cur(); \
524 VSF_ARCH_ASSERT(VSF_MACRO_SAFE_NAME(eda) != NULL); \
525 vsf_arch_host_invoke_nb(__name, VSF_MACRO_SAFE_NAME(eda), (__ctx_ptr));\
526 vsf_thread_wfe(VSF_EVT_USER); \
527 vsf_arch_host_invoke_get_result_nb(__name, __ctx_ptr); \
532#if VSF_ARCH_PROVIDE_HEAP == ENABLED
538# if VSF_ARCH_HEAP_HAS_STATISTICS == ENABLED
569#if VSF_APPLET_USE_ARCH == ENABLED
577# ifndef __VSF_APPLET__
582#if defined(__VSF_APPLET__) && (defined(__VSF_APPLET_LIB__) || defined(__VSF_APPLET_ARCH_LIB__))\
583 && VSF_APPLET_CFG_ABI_PATCH != ENABLED && VSF_APPLET_USE_ARCH == ENABLED
585#ifndef VSF_APPLET_ARCH_VPLT
586# define VSF_APPLET_ARCH_VPLT \
587 ((vsf_arch_vplt_t *)(((vsf_vplt_t *)vsf_vplt((void *)0))->arch_vplt))
590#define VSF_APPLET_ARCH_ENTRY(__NAME) \
591 VSF_APPLET_VPLT_ENTRY_FUNC_ENTRY(VSF_APPLET_ARCH_VPLT, __NAME)
592#define VSF_APPLET_ARCH_IMP(...) \
593 VSF_APPLET_VPLT_ENTRY_FUNC_IMP(VSF_APPLET_ARCH_VPLT, __VA_ARGS__)
605 return VSF_APPLET_ARCH_ENTRY(bswap_64)(
value);
643#ifdef VSF_SYSTIMER_CFG_IMPL_MODE
650extern uint32_t vsf_systimer_get_freq(
void);
vsf_err_t
Definition __type.h:42
uint_fast8_t uintalu_t
Definition type.h:88
vsf_arch_prio_t
Definition cortex_a_generic.h:85
uint64_t vsf_systimer_tick_t
Definition cortex_a_generic.h:70
void vsf_systimer_prio_set(vsf_arch_prio_t priority)
Definition cortex_m_generic.c:244
vsf_systimer_tick_t vsf_systimer_get(void)
Definition linux_generic.c:402
void vsf_systimer_set_idle(void)
Definition linux_generic.c:398
vsf_systimer_tick_t vsf_systimer_tick_to_us(vsf_systimer_tick_t tick)
Definition linux_generic.c:445
bool vsf_systimer_is_due(vsf_systimer_tick_t due)
Definition linux_generic.c:430
vsf_systimer_tick_t vsf_systimer_ms_to_tick(uint_fast32_t time_ms)
Definition linux_generic.c:440
vsf_systimer_tick_t vsf_systimer_us_to_tick(uint_fast32_t time_us)
Definition linux_generic.c:435
vsf_systimer_tick_t vsf_systimer_tick_to_ms(vsf_systimer_tick_t tick)
Definition linux_generic.c:450
vsf_err_t vsf_systimer_start(void)
Definition linux_generic.c:390
bool vsf_systimer_set(vsf_systimer_tick_t due)
Definition linux_generic.c:409
uint32_t uintptr_t
Definition stdint.h:38
unsigned char uint_fast8_t
Definition stdint.h:23
unsigned uint32_t
Definition stdint.h:9
unsigned int uint_fast32_t
Definition stdint.h:27
unsigned short uint_fast16_t
Definition stdint.h:25
unsigned long long uint_fast64_t
Definition stdint.h:29
char int_fast8_t
Definition stdint.h:22
Definition vsf_arch_abstraction.h:539
uint32_t used_size
Definition vsf_arch_abstraction.h:541
uint32_t all_size
Definition vsf_arch_abstraction.h:540
Definition vsf_arch_abstraction.h:67
vsf_arch_text_region_t * next
Definition vsf_arch_abstraction.h:68
uintptr_t size
Definition vsf_arch_abstraction.h:70
uintptr_t start
Definition vsf_arch_abstraction.h:69
Definition vsf_arch_abstraction.h:570
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(bswap_64)
vsf_vplt_info_t info
Definition vsf_arch_abstraction.h:571
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(bswap_16)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(bswap_32)
Definition vsf_arch_abstraction.h:61
void(* leave)(vsf_protect_t orig)
Definition vsf_arch_abstraction.h:63
vsf_protect_t(* enter)(void)
Definition vsf_arch_abstraction.h:62
uint_fast32_t bswap_32(uint_fast32_t)
Definition cortex_a_generic.c:160
vsf_err_t vsf_swi_init(uint_fast8_t idx, vsf_arch_prio_t priority, vsf_swi_handler_t *handler, void *param)
Definition vsf_arch_abstraction.c:511
const vsf_protect_region_t vsf_protect_region_int
Definition vsf_arch_abstraction.c:191
uint_fast8_t vsf_clz32(uint_fast32_t)
Definition vsf_arch_abstraction.c:343
bool vsf_irq_is_pending(int irqn)
Definition cortex_m_generic.c:142
uintalu_t vsf_protect_t
Definition vsf_arch_abstraction.h:60
int_fast8_t vsf_ffs32(uint_fast32_t)
Definition vsf_arch_abstraction.c:412
const vsf_protect_region_t vsf_protect_region_none
Definition vsf_arch_abstraction.c:196
void vsf_arch_shutdown(void)
Definition cortex_m_generic.c:461
void vsf_arch_heap_free(void *buffer)
Definition linux_generic.c:566
unsigned int vsf_arch_heap_alignment(void)
Definition linux_generic.c:572
void vsf_arch_reset(void)
Definition cortex_m_generic.c:455
#define DECLARE_ENDIAN_FUNC(__bitlen)
Definition vsf_arch_abstraction.h:292
void * vsf_arch_heap_malloc(uint_fast32_t size, uint_fast32_t alignment)
Definition linux_generic.c:518
void vsf_irq_pend(int irqn)
Definition cortex_m_generic.c:130
uint32_t vsf_irq_get_priority(int irqn)
Definition cortex_m_generic.c:154
vsf_gint_state_t vsf_disable_interrupt(void)
Definition arm9_generic.c:176
vsf_irq_handler_t vsf_swi_handler_t
Definition vsf_arch_abstraction.h:58
vsf_arch_prio_t vsf_get_base_priority(void)
Definition cortex_m_generic.c:321
void vsf_irq_unpend(int irqn)
Definition cortex_m_generic.c:136
vsf_gint_state_t vsf_get_interrupt(void)
Definition arm9_generic.c:164
void vsf_irq_enable(int irqn)
Definition cortex_m_generic.c:112
void * vsf_arch_heap_realloc(void *buffer, uint_fast32_t size)
Definition linux_generic.c:541
bool vsf_irq_is_enabled(int irqn)
Definition cortex_m_generic.c:124
void vsf_swi_trigger(uint_fast8_t idx)
Definition vsf_arch_abstraction.c:469
void vsf_irq_handler_t(void *p)
Definition vsf_arch_abstraction.h:57
void vsf_arch_heap_statistics(vsf_arch_heap_statistics_t *statistics)
Definition win_generic.c:1265
void vsf_arch_sleep(uint_fast32_t mode)
Definition cortex_m_generic.c:439
__VSF_VPLT_DECORATOR__ vsf_arch_vplt_t vsf_arch_vplt
Definition vsf_arch_abstraction.c:1100
void vsf_arch_swi_trigger(uint_fast8_t idx)
trigger a software interrupt !
Definition cortex_m_generic.c:301
uint_fast16_t bswap_16(uint_fast16_t)
Definition cortex_a_generic.c:155
void vsf_irq_set_priority(int irqn, uint32_t priority)
Definition cortex_m_generic.c:148
vsf_gint_state_t vsf_enable_interrupt(void)
Definition arm9_generic.c:181
uint_fast32_t vsf_arch_heap_size(void *buffer)
Definition linux_generic.c:577
vsf_arch_prio_t vsf_set_base_priority(vsf_arch_prio_t priority)
Definition cortex_m_generic.c:326
int_fast8_t vsf_msb32(uint_fast32_t)
Definition vsf_arch_abstraction.c:378
void vsf_irq_disable(int irqn)
Definition cortex_m_generic.c:118
int vsf_get_interrupt_id(void)
Definition cortex_m_generic.c:429
vsf_gint_state_t vsf_set_interrupt(vsf_gint_state_t level)
Definition arm9_generic.c:169
int_fast8_t vsf_ffz32(uint_fast32_t)
Definition vsf_arch_abstraction.c:447
vk_av_control_value_t value
Definition vsf_audio.h:171
#define __VSF_VPLT_DECORATOR__
Definition vsf_cfg.h:93
#define VSF_APPLET_VPLT_ENTRY_FUNC_TRACE()
Definition vsf_cfg.h:165
uint_fast32_t alignment
Definition vsf_heap.h:163
uint32_t size
Definition vsf_memfs.h:50