mirror of
https://github.com/qemu/qemu.git
synced 2025-08-13 18:46:38 +00:00

FM DCD Management command 0x5602 implemented per CXL r3.2 Spec Section 7.6.7.6.3 Reviewed-by: Fan Ni <fan.ni@samsung.com> Signed-off-by: Anisa Su <anisa.su@samsung.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Message-Id: <20250714174509.1984430-8-Jonathan.Cameron@huawei.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
26 lines
857 B
C
26 lines
857 B
C
/*
|
|
* QEMU CXL Mailbox
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See the
|
|
* COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef CXL_MAILBOX_H
|
|
#define CXL_MAILBOX_H
|
|
|
|
#define CXL_MBOX_CONFIG_CHANGE_COLD_RESET (1)
|
|
#define CXL_MBOX_IMMEDIATE_CONFIG_CHANGE (1 << 1)
|
|
#define CXL_MBOX_IMMEDIATE_DATA_CHANGE (1 << 2)
|
|
#define CXL_MBOX_IMMEDIATE_POLICY_CHANGE (1 << 3)
|
|
#define CXL_MBOX_IMMEDIATE_LOG_CHANGE (1 << 4)
|
|
#define CXL_MBOX_SECURITY_STATE_CHANGE (1 << 5)
|
|
#define CXL_MBOX_BACKGROUND_OPERATION (1 << 6)
|
|
#define CXL_MBOX_BACKGROUND_OPERATION_ABORT (1 << 7)
|
|
#define CXL_MBOX_SECONDARY_MBOX_SUPPORTED (1 << 8)
|
|
#define CXL_MBOX_REQUEST_ABORT_BACKGROUND_OP_SUPPORTED (1 << 9)
|
|
#define CXL_MBOX_CEL_10_TO_11_VALID (1 << 10)
|
|
#define CXL_MBOX_CONFIG_CHANGE_CONV_RESET (1 << 11)
|
|
#define CXL_MBOX_CONFIG_CHANGE_CXL_RESET (1 << 12)
|
|
|
|
#endif
|