14#ifndef ZEPHYR_INCLUDE_ARCH_NIOS2_ARCH_H_
15#define ZEPHYR_INCLUDE_ARCH_NIOS2_ARCH_H_
29#define ARCH_STACK_PTR_ALIGN 4
43#define ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \
45 Z_ISR_DECLARE(irq_p, 0, isr_p, isr_param_p); \
50 unsigned int key, tmp;
53 "rdctl %[key], status\n\t"
55 "and %[tmp], %[key], %[tmp]\n\t"
56 "wrctl status, %[tmp]\n\t"
57 : [key]
"=r" (key), [tmp]
"=r" (tmp)
74#if (ALT_CPU_NUM_OF_SHADOW_REG_SETS > 0) || \
75 (defined ALT_CPU_EIC_PRESENT) || \
76 (defined ALT_CPU_MMU_PRESENT) || \
77 (defined ALT_CPU_MPU_PRESENT)
79 "andi %[key], %[key], 1\n\t"
80 "beq %[key], zero, 1f\n\t"
81 "rdctl %[key], status\n\t"
82 "ori %[key], %[key], 1\n\t"
83 "wrctl status, %[key]\n\t"
89 "wrctl status, %[key]"
103FUNC_NORETURN
void z_SysFatalErrorHandler(
unsigned int reason,
106FUNC_NORETURN
void z_NanoFatalErrorHandler(
unsigned int reason,
140#define NIOS2_BADADDR_CAUSE_MASK \
141 (BIT(NIOS2_EXCEPTION_SUPERVISOR_ONLY_DATA_ADDR) | \
142 BIT(NIOS2_EXCEPTION_MISALIGNED_DATA_ADDR) | \
143 BIT(NIOS2_EXCEPTION_MISALIGNED_TARGET_PC) | \
144 BIT(NIOS2_EXCEPTION_TLB_READ_PERM_VIOLATION) | \
145 BIT(NIOS2_EXCEPTION_TLB_WRITE_PERM_VIOLATION) | \
146 BIT(NIOS2_EXCEPTION_MPU_DATA_REGION_VIOLATION) | \
147 BIT(NIOS2_EXCEPTION_ECC_DATA_ERR))
166 __asm__
volatile(
"nop");
static ALWAYS_INLINE void arch_nop(void)
Definition arch.h:348
Per-arch thread definition.
#define arch_irq_disable(irq)
Definition irq.h:107
#define arch_irq_enable(irq)
Definition irq.h:106
#define ALWAYS_INLINE
Definition common.h:129
Public interface for configuring interrupts.
static ALWAYS_INLINE unsigned int arch_irq_lock(void)
Definition arch.h:63
static ALWAYS_INLINE void arch_irq_unlock(unsigned int key)
Definition arch.h:74
uint64_t sys_clock_cycle_get_64(void)
uint32_t sys_clock_cycle_get_32(void)
static uint32_t arch_k_cycle_get_32(void)
Definition arch.h:99
static uint64_t arch_k_cycle_get_64(void)
Definition arch.h:106
static ALWAYS_INLINE bool arch_irq_unlocked(unsigned int key)
Definition arch.h:87
nios2_exception_cause
Definition arch.h:109
@ NIOS2_EXCEPTION_ECC_DATA_CACHE_WRITEBACK_ERR
Definition arch.h:133
@ NIOS2_EXCEPTION_UNKNOWN
Definition arch.h:110
@ NIOS2_EXCEPTION_TLB_WRITE_PERM_VIOLATION
Definition arch.h:126
@ NIOS2_EXCEPTION_ECC_TLB_ERR
Definition arch.h:129
@ NIOS2_EXCEPTION_MPU_INST_REGION_VIOLATION
Definition arch.h:127
@ NIOS2_EXCEPTION_SUPERVISOR_ONLY_DATA_ADDR
Definition arch.h:122
@ NIOS2_EXCEPTION_CPU_ONLY_RESET_REQUEST
Definition arch.h:112
@ NIOS2_EXCEPTION_TLB_MISS
Definition arch.h:123
@ NIOS2_EXCEPTION_ILLEGAL_INST
Definition arch.h:116
@ NIOS2_EXCEPTION_SUPERVISOR_ONLY_INST_ADDR
Definition arch.h:120
@ NIOS2_EXCEPTION_UNIMPLEMENTED_INST
Definition arch.h:115
@ NIOS2_EXCEPTION_MPU_DATA_REGION_VIOLATION
Definition arch.h:128
@ NIOS2_EXCEPTION_ECC_FETCH_ERR
Definition arch.h:130
@ NIOS2_EXCEPTION_MISALIGNED_TARGET_PC
Definition arch.h:118
@ NIOS2_EXCEPTION_TLB_READ_PERM_VIOLATION
Definition arch.h:125
@ NIOS2_EXCEPTION_DIVISION_ERROR
Definition arch.h:119
@ NIOS2_EXCEPTION_MISALIGNED_DATA_ADDR
Definition arch.h:117
@ NIOS2_EXCEPTION_SUPERVISOR_ONLY_INST
Definition arch.h:121
@ NIOS2_EXCEPTION_TLB_EXECUTE_PERM_VIOLATION
Definition arch.h:124
@ NIOS2_EXCEPTION_TRAP_INST
Definition arch.h:114
@ NIOS2_EXCEPTION_ECC_REGISTER_FILE_ERR
Definition arch.h:131
@ NIOS2_EXCEPTION_INTERRUPT
Definition arch.h:113
@ NIOS2_EXCEPTION_ECC_DATA_ERR
Definition arch.h:132
@ NIOS2_EXCEPTION_RESET
Definition arch.h:111
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
Exception Stack Frame.
Definition exception.h:60
Software-managed ISR table.