103b39fcfSJonathan Cameron /* 203b39fcfSJonathan Cameron * QEMU CXL Host Setup 303b39fcfSJonathan Cameron * 403b39fcfSJonathan Cameron * Copyright (c) 2022 Huawei 503b39fcfSJonathan Cameron * 603b39fcfSJonathan Cameron * This work is licensed under the terms of the GNU GPL, version 2. See the 703b39fcfSJonathan Cameron * COPYING file in the top-level directory. 803b39fcfSJonathan Cameron */ 903b39fcfSJonathan Cameron 1003b39fcfSJonathan Cameron #include "hw/cxl/cxl.h" 1103b39fcfSJonathan Cameron #include "hw/boards.h" 1203b39fcfSJonathan Cameron 1303b39fcfSJonathan Cameron #ifndef CXL_HOST_H 1403b39fcfSJonathan Cameron #define CXL_HOST_H 1503b39fcfSJonathan Cameron 1603b39fcfSJonathan Cameron void cxl_machine_init(Object *obj, CXLState *state); 17dab390ffSJonathan Cameron void cxl_fmws_link_targets(CXLState *stat, Error **errp); 18*7bd1900bSJonathan Cameron void cxl_hook_up_pxb_registers(PCIBus *bus, CXLState *state, Error **errp); 1903b39fcfSJonathan Cameron 2003b39fcfSJonathan Cameron extern const MemoryRegionOps cfmws_ops; 2103b39fcfSJonathan Cameron 2203b39fcfSJonathan Cameron #endif 23