From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDsgp-0001ss-Fl for qemu-devel@nongnu.org; Fri, 17 Jun 2016 08:16:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bDsgf-00033f-HY for qemu-devel@nongnu.org; Fri, 17 Jun 2016 08:15:58 -0400 Received: from 6.mo53.mail-out.ovh.net ([46.105.58.122]:55375) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDsgf-00033R-B2 for qemu-devel@nongnu.org; Fri, 17 Jun 2016 08:15:49 -0400 Received: from player158.ha.ovh.net (b7.ovh.net [213.186.33.57]) by mo53.mail-out.ovh.net (Postfix) with ESMTP id 1A78CFF89AD for ; Fri, 17 Jun 2016 14:15:45 +0200 (CEST) From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Date: Fri, 17 Jun 2016 14:15:19 +0200 Message-Id: <1466165724-7620-1-git-send-email-clg@kaod.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v2 0/5] ast2400: SMC controllers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , Peter Crosthwaite Cc: qemu-devel@nongnu.org, qemu-arm@nongnu.org, kwolf@redhat.com, armbru@redhat.com, Andrew Jeffery , Joel Stanley , =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Hello, The following adds support for the AST2400 SMC controllers. The device model does not implement all the HW features, linear addressing mode is underway, but it should be complete enough for the OpenBMC distro. Code is based on Andrew's SCU model :=20 https://lists.gnu.org/archive/html/qemu-devel/2016-06/msg04420.html Flash images can be grabbed here for testing : https://openpower.xyz/job/openbmc-build/distro=3Dubuntu,target=3Dpalm= etto/lastSuccessfulBuild/artifact/images/palmetto/flash-palmetto https://openpower.xyz/job/openpower-op-build/distro=3Dubuntu,target=3D= palmetto/lastSuccessfulBuild/artifact/images/palmetto.pnor Changes Since v1: - included Paolo's fix adding a "drive" property to the flash device model =20 - fixed drive definition in the test command line Thanks, C. C=C3=A9dric Le Goater (4): ast2400: add SMC controllers (FMC and SPI) ast2400: add SPI flash slave object ast2400: create SPI flash slaves tests: add a m25p80 test Paolo Bonzini (1): m25p80: qdev-ify drive property hw/arm/ast2400.c | 31 +++ hw/arm/palmetto-bmc.c | 3 + hw/arm/xilinx_zynq.c | 8 +- hw/arm/xlnx-ep108.c | 9 +- hw/block/m25p80.c | 10 +- hw/microblaze/petalogix_ml605_mmu.c | 9 +- hw/ssi/Makefile.objs | 1 + hw/ssi/aspeed_smc.c | 460 ++++++++++++++++++++++++++++++= ++++++ include/hw/arm/ast2400.h | 3 + include/hw/ssi/aspeed_smc.h | 105 ++++++++ tests/Makefile.include | 2 + tests/m25p80-test.c | 242 +++++++++++++++++++ 12 files changed, 872 insertions(+), 11 deletions(-) create mode 100644 hw/ssi/aspeed_smc.c create mode 100644 include/hw/ssi/aspeed_smc.h create mode 100644 tests/m25p80-test.c --=20 2.1.4