Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | /* * Copyright (c) 2016 Cadence Design Systems, Inc. * SPDX-License-Identifier: Apache-2.0 */ /** * @file * @brief Xtensa specific kernel interface header * This header contains the Xtensa specific kernel interface. It is included * by the generic kernel interface header (include/arch/cpu.h) */ #ifndef _ARCH_IFACE_H #define _ARCH_IFACE_H #include <irq.h> #ifdef __cplusplus extern "C" { #endif #if !defined(_ASMLANGUAGE) && !defined(__ASSEMBLER__) #include "sys_io.h" /* Include from the very same folder of this file */ #include <zephyr/types.h> #include <sw_isr_table.h> #include <arch/xtensa/xtensa_irq.h> #include <xtensa/config/core.h> #define STACK_ALIGN 16 #define OCTET_TO_SIZEOFUNIT(X) (X) #define SIZEOFUNIT_TO_OCTET(X) (X) #define _NANO_ERR_HW_EXCEPTION (0) /* MPU/Bus/Usage fault */ #define _NANO_ERR_INVALID_TASK_EXIT (1) /* Invalid task exit */ #define _NANO_ERR_STACK_CHK_FAIL (2) /* Stack corruption detected */ #define _NANO_ERR_ALLOCATION_FAIL (3) /* Kernel Allocation Failure */ #define _NANO_ERR_RESERVED_IRQ (4) /* Reserved interrupt */ #define _NANO_ERR_KERNEL_OOPS (5) /* Kernel oops (fatal to thread) */ #define _NANO_ERR_KERNEL_PANIC (6) /* Kernel panic (fatal to system) */ /* Xtensa GPRs are often designated by two different names */ #define sys_define_gpr_with_alias(name1, name2) union { u32_t name1, name2; } #include <arch/xtensa/exc.h> /** * * @brief find most significant bit set in a 32-bit word * * This routine finds the first bit set starting from the most significant bit * in the argument passed in and returns the index of that bit. Bits are * numbered starting at 1 from the least significant bit. A return value of * zero indicates that the value passed is zero. * * @return most significant bit set, 0 if @a op is 0 */ static ALWAYS_INLINE unsigned int find_msb_set(u32_t op) { if (!op) return 0; return 32 - __builtin_clz(op); } /** * * @brief find least significant bit set in a 32-bit word * * This routine finds the first bit set starting from the least significant bit * in the argument passed in and returns the index of that bit. Bits are * numbered starting at 1 from the least significant bit. A return value of * zero indicates that the value passed is zero. * * @return least significant bit set, 0 if @a op is 0 */ static ALWAYS_INLINE unsigned int find_lsb_set(u32_t op) { return __builtin_ffs(op); } /* internal routine documented in C file, needed by IRQ_CONNECT() macro */ extern void _irq_priority_set(u32_t irq, u32_t prio, u32_t flags); /** * Configure a static interrupt. * * All arguments must be computable by the compiler at build time; if this * can't be done use irq_connect_dynamic() instead. * * Internally this function does a few things: * * 1. The enum statement has no effect but forces the compiler to only * accept constant values for the irq_p parameter, very important as the * numerical IRQ line is used to create a named section. * * 2. An instance of _isr_table_entry is created containing the ISR and its * parameter. If you look at how _sw_isr_table is created, each entry in the * array is in its own section named by the IRQ line number. What we are doing * here is to override one of the default entries (which points to the * spurious IRQ handler) with what was supplied here. * * 3. The priority level for the interrupt is configured by a call to * _irq_priority_set() * * @param irq_p IRQ line number * @param priority_p Interrupt priority * @param isr_p Interrupt service routine * @param isr_param_p ISR parameter * @param flags_p IRQ options * * @return The vector assigned to this interrupt */ #define _ARCH_IRQ_CONNECT(irq_p, priority_p, isr_p, isr_param_p, flags_p) \ ({ \ enum { IRQ = irq_p }; \ static struct _isr_table_entry \ _CONCAT(_isr_irq, irq_p) \ __attribute__ ((used)) \ __attribute__ ((section(\ STRINGIFY(_CONCAT(.gnu.linkonce.d.isr_irq, irq_p)))\ )) = {isr_param_p, isr_p}; \ _irq_priority_set(irq_p, priority_p, flags_p); \ irq_p; \ }) FUNC_NORETURN void _SysFatalErrorHandler(unsigned int reason, const NANO_ESF *esf); extern u32_t _timer_cycle_get_32(void); #define _arch_k_cycle_get_32() _timer_cycle_get_32() #endif /* !defined(_ASMLANGUAGE) && !defined(__ASSEMBLER__) */ #ifdef __cplusplus } #endif #endif /* _ARCH_IFACE_H */ |