xref: /openbmc/qemu/hw/cxl/cxl-host-stubs.c (revision 8d789c8cdb8de2cae39f217b6c9607ac9c036c8c)
1 /*
2  * CXL host parameter parsing routine stubs
3  *
4  * Copyright (c) 2022 Huawei
5  */
6 #include "qemu/osdep.h"
7 #include "qapi/error.h"
8 #include "hw/cxl/cxl.h"
9 #include "hw/cxl/cxl_host.h"
10 
11 void cxl_fmws_link_targets(Error **errp) {};
12 void cxl_machine_init(Object *obj, CXLState *state) {};
13 void cxl_hook_up_pxb_registers(PCIBus *bus, CXLState *state, Error **errp) {};
14 hwaddr cxl_fmws_set_memmap(hwaddr base, hwaddr max_addr)
15 {
16     return base;
17 };
18 void cxl_fmws_update_mmio(void) {};
19 
20 const MemoryRegionOps cfmws_ops;
21