18 lines
297 B
C
18 lines
297 B
C
|
/*
|
||
|
* Copyright (c) 2021 Henrik Brix Andersen <henrik@brixandersen.dk>
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <irq.h>
|
||
|
#include <soc.h>
|
||
|
|
||
|
#if defined(CONFIG_RISCV_SOC_INTERRUPT_INIT)
|
||
|
void soc_interrupt_init(void)
|
||
|
{
|
||
|
(void)irq_lock();
|
||
|
|
||
|
__asm__ volatile ("csrwi mie, 0\n");
|
||
|
}
|
||
|
#endif
|