2 * QEMU model of the Canon DIGIC SoC.
4 * Copyright (C) 2013 Antony Pavlov <antonynpavlov@gmail.com>
6 * This model is based on reverse engineering efforts
7 * made by CHDK (http://chdk.wikia.com) and
8 * Magic Lantern (http://www.magiclantern.fm) projects
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
23 #include "qemu/osdep.h"
24 #include "qapi/error.h"
25 #include "qemu/module.h"
26 #include "hw/arm/digic.h"
27 #include "sysemu/sysemu.h"
29 #define DIGIC4_TIMER_BASE(n) (0xc0210000 + (n) * 0x100)
31 #define DIGIC_UART_BASE 0xc0800000
33 static void digic_init(Object
*obj
)
35 DigicState
*s
= DIGIC(obj
);
38 object_initialize_child(obj
, "cpu", &s
->cpu
, sizeof(s
->cpu
),
39 "arm946-" TYPE_ARM_CPU
, &error_abort
, NULL
);
41 for (i
= 0; i
< DIGIC4_NB_TIMERS
; i
++) {
42 #define DIGIC_TIMER_NAME_MLEN 11
43 char name
[DIGIC_TIMER_NAME_MLEN
];
45 snprintf(name
, DIGIC_TIMER_NAME_MLEN
, "timer[%d]", i
);
46 sysbus_init_child_obj(obj
, name
, &s
->timer
[i
], sizeof(s
->timer
[i
]),
50 sysbus_init_child_obj(obj
, "uart", &s
->uart
, sizeof(s
->uart
),
54 static void digic_realize(DeviceState
*dev
, Error
**errp
)
56 DigicState
*s
= DIGIC(dev
);
61 object_property_set_bool(OBJECT(&s
->cpu
), true, "reset-hivecs", &err
);
63 error_propagate(errp
, err
);
67 object_property_set_bool(OBJECT(&s
->cpu
), true, "realized", &err
);
69 error_propagate(errp
, err
);
73 for (i
= 0; i
< DIGIC4_NB_TIMERS
; i
++) {
74 object_property_set_bool(OBJECT(&s
->timer
[i
]), true, "realized", &err
);
76 error_propagate(errp
, err
);
80 sbd
= SYS_BUS_DEVICE(&s
->timer
[i
]);
81 sysbus_mmio_map(sbd
, 0, DIGIC4_TIMER_BASE(i
));
84 qdev_prop_set_chr(DEVICE(&s
->uart
), "chardev", serial_hd(0));
85 object_property_set_bool(OBJECT(&s
->uart
), true, "realized", &err
);
87 error_propagate(errp
, err
);
91 sbd
= SYS_BUS_DEVICE(&s
->uart
);
92 sysbus_mmio_map(sbd
, 0, DIGIC_UART_BASE
);
95 static void digic_class_init(ObjectClass
*oc
, void *data
)
97 DeviceClass
*dc
= DEVICE_CLASS(oc
);
99 dc
->realize
= digic_realize
;
100 /* Reason: Uses serial_hds in the realize function --> not usable twice */
101 dc
->user_creatable
= false;
104 static const TypeInfo digic_type_info
= {
106 .parent
= TYPE_DEVICE
,
107 .instance_size
= sizeof(DigicState
),
108 .instance_init
= digic_init
,
109 .class_init
= digic_class_init
,
112 static void digic_register_types(void)
114 type_register_static(&digic_type_info
);
117 type_init(digic_register_types
)