1*03b39fcfSJonathan Cameron /* 2*03b39fcfSJonathan Cameron * QEMU CXL Host Setup 3*03b39fcfSJonathan Cameron * 4*03b39fcfSJonathan Cameron * Copyright (c) 2022 Huawei 5*03b39fcfSJonathan Cameron * 6*03b39fcfSJonathan Cameron * This work is licensed under the terms of the GNU GPL, version 2. See the 7*03b39fcfSJonathan Cameron * COPYING file in the top-level directory. 8*03b39fcfSJonathan Cameron */ 9*03b39fcfSJonathan Cameron 10*03b39fcfSJonathan Cameron #include "qemu/osdep.h" 11*03b39fcfSJonathan Cameron #include "hw/cxl/cxl.h" 12*03b39fcfSJonathan Cameron #include "hw/boards.h" 13*03b39fcfSJonathan Cameron 14*03b39fcfSJonathan Cameron #ifndef CXL_HOST_H 15*03b39fcfSJonathan Cameron #define CXL_HOST_H 16*03b39fcfSJonathan Cameron 17*03b39fcfSJonathan Cameron void cxl_machine_init(Object *obj, CXLState *state); 18*03b39fcfSJonathan Cameron 19*03b39fcfSJonathan Cameron extern const MemoryRegionOps cfmws_ops; 20*03b39fcfSJonathan Cameron 21*03b39fcfSJonathan Cameron #endif 22