]> git.proxmox.com Git - mirror_qemu.git/blob - include/hw/fsi/fsi.h
hw/fsi: Introduce IBM's FSI Bus
[mirror_qemu.git] / include / hw / fsi / fsi.h
1 /*
2 * SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2024 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 /* FSI_FSI_H */