2012-07-02 15:03:20 +02:00
|
|
|
/*
|
|
|
|
* Support for the PPC e500-based mpc8544ds board
|
|
|
|
*
|
|
|
|
* Copyright 2012 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* This is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "e500.h"
|
2013-02-03 20:18:28 +01:00
|
|
|
#include "hw/boards.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/device_tree.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/ppc/openpic.h"
|
2012-07-02 15:03:20 +02:00
|
|
|
|
|
|
|
static void mpc8544ds_fixup_devtree(PPCE500Params *params, void *fdt)
|
|
|
|
{
|
|
|
|
const char model[] = "MPC8544DS";
|
|
|
|
const char compatible[] = "MPC8544DS\0MPC85xxDS";
|
|
|
|
|
2013-11-11 09:14:41 +01:00
|
|
|
qemu_fdt_setprop(fdt, "/", "model", model, sizeof(model));
|
|
|
|
qemu_fdt_setprop(fdt, "/", "compatible", compatible,
|
|
|
|
sizeof(compatible));
|
2012-07-02 15:03:20 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 16:42:57 +02:00
|
|
|
static void mpc8544ds_init(MachineState *machine)
|
2012-07-02 15:03:20 +02:00
|
|
|
{
|
|
|
|
PPCE500Params params = {
|
2012-12-12 13:53:53 +01:00
|
|
|
.pci_first_slot = 0x11,
|
|
|
|
.pci_nr_slots = 2,
|
2012-07-02 15:03:20 +02:00
|
|
|
.fixup_devtree = mpc8544ds_fixup_devtree,
|
2013-01-21 16:53:55 +01:00
|
|
|
.mpic_version = OPENPIC_MODEL_FSL_MPIC_20,
|
2012-07-02 15:03:20 +02:00
|
|
|
};
|
|
|
|
|
2014-05-07 16:42:57 +02:00
|
|
|
ppce500_init(machine, ¶ms);
|
2012-07-02 15:03:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static QEMUMachine ppce500_machine = {
|
|
|
|
.name = "mpc8544ds",
|
|
|
|
.desc = "mpc8544ds",
|
|
|
|
.init = mpc8544ds_init,
|
|
|
|
.max_cpus = 15,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ppce500_machine_init(void)
|
|
|
|
{
|
|
|
|
qemu_register_machine(&ppce500_machine);
|
|
|
|
}
|
|
|
|
|
|
|
|
machine_init(ppce500_machine_init);
|