zephyr/arch/xtensa/core/irq_offload.c
Andrew Boie 89d4c6928e kernel: add arch abstraction for irq_offload()
This makes it clearer that this is an API that is expected
to be implemented at the architecture level.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2019-10-01 11:11:42 +02:00

40 lines
973 B
C

/*
* Copyright (c) 2016 Cadence Design Systems, Inc.
* SPDX-License-Identifier: Apache-2.0
*/
#include <kernel.h>
#include <irq_offload.h>
#include <arch/xtensa/arch.h>
#include <xtensa_api.h>
/*
* Xtensa core should support software interrupt in order to allow using
* irq_offload feature
*/
static irq_offload_routine_t offload_routine;
static void *offload_param;
/* Called by ISR dispatcher */
void z_irq_do_offload(void *unused)
{
ARG_UNUSED(unused);
offload_routine(offload_param);
}
void z_arch_irq_offload(irq_offload_routine_t routine, void *parameter)
{
IRQ_CONNECT(CONFIG_IRQ_OFFLOAD_INTNUM, XCHAL_EXCM_LEVEL,
z_irq_do_offload, NULL, 0);
z_arch_irq_disable(CONFIG_IRQ_OFFLOAD_INTNUM);
offload_routine = routine;
offload_param = parameter;
z_xt_set_intset(BIT(CONFIG_IRQ_OFFLOAD_INTNUM));
/*
* Enable the software interrupt, in case it is disabled, so that IRQ
* offload is serviced.
*/
z_arch_irq_enable(CONFIG_IRQ_OFFLOAD_INTNUM);
}