From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60535) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSRzx-0007ak-Rq for qemu-devel@nongnu.org; Wed, 27 Jul 2016 12:47:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSRzu-00023r-1Z for qemu-devel@nongnu.org; Wed, 27 Jul 2016 12:47:56 -0400 Received: from 13.mo7.mail-out.ovh.net ([87.98.150.175]:40046) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSRzt-00023X-Re for qemu-devel@nongnu.org; Wed, 27 Jul 2016 12:47:53 -0400 Received: from player796.ha.ovh.net (b7.ovh.net [213.186.33.57]) by mo7.mail-out.ovh.net (Postfix) with ESMTP id DE246FF8E35 for ; Wed, 27 Jul 2016 18:47:52 +0200 (CEST) From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Date: Wed, 27 Jul 2016 18:46:58 +0200 Message-Id: <1469638018-17590-7-git-send-email-clg@kaod.org> In-Reply-To: <1469638018-17590-1-git-send-email-clg@kaod.org> References: <1469638018-17590-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 6/6] arm: add support for an ast2500 evaluation board List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-devel@nongnu.org, qemu-arm@nongnu.org, Andrew Jeffery , =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Signed-off-by: C=C3=A9dric Le Goater --- hw/arm/palmetto-bmc.c | 32 +++++++++++++++++++++++++++++++- include/hw/arm/ast2400.h | 5 +++++ 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/hw/arm/palmetto-bmc.c b/hw/arm/palmetto-bmc.c index cd8aa59756b9..8d8bfeb571e2 100644 --- a/hw/arm/palmetto-bmc.c +++ b/hw/arm/palmetto-bmc.c @@ -37,12 +37,15 @@ typedef struct AspeedBoardConfig { } AspeedBoardConfig; =20 enum { - PALMETTO_BMC + PALMETTO_BMC, + AST2500_EDK }; =20 static const AspeedBoardConfig aspeed_boards[] =3D { [ PALMETTO_BMC ] =3D { 0x120CE416, AST2400_A0_SILICON_REV, AST2400_SDRAM_BASE }, + [ AST2500_EDK ] =3D { 0x00000200, AST2500_A1_SILICON_REV, + AST2500_SDRAM_BASE }, }; =20 static void aspeed_init_flashes(AspeedSMCState *s, const char *flashtype= , @@ -133,9 +136,36 @@ static const TypeInfo palmetto_bmc_type =3D { .class_init =3D palmetto_bmc_class_init, }; =20 +static void ast2500_edk_init(MachineState *machine) +{ + machine->cpu_model =3D "arm1176"; + aspeed_init(machine, AST2500_EDK); +} + +static void ast2500_edk_class_init(ObjectClass *oc, void *data) +{ + MachineClass *mc =3D MACHINE_CLASS(oc); + + mc->desc =3D "Aspeed AST2500 EDK (ARM1176)"; + mc->init =3D ast2500_edk_init; + mc->max_cpus =3D 1; + mc->no_sdcard =3D 1; + mc->no_floppy =3D 1; + mc->no_cdrom =3D 1; + mc->no_sdcard =3D 1; + mc->no_parallel =3D 1; +} + +static const TypeInfo ast2500_edk_type =3D { + .name =3D MACHINE_TYPE_NAME("ast2500-edk"), + .parent =3D TYPE_MACHINE, + .class_init =3D ast2500_edk_class_init, +}; + static void aspeed_machine_init(void) { type_register_static(&palmetto_bmc_type); + type_register_static(&ast2500_edk_type); } =20 type_init(aspeed_machine_init) diff --git a/include/hw/arm/ast2400.h b/include/hw/arm/ast2400.h index e68807d475b7..2e6864f88790 100644 --- a/include/hw/arm/ast2400.h +++ b/include/hw/arm/ast2400.h @@ -41,4 +41,9 @@ typedef struct AST2400State { =20 #define AST2400_SDRAM_BASE 0x40000000 =20 +/* + * for Aspeed AST2500 SOC and higher + */ +#define AST2500_SDRAM_BASE 0x80000000 + #endif /* AST2400_H */ --=20 2.1.4