Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
26 lines
585 B
C
26 lines
585 B
C
/*
|
|
* CXL host parameter parsing routine stubs
|
|
*
|
|
* Copyright (c) 2022 Huawei
|
|
*/
|
|
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "hw/cxl/cxl.h"
|
|
#include "hw/cxl/cxl_host.h"
|
|
|
|
void cxl_fmws_link_targets(Error **errp) {};
|
|
void cxl_machine_init(Object *obj, CXLState *state) {};
|
|
void cxl_hook_up_pxb_registers(PCIBus *bus, CXLState *state, Error **errp) {};
|
|
hwaddr cxl_fmws_set_memmap(hwaddr base, hwaddr max_addr)
|
|
{
|
|
return base;
|
|
};
|
|
void cxl_fmws_update_mmio(void) {};
|
|
|
|
const MemoryRegionOps cfmws_ops;
|
|
|
|
GSList *cxl_fmws_get_all_sorted(void)
|
|
{
|
|
g_assert_not_reached();
|
|
}
|