All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 00/11]  RISC-V Add the OpenTitan Machine
@ 2020-05-28 22:14 ` Alistair Francis
  0 siblings, 0 replies; 68+ messages in thread
From: Alistair Francis @ 2020-05-28 22:14 UTC (permalink / raw)
  To: qemu-devel, qemu-riscv; +Cc: alistair.francis, bmeng.cn, palmer, alistair23

OpenTitan is an open source silicon Root of Trust (RoT) project. This
series adds initial support for the OpenTitan machine to QEMU.

This series add the Ibex CPU to the QEMU RISC-V target. It then adds the
OpenTitan machine, the Ibex UART and the Ibex PLIC.

The UART has been tested sending and receiving data.

With this series QEMU can boot the OpenTitan ROM, Tock OS and a Tock
userspace app.

The Ibex PLIC is similar to the RISC-V PLIC (and is based on the QEMU
implementation) with some differences. The hope is that the Ibex PLIC
will converge to follow the RISC-V spec. As that happens I want to
update the QEMU Ibex PLIC and hopefully eventually replace the current
PLIC as the implementation is a little overlay complex.

For more details on OpenTitan, see here: https://docs.opentitan.org/

v5:
 - Add some of the missing unimplemented devices
 - Don't set PMP feature in init() function
v4:
 - Don't set the reset vector in realise
 - Fix a bug where the MMU is always enabled
 - Fixup the PMP/MMU size logic
v3:
 - Small fixes pointed out in review
v2:
 - Rebase on master
 - Get uart receive working



Alistair Francis (11):
  riscv/boot: Add a missing header include
  target/riscv: Don't overwrite the reset vector
  target/riscv: Disable the MMU correctly
  target/riscv: Don't set PMP feature in the cpu init
  target/riscv: Add the lowRISC Ibex CPU
  riscv: Initial commit of OpenTitan machine
  hw/char: Initial commit of Ibex UART
  hw/intc: Initial commit of lowRISC Ibex PLIC
  riscv/opentitan: Connect the PLIC device
  riscv/opentitan: Connect the UART device
  target/riscv: Use a smaller guess size for no-MMU PMP

 default-configs/riscv32-softmmu.mak |   1 +
 default-configs/riscv64-softmmu.mak |  11 +-
 include/hw/char/ibex_uart.h         | 110 +++++++
 include/hw/intc/ibex_plic.h         |  63 ++++
 include/hw/riscv/boot.h             |   1 +
 include/hw/riscv/opentitan.h        |  84 +++++
 target/riscv/cpu.h                  |   1 +
 hw/char/ibex_uart.c                 | 492 ++++++++++++++++++++++++++++
 hw/intc/ibex_plic.c                 | 261 +++++++++++++++
 hw/riscv/opentitan.c                | 219 +++++++++++++
 target/riscv/cpu.c                  |  27 +-
 target/riscv/pmp.c                  |  14 +-
 MAINTAINERS                         |  13 +
 hw/char/Makefile.objs               |   1 +
 hw/intc/Makefile.objs               |   1 +
 hw/riscv/Kconfig                    |   9 +
 hw/riscv/Makefile.objs              |   1 +
 17 files changed, 1291 insertions(+), 18 deletions(-)
 create mode 100644 include/hw/char/ibex_uart.h
 create mode 100644 include/hw/intc/ibex_plic.h
 create mode 100644 include/hw/riscv/opentitan.h
 create mode 100644 hw/char/ibex_uart.c
 create mode 100644 hw/intc/ibex_plic.c
 create mode 100644 hw/riscv/opentitan.c

-- 
2.26.2



^ permalink raw reply	[flat|nested] 68+ messages in thread

end of thread, other threads:[~2023-05-19 17:16 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-28 22:14 [PATCH v5 00/11] RISC-V Add the OpenTitan Machine Alistair Francis
2020-05-28 22:14 ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 01/11] riscv/boot: Add a missing header include Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 02/11] target/riscv: Don't overwrite the reset vector Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 03/11] target/riscv: Disable the MMU correctly Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-06-01  5:24   ` Bin Meng
2020-06-01  5:24     ` Bin Meng
2020-05-28 22:14 ` [PATCH v5 04/11] target/riscv: Don't set PMP feature in the cpu init Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-06-01  5:26   ` Bin Meng
2020-06-01  5:26     ` Bin Meng
2020-05-28 22:14 ` [PATCH v5 05/11] target/riscv: Add the lowRISC Ibex CPU Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 06/11] riscv: Initial commit of OpenTitan machine Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-06-09 13:48   ` Damien Hedde
2020-06-09 13:48     ` Damien Hedde
2020-06-09 14:21     ` Philippe Mathieu-Daudé
2020-06-09 23:09       ` Alistair Francis
2020-06-09 23:09         ` Alistair Francis
2020-09-08 14:52   ` Peter Maydell
2020-09-08 14:52     ` Peter Maydell
2020-09-09 17:49     ` Alistair Francis
2020-09-09 17:49       ` Alistair Francis
2020-09-09 19:00       ` Peter Maydell
2020-09-09 19:00         ` Peter Maydell
2020-09-09 19:51         ` Palmer Dabbelt
2020-09-09 19:51           ` Palmer Dabbelt
2020-09-10 18:48           ` Alistair Francis
2020-09-10 18:48             ` Alistair Francis
2023-05-19 17:15   ` [PATCH v5 6/11] " Philippe Mathieu-Daudé
2020-05-28 22:14 ` [PATCH v5 07/11] hw/char: Initial commit of Ibex UART Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-06-01 21:23   ` Alistair Francis
2020-06-01 21:23     ` Alistair Francis
2020-06-02 11:22   ` LIU Zhiwei
2020-06-02 11:22     ` LIU Zhiwei
2020-06-02 12:28     ` LIU Zhiwei
2020-06-02 12:28       ` LIU Zhiwei
2020-06-02 17:54       ` Alistair Francis
2020-06-02 17:54         ` Alistair Francis
2020-06-03 10:33         ` LIU Zhiwei
2020-06-03 10:33           ` LIU Zhiwei
2020-06-03 15:56           ` Alistair Francis
2020-06-03 15:56             ` Alistair Francis
2020-06-04  1:59             ` LIU Zhiwei
2020-06-04  1:59               ` LIU Zhiwei
2020-06-04  4:35               ` Alistair Francis
2020-06-04  4:35                 ` Alistair Francis
2020-06-04  5:05                 ` LIU Zhiwei
2020-06-04  5:05                   ` LIU Zhiwei
2020-06-04  5:46                   ` Alistair Francis
2020-06-04  5:46                     ` Alistair Francis
2020-06-04  5:40                 ` LIU Zhiwei
2020-06-04  5:40                   ` LIU Zhiwei
2020-06-02 17:46     ` Alistair Francis
2020-06-02 17:46       ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 08/11] hw/intc: Initial commit of lowRISC Ibex PLIC Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 09/11] riscv/opentitan: Connect the PLIC device Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 10/11] riscv/opentitan: Connect the UART device Alistair Francis
2020-05-28 22:14   ` Alistair Francis
2020-05-28 22:14 ` [PATCH v5 11/11] target/riscv: Use a smaller guess size for no-MMU PMP Alistair Francis
2020-05-28 22:14   ` Alistair Francis

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.