From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSmIs-0007M1-17 for qemu-devel@nongnu.org; Thu, 28 Jul 2016 10:28:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSmIn-0005nN-Ma for qemu-devel@nongnu.org; Thu, 28 Jul 2016 10:28:49 -0400 Received: from 13.mo7.mail-out.ovh.net ([87.98.150.175]:43313) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSmIn-0005n8-Cl for qemu-devel@nongnu.org; Thu, 28 Jul 2016 10:28:45 -0400 Received: from player796.ha.ovh.net (b7.ovh.net [213.186.33.57]) by mo7.mail-out.ovh.net (Postfix) with ESMTP id 88A6910004AB for ; Thu, 28 Jul 2016 16:28:44 +0200 (CEST) From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Date: Thu, 28 Jul 2016 16:28:11 +0200 Message-Id: <1469716099-8975-2-git-send-email-clg@kaod.org> In-Reply-To: <1469716099-8975-1-git-send-email-clg@kaod.org> References: <1469716099-8975-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 1/9] palmetto-bmc: rename file to aspeed.c 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?= We plan to add more Aspeed platform to this file. Let's rename it to a more generic name. There are no changes in the code. Signed-off-by: C=C3=A9dric Le Goater --- hw/arm/Makefile.objs | 2 +- hw/arm/aspeed.c | 102 ++++++++++++++++++++++++++++++++++++++++++++= ++++++ hw/arm/palmetto-bmc.c | 102 --------------------------------------------= ------ 3 files changed, 103 insertions(+), 103 deletions(-) create mode 100644 hw/arm/aspeed.c delete mode 100644 hw/arm/palmetto-bmc.c diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 12764ef2b719..8cc700231b30 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -17,4 +17,4 @@ obj-$(CONFIG_XLNX_ZYNQMP) +=3D xlnx-zynqmp.o xlnx-ep108= .o obj-$(CONFIG_FSL_IMX25) +=3D fsl-imx25.o imx25_pdk.o obj-$(CONFIG_FSL_IMX31) +=3D fsl-imx31.o kzm.o obj-$(CONFIG_FSL_IMX6) +=3D fsl-imx6.o sabrelite.o -obj-$(CONFIG_ASPEED_SOC) +=3D ast2400.o palmetto-bmc.o +obj-$(CONFIG_ASPEED_SOC) +=3D ast2400.o aspeed.o diff --git a/hw/arm/aspeed.c b/hw/arm/aspeed.c new file mode 100644 index 000000000000..54e29a865d88 --- /dev/null +++ b/hw/arm/aspeed.c @@ -0,0 +1,102 @@ +/* + * OpenPOWER Palmetto BMC + * + * Andrew Jeffery + * + * Copyright 2016 IBM Corp. + * + * This code is licensed under the GPL version 2 or later. See + * the COPYING file in the top-level directory. + */ + +#include "qemu/osdep.h" +#include "qapi/error.h" +#include "qemu-common.h" +#include "cpu.h" +#include "exec/address-spaces.h" +#include "hw/arm/arm.h" +#include "hw/arm/ast2400.h" +#include "hw/boards.h" +#include "qemu/log.h" +#include "sysemu/block-backend.h" +#include "sysemu/blockdev.h" + +static struct arm_boot_info palmetto_bmc_binfo =3D { + .loader_start =3D AST2400_SDRAM_BASE, + .board_id =3D 0, + .nb_cpus =3D 1, +}; + +typedef struct PalmettoBMCState { + AST2400State soc; + MemoryRegion ram; +} PalmettoBMCState; + +static void palmetto_bmc_init_flashes(AspeedSMCState *s, const char *fla= shtype, + Error **errp) +{ + int i ; + + for (i =3D 0; i < s->num_cs; ++i) { + AspeedSMCFlash *fl =3D &s->flashes[i]; + DriveInfo *dinfo =3D drive_get_next(IF_MTD); + qemu_irq cs_line; + + /* + * FIXME: check that we are not using a flash module exceeding + * the controller segment size + */ + fl->flash =3D ssi_create_slave_no_init(s->spi, flashtype); + if (dinfo) { + qdev_prop_set_drive(fl->flash, "drive", blk_by_legacy_dinfo(= dinfo), + errp); + } + qdev_init_nofail(fl->flash); + + cs_line =3D qdev_get_gpio_in_named(fl->flash, SSI_GPIO_CS, 0); + sysbus_connect_irq(SYS_BUS_DEVICE(s), i + 1, cs_line); + } +} + +static void palmetto_bmc_init(MachineState *machine) +{ + PalmettoBMCState *bmc; + + bmc =3D g_new0(PalmettoBMCState, 1); + object_initialize(&bmc->soc, (sizeof(bmc->soc)), TYPE_AST2400); + object_property_add_child(OBJECT(machine), "soc", OBJECT(&bmc->soc), + &error_abort); + + memory_region_allocate_system_memory(&bmc->ram, NULL, "ram", ram_siz= e); + memory_region_add_subregion(get_system_memory(), AST2400_SDRAM_BASE, + &bmc->ram); + object_property_add_const_link(OBJECT(&bmc->soc), "ram", OBJECT(&bmc= ->ram), + &error_abort); + object_property_set_int(OBJECT(&bmc->soc), 0x120CE416, "hw-strap1", + &error_abort); + object_property_set_bool(OBJECT(&bmc->soc), true, "realized", + &error_abort); + + palmetto_bmc_init_flashes(&bmc->soc.smc, "n25q256a", &error_abort); + palmetto_bmc_init_flashes(&bmc->soc.spi, "mx25l25635e", &error_abort= ); + + palmetto_bmc_binfo.kernel_filename =3D machine->kernel_filename; + palmetto_bmc_binfo.initrd_filename =3D machine->initrd_filename; + palmetto_bmc_binfo.kernel_cmdline =3D machine->kernel_cmdline; + palmetto_bmc_binfo.ram_size =3D ram_size; + arm_load_kernel(ARM_CPU(first_cpu), &palmetto_bmc_binfo); +} + +static void palmetto_bmc_machine_init(MachineClass *mc) +{ + mc->desc =3D "OpenPOWER Palmetto BMC"; + mc->init =3D palmetto_bmc_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; +} + +DEFINE_MACHINE("palmetto-bmc", palmetto_bmc_machine_init); diff --git a/hw/arm/palmetto-bmc.c b/hw/arm/palmetto-bmc.c deleted file mode 100644 index 54e29a865d88..000000000000 --- a/hw/arm/palmetto-bmc.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * OpenPOWER Palmetto BMC - * - * Andrew Jeffery - * - * Copyright 2016 IBM Corp. - * - * This code is licensed under the GPL version 2 or later. See - * the COPYING file in the top-level directory. - */ - -#include "qemu/osdep.h" -#include "qapi/error.h" -#include "qemu-common.h" -#include "cpu.h" -#include "exec/address-spaces.h" -#include "hw/arm/arm.h" -#include "hw/arm/ast2400.h" -#include "hw/boards.h" -#include "qemu/log.h" -#include "sysemu/block-backend.h" -#include "sysemu/blockdev.h" - -static struct arm_boot_info palmetto_bmc_binfo =3D { - .loader_start =3D AST2400_SDRAM_BASE, - .board_id =3D 0, - .nb_cpus =3D 1, -}; - -typedef struct PalmettoBMCState { - AST2400State soc; - MemoryRegion ram; -} PalmettoBMCState; - -static void palmetto_bmc_init_flashes(AspeedSMCState *s, const char *fla= shtype, - Error **errp) -{ - int i ; - - for (i =3D 0; i < s->num_cs; ++i) { - AspeedSMCFlash *fl =3D &s->flashes[i]; - DriveInfo *dinfo =3D drive_get_next(IF_MTD); - qemu_irq cs_line; - - /* - * FIXME: check that we are not using a flash module exceeding - * the controller segment size - */ - fl->flash =3D ssi_create_slave_no_init(s->spi, flashtype); - if (dinfo) { - qdev_prop_set_drive(fl->flash, "drive", blk_by_legacy_dinfo(= dinfo), - errp); - } - qdev_init_nofail(fl->flash); - - cs_line =3D qdev_get_gpio_in_named(fl->flash, SSI_GPIO_CS, 0); - sysbus_connect_irq(SYS_BUS_DEVICE(s), i + 1, cs_line); - } -} - -static void palmetto_bmc_init(MachineState *machine) -{ - PalmettoBMCState *bmc; - - bmc =3D g_new0(PalmettoBMCState, 1); - object_initialize(&bmc->soc, (sizeof(bmc->soc)), TYPE_AST2400); - object_property_add_child(OBJECT(machine), "soc", OBJECT(&bmc->soc), - &error_abort); - - memory_region_allocate_system_memory(&bmc->ram, NULL, "ram", ram_siz= e); - memory_region_add_subregion(get_system_memory(), AST2400_SDRAM_BASE, - &bmc->ram); - object_property_add_const_link(OBJECT(&bmc->soc), "ram", OBJECT(&bmc= ->ram), - &error_abort); - object_property_set_int(OBJECT(&bmc->soc), 0x120CE416, "hw-strap1", - &error_abort); - object_property_set_bool(OBJECT(&bmc->soc), true, "realized", - &error_abort); - - palmetto_bmc_init_flashes(&bmc->soc.smc, "n25q256a", &error_abort); - palmetto_bmc_init_flashes(&bmc->soc.spi, "mx25l25635e", &error_abort= ); - - palmetto_bmc_binfo.kernel_filename =3D machine->kernel_filename; - palmetto_bmc_binfo.initrd_filename =3D machine->initrd_filename; - palmetto_bmc_binfo.kernel_cmdline =3D machine->kernel_cmdline; - palmetto_bmc_binfo.ram_size =3D ram_size; - arm_load_kernel(ARM_CPU(first_cpu), &palmetto_bmc_binfo); -} - -static void palmetto_bmc_machine_init(MachineClass *mc) -{ - mc->desc =3D "OpenPOWER Palmetto BMC"; - mc->init =3D palmetto_bmc_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; -} - -DEFINE_MACHINE("palmetto-bmc", palmetto_bmc_machine_init); --=20 2.1.4