qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

sifive_plic.h (2357B)


      1 /*
      2  * SiFive PLIC (Platform Level Interrupt Controller) interface
      3  *
      4  * Copyright (c) 2017 SiFive, Inc.
      5  *
      6  * This provides a RISC-V PLIC device
      7  *
      8  * This program is free software; you can redistribute it and/or modify it
      9  * under the terms and conditions of the GNU General Public License,
     10  * version 2 or later, as published by the Free Software Foundation.
     11  *
     12  * This program is distributed in the hope it will be useful, but WITHOUT
     13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
     14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
     15  * more details.
     16  *
     17  * You should have received a copy of the GNU General Public License along with
     18  * this program.  If not, see <http://www.gnu.org/licenses/>.
     19  */
     20 
     21 #ifndef HW_SIFIVE_PLIC_H
     22 #define HW_SIFIVE_PLIC_H
     23 
     24 #include "hw/sysbus.h"
     25 #include "qom/object.h"
     26 
     27 #define TYPE_SIFIVE_PLIC "riscv.sifive.plic"
     28 
     29 typedef struct SiFivePLICState SiFivePLICState;
     30 DECLARE_INSTANCE_CHECKER(SiFivePLICState, SIFIVE_PLIC,
     31                          TYPE_SIFIVE_PLIC)
     32 
     33 typedef enum PLICMode {
     34     PLICMode_U,
     35     PLICMode_S,
     36     PLICMode_H,
     37     PLICMode_M
     38 } PLICMode;
     39 
     40 typedef struct PLICAddr {
     41     uint32_t addrid;
     42     uint32_t hartid;
     43     PLICMode mode;
     44 } PLICAddr;
     45 
     46 struct SiFivePLICState {
     47     /*< private >*/
     48     SysBusDevice parent_obj;
     49 
     50     /*< public >*/
     51     MemoryRegion mmio;
     52     uint32_t num_addrs;
     53     uint32_t num_harts;
     54     uint32_t bitfield_words;
     55     uint32_t num_enables;
     56     PLICAddr *addr_config;
     57     uint32_t *source_priority;
     58     uint32_t *target_priority;
     59     uint32_t *pending;
     60     uint32_t *claimed;
     61     uint32_t *enable;
     62 
     63     /* config */
     64     char *hart_config;
     65     uint32_t hartid_base;
     66     uint32_t num_sources;
     67     uint32_t num_priorities;
     68     uint32_t priority_base;
     69     uint32_t pending_base;
     70     uint32_t enable_base;
     71     uint32_t enable_stride;
     72     uint32_t context_base;
     73     uint32_t context_stride;
     74     uint32_t aperture_size;
     75 
     76     qemu_irq *m_external_irqs;
     77     qemu_irq *s_external_irqs;
     78 };
     79 
     80 DeviceState *sifive_plic_create(hwaddr addr, char *hart_config,
     81     uint32_t num_harts,
     82     uint32_t hartid_base, uint32_t num_sources,
     83     uint32_t num_priorities, uint32_t priority_base,
     84     uint32_t pending_base, uint32_t enable_base,
     85     uint32_t enable_stride, uint32_t context_base,
     86     uint32_t context_stride, uint32_t aperture_size);
     87 
     88 #endif