tree: daa8b46927ed7ddcd74cc6a6baef2645ca9c5b3b [path history] [tgz]
  1. data/
  2. doc/
  3. dv/
  4. fpv/
  5. rtl/
  6. sw/
  7. util/
  8. Makefile
  9. README.md
  10. rv_plic.core
  11. rv_plic_component.core
hw/ip/rv_plic/README.md

RISC-V Platform-Level Interrupt Controller

RV_PLIC module is to manage multiple interrupt events generated from the peripherals. It implements Platform-Level Interrupt Controller in RISC-V Privileges specification Section 7.

reg_rv_plic.py

The tool is to create register hjson and top module rv_plic.sv files given values of number of sources, number of targets, and max value of priority. By default target is 1 and priority is 7 (8 level of priorities supported)

To change the value and to re-create hjson,

$ reg_rv_plic.py -s 64 -t 2 -p 15 rv_plic.hjson.tpl > rv_plic.hjson
$ reg_rv_plic.py -s 64 -t 2 -p 15 rv_plic.sv.tpl > ../rtl/rv_plic.sv