qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: liguang <lig.fnst@cn.fujitsu.com>
To: QEMU Developers <qemu-devel@nongnu.org>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	liguang <lig.fnst@cn.fujitsu.com>
Subject: [Qemu-devel] [PATCH V2 0/4] add sunxi machine type
Date: Thu, 21 Nov 2013 11:45:41 +0800	[thread overview]
Message-ID: <1385005545-31767-1-git-send-email-lig.fnst@cn.fujitsu.com> (raw)

this patch-set implemented a device-reduced 
machine type for Allwinner's sunxi series SoC,
like sunxi-4i/5i/7i ...

now, It can support sunxi-4i with a cortex-a8 processor.
and will support more later, like sunxi-7i with cortex-a7,
and will add more devices.

V2: split timer and interrupt controller emulation into
	their corresponding files.

Peter,
I want to add VMState later, can I?
because currently I'm not sure how to pick up
the elements to be packed into VMState.

reference:
http://linux-sunxi.org/Main_Page

Li Guang (4)
	 hw/timer: add sunxi timer device
	 hw/intc: add sunxi interrupt controller device
	 hw/arm: add sunxi machine type
	 MAINTAINERS: add myself to maintain sunxi machine

default-configs/arm-softmmu.mak |   3 +
hw/arm/Makefile.objs            |   1 +
hw/arm/sunxi-soc.c              | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++
hw/intc/Makefile.objs           |   1 +
hw/intc/sunxi-pic.c             | 297 +++++++++++++++++++++++++++++++++++++++
hw/timer/Makefile.objs          |   1 +
hw/timer/sunxi-pit.c            | 218 +++++++++++++++++++++++++++++++++++++++
include/hw/intc/sunxi-pic.h     |  27 ++++
include/hw/timer/sunxi-pit.h    |  25 +++++
MAINTAINERS                     |   9 +++++++++
10 files changed, 695 insertions(+), 0 deletions(-)
 create mode 100644 hw/timer/sunxi-pit.c
 create mode 100644 include/hw/timer/sunxi-pit.h
 create mode 100644 hw/intc/sunxi-pic.c
 create mode 100644 include/hw/intc/sunxi-pic.h
 create mode 100644 hw/arm/sunxi-soc.c

             reply	other threads:[~2013-11-21  3:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-21  3:45 liguang [this message]
2013-11-21  3:45 ` [Qemu-devel] [PATCH V2 1/4] hw/timer: add sunxi timer device liguang
2013-11-21  3:45 ` [Qemu-devel] [PATCH V2 2/4] hw/intc: add sunxi interrupt controller device liguang
2013-11-21  3:45 ` [Qemu-devel] [PATCH V2 3/4] hw/arm: add sunxi machine type liguang
2013-11-21  3:45 ` [Qemu-devel] [PATCH V2 4/4] MAINTAINERS: add myself to maintain sunxi machine liguang

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=1385005545-31767-1-git-send-email-lig.fnst@cn.fujitsu.com \
    --to=lig.fnst@cn.fujitsu.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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).