1 /******************************************************************************* 2 * Copyright 2019-2021 Microchip FPGA Embedded Systems Solutions. 3 * 4 * SPDX-License-Identifier: MIT 5 * 6 * MPFS HAL Embedded Software 7 * 8 */ 9 10 /******************************************************************************* 11 * 12 * @file mss_plic.c 13 * @author Microchip-FPGA Embedded Systems Solutions 14 * @brief PolarFire SoC MSS PLIC and PRCI access data structures and functions. 15 * 16 * PLIC related data which cannot be placed in mss_plic.h 17 * 18 */ 19 #include "mpfs_hal/mss_hal.h" 20 21 #ifdef __cplusplus 22 extern "C" { 23 #endif 24 25 const unsigned long plic_hart_lookup[5U] = {0U, 1U, 3U, 5U, 7U}; 26 27 #ifdef __cplusplus 28 } 29 #endif 30