mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-10 08:51:57 +00:00
Update reserved function names starting with one underscore, replacing them as follows: '_k_' with 'z_' '_K_' with 'Z_' '_handler_' with 'z_handl_' '_Cstart' with 'z_cstart' '_Swap' with 'z_swap' This renaming is done on both global and those static function names in kernel/include and include/. Other static function names in kernel/ are renamed by removing the leading underscore. Other function names not starting with any prefix listed above are renamed starting with a 'z_' or 'Z_' prefix. Function names starting with two or three leading underscores are not automatcally renamed since these names will collide with the variants with two or three leading underscores. Various generator scripts have also been updated as well as perf, linker and usb files. These are drivers/serial/uart_handlers.c include/linker/kobject-text.ld kernel/include/syscall_handler.h scripts/gen_kobject_list.py scripts/gen_syscall_header.py Signed-off-by: Patrik Flykt <patrik.flykt@intel.com>
48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
/*
|
|
* Copyright (c) 2016 Jean-Paul Etienne <fractalclone@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <toolchain.h>
|
|
#include <kernel_structs.h>
|
|
#include <misc/printk.h>
|
|
|
|
void z_irq_spurious(void *unused)
|
|
{
|
|
u32_t mcause;
|
|
|
|
ARG_UNUSED(unused);
|
|
|
|
__asm__ volatile("csrr %0, mcause" : "=r" (mcause));
|
|
|
|
mcause &= SOC_MCAUSE_EXP_MASK;
|
|
|
|
printk("Spurious interrupt detected! IRQ: %d\n", (int)mcause);
|
|
#if defined(CONFIG_RISCV_HAS_PLIC)
|
|
if (mcause == RISCV_MACHINE_EXT_IRQ) {
|
|
printk("PLIC interrupt line causing the IRQ: %d\n",
|
|
riscv_plic_get_irq());
|
|
}
|
|
#endif
|
|
|
|
z_NanoFatalErrorHandler(_NANO_ERR_SPURIOUS_INT, &_default_esf);
|
|
}
|
|
|
|
#ifdef CONFIG_DYNAMIC_INTERRUPTS
|
|
int z_arch_irq_connect_dynamic(unsigned int irq, unsigned int priority,
|
|
void (*routine)(void *parameter), void *parameter,
|
|
u32_t flags)
|
|
{
|
|
ARG_UNUSED(flags);
|
|
|
|
z_isr_install(irq, routine, parameter);
|
|
#if defined(CONFIG_RISCV_HAS_PLIC)
|
|
riscv_plic_set_priority(irq, priority);
|
|
#else
|
|
ARG_UNUSED(priority);
|
|
#endif
|
|
return irq;
|
|
}
|
|
#endif /* CONFIG_DYNAMIC_INTERRUPTS */
|