4 * Copyright (C) 2013 Li Guang
5 * Written by Li Guang <lig.fnst@cn.fujitsu.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 #include "qemu/osdep.h"
19 #include "exec/address-spaces.h"
20 #include "qapi/error.h"
22 #include "hw/sysbus.h"
23 #include "hw/boards.h"
24 #include "hw/arm/allwinner-a10.h"
26 static struct arm_boot_info cubieboard_binfo
= {
27 .loader_start
= AW_A10_SDRAM_BASE
,
31 typedef struct CubieBoardState
{
36 static void cubieboard_init(MachineState
*machine
)
38 CubieBoardState
*s
= g_new(CubieBoardState
, 1);
41 s
->a10
= AW_A10(object_new(TYPE_AW_A10
));
43 object_property_set_int(OBJECT(&s
->a10
->emac
), 1, "phy-addr", &err
);
45 error_reportf_err(err
, "Couldn't set phy address: ");
49 object_property_set_int(OBJECT(&s
->a10
->timer
), 32768, "clk0-freq", &err
);
51 error_reportf_err(err
, "Couldn't set clk0 frequency: ");
55 object_property_set_int(OBJECT(&s
->a10
->timer
), 24000000, "clk1-freq",
58 error_reportf_err(err
, "Couldn't set clk1 frequency: ");
62 object_property_set_bool(OBJECT(s
->a10
), true, "realized", &err
);
64 error_reportf_err(err
, "Couldn't realize Allwinner A10: ");
68 memory_region_allocate_system_memory(&s
->sdram
, NULL
, "cubieboard.ram",
70 memory_region_add_subregion(get_system_memory(), AW_A10_SDRAM_BASE
,
73 /* TODO create and connect IDE devices for ide_drive_get() */
75 cubieboard_binfo
.ram_size
= machine
->ram_size
;
76 cubieboard_binfo
.kernel_filename
= machine
->kernel_filename
;
77 cubieboard_binfo
.kernel_cmdline
= machine
->kernel_cmdline
;
78 cubieboard_binfo
.initrd_filename
= machine
->initrd_filename
;
79 arm_load_kernel(&s
->a10
->cpu
, &cubieboard_binfo
);
82 static void cubieboard_machine_init(MachineClass
*mc
)
84 mc
->desc
= "cubietech cubieboard";
85 mc
->init
= cubieboard_init
;
86 mc
->block_default_type
= IF_IDE
;
87 mc
->units_per_default_bus
= 1;
88 mc
->ignore_memory_transaction_failures
= true;
91 DEFINE_MACHINE("cubieboard", cubieboard_machine_init
)