]> Git Repo - qemu.git/blob - hw/ppc/mpc8544ds.c
create struct for machine initialization arguments
[qemu.git] / hw / ppc / mpc8544ds.c
1 /*
2  * Support for the PPC e500-based mpc8544ds board
3  *
4  * Copyright 2012 Freescale Semiconductor, Inc.
5  *
6  * This is free software; you can redistribute it and/or modify
7  * it under the terms of  the GNU General  Public License as published by
8  * the Free Software Foundation;  either version 2 of the  License, or
9  * (at your option) any later version.
10  */
11
12 #include "config.h"
13 #include "qemu-common.h"
14 #include "e500.h"
15 #include "../boards.h"
16 #include "device_tree.h"
17
18 static void mpc8544ds_fixup_devtree(PPCE500Params *params, void *fdt)
19 {
20     const char model[] = "MPC8544DS";
21     const char compatible[] = "MPC8544DS\0MPC85xxDS";
22
23     qemu_devtree_setprop(fdt, "/", "model", model, sizeof(model));
24     qemu_devtree_setprop(fdt, "/", "compatible", compatible,
25                          sizeof(compatible));
26 }
27
28 static void mpc8544ds_init(QEMUMachineInitArgs *args)
29 {
30     ram_addr_t ram_size = args->ram_size;
31     const char *boot_device = args->boot_device;
32     const char *cpu_model = args->cpu_model;
33     const char *kernel_filename = args->kernel_filename;
34     const char *kernel_cmdline = args->kernel_cmdline;
35     const char *initrd_filename = args->initrd_filename;
36     PPCE500Params params = {
37         .ram_size = ram_size,
38         .boot_device = boot_device,
39         .kernel_filename = kernel_filename,
40         .kernel_cmdline = kernel_cmdline,
41         .initrd_filename = initrd_filename,
42         .cpu_model = cpu_model,
43         .fixup_devtree = mpc8544ds_fixup_devtree,
44     };
45
46     ppce500_init(&params);
47 }
48
49
50 static QEMUMachine ppce500_machine = {
51     .name = "mpc8544ds",
52     .desc = "mpc8544ds",
53     .init = mpc8544ds_init,
54     .max_cpus = 15,
55 };
56
57 static void ppce500_machine_init(void)
58 {
59     qemu_register_machine(&ppce500_machine);
60 }
61
62 machine_init(ppce500_machine_init);
This page took 0.02829 seconds and 4 git commands to generate.