xref: /openbmc/qemu/include/hw/cxl/cxl_mailbox.h (revision 0d70c5aa1bbfb0f5099d53d6e084337a8246cc0c)
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_CONFIG_CHANGE_COLD_RESET (1)
12 #define CXL_MBOX_IMMEDIATE_CONFIG_CHANGE (1 << 1)
13 #define CXL_MBOX_IMMEDIATE_DATA_CHANGE (1 << 2)
14 #define CXL_MBOX_IMMEDIATE_POLICY_CHANGE (1 << 3)
15 #define CXL_MBOX_IMMEDIATE_LOG_CHANGE (1 << 4)
16 #define CXL_MBOX_SECURITY_STATE_CHANGE (1 << 5)
17 #define CXL_MBOX_BACKGROUND_OPERATION (1 << 6)
18 #define CXL_MBOX_BACKGROUND_OPERATION_ABORT (1 << 7)
19 #define CXL_MBOX_SECONDARY_MBOX_SUPPORTED (1 << 8)
20 #define CXL_MBOX_REQUEST_ABORT_BACKGROUND_OP_SUPPORTED (1 << 9)
21 #define CXL_MBOX_CEL_10_TO_11_VALID (1 << 10)
22 #define CXL_MBOX_CONFIG_CHANGE_CONV_RESET (1 << 11)
23 #define CXL_MBOX_CONFIG_CHANGE_CXL_RESET (1 << 12)
24 
25 #endif
26