From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YlvIG-0001OT-Or for qemu-devel@nongnu.org; Sat, 25 Apr 2015 04:18:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YlvID-00006U-JU for qemu-devel@nongnu.org; Sat, 25 Apr 2015 04:18:32 -0400 Received: from mail-pa0-x22e.google.com ([2607:f8b0:400e:c03::22e]:34578) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YlvID-00005o-Bs for qemu-devel@nongnu.org; Sat, 25 Apr 2015 04:18:29 -0400 Received: by pacyx8 with SMTP id yx8so71249947pac.1 for ; Sat, 25 Apr 2015 01:18:28 -0700 (PDT) From: Alistair Francis Date: Sat, 25 Apr 2015 18:18:23 +1000 Message-Id: Subject: [Qemu-devel] [PATCH v1 0/7] Update the Netduino 2 Machine List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, peter.maydell@linaro.org Cc: alistair23@gmail.com This patchset continues with the Netduino 2 and STM32F205 SoC work. This patch series makes a small change to the STM32F2xx SoC to tidy up the code. Next a feature is added to the STM32F2xx timer to display the PWM duty cycle, when debugging is enabled. Then the STM32F2xx SPI and ADC devices are added and connected to the STM32F205 SoC. Finally the maintainers file is updated to add myself as the maintainer for the Netdunio 2 and STM32F2xx. Alistair Francis (7): STM32F205: Remove the individual device variables STM32F2xx: Display PWM duty cycle from timer STM32F2xx: Add the ADC device STM32F2xx: Add the SPI device STM32F205: Connect the ADC device STM32F205: Connect the SPI device MAINTAINERS: Add Alistair to the maintainers list MAINTAINERS | 15 ++ default-configs/arm-softmmu.mak | 2 + hw/arm/stm32f205_soc.c | 74 +++++++-- hw/misc/Makefile.objs | 1 + hw/misc/stm32f2xx_adc.c | 332 ++++++++++++++++++++++++++++++++++++++++ hw/ssi/Makefile.objs | 1 + hw/ssi/stm32f2xx_spi.c | 211 +++++++++++++++++++++++++ hw/timer/stm32f2xx_timer.c | 10 ++ include/hw/arm/stm32f205_soc.h | 6 + include/hw/misc/stm32f2xx_adc.h | 96 ++++++++++++ include/hw/ssi/stm32f2xx_spi.h | 74 +++++++++ 11 files changed, 807 insertions(+), 15 deletions(-) create mode 100644 hw/misc/stm32f2xx_adc.c create mode 100644 hw/ssi/stm32f2xx_spi.c create mode 100644 include/hw/misc/stm32f2xx_adc.h create mode 100644 include/hw/ssi/stm32f2xx_spi.h -- 2.1.4