In ARC's SecureShield, a new secure mode (currently only em) is added. The secure/normal mode is orthogonal to kernel/user mode. The differences between secure mode and normal mode are following: * different irq stack frame. so need to change the definition of _irq_stack_frame, assembly code. * new aux regs, e.g, secure status(SEC_STAT), secure vector base (VECT_BASE_S) * interrupts and exceptions, secure mode has its own vector base; interrupt can be configured as secure or normal through the interrupt priority aux reg. * secure timers. Two secure timers (secure timer 0 and timer 1) are added.Here, for simplicity and backwards compatibility original internal timers (timer 0 and timer1) are used as sys clock of zephyr * on reset, the processor is in secure mode and secure vector base is used. Note: the mix of secure and normal mode is not supported, i.e. it's assumed that the processor is always in secure mode. Signed-off-by: Wayne Ren <wei.ren@synopsys.com>
166 lines
3.5 KiB
C
166 lines
3.5 KiB
C
/* arcv2_irq_unit.h - ARCv2 Interrupt Unit device driver */
|
|
|
|
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _ARC_V2_IRQ_UNIT__H
|
|
#define _ARC_V2_IRQ_UNIT__H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* configuration flags for interrupt unit */
|
|
|
|
#define _ARC_V2_INT_DISABLE 0
|
|
#define _ARC_V2_INT_ENABLE 1
|
|
|
|
#define _ARC_V2_INT_LEVEL 0
|
|
#define _ARC_V2_INT_PULSE 1
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
/*
|
|
* WARNING:
|
|
*
|
|
* All APIs provided by this file must be invoked with INTERRUPTS LOCKED. The
|
|
* APIs themselves are writing the IRQ_SELECT, selecting which IRQ's registers
|
|
* it wants to write to, then write to them: THIS IS NOT AN ATOMIC OPERATION.
|
|
*
|
|
* Not locking the interrupts inside of the APIs allows a caller to:
|
|
*
|
|
* - lock interrupts
|
|
* - call many of these APIs
|
|
* - unlock interrupts
|
|
*
|
|
* thus being more efficient then if the APIs themselves would lock
|
|
* interrupts.
|
|
*/
|
|
|
|
/*
|
|
* @brief Enable/disable interrupt
|
|
*
|
|
* Enables or disables the specified interrupt
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
static inline void _arc_v2_irq_unit_irq_enable_set(
|
|
int irq,
|
|
unsigned char enable
|
|
)
|
|
{
|
|
_arc_v2_aux_reg_write(_ARC_V2_IRQ_SELECT, irq);
|
|
_arc_v2_aux_reg_write(_ARC_V2_IRQ_ENABLE, enable);
|
|
}
|
|
|
|
/*
|
|
* @brief Enable interrupt
|
|
*
|
|
* Enables the specified interrupt
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
static inline void _arc_v2_irq_unit_int_enable(int irq)
|
|
{
|
|
_arc_v2_irq_unit_irq_enable_set(irq, _ARC_V2_INT_ENABLE);
|
|
}
|
|
|
|
/*
|
|
* @brief Disable interrupt
|
|
*
|
|
* Disables the specified interrupt
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
static inline void _arc_v2_irq_unit_int_disable(int irq)
|
|
{
|
|
_arc_v2_irq_unit_irq_enable_set(irq, _ARC_V2_INT_DISABLE);
|
|
}
|
|
|
|
/*
|
|
* @brief Set interrupt priority
|
|
*
|
|
* Set the priority of the specified interrupt
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
static inline void _arc_v2_irq_unit_prio_set(int irq, unsigned char prio)
|
|
{
|
|
_arc_v2_aux_reg_write(_ARC_V2_IRQ_SELECT, irq);
|
|
#ifdef CONFIG_ARC_HAS_SECURE
|
|
/* if ARC has secure mode, all interrupt should be secure */
|
|
_arc_v2_aux_reg_write(_ARC_V2_IRQ_PRIORITY, prio |
|
|
_ARC_V2_IRQ_PRIORITY_SECURE);
|
|
#else
|
|
_arc_v2_aux_reg_write(_ARC_V2_IRQ_PRIORITY, prio);
|
|
#endif
|
|
}
|
|
|
|
/*
|
|
* @brief Set interrupt sensitivity
|
|
*
|
|
* Set the sensitivity of the specified interrupt to either
|
|
* _ARC_V2_INT_LEVEL or _ARC_V2_INT_PULSE. Level interrupts will remain
|
|
* asserted until the interrupt handler clears the interrupt at the peripheral.
|
|
* Pulse interrupts self-clear as the interrupt handler is entered.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
static inline void _arc_v2_irq_unit_sensitivity_set(int irq, int s)
|
|
{
|
|
_arc_v2_aux_reg_write(_ARC_V2_IRQ_SELECT, irq);
|
|
_arc_v2_aux_reg_write(_ARC_V2_IRQ_TRIGGER, s);
|
|
}
|
|
|
|
/*
|
|
* @brief Sets an IRQ line to level/pulse trigger
|
|
*
|
|
* Sets the IRQ line <irq> to trigger an interrupt based on the level or the
|
|
* edge of the signal. Valid values for <trigger> are _ARC_V2_INT_LEVEL and
|
|
* _ARC_V2_INT_PULSE.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
void _arc_v2_irq_unit_trigger_set(int irq, unsigned int trigger);
|
|
|
|
/*
|
|
* @brief Returns an IRQ line trigger type
|
|
*
|
|
* Gets the IRQ line <irq> trigger type.
|
|
* Valid values for <trigger> are _ARC_V2_INT_LEVEL and _ARC_V2_INT_PULSE.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
unsigned int _arc_v2_irq_unit_trigger_get(int irq);
|
|
|
|
/*
|
|
* @brief Send EOI signal to interrupt unit
|
|
*
|
|
* This routine sends an EOI (End Of Interrupt) signal to the interrupt unit
|
|
* to clear a pulse-triggered interrupt.
|
|
*
|
|
* Interrupts must be locked or the ISR operating at P0 when invoking this
|
|
* function.
|
|
*
|
|
* @return N/A
|
|
*/
|
|
|
|
void _arc_v2_irq_unit_int_eoi(int irq);
|
|
|
|
#endif /* _ASMLANGUAGE */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _ARC_V2_IRQ_UNIT__H */
|