From: gxt@mprc.pku.edu.cn
To: qemu-devel@nongnu.org
Cc: blauwirbel@gmail.com, chenwj@iis.sinica.edu.tw,
riegamaths@gmail.com, aliguoli@us.ibm.com, gxt@mprc.pku.edu.cn,
afaerber@suse.de
Subject: [Qemu-devel] [PATCH 00/19] unicore32: Add unicore32-softmmu support
Date: Tue, 7 Aug 2012 18:00:40 +0800 [thread overview]
Message-ID: <cover.1344333363.git.gxt@mprc.pku.edu.cn> (raw)
From: Guan Xuetao <gxt@mprc.pku.edu.cn>
These patches implement softmmu support on unicore32 architecture.
Based on master branch of qemu, these patches can be fetched from:
git://github.com/gxt/QEMU.git for-review
UniCore32 CPU is embedded in PKUnity-3 SoC, so we add necessary puv3
devices simulation codes together.
Only minimal system control modules are simulated, to make linux kernel
boot and busybox run in initramfs.
Thanks Andreas Farber, Blue Swirl, Chen Weiren and Dunrong Huang for
their priceless advice.
Any advice is greatly appreciated.
Thanks,
Guan Xuetao
---
Andreas Färber (1):
target-unicore32: Drop UC32_CPUID macros
Guan Xuetao (18):
unicore32-softmmu: Add unicore32-softmmu build support
unicore32-softmmu: Add coprocessor 0(sysctrl) and 1(ocd) instruction
support
unicore32-softmmu: Make UniCore32 cpuid & exceptions correct and
runable
unicore32-softmmu: Implement softmmu specific functions
unicore32-softmmu: Make sure that kernel can access user space
unicore32-softmmu: Add puv3 soc/board support
unicore32-softmmu: Add puv3 interrupt support
unicore32-softmmu: Add puv3 ostimer support
unicore32-softmmu: Add puv3 gpio support
unicore32-softmmu: Add puv3 pm support
unicore32-softmmu: Add puv3 dma support
unicore32-softmmu: Add ps2 support
unicore32-softmmu: Add maintainer information for UniCore32 machine
unicore32-softmmu: Add is_default setting for puv3 machine
unicore32: Split UniCore-F64 instruction helpers from helper.c
unicore32: Disintegrate cpu_dump_state_ucf64 function
unicore32: Close dump-option of cpu_dump_state_ucf64 function
unicore32-softmmu: Add a minimal curses screen support
MAINTAINERS | 8 +
arch_init.c | 2 +
arch_init.h | 1 +
configure | 1 +
cpu-exec.c | 1 +
default-configs/unicore32-softmmu.mak | 4 +
hw/Makefile.objs | 7 +
hw/puv3.c | 131 +++++++++
hw/puv3.h | 49 ++++
hw/puv3_dma.c | 109 +++++++
hw/puv3_gpio.c | 141 +++++++++
hw/puv3_intc.c | 135 +++++++++
hw/puv3_ost.c | 151 ++++++++++
hw/puv3_pm.c | 149 ++++++++++
hw/unicore32/Makefile.objs | 6 +
linux-user/main.c | 3 +-
target-unicore32/Makefile.objs | 4 +-
target-unicore32/cpu.c | 19 +-
target-unicore32/cpu.h | 18 +-
target-unicore32/helper.c | 511 +++++++++++----------------------
target-unicore32/helper.h | 17 +-
target-unicore32/machine.c | 23 ++
target-unicore32/op_helper.c | 44 +++-
target-unicore32/softmmu.c | 267 +++++++++++++++++
target-unicore32/translate.c | 159 +++++++++--
target-unicore32/ucf64_helper.c | 345 ++++++++++++++++++++++
26 files changed, 1904 insertions(+), 401 deletions(-)
create mode 100644 default-configs/unicore32-softmmu.mak
create mode 100644 hw/puv3.c
create mode 100644 hw/puv3.h
create mode 100644 hw/puv3_dma.c
create mode 100644 hw/puv3_gpio.c
create mode 100644 hw/puv3_intc.c
create mode 100644 hw/puv3_ost.c
create mode 100644 hw/puv3_pm.c
create mode 100644 hw/unicore32/Makefile.objs
create mode 100644 target-unicore32/machine.c
create mode 100644 target-unicore32/softmmu.c
create mode 100644 target-unicore32/ucf64_helper.c
next reply other threads:[~2012-08-07 9:53 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-07 10:00 gxt [this message]
2012-08-07 10:00 ` [Qemu-devel] [PATCH 01/19] unicore32-softmmu: Add unicore32-softmmu build support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 02/19] unicore32-softmmu: Add coprocessor 0(sysctrl) and 1(ocd) instruction support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 03/19] unicore32-softmmu: Make UniCore32 cpuid & exceptions correct and runable gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 04/19] target-unicore32: Drop UC32_CPUID macros gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 05/19] unicore32-softmmu: Implement softmmu specific functions gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 06/19] unicore32-softmmu: Make sure that kernel can access user space gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 07/19] unicore32-softmmu: Add puv3 soc/board support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 08/19] unicore32-softmmu: Add puv3 interrupt support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 09/19] unicore32-softmmu: Add puv3 ostimer support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 10/19] unicore32-softmmu: Add puv3 gpio support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 11/19] unicore32-softmmu: Add puv3 pm support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 12/19] unicore32-softmmu: Add puv3 dma support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 13/19] unicore32-softmmu: Add ps2 support gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 14/19] unicore32-softmmu: Add maintainer information for UniCore32 machine gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 15/19] unicore32-softmmu: Add is_default setting for puv3 machine gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 16/19] unicore32: Split UniCore-F64 instruction helpers from helper.c gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 17/19] unicore32: Disintegrate cpu_dump_state_ucf64 function gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 18/19] unicore32: Close dump-option of " gxt
2012-08-07 10:00 ` [Qemu-devel] [PATCH 19/19] unicore32-softmmu: Add a minimal curses screen support gxt
2012-08-09 18:20 ` [Qemu-devel] [PATCH 00/19] unicore32: Add unicore32-softmmu support Blue Swirl
2012-08-10 2:33 ` guanxuetao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1344333363.git.gxt@mprc.pku.edu.cn \
--to=gxt@mprc.pku.edu.cn \
--cc=afaerber@suse.de \
--cc=aliguoli@us.ibm.com \
--cc=blauwirbel@gmail.com \
--cc=chenwj@iis.sinica.edu.tw \
--cc=qemu-devel@nongnu.org \
--cc=riegamaths@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).