2007-04-24 11:40:49 +04:00
|
|
|
/*
|
|
|
|
* QEMU PowerPC 405 evaluation boards emulation
|
2007-09-17 01:08:06 +04:00
|
|
|
*
|
2007-04-24 11:40:49 +04:00
|
|
|
* Copyright (c) 2007 Jocelyn Mayer
|
2007-09-17 01:08:06 +04:00
|
|
|
*
|
2007-04-24 11:40:49 +04:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2019-08-12 08:23:38 +03:00
|
|
|
|
2016-01-26 21:16:58 +03:00
|
|
|
#include "qemu/osdep.h"
|
2018-06-25 15:42:24 +03:00
|
|
|
#include "qemu/units.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 11:01:28 +03:00
|
|
|
#include "qapi/error.h"
|
2020-10-28 14:36:57 +03:00
|
|
|
#include "qemu/datadir.h"
|
2016-01-19 23:51:44 +03:00
|
|
|
#include "cpu.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/ppc/ppc.h"
|
2020-10-16 21:27:38 +03:00
|
|
|
#include "hw/qdev-properties.h"
|
|
|
|
#include "hw/sysbus.h"
|
2013-03-18 20:36:02 +04:00
|
|
|
#include "ppc405.h"
|
2019-10-04 02:03:54 +03:00
|
|
|
#include "hw/rtc/m48t59.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/block/flash.h"
|
2013-08-05 17:27:23 +04:00
|
|
|
#include "sysemu/qtest.h"
|
2019-08-12 08:23:38 +03:00
|
|
|
#include "sysemu/reset.h"
|
2014-10-07 15:59:18 +04:00
|
|
|
#include "sysemu/block-backend.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/boards.h"
|
2013-08-05 17:27:23 +04:00
|
|
|
#include "qemu/error-report.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/loader.h"
|
2020-02-19 19:09:37 +03:00
|
|
|
#include "qemu/cutils.h"
|
2021-12-17 19:57:17 +03:00
|
|
|
#include "elf.h"
|
2007-04-24 11:40:49 +04:00
|
|
|
|
|
|
|
#define BIOS_FILENAME "ppc405_rom.bin"
|
2018-06-25 15:42:24 +03:00
|
|
|
#define BIOS_SIZE (2 * MiB)
|
2007-04-24 11:40:49 +04:00
|
|
|
|
2021-12-17 19:57:17 +03:00
|
|
|
#define KERNEL_LOAD_ADDR 0x01000000
|
2007-04-24 11:40:49 +04:00
|
|
|
#define INITRD_LOAD_ADDR 0x01800000
|
|
|
|
|
|
|
|
#define USE_FLASH_BIOS
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* PPC405EP reference board (IBM) */
|
|
|
|
/* Standalone board with:
|
|
|
|
* - PowerPC 405EP CPU
|
|
|
|
* - SDRAM (0x00000000)
|
|
|
|
* - Flash (0xFFF80000)
|
|
|
|
* - SRAM (0xFFF00000)
|
|
|
|
* - NVRAM (0xF0000000)
|
|
|
|
* - FPGA (0xF0300000)
|
|
|
|
*/
|
2009-10-02 01:12:16 +04:00
|
|
|
typedef struct ref405ep_fpga_t ref405ep_fpga_t;
|
|
|
|
struct ref405ep_fpga_t {
|
2007-04-24 11:40:49 +04:00
|
|
|
uint8_t reg0;
|
|
|
|
uint8_t reg1;
|
|
|
|
};
|
|
|
|
|
2018-08-02 17:44:29 +03:00
|
|
|
static uint64_t ref405ep_fpga_readb(void *opaque, hwaddr addr, unsigned size)
|
2007-04-24 11:40:49 +04:00
|
|
|
{
|
2009-10-02 01:12:16 +04:00
|
|
|
ref405ep_fpga_t *fpga;
|
2007-04-24 11:40:49 +04:00
|
|
|
uint32_t ret;
|
|
|
|
|
|
|
|
fpga = opaque;
|
|
|
|
switch (addr) {
|
|
|
|
case 0x0:
|
|
|
|
ret = fpga->reg0;
|
|
|
|
break;
|
|
|
|
case 0x1:
|
|
|
|
ret = fpga->reg1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-08-02 17:44:29 +03:00
|
|
|
static void ref405ep_fpga_writeb(void *opaque, hwaddr addr, uint64_t value,
|
|
|
|
unsigned size)
|
2007-04-24 11:40:49 +04:00
|
|
|
{
|
2009-10-02 01:12:16 +04:00
|
|
|
ref405ep_fpga_t *fpga;
|
2007-04-24 11:40:49 +04:00
|
|
|
|
|
|
|
fpga = opaque;
|
|
|
|
switch (addr) {
|
|
|
|
case 0x0:
|
|
|
|
/* Read only */
|
|
|
|
break;
|
|
|
|
case 0x1:
|
|
|
|
fpga->reg1 = value;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 17:43:53 +04:00
|
|
|
static const MemoryRegionOps ref405ep_fpga_ops = {
|
2018-08-02 17:44:29 +03:00
|
|
|
.read = ref405ep_fpga_readb,
|
|
|
|
.write = ref405ep_fpga_writeb,
|
|
|
|
.impl.min_access_size = 1,
|
|
|
|
.impl.max_access_size = 1,
|
|
|
|
.valid.min_access_size = 1,
|
|
|
|
.valid.max_access_size = 4,
|
|
|
|
.endianness = DEVICE_BIG_ENDIAN,
|
2007-04-24 11:40:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static void ref405ep_fpga_reset (void *opaque)
|
|
|
|
{
|
2009-10-02 01:12:16 +04:00
|
|
|
ref405ep_fpga_t *fpga;
|
2007-04-24 11:40:49 +04:00
|
|
|
|
|
|
|
fpga = opaque;
|
|
|
|
fpga->reg0 = 0x00;
|
|
|
|
fpga->reg1 = 0x0F;
|
|
|
|
}
|
|
|
|
|
2012-10-16 00:22:02 +04:00
|
|
|
static void ref405ep_fpga_init(MemoryRegion *sysmem, uint32_t base)
|
2007-04-24 11:40:49 +04:00
|
|
|
{
|
2009-10-02 01:12:16 +04:00
|
|
|
ref405ep_fpga_t *fpga;
|
2011-09-12 17:43:53 +04:00
|
|
|
MemoryRegion *fpga_memory = g_new(MemoryRegion, 1);
|
2007-04-24 11:40:49 +04:00
|
|
|
|
2022-03-15 17:41:56 +03:00
|
|
|
fpga = g_new0(ref405ep_fpga_t, 1);
|
2013-06-06 13:41:28 +04:00
|
|
|
memory_region_init_io(fpga_memory, NULL, &ref405ep_fpga_ops, fpga,
|
2011-09-12 17:43:53 +04:00
|
|
|
"fpga", 0x00000100);
|
|
|
|
memory_region_add_subregion(sysmem, base, fpga_memory);
|
2009-06-27 11:25:07 +04:00
|
|
|
qemu_register_reset(&ref405ep_fpga_reset, fpga);
|
2007-04-24 11:40:49 +04:00
|
|
|
}
|
|
|
|
|
2021-12-17 19:57:17 +03:00
|
|
|
/*
|
|
|
|
* CPU reset handler when booting directly from a loaded kernel
|
|
|
|
*/
|
|
|
|
static struct boot_info {
|
|
|
|
uint32_t entry;
|
|
|
|
uint32_t bdloc;
|
|
|
|
uint32_t initrd_base;
|
|
|
|
uint32_t initrd_size;
|
|
|
|
uint32_t cmdline_base;
|
|
|
|
uint32_t cmdline_size;
|
|
|
|
} boot_info;
|
|
|
|
|
|
|
|
static void main_cpu_reset(void *opaque)
|
|
|
|
{
|
|
|
|
PowerPCCPU *cpu = opaque;
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
struct boot_info *bi = env->load_info;
|
|
|
|
|
|
|
|
cpu_reset(CPU(cpu));
|
|
|
|
|
|
|
|
/* stack: top of sram */
|
|
|
|
env->gpr[1] = PPC405EP_SRAM_BASE + PPC405EP_SRAM_SIZE - 8;
|
|
|
|
|
|
|
|
/* Tune our boot state */
|
|
|
|
env->gpr[3] = bi->bdloc;
|
|
|
|
env->gpr[4] = bi->initrd_base;
|
|
|
|
env->gpr[5] = bi->initrd_base + bi->initrd_size;
|
|
|
|
env->gpr[6] = bi->cmdline_base;
|
|
|
|
env->gpr[7] = bi->cmdline_size;
|
|
|
|
|
|
|
|
env->nip = bi->entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void boot_from_kernel(MachineState *machine, PowerPCCPU *cpu)
|
|
|
|
{
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
hwaddr boot_entry;
|
|
|
|
hwaddr kernel_base;
|
|
|
|
int kernel_size;
|
|
|
|
hwaddr initrd_base;
|
|
|
|
int initrd_size;
|
|
|
|
ram_addr_t bdloc;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
bdloc = ppc405_set_bootinfo(env, machine->ram_size);
|
|
|
|
boot_info.bdloc = bdloc;
|
|
|
|
|
|
|
|
kernel_size = load_elf(machine->kernel_filename, NULL, NULL, NULL,
|
|
|
|
&boot_entry, &kernel_base, NULL, NULL,
|
|
|
|
1, PPC_ELF_MACHINE, 0, 0);
|
|
|
|
if (kernel_size < 0) {
|
|
|
|
error_report("Could not load kernel '%s' : %s",
|
|
|
|
machine->kernel_filename, load_elf_strerror(kernel_size));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
boot_info.entry = boot_entry;
|
|
|
|
|
|
|
|
/* load initrd */
|
|
|
|
if (machine->initrd_filename) {
|
|
|
|
initrd_base = INITRD_LOAD_ADDR;
|
|
|
|
initrd_size = load_image_targphys(machine->initrd_filename, initrd_base,
|
|
|
|
machine->ram_size - initrd_base);
|
|
|
|
if (initrd_size < 0) {
|
|
|
|
error_report("could not load initial ram disk '%s'",
|
|
|
|
machine->initrd_filename);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
boot_info.initrd_base = initrd_base;
|
|
|
|
boot_info.initrd_size = initrd_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (machine->kernel_cmdline) {
|
|
|
|
len = strlen(machine->kernel_cmdline);
|
|
|
|
bdloc -= ((len + 255) & ~255);
|
|
|
|
cpu_physical_memory_write(bdloc, machine->kernel_cmdline, len + 1);
|
|
|
|
boot_info.cmdline_base = bdloc;
|
|
|
|
boot_info.cmdline_size = bdloc + len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Install our custom reset handler to start from Linux */
|
|
|
|
qemu_register_reset(main_cpu_reset, cpu);
|
|
|
|
env->load_info = &boot_info;
|
|
|
|
}
|
|
|
|
|
2014-05-07 18:42:57 +04:00
|
|
|
static void ref405ep_init(MachineState *machine)
|
2007-04-24 11:40:49 +04:00
|
|
|
{
|
2020-02-19 19:09:37 +03:00
|
|
|
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
2014-05-07 18:42:57 +04:00
|
|
|
const char *kernel_filename = machine->kernel_filename;
|
2021-12-17 19:57:17 +03:00
|
|
|
PowerPCCPU *cpu;
|
2020-10-16 21:27:38 +03:00
|
|
|
DeviceState *dev;
|
|
|
|
SysBusDevice *s;
|
2011-09-12 17:43:53 +04:00
|
|
|
MemoryRegion *sram = g_new(MemoryRegion, 1);
|
2018-11-27 16:05:29 +03:00
|
|
|
MemoryRegion *ram_memories = g_new(MemoryRegion, 2);
|
2012-10-23 14:30:10 +04:00
|
|
|
hwaddr ram_bases[2], ram_sizes[2];
|
2011-09-12 17:43:53 +04:00
|
|
|
MemoryRegion *sysmem = get_system_memory();
|
2021-01-08 20:12:11 +03:00
|
|
|
DeviceState *uicdev;
|
2007-04-24 11:40:49 +04:00
|
|
|
|
2020-02-19 19:09:37 +03:00
|
|
|
if (machine->ram_size != mc->default_ram_size) {
|
|
|
|
char *sz = size_to_str(mc->default_ram_size);
|
|
|
|
error_report("Invalid RAM size, should be %s", sz);
|
|
|
|
g_free(sz);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2007-04-24 11:40:49 +04:00
|
|
|
/* XXX: fix this */
|
2020-02-19 19:09:38 +03:00
|
|
|
memory_region_init_alias(&ram_memories[0], NULL, "ef405ep.ram.alias",
|
|
|
|
machine->ram, 0, machine->ram_size);
|
2011-08-15 18:17:27 +04:00
|
|
|
ram_bases[0] = 0;
|
2020-02-19 19:09:37 +03:00
|
|
|
ram_sizes[0] = machine->ram_size;
|
2013-06-06 13:41:28 +04:00
|
|
|
memory_region_init(&ram_memories[1], NULL, "ef405ep.ram1", 0);
|
2007-04-24 11:40:49 +04:00
|
|
|
ram_bases[1] = 0x00000000;
|
|
|
|
ram_sizes[1] = 0x00000000;
|
2021-12-17 19:57:17 +03:00
|
|
|
|
|
|
|
cpu = ppc405ep_init(sysmem, ram_memories, ram_bases, ram_sizes,
|
2021-01-08 20:12:11 +03:00
|
|
|
33333333, &uicdev, kernel_filename == NULL ? 0 : 1);
|
2021-12-17 19:57:17 +03:00
|
|
|
|
2007-04-24 11:40:49 +04:00
|
|
|
/* allocate SRAM */
|
2021-12-17 19:57:17 +03:00
|
|
|
memory_region_init_ram(sram, NULL, "ef405ep.sram", PPC405EP_SRAM_SIZE,
|
Fix bad error handling after memory_region_init_ram()
Symptom:
$ qemu-system-x86_64 -m 10000000
Unexpected error in ram_block_add() at /work/armbru/qemu/exec.c:1456:
upstream-qemu: cannot set up guest memory 'pc.ram': Cannot allocate memory
Aborted (core dumped)
Root cause: commit ef701d7 screwed up handling of out-of-memory
conditions. Before the commit, we report the error and exit(1), in
one place, ram_block_add(). The commit lifts the error handling up
the call chain some, to three places. Fine. Except it uses
&error_abort in these places, changing the behavior from exit(1) to
abort(), and thus undoing the work of commit 3922825 "exec: Don't
abort when we can't allocate guest memory".
The three places are:
* memory_region_init_ram()
Commit 4994653 (right after commit ef701d7) lifted the error
handling further, through memory_region_init_ram(), multiplying the
incorrect use of &error_abort. Later on, imitation of existing
(bad) code may have created more.
* memory_region_init_ram_ptr()
The &error_abort is still there.
* memory_region_init_rom_device()
Doesn't need fixing, because commit 33e0eb5 (soon after commit
ef701d7) lifted the error handling further, and in the process
changed it from &error_abort to passing it up the call chain.
Correct, because the callers are realize() methods.
Fix the error handling after memory_region_init_ram() with a
Coccinelle semantic patch:
@r@
expression mr, owner, name, size, err;
position p;
@@
memory_region_init_ram(mr, owner, name, size,
(
- &error_abort
+ &error_fatal
|
err@p
)
);
@script:python@
p << r.p;
@@
print "%s:%s:%s" % (p[0].file, p[0].line, p[0].column)
When the last argument is &error_abort, it gets replaced by
&error_fatal. This is the fix.
If the last argument is anything else, its position is reported. This
lets us check the fix is complete. Four positions get reported:
* ram_backend_memory_alloc()
Error is passed up the call chain, ultimately through
user_creatable_complete(). As far as I can tell, it's callers all
handle the error sanely.
* fsl_imx25_realize(), fsl_imx31_realize(), dp8393x_realize()
DeviceClass.realize() methods, errors handled sanely further up the
call chain.
We're good. Test case again behaves:
$ qemu-system-x86_64 -m 10000000
qemu-system-x86_64: cannot set up guest memory 'pc.ram': Cannot allocate memory
[Exit 1 ]
The next commits will repair the rest of commit ef701d7's damage.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <1441983105-26376-3-git-send-email-armbru@redhat.com>
Reviewed-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
2015-09-11 17:51:43 +03:00
|
|
|
&error_fatal);
|
2021-12-17 19:57:17 +03:00
|
|
|
memory_region_add_subregion(sysmem, PPC405EP_SRAM_BASE, sram);
|
2021-12-17 19:57:17 +03:00
|
|
|
|
2007-04-24 11:40:49 +04:00
|
|
|
/* allocate and load BIOS */
|
2021-12-17 19:57:17 +03:00
|
|
|
if (machine->firmware) {
|
|
|
|
MemoryRegion *bios = g_new(MemoryRegion, 1);
|
2022-04-05 15:35:34 +03:00
|
|
|
g_autofree char *filename = qemu_find_file(QEMU_FILE_TYPE_BIOS,
|
|
|
|
machine->firmware);
|
2021-12-17 19:57:17 +03:00
|
|
|
long bios_size;
|
2021-12-17 19:57:17 +03:00
|
|
|
|
2020-02-24 19:04:51 +03:00
|
|
|
memory_region_init_rom(bios, NULL, "ef405ep.bios", BIOS_SIZE,
|
Fix bad error handling after memory_region_init_ram()
Symptom:
$ qemu-system-x86_64 -m 10000000
Unexpected error in ram_block_add() at /work/armbru/qemu/exec.c:1456:
upstream-qemu: cannot set up guest memory 'pc.ram': Cannot allocate memory
Aborted (core dumped)
Root cause: commit ef701d7 screwed up handling of out-of-memory
conditions. Before the commit, we report the error and exit(1), in
one place, ram_block_add(). The commit lifts the error handling up
the call chain some, to three places. Fine. Except it uses
&error_abort in these places, changing the behavior from exit(1) to
abort(), and thus undoing the work of commit 3922825 "exec: Don't
abort when we can't allocate guest memory".
The three places are:
* memory_region_init_ram()
Commit 4994653 (right after commit ef701d7) lifted the error
handling further, through memory_region_init_ram(), multiplying the
incorrect use of &error_abort. Later on, imitation of existing
(bad) code may have created more.
* memory_region_init_ram_ptr()
The &error_abort is still there.
* memory_region_init_rom_device()
Doesn't need fixing, because commit 33e0eb5 (soon after commit
ef701d7) lifted the error handling further, and in the process
changed it from &error_abort to passing it up the call chain.
Correct, because the callers are realize() methods.
Fix the error handling after memory_region_init_ram() with a
Coccinelle semantic patch:
@r@
expression mr, owner, name, size, err;
position p;
@@
memory_region_init_ram(mr, owner, name, size,
(
- &error_abort
+ &error_fatal
|
err@p
)
);
@script:python@
p << r.p;
@@
print "%s:%s:%s" % (p[0].file, p[0].line, p[0].column)
When the last argument is &error_abort, it gets replaced by
&error_fatal. This is the fix.
If the last argument is anything else, its position is reported. This
lets us check the fix is complete. Four positions get reported:
* ram_backend_memory_alloc()
Error is passed up the call chain, ultimately through
user_creatable_complete(). As far as I can tell, it's callers all
handle the error sanely.
* fsl_imx25_realize(), fsl_imx31_realize(), dp8393x_realize()
DeviceClass.realize() methods, errors handled sanely further up the
call chain.
We're good. Test case again behaves:
$ qemu-system-x86_64 -m 10000000
qemu-system-x86_64: cannot set up guest memory 'pc.ram': Cannot allocate memory
[Exit 1 ]
The next commits will repair the rest of commit ef701d7's damage.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <1441983105-26376-3-git-send-email-armbru@redhat.com>
Reviewed-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
2015-09-11 17:51:43 +03:00
|
|
|
&error_fatal);
|
ppc: fix -mem-path failure
commit e938ba0c tried to enable -mem-path for ppc but breaked some ppc
boards.
The problems are:
1. it fails when allocating memory for rom, sram whose sizes are less
than huge page size:
./ppc-softmmu/qemu-system-ppc -m 512 -mem-path /hugepages/ \
-kernel /home/hutao/Downloads/vmlinux-ppc -initrd \
/home/hutao/Downloads/initrd-ppc.gz
qemu-system-ppc: /mnt/data/projects/qemu/exec.c:1184: qemu_ram_set_idstr: Assertion `new_block' failed.
2. if there is a numa node backed by memory backend object, qemu fails
with message:
./ppc-softmmu/qemu-system-ppc -m 512 \
-object memory-backend-file,size=512M,mem-path=/hugepages,id=f0 \
-numa node,nodeid=0,memdev=f0 \
-kernel /home/hutao/Downloads/vmlinux-ppc \
-initrd /home/hutao/Downloads/initrd-ppc.gz
qemu-system-ppc: memory backend f0 is used multiple times. Each -numa option must use a different memdev value.
This patch does following:
1. replaces memory_region_allocate_system_memory() with
memory_region_init_ram() for rom, sram. Then only system memory
is backed by hugepages when specifying mem-path.
2. for memory banks, allocates all ram with
one memory_region_allocate_system_memory(), and use
memory_region_init_alias() to initialize memory banks.
Tested machines: default(g3beige), mac99, taihu, bamboo, ref405ep.
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
2014-07-21 13:30:17 +04:00
|
|
|
|
2021-12-17 19:57:17 +03:00
|
|
|
if (!filename) {
|
|
|
|
error_report("Could not find firmware '%s'", machine->firmware);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bios_size = load_image_size(filename,
|
|
|
|
memory_region_get_ram_ptr(bios),
|
|
|
|
BIOS_SIZE);
|
|
|
|
if (bios_size < 0) {
|
|
|
|
error_report("Could not load PowerPC BIOS '%s'", machine->firmware);
|
2013-08-05 17:27:23 +04:00
|
|
|
exit(1);
|
2009-05-30 03:52:44 +04:00
|
|
|
}
|
2021-12-17 19:57:17 +03:00
|
|
|
|
|
|
|
bios_size = (bios_size + 0xfff) & ~0xfff;
|
|
|
|
memory_region_add_subregion(sysmem, (uint32_t)(-bios_size), bios);
|
2007-04-24 11:40:49 +04:00
|
|
|
}
|
2021-12-17 19:57:17 +03:00
|
|
|
|
2007-04-24 11:40:49 +04:00
|
|
|
/* Register FPGA */
|
2021-12-17 19:57:17 +03:00
|
|
|
ref405ep_fpga_init(sysmem, PPC405EP_FPGA_BASE);
|
2007-04-24 11:40:49 +04:00
|
|
|
/* Register NVRAM */
|
2020-10-16 21:27:38 +03:00
|
|
|
dev = qdev_new("sysbus-m48t08");
|
|
|
|
qdev_prop_set_int32(dev, "base-year", 1968);
|
|
|
|
s = SYS_BUS_DEVICE(dev);
|
|
|
|
sysbus_realize_and_unref(s, &error_fatal);
|
2021-12-17 19:57:17 +03:00
|
|
|
sysbus_mmio_map(s, 0, PPC405EP_NVRAM_BASE);
|
2021-12-17 19:57:17 +03:00
|
|
|
|
|
|
|
/* Load kernel and initrd using U-Boot images */
|
|
|
|
if (kernel_filename && machine->firmware) {
|
|
|
|
target_ulong kernel_base, initrd_base;
|
|
|
|
long kernel_size, initrd_size;
|
|
|
|
|
2007-04-24 11:40:49 +04:00
|
|
|
kernel_base = KERNEL_LOAD_ADDR;
|
2009-04-10 18:29:45 +04:00
|
|
|
kernel_size = load_image_targphys(kernel_filename, kernel_base,
|
2020-02-19 19:09:37 +03:00
|
|
|
machine->ram_size - kernel_base);
|
2007-04-24 11:40:49 +04:00
|
|
|
if (kernel_size < 0) {
|
hw/ppc: Replace fprintf(stderr, "*\n" with error_report()
Replace a large number of the fprintf(stderr, "*\n" calls with
error_report(). The functions were renamed with these commands and then
compiler issues where manually fixed.
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
Some lines were then manually tweaked to pass checkpatch and some curly
braces were added to match QEMU style.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Cc: qemu-ppc@nongnu.org
Conversions that aren't followed by exit() dropped, because they might
be inappropriate.
Also trim trailing punctuation from error messages.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180203084315.20497-10-armbru@redhat.com>
2018-02-03 11:43:10 +03:00
|
|
|
error_report("could not load kernel '%s'", kernel_filename);
|
2007-04-24 11:40:49 +04:00
|
|
|
exit(1);
|
|
|
|
}
|
2021-12-17 19:57:17 +03:00
|
|
|
|
2007-04-24 11:40:49 +04:00
|
|
|
/* load initrd */
|
2021-12-17 19:57:17 +03:00
|
|
|
if (machine->initrd_filename) {
|
2007-04-24 11:40:49 +04:00
|
|
|
initrd_base = INITRD_LOAD_ADDR;
|
2021-12-17 19:57:17 +03:00
|
|
|
initrd_size = load_image_targphys(machine->initrd_filename,
|
|
|
|
initrd_base,
|
2020-02-19 19:09:37 +03:00
|
|
|
machine->ram_size - initrd_base);
|
2007-04-24 11:40:49 +04:00
|
|
|
if (initrd_size < 0) {
|
hw/ppc: Replace fprintf(stderr, "*\n" with error_report()
Replace a large number of the fprintf(stderr, "*\n" calls with
error_report(). The functions were renamed with these commands and then
compiler issues where manually fixed.
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
Some lines were then manually tweaked to pass checkpatch and some curly
braces were added to match QEMU style.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Cc: qemu-ppc@nongnu.org
Conversions that aren't followed by exit() dropped, because they might
be inappropriate.
Also trim trailing punctuation from error messages.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180203084315.20497-10-armbru@redhat.com>
2018-02-03 11:43:10 +03:00
|
|
|
error_report("could not load initial ram disk '%s'",
|
2021-12-17 19:57:17 +03:00
|
|
|
machine->initrd_filename);
|
2007-04-24 11:40:49 +04:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2021-12-17 19:57:17 +03:00
|
|
|
|
|
|
|
/* Load ELF kernel and rootfs.cpio */
|
|
|
|
} else if (kernel_filename && !machine->firmware) {
|
|
|
|
boot_from_kernel(machine, cpu);
|
2007-04-24 11:40:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-19 11:49:44 +03:00
|
|
|
static void ref405ep_class_init(ObjectClass *oc, void *data)
|
2015-09-04 21:37:08 +03:00
|
|
|
{
|
2015-09-19 11:49:44 +03:00
|
|
|
MachineClass *mc = MACHINE_CLASS(oc);
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
mc->desc = "ref405ep";
|
|
|
|
mc->init = ref405ep_init;
|
2020-02-19 19:09:37 +03:00
|
|
|
mc->default_ram_size = 0x08000000;
|
2020-02-19 19:09:38 +03:00
|
|
|
mc->default_ram_id = "ef405ep.ram";
|
2015-09-04 21:37:08 +03:00
|
|
|
}
|
|
|
|
|
2015-09-19 11:49:44 +03:00
|
|
|
static const TypeInfo ref405ep_type = {
|
|
|
|
.name = MACHINE_TYPE_NAME("ref405ep"),
|
|
|
|
.parent = TYPE_MACHINE,
|
|
|
|
.class_init = ref405ep_class_init,
|
|
|
|
};
|
2007-04-24 11:40:49 +04:00
|
|
|
|
2015-09-19 11:49:44 +03:00
|
|
|
static void ppc405_machine_init(void)
|
|
|
|
{
|
|
|
|
type_register_static(&ref405ep_type);
|
|
|
|
}
|
|
|
|
|
2016-02-16 23:59:04 +03:00
|
|
|
type_init(ppc405_machine_init)
|