qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Support Andes AE350 Platform
@ 2021-03-10  3:33 Dylan Jhong
  2021-03-10  3:33 ` [PATCH 1/3] Andes RISC-V PLIC Dylan Jhong
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Dylan Jhong @ 2021-03-10  3:33 UTC (permalink / raw)
  To: Alistair.Francis, palmer, sagark, kbastian, qemu-devel,
	qemu-riscv
  Cc: ruinland, Dylan Jhong, alankao

The following patches support Andes's Linux BSP booting on 
qemu using 'andes_ae350' machine.

This patchset has implemented the basic components of AE350 platform, 
which are 
  1. PLIC(external interrupts),
  2. PLICSW(interprocessor interrupts),
  3. PLMT(timer interrupts),
  4. UART(16550a),
  5. Virtio MMIO,
  6. Device tree

Dylan Jhong (3):
  Andes RISC-V PLIC
  Andes RISC-V PLMT
  Andes AE350 RISC-V Machine

 default-configs/devices/riscv32-softmmu.mak |   1 +
 default-configs/devices/riscv64-softmmu.mak |   1 +
 hw/intc/Kconfig                             |   3 +
 hw/intc/andes_plic.c                        | 505 ++++++++++++++++++++
 hw/intc/meson.build                         |   1 +
 hw/riscv/Kconfig                            |   7 +
 hw/riscv/andes_ae350.c                      | 501 +++++++++++++++++++
 hw/riscv/meson.build                        |   1 +
 hw/timer/Kconfig                            |   3 +
 hw/timer/andes_plmt.c                       | 225 +++++++++
 hw/timer/meson.build                        |   1 +
 include/hw/intc/andes_plic.h                | 130 +++++
 include/hw/riscv/andes_ae350.h              |  93 ++++
 include/hw/timer/andes_plmt.h               |  50 ++
 14 files changed, 1522 insertions(+)
 create mode 100644 hw/intc/andes_plic.c
 create mode 100644 hw/riscv/andes_ae350.c
 create mode 100644 hw/timer/andes_plmt.c
 create mode 100644 include/hw/intc/andes_plic.h
 create mode 100644 include/hw/riscv/andes_ae350.h
 create mode 100644 include/hw/timer/andes_plmt.h

-- 
2.17.1



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

end of thread, other threads:[~2021-03-12  1:09 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-10  3:33 [PATCH 0/3] Support Andes AE350 Platform Dylan Jhong
2021-03-10  3:33 ` [PATCH 1/3] Andes RISC-V PLIC Dylan Jhong
2021-03-10  6:05   ` Bin Meng
2021-03-11  6:52     ` Dylan Jhong
2021-03-10  7:50   ` Yixun Lan
2021-03-11 15:42     ` Alistair Francis
2021-03-10  3:33 ` [PATCH 2/3] Andes RISC-V PLMT Dylan Jhong
2021-03-10  3:33 ` [PATCH 3/3] Andes AE350 RISC-V Machine Dylan Jhong
2021-03-10  6:15   ` Bin Meng
2021-03-11  6:50     ` Dylan Jhong
2021-03-11 15:46       ` Alistair Francis
2021-03-12  1:07         ` Bin Meng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).