OSDN Git Service

sysbus: Add new platform bus helper device
authorAlexander Graf <agraf@suse.de>
Wed, 24 Sep 2014 11:16:11 +0000 (13:16 +0200)
committerAlexander Graf <agraf@suse.de>
Tue, 4 Nov 2014 22:26:14 +0000 (23:26 +0100)
commit7634fe3c273ca2f2eb992b3b6bb7796b85558377
treef2971edb350663ad0c9e85195fcbcd5bc4a7e304
parent471a9bc14444e79bb826616becd2e5531e591d30
sysbus: Add new platform bus helper device

We need to support spawning of sysbus devices dynamically via the command line.
The easiest way to represent these dynamically spawned devices in the guest's
memory and IRQ layout is by preallocating some space for dynamic sysbus devices.

This is what the "platform bus" device does. It is a sysbus device that exports
a configurably sized MMIO region and a configurable number of IRQ lines. When
this device encounters sysbus devices that have been dynamically created and not
manually wired up, it dynamically connects them to its own pool of resources.

The machine model can then loop through all of these devices and create a guest
configuration (device tree) to make them visible to the guest.

Signed-off-by: Alexander Graf <agraf@suse.de>
hw/core/Makefile.objs
hw/core/platform-bus.c [new file with mode: 0644]
include/hw/platform-bus.h [new file with mode: 0644]