/* * Copyright (C) 2023-2025 Intel Corporation. * * SPDX-License-Identifier: BSD-3-Clause * * Authors: * Haicheng Li */ #ifndef RISCV_IRQ_H #define RISCV_IRQ_H #include #define IPI_NOTIFY_CPU 0 struct intr_excp_ctx { struct cpu_regs regs; }; void init_interrupt(uint16_t pcpu_id); #endif /* RISCV_IRQ_H */