64 lines
1.4 KiB
C
64 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Interrupt helper functions (ARC)
|
|
*
|
|
* This file contains private kernel structures definitions and various
|
|
* other definitions for the ARCv2 processor architecture.
|
|
*/
|
|
|
|
#ifndef _ARCV2_IRQ__H_
|
|
#define _ARCV2_IRQ__H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define _ARC_V2_AUX_IRQ_CTRL_BLINK (1 << 9)
|
|
#define _ARC_V2_AUX_IRQ_CTRL_LOOP_REGS (1 << 10)
|
|
#define _ARC_V2_AUX_IRQ_CTRL_LP (1 << 13)
|
|
#define _ARC_V2_AUX_IRQ_CTRL_14_REGS 7
|
|
#define _ARC_V2_AUX_IRQ_CTRL_16_REGS 8
|
|
#define _ARC_V2_AUX_IRQ_CTRL_32_REGS 16
|
|
|
|
#define _ARC_V2_DEF_IRQ_LEVEL (CONFIG_NUM_IRQ_PRIO_LEVELS-1)
|
|
#define _ARC_V2_WAKE_IRQ_LEVEL _ARC_V2_DEF_IRQ_LEVEL
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
extern void _firq_stack_setup(void);
|
|
extern char _interrupt_stack[];
|
|
|
|
/*
|
|
* _irq_setup
|
|
*
|
|
* Configures interrupt handling parameters
|
|
*/
|
|
static ALWAYS_INLINE void _irq_setup(void)
|
|
{
|
|
uint32_t aux_irq_ctrl_value = (
|
|
_ARC_V2_AUX_IRQ_CTRL_LOOP_REGS | /* save lp_xxx registers */
|
|
_ARC_V2_AUX_IRQ_CTRL_BLINK | /* save blink */
|
|
_ARC_V2_AUX_IRQ_CTRL_14_REGS /* save r0 -> r13 (caller-saved) */
|
|
);
|
|
|
|
k_cpu_sleep_mode = _ARC_V2_WAKE_IRQ_LEVEL;
|
|
_arc_v2_aux_reg_write(_ARC_V2_AUX_IRQ_CTRL, aux_irq_ctrl_value);
|
|
|
|
_kernel.irq_stack = _interrupt_stack + CONFIG_ISR_STACK_SIZE;
|
|
_firq_stack_setup();
|
|
}
|
|
|
|
#endif /* _ASMLANGUAGE */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _ARCV2_IRQ__H_ */
|