102 lines
2.4 KiB
C
102 lines
2.4 KiB
C
/*
|
|
* Copyright (c) 2010-2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Interrupt support for IA-32 arch
|
|
*
|
|
* INTERNAL
|
|
* The _idt_base_address symbol is used to determine the base address of the IDT.
|
|
* (It is generated by the linker script, and doesn't correspond to an actual
|
|
* global variable.)
|
|
*/
|
|
|
|
#include <kernel.h>
|
|
#include <arch/cpu.h>
|
|
#include <kernel_structs.h>
|
|
#include <misc/__assert.h>
|
|
#include <misc/printk.h>
|
|
#include <irq.h>
|
|
#include <tracing.h>
|
|
#include <kswap.h>
|
|
|
|
extern void _SpuriousIntHandler(void *);
|
|
extern void _SpuriousIntNoErrCodeHandler(void *);
|
|
|
|
/*
|
|
* Place the addresses of the spurious interrupt handlers into the intList
|
|
* section. The genIdt tool can then populate any unused vectors with
|
|
* these routines.
|
|
*/
|
|
void *__attribute__((section(".spurIsr"))) MK_ISR_NAME(_SpuriousIntHandler) =
|
|
&_SpuriousIntHandler;
|
|
void *__attribute__((section(".spurNoErrIsr")))
|
|
MK_ISR_NAME(_SpuriousIntNoErrCodeHandler) =
|
|
&_SpuriousIntNoErrCodeHandler;
|
|
|
|
|
|
/* FIXME: IRQ direct inline functions have to be placed here and not in
|
|
* arch/cpu.h as inline functions due to nasty circular dependency between
|
|
* arch/cpu.h and kernel_structs.h; the inline functions typically need to
|
|
* perform operations on _kernel. For now, leave as regular functions, a
|
|
* future iteration will resolve this.
|
|
*
|
|
* See https://github.com/zephyrproject-rtos/zephyr/issues/3056
|
|
*/
|
|
|
|
#ifdef CONFIG_SYS_POWER_MANAGEMENT
|
|
void _arch_irq_direct_pm(void)
|
|
{
|
|
if (_kernel.idle) {
|
|
s32_t idle_val = _kernel.idle;
|
|
|
|
_kernel.idle = 0;
|
|
_sys_power_save_idle_exit(idle_val);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void _arch_isr_direct_header(void)
|
|
{
|
|
_int_latency_start();
|
|
z_sys_trace_isr_enter();
|
|
|
|
/* We're not going to unlock IRQs, but we still need to increment this
|
|
* so that _is_in_isr() works
|
|
*/
|
|
++_kernel.nested;
|
|
}
|
|
|
|
void _arch_isr_direct_footer(int swap)
|
|
{
|
|
_irq_controller_eoi();
|
|
_int_latency_stop();
|
|
sys_trace_isr_exit();
|
|
--_kernel.nested;
|
|
|
|
/* Call swap if all the following is true:
|
|
*
|
|
* 1) swap argument was enabled to this function
|
|
* 2) We are not in a nested interrupt
|
|
* 3) Next thread to run in the ready queue is not this thread
|
|
*/
|
|
if (swap && !_kernel.nested &&
|
|
_kernel.ready_q.cache != _current) {
|
|
unsigned int flags;
|
|
|
|
/* Fetch EFLAGS argument to _Swap() */
|
|
__asm__ volatile (
|
|
"pushfl\n\t"
|
|
"popl %0\n\t"
|
|
: "=g" (flags)
|
|
:
|
|
: "memory"
|
|
);
|
|
(void)_Swap(flags);
|
|
}
|
|
}
|
|
|