master
c 23 lines 497 Bytes
Raw
1 /*
2 * QEMU PowerPC PowerNV (POWER10) PHB5 model
3 *
4 * Copyright (c) 2018-2026, IBM Corporation.
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9 #include "qemu/osdep.h"
10 #include "hw/pci-host/pnv_phb4.h"
11
12 static const TypeInfo pnv_phb5_type_info = {
13 .name = TYPE_PNV_PHB5,
14 .parent = TYPE_PNV_PHB4,
15 .instance_size = sizeof(PnvPHB4),
16 };
17
18 static void pnv_phb5_register_types(void)
19 {
20 type_register_static(&pnv_phb5_type_info);
21 }
22
23 type_init(pnv_phb5_register_types);