1 /* 2 * QEMU CXL Support 3 * 4 * Copyright (c) 2020 Intel 5 * 6 * This work is licensed under the terms of the GNU GPL, version 2. See the 7 * COPYING file in the top-level directory. 8 */ 9 10 #ifndef CXL_H 11 #define CXL_H 12 13 #include "cxl_pci.h" 14 #include "cxl_component.h" 15 #include "cxl_device.h" 16 17 #define CXL_COMPONENT_REG_BAR_IDX 0 18 #define CXL_DEVICE_REG_BAR_IDX 2 19 20 #endif 21