2 * Platform Bus device to support dynamic Sysbus devices
4 * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved.
6 * Author: Alexander Graf, <agraf@suse.de>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #include "qemu/osdep.h"
23 #include "hw/platform-bus.h"
24 #include "exec/address-spaces.h"
25 #include "qemu/error-report.h"
26 #include "sysemu/sysemu.h"
30 * Returns the PlatformBus IRQ number for a SysBusDevice irq number or -1 if
31 * the IRQ is not mapped on this Platform bus.
33 int platform_bus_get_irqn(PlatformBusDevice
*pbus
, SysBusDevice
*sbdev
,
36 qemu_irq sbirq
= sysbus_get_connected_irq(sbdev
, n
);
39 for (i
= 0; i
< pbus
->num_irqs
; i
++) {
40 if (pbus
->irqs
[i
] == sbirq
) {
45 /* IRQ not mapped on platform bus */
50 * Returns the PlatformBus MMIO region offset for Region n of a SysBusDevice or
51 * -1 if the region is not mapped on this Platform bus.
53 hwaddr
platform_bus_get_mmio_addr(PlatformBusDevice
*pbus
, SysBusDevice
*sbdev
,
56 MemoryRegion
*pbus_mr
= &pbus
->mmio
;
57 MemoryRegion
*sbdev_mr
= sysbus_mmio_get_region(sbdev
, n
);
58 Object
*pbus_mr_obj
= OBJECT(pbus_mr
);
61 if (!memory_region_is_mapped(sbdev_mr
)) {
62 /* Region is not mapped? */
66 parent_mr
= object_property_get_link(OBJECT(sbdev_mr
), "container", NULL
);
69 if (parent_mr
!= pbus_mr_obj
) {
70 /* MMIO region is not mapped on platform bus */
74 return object_property_get_int(OBJECT(sbdev_mr
), "addr", NULL
);
77 static void platform_bus_count_irqs(SysBusDevice
*sbdev
, void *opaque
)
79 PlatformBusDevice
*pbus
= opaque
;
84 if (!sysbus_has_irq(sbdev
, n
)) {
88 sbirq
= sysbus_get_connected_irq(sbdev
, n
);
89 for (i
= 0; i
< pbus
->num_irqs
; i
++) {
90 if (pbus
->irqs
[i
] == sbirq
) {
91 bitmap_set(pbus
->used_irqs
, i
, 1);
99 * Loop through all sysbus devices and look for unassigned IRQ lines as well as
100 * unassociated MMIO regions. Connect them to the platform bus if available.
102 static void plaform_bus_refresh_irqs(PlatformBusDevice
*pbus
)
104 bitmap_zero(pbus
->used_irqs
, pbus
->num_irqs
);
105 foreach_dynamic_sysbus_device(platform_bus_count_irqs
, pbus
);
106 pbus
->done_gathering
= true;
109 static void platform_bus_map_irq(PlatformBusDevice
*pbus
, SysBusDevice
*sbdev
,
112 int max_irqs
= pbus
->num_irqs
;
115 if (sysbus_is_irq_connected(sbdev
, n
)) {
116 /* IRQ is already mapped, nothing to do */
120 irqn
= find_first_zero_bit(pbus
->used_irqs
, max_irqs
);
121 if (irqn
>= max_irqs
) {
122 error_report("Platform Bus: Can not fit IRQ line");
126 set_bit(irqn
, pbus
->used_irqs
);
127 sysbus_connect_irq(sbdev
, n
, pbus
->irqs
[irqn
]);
130 static void platform_bus_map_mmio(PlatformBusDevice
*pbus
, SysBusDevice
*sbdev
,
133 MemoryRegion
*sbdev_mr
= sysbus_mmio_get_region(sbdev
, n
);
134 uint64_t size
= memory_region_size(sbdev_mr
);
135 uint64_t alignment
= (1ULL << (63 - clz64(size
+ size
- 1)));
137 bool found_region
= false;
139 if (memory_region_is_mapped(sbdev_mr
)) {
140 /* Region is already mapped, nothing to do */
145 * Look for empty space in the MMIO space that is naturally aligned with
146 * the target device's memory region
148 for (off
= 0; off
< pbus
->mmio_size
; off
+= alignment
) {
149 if (!memory_region_find(&pbus
->mmio
, off
, size
).mr
) {
156 error_report("Platform Bus: Can not fit MMIO region of size %"PRIx64
,
161 /* Map the device's region into our Platform Bus MMIO space */
162 memory_region_add_subregion(&pbus
->mmio
, off
, sbdev_mr
);
166 * For each sysbus device, look for unassigned IRQ lines as well as
167 * unassociated MMIO regions. Connect them to the platform bus if available.
169 static void link_sysbus_device(SysBusDevice
*sbdev
, void *opaque
)
171 PlatformBusDevice
*pbus
= opaque
;
174 for (i
= 0; sysbus_has_irq(sbdev
, i
); i
++) {
175 platform_bus_map_irq(pbus
, sbdev
, i
);
178 for (i
= 0; sysbus_has_mmio(sbdev
, i
); i
++) {
179 platform_bus_map_mmio(pbus
, sbdev
, i
);
183 static void platform_bus_init_notify(Notifier
*notifier
, void *data
)
185 PlatformBusDevice
*pb
= container_of(notifier
, PlatformBusDevice
, notifier
);
188 * Generate a bitmap of used IRQ lines, as the user might have specified
189 * them on the command line.
191 plaform_bus_refresh_irqs(pb
);
193 foreach_dynamic_sysbus_device(link_sysbus_device
, pb
);
196 static void platform_bus_realize(DeviceState
*dev
, Error
**errp
)
198 PlatformBusDevice
*pbus
;
202 d
= SYS_BUS_DEVICE(dev
);
203 pbus
= PLATFORM_BUS_DEVICE(dev
);
205 memory_region_init(&pbus
->mmio
, NULL
, "platform bus", pbus
->mmio_size
);
206 sysbus_init_mmio(d
, &pbus
->mmio
);
208 pbus
->used_irqs
= bitmap_new(pbus
->num_irqs
);
209 pbus
->irqs
= g_new0(qemu_irq
, pbus
->num_irqs
);
210 for (i
= 0; i
< pbus
->num_irqs
; i
++) {
211 sysbus_init_irq(d
, &pbus
->irqs
[i
]);
215 * Register notifier that allows us to gather dangling devices once the
216 * machine is completely assembled
218 pbus
->notifier
.notify
= platform_bus_init_notify
;
219 qemu_add_machine_init_done_notifier(&pbus
->notifier
);
222 static Property platform_bus_properties
[] = {
223 DEFINE_PROP_UINT32("num_irqs", PlatformBusDevice
, num_irqs
, 0),
224 DEFINE_PROP_UINT32("mmio_size", PlatformBusDevice
, mmio_size
, 0),
225 DEFINE_PROP_END_OF_LIST()
228 static void platform_bus_class_init(ObjectClass
*klass
, void *data
)
230 DeviceClass
*dc
= DEVICE_CLASS(klass
);
232 dc
->realize
= platform_bus_realize
;
233 dc
->props
= platform_bus_properties
;
236 static const TypeInfo platform_bus_info
= {
237 .name
= TYPE_PLATFORM_BUS_DEVICE
,
238 .parent
= TYPE_SYS_BUS_DEVICE
,
239 .instance_size
= sizeof(PlatformBusDevice
),
240 .class_init
= platform_bus_class_init
,
243 static void platform_bus_register_types(void)
245 type_register_static(&platform_bus_info
);
248 type_init(platform_bus_register_types
)