@@ -95,6 +95,8 @@ extern phys_addr_t tdg_shared_mask(void);
extern int tdx_hcall_gpa_intent(phys_addr_t gpa, int numpages,
enum tdx_map_type map_type);
+int tdx_mcall_tdreport(u64 data, u64 reportdata);
+
/*
* To support I/O port access in decompressor or early kernel init
* code, since #VE exception handler cannot be used, use paravirt
@@ -22,6 +22,7 @@
/* TDX Module call Leaf IDs */
#define TDINFO 1
#define TDGETVEINFO 3
+#define TDREPORT 4
#define TDACCEPTPAGE 6
/* TDX hypercall Leaf IDs */
@@ -30,6 +31,9 @@
/* TDX Module call error codes */
#define TDX_PAGE_ALREADY_ACCEPTED 0x00000b0a00000000
#define TDCALL_RETURN_CODE_MASK 0xFFFFFFFF00000000
+#define TDCALL_OPERAND_BUSY 0x8000020000000000
+#define TDCALL_INVALID_OPERAND 0x8000000000000000
+#define TDCALL_SUCCESS 0x0
#define TDCALL_RETURN_CODE(a) ((a) & TDCALL_RETURN_CODE_MASK)
#define VE_IS_IO_OUT(exit_qual) (((exit_qual) & 8) ? 0 : 1)
@@ -140,6 +144,35 @@ bool tdg_debug_enabled(void)
return td_info.attributes & BIT(0);
}
+/*
+ * tdx_mcall_tdreport() - Generate TDREPORT_STRUCT using TDCALL.
+ *
+ * @data : Physical address of 1024B aligned data to store
+ * TDREPORT_STRUCT.
+ * @reportdata : Physical address of 64B aligned report data
+ *
+ * return 0 on success or failure error number.
+ */
+int tdx_mcall_tdreport(u64 data, u64 reportdata)
+{
+ u64 ret;
+
+ if (!data || !reportdata || !prot_guest_has(PATTR_GUEST_TDX))
+ return -EINVAL;
+
+ ret = __trace_tdx_module_call(TDREPORT, data, reportdata, 0, 0, NULL);
+
+ if (ret == TDCALL_SUCCESS)
+ return 0;
+ else if (TDCALL_RETURN_CODE(ret) == TDCALL_INVALID_OPERAND)
+ return -EINVAL;
+ else if (TDCALL_RETURN_CODE(ret) == TDCALL_OPERAND_BUSY)
+ return -EBUSY;
+
+ return -EIO;
+}
+EXPORT_SYMBOL_GPL(tdx_mcall_tdreport);
+
static void tdg_get_info(void)
{
u64 ret;