qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v3 0/4] add sunxi machine type


From: liguang
Subject: [Qemu-devel] [PATCH v3 0/4] add sunxi machine type
Date: Mon, 25 Nov 2013 15:41:42 +0800

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.
v3: 
1. change loader_start address
2. add 64-bit counter
3. fixup fail to clear interrup status issue

TODO:
1. add BROM support
2. add VMState
3. add more devices
4. add sunxi-7i support

test:
can boot-up officially released linux kernel.

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 via email to

[Prev in Thread] Current Thread [Next in Thread]