2015-11-17 14:08:45 -08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Intel corporation
|
|
|
|
*
|
2017-01-18 17:01:01 -08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-11-17 14:08:45 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file Software interrupts utility code - ARC implementation
|
|
|
|
*/
|
|
|
|
|
2016-12-23 08:35:34 -05:00
|
|
|
#include <kernel.h>
|
2015-11-17 14:08:45 -08:00
|
|
|
#include <irq_offload.h>
|
|
|
|
|
|
|
|
static irq_offload_routine_t offload_routine;
|
|
|
|
static void *offload_param;
|
|
|
|
|
|
|
|
/* Called by trap_s exception handler */
|
2019-03-14 09:20:46 -06:00
|
|
|
void z_irq_do_offload(void)
|
2015-11-17 14:08:45 -08:00
|
|
|
{
|
|
|
|
offload_routine(offload_param);
|
|
|
|
}
|
|
|
|
|
2019-11-07 12:43:29 -08:00
|
|
|
void arch_irq_offload(irq_offload_routine_t routine, void *parameter)
|
2015-11-17 14:08:45 -08:00
|
|
|
{
|
|
|
|
|
|
|
|
offload_routine = routine;
|
|
|
|
offload_param = parameter;
|
|
|
|
|
2018-04-12 16:41:41 +08:00
|
|
|
__asm__ volatile ("trap_s %[id]"
|
|
|
|
:
|
|
|
|
: [id] "i"(_TRAP_S_SCALL_IRQ_OFFLOAD) : );
|
2015-11-17 14:08:45 -08:00
|
|
|
|
|
|
|
}
|