cxl_mailbox.h 494 B

123456789101112131415161718
  1. /*
  2. * QEMU CXL Mailbox
  3. *
  4. * This work is licensed under the terms of the GNU GPL, version 2. See the
  5. * COPYING file in the top-level directory.
  6. */
  7. #ifndef CXL_MAILBOX_H
  8. #define CXL_MAILBOX_H
  9. #define CXL_MBOX_IMMEDIATE_CONFIG_CHANGE (1 << 1)
  10. #define CXL_MBOX_IMMEDIATE_DATA_CHANGE (1 << 2)
  11. #define CXL_MBOX_IMMEDIATE_POLICY_CHANGE (1 << 3)
  12. #define CXL_MBOX_IMMEDIATE_LOG_CHANGE (1 << 4)
  13. #define CXL_MBOX_SECURITY_STATE_CHANGE (1 << 5)
  14. #define CXL_MBOX_BACKGROUND_OPERATION (1 << 6)
  15. #endif