cxl_host.h 509 B

12345678910111213141516171819202122
  1. /*
  2. * QEMU CXL Host Setup
  3. *
  4. * Copyright (c) 2022 Huawei
  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. #include "hw/cxl/cxl.h"
  10. #include "hw/boards.h"
  11. #ifndef CXL_HOST_H
  12. #define CXL_HOST_H
  13. void cxl_machine_init(Object *obj, CXLState *state);
  14. void cxl_fmws_link_targets(CXLState *stat, Error **errp);
  15. void cxl_hook_up_pxb_registers(PCIBus *bus, CXLState *state, Error **errp);
  16. extern const MemoryRegionOps cfmws_ops;
  17. #endif