From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:53730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rw7OR-0000zj-O3 for qemu-devel@nongnu.org; Sat, 11 Feb 2012 02:29:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rw7OQ-0004Qg-AJ for qemu-devel@nongnu.org; Sat, 11 Feb 2012 02:29:11 -0500 Received: from mail-pz0-f45.google.com ([209.85.210.45]:51228) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rw7OQ-0004Qc-5g for qemu-devel@nongnu.org; Sat, 11 Feb 2012 02:29:10 -0500 Received: by dadp14 with SMTP id p14so3411244dad.4 for ; Fri, 10 Feb 2012 23:29:08 -0800 (PST) MIME-Version: 1.0 From: "Peter A. G. Crosthwaite" Date: Sat, 11 Feb 2012 17:35:31 +1000 Message-Id: Subject: [Qemu-devel] [PATCH v3 0/4] Zynq-7000 EPP platform model List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.crosthwaite@petalogix.com, qemu-devel@nongnu.org, paul@codesourcery.com, peter.maydell@linaro.org, edgar.iglesias@petalogix.com, duyl@xilinx.com, linnj@xilinx.com, afaerber@suse.de, john.williams@petalogix.com, monstr@monstr.eu This is 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. This first 3 patches in this series are device models for IP provided by cadence for the Zynq platform. 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. Tree is available from: git://developer.petalogix.com/private/peterc/qemu.git --- changed from v2: fixed timer prescision issue (2/4) fixed compile warnings in zynq_arm_sysctl (4/4) changes from v1: formatting and style fixes updated for QOM removed former patch 3 (cadence WDT device model) - not required removed former patch 5 (dtb argument) - this is currently under discussion in other patch series' removed former patch 6 (initrd parameterisation) - not required for minimal boot Peter A. G. Crosthwaite (4): cadence_uart: initial version of device model cadence_ttc: initial version of device model cadence_gem: initial version of device model xilinx_zynq: machine model initial version MAINTAINERS | 5 + Makefile.target | 4 + hw/cadence_gem.c | 1229 ++++++++++++++++++++++++++++++++++++++++++++++++++ hw/cadence_ttc.c | 435 ++++++++++++++++++ hw/cadence_uart.c | 561 +++++++++++++++++++++++ hw/xilinx_zynq.c | 178 ++++++++ hw/zynq_arm_sysctl.c | 526 +++++++++++++++++++++ 7 files changed, 2938 insertions(+), 0 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/xilinx_zynq.c create mode 100644 hw/zynq_arm_sysctl.c -- 1.7.3.2