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 8 #ifndef CXL_MAILBOX_H 9 #define CXL_MAILBOX_H 10 11 #define CXL_MBOX_IMMEDIATE_CONFIG_CHANGE (1 << 1) 12 #define CXL_MBOX_IMMEDIATE_DATA_CHANGE (1 << 2) 13 #define CXL_MBOX_IMMEDIATE_POLICY_CHANGE (1 << 3) 14 #define CXL_MBOX_IMMEDIATE_LOG_CHANGE (1 << 4) 15 #define CXL_MBOX_SECURITY_STATE_CHANGE (1 << 5) 16 #define CXL_MBOX_BACKGROUND_OPERATION (1 << 6) 17 18 #endif 19