Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
24 lines
497 B
C
24 lines
497 B
C
/*
|
|
* 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);
|