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