@@ -28,6 +28,7 @@
/* TDX hypercall Leaf IDs */
#define TDVMCALL_MAP_GPA 0x10001
#define TDVMCALL_GET_QUOTE 0x10002
+#define TDVMCALL_SETUP_NOTIFY_INTR 0x10004
/* TDX Module call error codes */
#define TDX_PAGE_ALREADY_ACCEPTED 0x00000b0a00000000
@@ -207,6 +208,32 @@ int tdx_hcall_get_quote(u64 data)
}
EXPORT_SYMBOL_GPL(tdx_hcall_get_quote);
+/*
+ * tdx_hcall_set_notify_intr() - Setup Event Notify Interrupt Vector.
+ *
+ * @vector : Vector address to be used for notification.
+ *
+ * return 0 on success or failure error number.
+ */
+int tdx_hcall_set_notify_intr(u8 vector)
+{
+ u64 ret;
+
+ /* Minimum vector value allowed is 32 */
+ if (vector < 32)
+ return -EINVAL;
+
+ ret = _trace_tdx_hypercall(TDVMCALL_SETUP_NOTIFY_INTR, vector, 0, 0, 0,
+ NULL);
+
+ if (ret == TDVMCALL_SUCCESS)
+ return 0;
+ else if (ret == TDCALL_INVALID_OPERAND)
+ return -EINVAL;
+
+ return -EIO;
+}
+
static void tdg_get_info(void)
{
u64 ret;