1 /* 2 * QEMU PowerPC PowerNV Emulation of some ADU behaviour 3 * 4 * Copyright (c) 2024, IBM Corporation. 5 * 6 * SPDX-License-Identifier: GPL-2.0-or-later 7 */ 8 9 #ifndef PPC_PNV_ADU_H 10 #define PPC_PNV_ADU_H 11 12 #include "hw/ppc/pnv.h" 13 #include "hw/qdev-core.h" 14 15 #define TYPE_PNV_ADU "pnv-adu" 16 17 OBJECT_DECLARE_TYPE(PnvADU, PnvADUClass, PNV_ADU) 18 19 struct PnvADU { 20 DeviceState xd; 21 22 MemoryRegion xscom_regs; 23 }; 24 25 #endif /* PPC_PNV_ADU_H */ 26