]> Git Repo - qemu.git/blame - hw/arm/cubieboard.c
error: Don't decorate original error message when adding to it
[qemu.git] / hw / arm / cubieboard.c
CommitLineData
a01c0053
LG
1/*
2 * cubieboard emulation
3 *
4 * Copyright (C) 2013 Li Guang
5 * Written by Li Guang <[email protected]>
6 *
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.
11 *
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
15 * for more details.
16 */
17
18#include "hw/sysbus.h"
19#include "hw/devices.h"
20#include "hw/boards.h"
21#include "hw/arm/allwinner-a10.h"
22
23static struct arm_boot_info cubieboard_binfo = {
24 .loader_start = AW_A10_SDRAM_BASE,
25 .board_id = 0x1008,
26};
27
28typedef struct CubieBoardState {
29 AwA10State *a10;
30 MemoryRegion sdram;
31} CubieBoardState;
32
3ef96221 33static void cubieboard_init(MachineState *machine)
a01c0053
LG
34{
35 CubieBoardState *s = g_new(CubieBoardState, 1);
36 Error *err = NULL;
37
38 s->a10 = AW_A10(object_new(TYPE_AW_A10));
db7dfd4c
BG
39
40 object_property_set_int(OBJECT(&s->a10->emac), 1, "phy-addr", &err);
41 if (err != NULL) {
42 error_report("Couldn't set phy address: %s", error_get_pretty(err));
43 exit(1);
44 }
45
286226a4
BG
46 object_property_set_int(OBJECT(&s->a10->timer), 32768, "clk0-freq", &err);
47 if (err != NULL) {
48 error_report("Couldn't set clk0 frequency: %s", error_get_pretty(err));
49 exit(1);
50 }
51
52 object_property_set_int(OBJECT(&s->a10->timer), 24000000, "clk1-freq",
53 &err);
54 if (err != NULL) {
55 error_report("Couldn't set clk1 frequency: %s", error_get_pretty(err));
56 exit(1);
57 }
58
a01c0053
LG
59 object_property_set_bool(OBJECT(s->a10), true, "realized", &err);
60 if (err != NULL) {
db7dfd4c
BG
61 error_report("Couldn't realize Allwinner A10: %s",
62 error_get_pretty(err));
a01c0053
LG
63 exit(1);
64 }
65
c8623c02
DM
66 memory_region_allocate_system_memory(&s->sdram, NULL, "cubieboard.ram",
67 machine->ram_size);
a01c0053
LG
68 memory_region_add_subregion(get_system_memory(), AW_A10_SDRAM_BASE,
69 &s->sdram);
70
3ef96221
MA
71 cubieboard_binfo.ram_size = machine->ram_size;
72 cubieboard_binfo.kernel_filename = machine->kernel_filename;
73 cubieboard_binfo.kernel_cmdline = machine->kernel_cmdline;
a01c0053
LG
74 arm_load_kernel(&s->a10->cpu, &cubieboard_binfo);
75}
76
e264d29d 77static void cubieboard_machine_init(MachineClass *mc)
a01c0053 78{
e264d29d
EH
79 mc->desc = "cubietech cubieboard";
80 mc->init = cubieboard_init;
a01c0053
LG
81}
82
e264d29d 83DEFINE_MACHINE("cubieboard", cubieboard_machine_init)
This page took 0.140857 seconds and 4 git commands to generate.