From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34659) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zwtig-0002x7-J2 for qemu-devel@nongnu.org; Thu, 12 Nov 2015 10:23:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zwtif-0003ej-QX for qemu-devel@nongnu.org; Thu, 12 Nov 2015 10:23:26 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:35394) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zwtif-0003cb-KU for qemu-devel@nongnu.org; Thu, 12 Nov 2015 10:23:25 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1ZwtiX-0007gO-HZ for qemu-devel@nongnu.org; Thu, 12 Nov 2015 15:23:17 +0000 From: Peter Maydell Date: Thu, 12 Nov 2015 15:23:15 +0000 Message-Id: <1447341797-29506-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PULL 0/2] target-arm queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Last two things to sneak in before rc0. thanks -- PMM The following changes since commit 17e50a72a3aade0eddfebc012a5d7bdd40a03573: Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging (2015-11-12 14:15:32 +0000) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20151112 for you to fetch changes up to a7df81a503ce0dd38fe400c9a37fe95ee07b51f0: hw/misc: Add support for ADC controller in Xilinx Zynq 7000 (2015-11-12 15:10:43 +0000) ---------------------------------------------------------------- target-arm queue: * add ADC controller to zynq board * update PC before calling gen_helper_check_breakpoints() ---------------------------------------------------------------- Guenter Roeck (1): hw/misc: Add support for ADC controller in Xilinx Zynq 7000 Sergey Fedorov (1): target-arm: Update PC before calling gen_helper_check_breakpoints() hw/arm/xilinx_zynq.c | 6 + hw/misc/Makefile.objs | 1 + hw/misc/zynq-xadc.c | 302 ++++++++++++++++++++++++++++++++++++++++++++ include/hw/misc/zynq-xadc.h | 46 +++++++ target-arm/translate-a64.c | 1 + target-arm/translate.c | 1 + 6 files changed, 357 insertions(+) create mode 100644 hw/misc/zynq-xadc.c create mode 100644 include/hw/misc/zynq-xadc.h