All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/9]  RISC-V Add the OpenTitan Machine
@ 2020-05-07 19:12 ` Alistair Francis
  0 siblings, 0 replies; 68+ messages in thread
From: Alistair Francis @ 2020-05-07 19:12 UTC (permalink / raw)
  To: qemu-devel, qemu-riscv; +Cc: alistair.francis, 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/

v2:
 - Rebase on master
 - Get uart receive working

Alistair Francis (9):
  riscv/boot: Add a missing header include
  target/riscv: Don't overwrite the reset vector
  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

 MAINTAINERS                         |  14 +
 default-configs/riscv32-softmmu.mak |   1 +
 default-configs/riscv64-softmmu.mak |  11 +-
 hw/char/Makefile.objs               |   1 +
 hw/char/ibex_uart.c                 | 490 ++++++++++++++++++++++++++++
 hw/intc/Makefile.objs               |   1 +
 hw/intc/ibex_plic.c                 | 261 +++++++++++++++
 hw/riscv/Kconfig                    |   9 +
 hw/riscv/Makefile.objs              |   1 +
 hw/riscv/opentitan.c                | 204 ++++++++++++
 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        |  79 +++++
 target/riscv/cpu.c                  |  30 +-
 target/riscv/cpu.h                  |   1 +
 target/riscv/pmp.c                  |  19 +-
 17 files changed, 1281 insertions(+), 15 deletions(-)
 create mode 100644 hw/char/ibex_uart.c
 create mode 100644 hw/intc/ibex_plic.c
 create mode 100644 hw/riscv/opentitan.c
 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

-- 
2.26.2



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

end of thread, other threads:[~2020-05-19 18:14 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-07 19:12 [PATCH v2 0/9] RISC-V Add the OpenTitan Machine Alistair Francis
2020-05-07 19:12 ` Alistair Francis
2020-05-07 19:13 ` [PATCH v2 1/9] riscv/boot: Add a missing header include Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-14 15:33   ` Bin Meng
2020-05-14 15:33     ` Bin Meng
2020-05-14 15:30     ` Alistair Francis
2020-05-14 15:30       ` Alistair Francis
2020-05-14 15:46       ` Bin Meng
2020-05-14 15:46         ` Bin Meng
2020-05-14 17:51         ` Philippe Mathieu-Daudé
2020-05-14 17:51           ` Philippe Mathieu-Daudé
2020-05-15  5:00       ` Bin Meng
2020-05-15  5:00         ` Bin Meng
2020-05-07 19:13 ` [PATCH v2 2/9] target/riscv: Don't overwrite the reset vector Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-14 17:54   ` Philippe Mathieu-Daudé
2020-05-14 17:54     ` Philippe Mathieu-Daudé
2020-05-14 21:42     ` Alistair Francis
2020-05-14 21:42       ` Alistair Francis
2020-05-15  4:54       ` Bin Meng
2020-05-15  4:54         ` Bin Meng
2020-05-15 19:43         ` Alistair Francis
2020-05-15 19:43           ` Alistair Francis
2020-05-16  9:03           ` Bin Meng
2020-05-16  9:03             ` Bin Meng
2020-05-19 18:03             ` Alistair Francis
2020-05-19 18:03               ` Alistair Francis
2020-05-07 19:13 ` [PATCH v2 3/9] target/riscv: Add the lowRISC Ibex CPU Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-15  4:57   ` Bin Meng
2020-05-15  4:57     ` Bin Meng
2020-05-07 19:13 ` [PATCH v2 4/9] riscv: Initial commit of OpenTitan machine Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-15  5:14   ` Bin Meng
2020-05-15  5:14     ` Bin Meng
2020-05-07 19:13 ` [PATCH v2 5/9] hw/char: Initial commit of Ibex UART Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-14 17:59   ` Philippe Mathieu-Daudé
2020-05-14 17:59     ` Philippe Mathieu-Daudé
2020-05-14 21:59     ` Alistair Francis
2020-05-14 21:59       ` Alistair Francis
2020-05-15  7:25       ` Philippe Mathieu-Daudé
2020-05-15  7:25         ` Philippe Mathieu-Daudé
2020-05-15  7:28   ` Philippe Mathieu-Daudé
2020-05-15  7:28     ` Philippe Mathieu-Daudé
2020-05-15 19:46     ` Alistair Francis
2020-05-15 19:46       ` Alistair Francis
2020-05-07 19:13 ` [PATCH v2 6/9] hw/intc: Initial commit of lowRISC Ibex PLIC Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-14 18:40   ` Philippe Mathieu-Daudé
2020-05-14 18:40     ` Philippe Mathieu-Daudé
2020-05-14 21:53     ` Alistair Francis
2020-05-14 21:53       ` Alistair Francis
2020-05-07 19:13 ` [PATCH v2 7/9] riscv/opentitan: Connect the PLIC device Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-15  6:29   ` Bin Meng
2020-05-15  6:29     ` Bin Meng
2020-05-07 19:13 ` [PATCH v2 8/9] riscv/opentitan: Connect the UART device Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-15  6:29   ` Bin Meng
2020-05-15  6:29     ` Bin Meng
2020-05-07 19:13 ` [PATCH v2 9/9] target/riscv: Use a smaller guess size for no-MMU PMP Alistair Francis
2020-05-07 19:13   ` Alistair Francis
2020-05-15  6:28   ` Bin Meng
2020-05-15  6:28     ` Bin Meng
2020-05-13 18:18 ` [PATCH v2 0/9] RISC-V Add the OpenTitan Machine Alistair Francis
2020-05-13 18:18   ` 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.