]> git.proxmox.com Git - qemu.git/blame - hw/core/sysbus.c
qemu-iotests: Test qcow2 count_contiguous_clusters()
[qemu.git] / hw / core / sysbus.c
CommitLineData
aae9460e
PB
1/*
2 * System (CPU) Bus device support code
3 *
4 * Copyright (c) 2009 CodeSourcery
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
aae9460e
PB
18 */
19
83c9f4ca 20#include "hw/sysbus.h"
83c9089e 21#include "monitor/monitor.h"
022c62cb 22#include "exec/address-spaces.h"
aae9460e 23
10c4c98a 24static void sysbus_dev_print(Monitor *mon, DeviceState *dev, int indent);
c646f74f 25static char *sysbus_get_fw_dev_path(DeviceState *dev);
10c4c98a 26
0d936928
AL
27static void system_bus_class_init(ObjectClass *klass, void *data)
28{
29 BusClass *k = BUS_CLASS(klass);
30
31 k->print_dev = sysbus_dev_print;
32 k->get_fw_dev_path = sysbus_get_fw_dev_path;
33}
34
35static const TypeInfo system_bus_info = {
36 .name = TYPE_SYSTEM_BUS,
37 .parent = TYPE_BUS,
38 .instance_size = sizeof(BusState),
39 .class_init = system_bus_class_init,
10c4c98a
GH
40};
41
aae9460e
PB
42void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq)
43{
44 assert(n >= 0 && n < dev->num_irq);
660f11be 45 dev->irqs[n] = NULL;
aae9460e
PB
46 if (dev->irqp[n]) {
47 *dev->irqp[n] = irq;
48 }
49}
50
7feb640c 51static void sysbus_mmio_map_common(SysBusDevice *dev, int n, hwaddr addr,
a1ff8ae0 52 bool may_overlap, int priority)
aae9460e
PB
53{
54 assert(n >= 0 && n < dev->num_mmio);
55
56 if (dev->mmio[n].addr == addr) {
57 /* ??? region already mapped here. */
58 return;
59 }
a8170e5e 60 if (dev->mmio[n].addr != (hwaddr)-1) {
aae9460e 61 /* Unregister previous mapping. */
e114fead 62 memory_region_del_subregion(get_system_memory(), dev->mmio[n].memory);
aae9460e
PB
63 }
64 dev->mmio[n].addr = addr;
7feb640c
AK
65 if (may_overlap) {
66 memory_region_add_subregion_overlap(get_system_memory(),
67 addr,
68 dev->mmio[n].memory,
69 priority);
70 }
71 else {
72 memory_region_add_subregion(get_system_memory(),
73 addr,
74 dev->mmio[n].memory);
75 }
aae9460e
PB
76}
77
7feb640c
AK
78void sysbus_mmio_map(SysBusDevice *dev, int n, hwaddr addr)
79{
80 sysbus_mmio_map_common(dev, n, addr, false, 0);
81}
82
83void sysbus_mmio_map_overlap(SysBusDevice *dev, int n, hwaddr addr,
a1ff8ae0 84 int priority)
7feb640c
AK
85{
86 sysbus_mmio_map_common(dev, n, addr, true, priority);
87}
aae9460e
PB
88
89/* Request an IRQ source. The actual IRQ object may be populated later. */
90void sysbus_init_irq(SysBusDevice *dev, qemu_irq *p)
91{
92 int n;
93
94 assert(dev->num_irq < QDEV_MAX_IRQ);
95 n = dev->num_irq++;
96 dev->irqp[n] = p;
97}
98
99/* Pass IRQs from a target device. */
100void sysbus_pass_irq(SysBusDevice *dev, SysBusDevice *target)
101{
102 int i;
103 assert(dev->num_irq == 0);
104 dev->num_irq = target->num_irq;
105 for (i = 0; i < dev->num_irq; i++) {
106 dev->irqp[i] = target->irqp[i];
107 }
108}
109
750ecd44 110void sysbus_init_mmio(SysBusDevice *dev, MemoryRegion *memory)
ec3bb837
AK
111{
112 int n;
113
114 assert(dev->num_mmio < QDEV_MAX_MMIO);
115 n = dev->num_mmio++;
116 dev->mmio[n].addr = -1;
ec3bb837
AK
117 dev->mmio[n].memory = memory;
118}
119
46c305ef
PM
120MemoryRegion *sysbus_mmio_get_region(SysBusDevice *dev, int n)
121{
122 return dev->mmio[n].memory;
123}
124
c646f74f
GN
125void sysbus_init_ioports(SysBusDevice *dev, pio_addr_t ioport, pio_addr_t size)
126{
127 pio_addr_t i;
128
129 for (i = 0; i < size; i++) {
130 assert(dev->num_pio < QDEV_MAX_PIO);
131 dev->pio[dev->num_pio++] = ioport++;
132 }
133}
134
d307af79 135static int sysbus_device_init(DeviceState *dev)
aae9460e 136{
999e12bb
AL
137 SysBusDevice *sd = SYS_BUS_DEVICE(dev);
138 SysBusDeviceClass *sbc = SYS_BUS_DEVICE_GET_CLASS(sd);
aae9460e 139
4ce5dae8
PM
140 if (!sbc->init) {
141 return 0;
142 }
999e12bb 143 return sbc->init(sd);
aae9460e
PB
144}
145
aae9460e 146DeviceState *sysbus_create_varargs(const char *name,
a8170e5e 147 hwaddr addr, ...)
aae9460e
PB
148{
149 DeviceState *dev;
150 SysBusDevice *s;
151 va_list va;
152 qemu_irq irq;
153 int n;
154
155 dev = qdev_create(NULL, name);
1356b98d 156 s = SYS_BUS_DEVICE(dev);
e23a1b33 157 qdev_init_nofail(dev);
a8170e5e 158 if (addr != (hwaddr)-1) {
aae9460e
PB
159 sysbus_mmio_map(s, 0, addr);
160 }
161 va_start(va, addr);
162 n = 0;
163 while (1) {
4912371f
BS
164 irq = va_arg(va, qemu_irq);
165 if (!irq) {
166 break;
167 }
168 sysbus_connect_irq(s, n, irq);
169 n++;
170 }
d0bc5bc3 171 va_end(va);
4912371f
BS
172 return dev;
173}
174
175DeviceState *sysbus_try_create_varargs(const char *name,
a8170e5e 176 hwaddr addr, ...)
4912371f
BS
177{
178 DeviceState *dev;
179 SysBusDevice *s;
180 va_list va;
181 qemu_irq irq;
182 int n;
183
184 dev = qdev_try_create(NULL, name);
185 if (!dev) {
186 return NULL;
187 }
1356b98d 188 s = SYS_BUS_DEVICE(dev);
4912371f 189 qdev_init_nofail(dev);
a8170e5e 190 if (addr != (hwaddr)-1) {
4912371f
BS
191 sysbus_mmio_map(s, 0, addr);
192 }
193 va_start(va, addr);
194 n = 0;
195 while (1) {
aae9460e
PB
196 irq = va_arg(va, qemu_irq);
197 if (!irq) {
198 break;
199 }
200 sysbus_connect_irq(s, n, irq);
201 n++;
202 }
d0bc5bc3 203 va_end(va);
aae9460e
PB
204 return dev;
205}
cae4956e 206
10c4c98a 207static void sysbus_dev_print(Monitor *mon, DeviceState *dev, int indent)
cae4956e 208{
1356b98d 209 SysBusDevice *s = SYS_BUS_DEVICE(dev);
a8170e5e 210 hwaddr size;
cae4956e
GH
211 int i;
212
0fba9fd6 213 monitor_printf(mon, "%*sirq %d\n", indent, "", s->num_irq);
cae4956e 214 for (i = 0; i < s->num_mmio; i++) {
e114fead 215 size = memory_region_size(s->mmio[i].memory);
cae4956e 216 monitor_printf(mon, "%*smmio " TARGET_FMT_plx "/" TARGET_FMT_plx "\n",
3f7f1c80 217 indent, "", s->mmio[i].addr, size);
cae4956e
GH
218 }
219}
c646f74f
GN
220
221static char *sysbus_get_fw_dev_path(DeviceState *dev)
222{
1356b98d 223 SysBusDevice *s = SYS_BUS_DEVICE(dev);
c646f74f
GN
224 char path[40];
225 int off;
226
227 off = snprintf(path, sizeof(path), "%s", qdev_fw_name(dev));
228
229 if (s->num_mmio) {
230 snprintf(path + off, sizeof(path) - off, "@"TARGET_FMT_plx,
231 s->mmio[0].addr);
232 } else if (s->num_pio) {
233 snprintf(path + off, sizeof(path) - off, "@i%04x", s->pio[0]);
234 }
235
a5cf8262 236 return g_strdup(path);
c646f74f 237}
2b985d9c 238
a8170e5e 239void sysbus_add_io(SysBusDevice *dev, hwaddr addr,
2b985d9c
AK
240 MemoryRegion *mem)
241{
242 memory_region_add_subregion(get_system_io(), addr, mem);
243}
244
245void sysbus_del_io(SysBusDevice *dev, MemoryRegion *mem)
246{
247 memory_region_del_subregion(get_system_io(), mem);
248}
62ec4832
AK
249
250MemoryRegion *sysbus_address_space(SysBusDevice *dev)
251{
252 return get_system_memory();
253}
999e12bb 254
39bffca2
AL
255static void sysbus_device_class_init(ObjectClass *klass, void *data)
256{
257 DeviceClass *k = DEVICE_CLASS(klass);
258 k->init = sysbus_device_init;
0d936928 259 k->bus_type = TYPE_SYSTEM_BUS;
39bffca2
AL
260}
261
8c43a6f0 262static const TypeInfo sysbus_device_type_info = {
999e12bb
AL
263 .name = TYPE_SYS_BUS_DEVICE,
264 .parent = TYPE_DEVICE,
265 .instance_size = sizeof(SysBusDevice),
266 .abstract = true,
267 .class_size = sizeof(SysBusDeviceClass),
39bffca2 268 .class_init = sysbus_device_class_init,
999e12bb
AL
269};
270
8185d216
PB
271/* This is a nasty hack to allow passing a NULL bus to qdev_create. */
272static BusState *main_system_bus;
273
274static void main_system_bus_create(void)
275{
276 /* assign main_system_bus before qbus_create_inplace()
277 * in order to make "if (bus != sysbus_get_default())" work */
0d936928 278 main_system_bus = g_malloc0(system_bus_info.instance_size);
fb17dfe0
AF
279 qbus_create_inplace(main_system_bus, system_bus_info.instance_size,
280 TYPE_SYSTEM_BUS, NULL, "main-system-bus");
64b625f4 281 OBJECT(main_system_bus)->free = g_free;
f968fc68
AL
282 object_property_add_child(container_get(qdev_get_machine(),
283 "/unattached"),
284 "sysbus", OBJECT(main_system_bus), NULL);
8185d216
PB
285}
286
287BusState *sysbus_get_default(void)
288{
289 if (!main_system_bus) {
290 main_system_bus_create();
291 }
292 return main_system_bus;
293}
294
83f7d43a 295static void sysbus_register_types(void)
999e12bb 296{
0d936928 297 type_register_static(&system_bus_info);
999e12bb
AL
298 type_register_static(&sysbus_device_type_info);
299}
300
83f7d43a 301type_init(sysbus_register_types)