From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:59862) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpEBU-0000wb-Vd for qemu-devel@nongnu.org; Mon, 23 Jan 2012 02:19:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpEBT-0004Tm-PD for qemu-devel@nongnu.org; Mon, 23 Jan 2012 02:19:20 -0500 Received: from mail-yx0-f173.google.com ([209.85.213.173]:47326) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpEBT-0004Ti-Lt for qemu-devel@nongnu.org; Mon, 23 Jan 2012 02:19:19 -0500 Received: by yenl8 with SMTP id l8so1364042yen.4 for ; Sun, 22 Jan 2012 23:19:18 -0800 (PST) MIME-Version: 1.0 From: "Peter A. G. Crosthwaite" Date: Mon, 23 Jan 2012 17:20:27 +1000 Message-Id: Subject: [Qemu-devel] [RFC PATCH 0/7] Zynq-7000 EPP platform model List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, monstr@monstr.eu, john.williams@petalogix.com, peter.crosthwaite@petalogix.com, edgar.iglesias@petalogix.com, duyl@xilinx.com, linnj@xilinx.com Hi, This is an RFC for a suite of Device models and a machine model for the Xilinx Zynq-7000 Extensible Processing Platform: http://www.xilinx.com/products/silicon-devices/epp/zynq-7000/index.htm This is an ARM based platform featuring embedded SoC peripherals. This patch series includes a minimal set of device models and a a machine model capable of emulating zynq platforms booting linux. A suitable test linux image is available from: http://www.origin.xilinx.com/member/zynq_linux/zynq_linux.tar.gz This first 4 patches in this series are device models for IP provided by cadence for the Zynq platform. The next two are changes/additions to the qemu boot process to faciliate booting of zynq-linux. The final patch is the initial revision of the zynq machine model. Most of this work was originally authored by Xilinx, as indicated by (c) notices in added files. Peter A. G. Crosthwaite (7): cadence_uart: first revision cadence ttc: first revision cadence_wdt: first reivison cadence_gem: first revision vl.c: added -kerndtb option arm_boot: added initrd address override xilinx_zynq: machine model first revision Makefile.target | 5 + hw/arm-misc.h | 2 + hw/arm_boot.c | 12 +- hw/cadence_gem.c | 1442 +++++++++++++++++++++++++++++++++++++++++++++++++++++ hw/cadence_ttc.c | 545 ++++++++++++++++++++ hw/cadence_uart.c | 620 +++++++++++++++++++++++ hw/cadence_wdt.c | 254 ++++++++++ qemu-options.hx | 3 + vl.c | 4 + 9 files changed, 2883 insertions(+), 4 deletions(-) create mode 100644 hw/cadence_gem.c create mode 100644 hw/cadence_ttc.c create mode 100644 hw/cadence_uart.c create mode 100644 hw/cadence_wdt.c -- 1.7.3.2