Zephyr Project API 3.7.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
arch_interface.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
27#ifndef ZEPHYR_INCLUDE_ARCH_ARCH_INTERFACE_H_
28#define ZEPHYR_INCLUDE_ARCH_ARCH_INTERFACE_H_
29
30#ifndef _ASMLANGUAGE
31#include <zephyr/toolchain.h>
32#include <stddef.h>
33#include <zephyr/types.h>
34#include <zephyr/arch/cpu.h>
35#include <zephyr/irq_offload.h>
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41/* NOTE: We cannot pull in kernel.h here, need some forward declarations */
42struct arch_esf;
43struct k_thread;
44struct k_mem_domain;
45
46typedef struct z_thread_stack_element k_thread_stack_t;
47
48typedef void (*k_thread_entry_t)(void *p1, void *p2, void *p3);
49
50__deprecated typedef struct arch_esf z_arch_esf_t;
51
72static inline uint32_t arch_k_cycle_get_32(void);
73
86static inline uint64_t arch_k_cycle_get_64(void);
87
187void arch_cpu_idle(void);
188
207void arch_cpu_atomic_idle(unsigned int key);
208
222typedef void (*arch_cpustart_t)(void *data);
223
244void arch_cpu_start(int cpu_num, k_thread_stack_t *stack, int sz,
245 arch_cpustart_t fn, void *arg);
246
252bool arch_cpu_active(int cpu_num);
253
267static inline unsigned int arch_irq_lock(void);
268
274static inline void arch_irq_unlock(unsigned int key);
275
283static inline bool arch_irq_unlocked(unsigned int key);
284
299void arch_irq_disable(unsigned int irq);
300
306void arch_irq_enable(unsigned int irq);
307
313int arch_irq_is_enabled(unsigned int irq);
314
326int arch_irq_connect_dynamic(unsigned int irq, unsigned int priority,
327 void (*routine)(const void *parameter),
328 const void *parameter, uint32_t flags);
329
344int arch_irq_disconnect_dynamic(unsigned int irq, unsigned int priority,
345 void (*routine)(const void *parameter),
346 const void *parameter, uint32_t flags);
347
354#ifdef CONFIG_PCIE
360#endif /* CONFIG_PCIE */
361
392#ifndef CONFIG_PCIE_CONTROLLER
402unsigned int arch_irq_allocate(void);
403
412void arch_irq_set_used(unsigned int irq);
413
421bool arch_irq_is_used(unsigned int irq);
422
423#endif /* CONFIG_PCIE_CONTROLLER */
424
440#ifdef CONFIG_IRQ_OFFLOAD
457void arch_irq_offload(irq_offload_routine_t routine, const void *parameter);
458#endif /* CONFIG_IRQ_OFFLOAD */
459
468#ifdef CONFIG_SMP
470static inline struct _cpu *arch_curr_cpu(void);
471
472
492static inline uint32_t arch_proc_id(void);
493
500
509
511
512#endif /* CONFIG_SMP */
513
522static inline unsigned int arch_num_cpus(void);
523
533#ifdef CONFIG_USERSPACE
534#include <zephyr/arch/syscall.h>
535
558
570 uintptr_t call_id);
571
584 uintptr_t call_id);
585
599 uintptr_t arg3,
600 uintptr_t call_id);
601
616 uintptr_t arg3, uintptr_t arg4,
617 uintptr_t call_id);
618
634 uintptr_t arg3, uintptr_t arg4,
635 uintptr_t arg5,
636 uintptr_t call_id);
637
654 uintptr_t arg3, uintptr_t arg4,
655 uintptr_t arg5, uintptr_t arg6,
656 uintptr_t call_id);
657
663static inline bool arch_is_user_context(void);
664
671
672#ifdef CONFIG_ARCH_MEM_DOMAIN_DATA
694int arch_mem_domain_init(struct k_mem_domain *domain);
695#endif /* CONFIG_ARCH_MEM_DOMAIN_DATA */
696
697#ifdef CONFIG_ARCH_MEM_DOMAIN_SYNCHRONOUS_API
715int arch_mem_domain_thread_add(struct k_thread *thread);
716
731int arch_mem_domain_thread_remove(struct k_thread *thread);
732
750int arch_mem_domain_partition_remove(struct k_mem_domain *domain,
751 uint32_t partition_id);
752
765int arch_mem_domain_partition_add(struct k_mem_domain *domain,
766 uint32_t partition_id);
767#endif /* CONFIG_ARCH_MEM_DOMAIN_SYNCHRONOUS_API */
768
797int arch_buffer_validate(const void *addr, size_t size, int write);
798
814size_t arch_virt_region_align(uintptr_t phys, size_t size);
815
834FUNC_NORETURN void arch_user_mode_enter(k_thread_entry_t user_entry,
835 void *p1, void *p2, void *p3);
836
851FUNC_NORETURN void arch_syscall_oops(void *ssf);
852
865size_t arch_user_string_nlen(const char *s, size_t maxsize, int *err);
866#endif /* CONFIG_USERSPACE */
867
882#ifndef CONFIG_ARCH_HAS_COHERENCE
883static inline bool arch_mem_coherent(void *ptr)
884{
885 ARG_UNUSED(ptr);
886 return true;
887}
888#endif
889
930#ifndef CONFIG_KERNEL_COHERENCE
931static inline void arch_cohere_stacks(struct k_thread *old_thread,
932 void *old_switch_handle,
933 struct k_thread *new_thread)
934{
935 ARG_UNUSED(old_thread);
936 ARG_UNUSED(old_switch_handle);
937 ARG_UNUSED(new_thread);
938}
939#endif
940
949#ifdef CONFIG_GDBSTUB
950struct gdb_ctx;
951
957void arch_gdb_init(void);
958
965
971void arch_gdb_step(void);
972
986size_t arch_gdb_reg_readall(struct gdb_ctx *ctx, uint8_t *buf, size_t buflen);
987
1001size_t arch_gdb_reg_writeall(struct gdb_ctx *ctx, uint8_t *hex, size_t hexlen);
1002
1017size_t arch_gdb_reg_readone(struct gdb_ctx *ctx, uint8_t *buf, size_t buflen,
1018 uint32_t regno);
1019
1034size_t arch_gdb_reg_writeone(struct gdb_ctx *ctx, uint8_t *hex, size_t hexlen,
1035 uint32_t regno);
1036
1050 uintptr_t addr, uint32_t kind);
1051
1065 uintptr_t addr, uint32_t kind);
1066
1067#endif
1070#ifdef CONFIG_TIMING_FUNCTIONS
1071#include <zephyr/timing/types.h>
1072
1092
1106
1120
1148
1164 volatile timing_t *const end);
1165
1174
1184
1195
1204
1207#endif /* CONFIG_TIMING_FUNCTIONS */
1208
1209#ifdef CONFIG_PCIE_MSI_MULTI_VECTOR
1210
1211struct msi_vector;
1212typedef struct msi_vector msi_vector_t;
1213
1223uint8_t arch_pcie_msi_vectors_allocate(unsigned int priority,
1224 msi_vector_t *vectors,
1225 uint8_t n_vector);
1226
1237bool arch_pcie_msi_vector_connect(msi_vector_t *vector,
1238 void (*routine)(const void *parameter),
1239 const void *parameter,
1240 uint32_t flags);
1241
1242#endif /* CONFIG_PCIE_MSI_MULTI_VECTOR */
1243
1253
1261typedef bool (*stack_trace_callback_fn)(void *cookie, unsigned long addr);
1262
1278void arch_stack_walk(stack_trace_callback_fn callback_fn, void *cookie,
1279 const struct k_thread *thread, const struct arch_esf *esf);
1280
1281#ifdef __cplusplus
1282}
1283#endif /* __cplusplus */
1284
1286
1287#endif /* _ASMLANGUAGE */
1288
1289#endif /* ZEPHYR_INCLUDE_ARCH_ARCH_INTERFACE_H_ */
#define arch_irq_disable(irq)
Definition irq.h:107
#define arch_irq_enable(irq)
Definition irq.h:106
#define arch_irq_is_enabled(irq)
Definition irq.h:109
struct z_thread_stack_element k_thread_stack_t
Typedef of struct z_thread_stack_element.
Definition arch_interface.h:46
void arch_stack_walk(stack_trace_callback_fn callback_fn, void *cookie, const struct k_thread *thread, const struct arch_esf *esf)
Architecture-specific function to walk the stack.
void arch_spin_relax(void)
Perform architecture specific processing within spin loops.
bool(* stack_trace_callback_fn)(void *cookie, unsigned long addr)
stack_trace_callback_fn - Callback for arch_stack_walk
Definition arch_interface.h:1261
void(* k_thread_entry_t)(void *p1, void *p2, void *p3)
Thread entry point function type.
Definition arch_interface.h:48
irp nz macro MOVR cc s mov cc s endm endr irp aw macro LDR aa s
Definition asm-macro-32-bit-gnu.h:17
static struct k_thread thread[2]
Definition atomic.c:26
ZTEST_BMEM int count
Definition main.c:33
size_t arch_gdb_reg_writeall(struct gdb_ctx *ctx, uint8_t *hex, size_t hexlen)
Take a hexadecimal string and update all registers.
void arch_gdb_init(void)
Architecture layer debug start.
void arch_gdb_step(void)
Continue with one step.
size_t arch_gdb_reg_readall(struct gdb_ctx *ctx, uint8_t *buf, size_t buflen)
Read all registers, and outputs as hexadecimal string.
int arch_gdb_remove_breakpoint(struct gdb_ctx *ctx, uint8_t type, uintptr_t addr, uint32_t kind)
Remove breakpoint or watchpoint.
void arch_gdb_continue(void)
Continue running program.
size_t arch_gdb_reg_readone(struct gdb_ctx *ctx, uint8_t *buf, size_t buflen, uint32_t regno)
Read one register, and outputs as hexadecimal string.
int arch_gdb_add_breakpoint(struct gdb_ctx *ctx, uint8_t type, uintptr_t addr, uint32_t kind)
Add breakpoint or watchpoint.
size_t arch_gdb_reg_writeone(struct gdb_ctx *ctx, uint8_t *hex, size_t hexlen, uint32_t regno)
Take a hexadecimal string and update one register.
static bool arch_irq_unlocked(unsigned int key)
Test if calling arch_irq_unlock() with this key would unlock irqs.
static unsigned int arch_irq_lock(void)
Lock interrupts on the current CPU.
int arch_irq_disconnect_dynamic(unsigned int irq, unsigned int priority, void(*routine)(const void *parameter), const void *parameter, uint32_t flags)
Arch-specific hook to dynamically uninstall a shared interrupt.
bool arch_irq_is_used(unsigned int irq)
Arch-specific hook for checking if an IRQ is being used already.
void arch_irq_set_used(unsigned int irq)
Arch-specific hook for declaring an IRQ being used.
static void arch_irq_unlock(unsigned int key)
Unlock interrupts on the current CPU.
int arch_irq_connect_dynamic(unsigned int irq, unsigned int priority, void(*routine)(const void *parameter), const void *parameter, uint32_t flags)
Arch-specific hook to install a dynamic interrupt.
unsigned int arch_irq_allocate(void)
Arch-specific hook for allocating IRQs.
void arch_cpu_atomic_idle(unsigned int key)
Atomically re-enable interrupts and enter low power mode.
void arch_cpu_idle(void)
Power save idle routine.
static unsigned int arch_num_cpus(void)
Returns the number of CPUs.
void arch_cpu_start(int cpu_num, k_thread_stack_t *stack, int sz, arch_cpustart_t fn, void *arg)
Start a numbered CPU on a MP-capable system.
void(* arch_cpustart_t)(void *data)
Per-cpu entry function.
Definition arch_interface.h:222
bool arch_cpu_active(int cpu_num)
Return CPU power status.
int arch_smp_init(void)
void arch_sched_broadcast_ipi(void)
Broadcast an interrupt to all CPUs.
static struct _cpu * arch_curr_cpu(void)
Return the CPU struct for the currently executing CPU.
static uint32_t arch_proc_id(void)
Processor hardware ID.
void arch_sched_directed_ipi(uint32_t cpu_bitmap)
Direct IPIs to the specified CPUs.
static uint32_t arch_k_cycle_get_32(void)
Obtain the current cycle count, in units specified by CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC.
static uint64_t arch_k_cycle_get_64(void)
As for arch_k_cycle_get_32(), but with a 64 bit return value.
static uintptr_t arch_syscall_invoke4(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t call_id)
Invoke a system call with 4 arguments.
int arch_buffer_validate(const void *addr, size_t size, int write)
Check memory region permissions.
size_t arch_user_string_nlen(const char *s, size_t maxsize, int *err)
Safely take the length of a potentially bad string.
static uintptr_t arch_syscall_invoke2(uintptr_t arg1, uintptr_t arg2, uintptr_t call_id)
Invoke a system call with 2 arguments.
static void arch_cohere_stacks(struct k_thread *old_thread, void *old_switch_handle, struct k_thread *new_thread)
Ensure cache coherence prior to context switch.
Definition arch_interface.h:931
FUNC_NORETURN void arch_user_mode_enter(k_thread_entry_t user_entry, void *p1, void *p2, void *p3)
Perform a one-way transition from supervisor to user mode.
size_t arch_virt_region_align(uintptr_t phys, size_t size)
Get the optimal virtual region alignment to optimize the MMU table layout.
static uintptr_t arch_syscall_invoke1(uintptr_t arg1, uintptr_t call_id)
Invoke a system call with 1 argument.
static uintptr_t arch_syscall_invoke0(uintptr_t call_id)
Invoke a system call with 0 arguments.
int arch_mem_domain_max_partitions_get(void)
Get the maximum number of partitions for a memory domain.
static bool arch_is_user_context(void)
Indicate whether we are currently running in user mode.
static bool arch_mem_coherent(void *ptr)
Detect memory coherence type.
Definition arch_interface.h:883
static uintptr_t arch_syscall_invoke5(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t call_id)
Invoke a system call with 5 arguments.
static uintptr_t arch_syscall_invoke3(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t call_id)
Invoke a system call with 3 arguments.
static uintptr_t arch_syscall_invoke6(uintptr_t arg1, uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5, uintptr_t arg6, uintptr_t call_id)
Invoke a system call with 6 arguments.
FUNC_NORETURN void arch_syscall_oops(void *ssf)
Induce a kernel oops that appears to come from a specific location.
uint64_t arch_timing_freq_get(void)
Get frequency of counter used (in Hz).
uint32_t arch_timing_freq_get_mhz(void)
Get frequency of counter used (in MHz).
uint64_t arch_timing_cycles_get(volatile timing_t *const start, volatile timing_t *const end)
Get number of cycles between start and end.
void arch_timing_stop(void)
Signal the end of the timing information gathering.
void arch_timing_init(void)
Initialize the timing subsystem.
uint64_t arch_timing_cycles_to_ns(uint64_t cycles)
Convert number of cycles into nanoseconds.
uint64_t arch_timing_cycles_to_ns_avg(uint64_t cycles, uint32_t count)
Convert number of cycles into nanoseconds with averaging.
timing_t arch_timing_counter_get(void)
Return timing counter.
void arch_timing_start(void)
Signal the start of the timing information gathering.
uint64_t timing_t
Definition types.h:10
IRQ Offload interface.
void(* irq_offload_routine_t)(const void *parameter)
Definition irq_offload.h:18
flags
Definition parser.h:96
uint32_t hex
Definition printk.c:175
void * ptr
Definition printk.c:177
char stack[2048]
Definition main.c:22
static k_spinlock_key_t key
Definition spinlock_error_case.c:15
#define bool
Definition stdbool.h:13
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINTPTR_TYPE__ uintptr_t
Definition stdint.h:105
Exception Stack Frame.
Definition exception.h:57
Architecture specific GDB context.
Definition gdbstub.h:61
Memory Domain.
Definition mem_domain.h:80
Thread Structure.
Definition thread.h:259
Definition msi.h:51
static fdata_t data[2]
Definition test_fifo_contexts.c:15
Macros to abstract toolchain specific capabilities.