xref: /openbmc/qemu/include/hw/fsi/fsi.h (revision e332fdc06830ece61a844f0cff33505598518e3d)
1 /*
2  * SPDX-License-Identifier: GPL-2.0-or-later
3  * Copyright (C) 2023 IBM Corp.
4  *
5  * IBM Flexible Service Interface
6  */
7 #ifndef FSI_FSI_H
8 #define FSI_FSI_H
9 
10 #include "hw/qdev-core.h"
11 
12 #define TYPE_FSI_BUS "fsi.bus"
13 OBJECT_DECLARE_SIMPLE_TYPE(FSIBus, FSI_BUS)
14 
15 typedef struct FSIBus {
16     BusState bus;
17 } FSIBus;
18 
19 #endif
20