mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00

This is a part of patchset where FSI bus is introduced. The FSI bus is a simple bus where FSI master is attached. Signed-off-by: Andrew Jeffery <andrew@aj.id.au> Signed-off-by: Ninad Palsule <ninad@linux.ibm.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> [ clg: - removed include/hw/fsi/engine-scratchpad.h and hw/fsi/engine-scratchpad.c - dropped FSI_SCRATCHPAD - included FSIBus definition - dropped hw/fsi/trace-events changes ] Signed-off-by: Cédric Le Goater <clg@kaod.org>
22 lines
423 B
C
22 lines
423 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright (C) 2024 IBM Corp.
|
|
*
|
|
* IBM Flexible Service Interface
|
|
*/
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "hw/fsi/fsi.h"
|
|
|
|
static const TypeInfo fsi_bus_info = {
|
|
.name = TYPE_FSI_BUS,
|
|
.parent = TYPE_BUS,
|
|
.instance_size = sizeof(FSIBus),
|
|
};
|
|
|
|
static void fsi_bus_register_types(void)
|
|
{
|
|
type_register_static(&fsi_bus_info);
|
|
}
|
|
|
|
type_init(fsi_bus_register_types);
|