mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
ppc/xics: introduce a XICSFabric QOM interface to handle ICSs
This interface provides two simple handlers. One is to get an ICS (Interrupt Source Controller) object from an irq number and a second to resend the irqs when needed. Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
b9038e7806
commit
51b180051e
2 changed files with 25 additions and 0 deletions
|
@ -745,6 +745,12 @@ static const TypeInfo ics_base_info = {
|
|||
.class_size = sizeof(ICSStateClass),
|
||||
};
|
||||
|
||||
static const TypeInfo xics_fabric_info = {
|
||||
.name = TYPE_XICS_FABRIC,
|
||||
.parent = TYPE_INTERFACE,
|
||||
.class_size = sizeof(XICSFabricClass),
|
||||
};
|
||||
|
||||
/*
|
||||
* Exported functions
|
||||
*/
|
||||
|
@ -785,6 +791,7 @@ static void xics_register_types(void)
|
|||
type_register_static(&ics_simple_info);
|
||||
type_register_static(&ics_base_info);
|
||||
type_register_static(&icp_info);
|
||||
type_register_static(&xics_fabric_info);
|
||||
}
|
||||
|
||||
type_init(xics_register_types)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue