x86/virt/tdx: Initialize all TDMRs
authorKai Huang <kai.huang@intel.com>
Fri, 8 Dec 2023 17:07:35 +0000 (09:07 -0800)
committerDave Hansen <dave.hansen@linux.intel.com>
Fri, 8 Dec 2023 17:12:45 +0000 (09:12 -0800)
After the global KeyID has been configured on all packages, initialize
all TDMRs to make all TDX-usable memory regions that are passed to the
TDX module become usable.

This is the last step of initializing the TDX module.

Initializing TDMRs can be time consuming on large memory systems as it
involves initializing all metadata entries for all pages that can be
used by TDX guests.  Initializing different TDMRs can be parallelized.
For now to keep it simple, just initialize all TDMRs one by one.  It can
be enhanced in the future.

Signed-off-by: Kai Huang <kai.huang@intel.com>
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Reviewed-by: Isaku Yamahata <isaku.yamahata@intel.com>
Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Reviewed-by: Yuan Yao <yuan.yao@intel.com>
Reviewed-by: Dave Hansen <dave.hansen@linux.intel.com>
Link: https://lore.kernel.org/all/20231208170740.53979-15-dave.hansen%40intel.com
arch/x86/virt/vmx/tdx/tdx.c
arch/x86/virt/vmx/tdx/tdx.h

index d2e4180b8bd0f6a8fe3c42a633a1d176e37cb207..48fb1b3101c040c1810b08e77a7236dc9b63f88f 100644 (file)
@@ -1034,6 +1034,56 @@ static int config_global_keyid(void)
        return ret;
 }
 
+static int init_tdmr(struct tdmr_info *tdmr)
+{
+       u64 next;
+
+       /*
+        * Initializing a TDMR can be time consuming.  To avoid long
+        * SEAMCALLs, the TDX module may only initialize a part of the
+        * TDMR in each call.
+        */
+       do {
+               struct tdx_module_args args = {
+                       .rcx = tdmr->base,
+               };
+               int ret;
+
+               ret = seamcall_prerr_ret(TDH_SYS_TDMR_INIT, &args);
+               if (ret)
+                       return ret;
+               /*
+                * RDX contains 'next-to-initialize' address if
+                * TDH.SYS.TDMR.INIT did not fully complete and
+                * should be retried.
+                */
+               next = args.rdx;
+               cond_resched();
+               /* Keep making SEAMCALLs until the TDMR is done */
+       } while (next < tdmr->base + tdmr->size);
+
+       return 0;
+}
+
+static int init_tdmrs(struct tdmr_info_list *tdmr_list)
+{
+       int i;
+
+       /*
+        * This operation is costly.  It can be parallelized,
+        * but keep it simple for now.
+        */
+       for (i = 0; i < tdmr_list->nr_consumed_tdmrs; i++) {
+               int ret;
+
+               ret = init_tdmr(tdmr_entry(tdmr_list, i));
+               if (ret)
+                       return ret;
+       }
+
+       return 0;
+}
+
 static int init_tdx_module(void)
 {
        struct tdx_tdmr_sysinfo tdmr_sysinfo;
@@ -1079,15 +1129,8 @@ static int init_tdx_module(void)
        if (ret)
                goto err_reset_pamts;
 
-       /*
-        * TODO:
-        *
-        *  - Configure the global KeyID on all packages.
-        *  - Initialize all TDMRs.
-        *
-        *  Return error before all steps are done.
-        */
-       ret = -EINVAL;
+       /* Initialize TDMRs to complete the TDX module initialization */
+       ret = init_tdmrs(&tdx_tdmr_list);
        if (ret)
                goto err_reset_pamts;
 
index dd35baf756b86c2fd5337332febc39bfe6ca162c..c0610f0bb88ce8c1dbcdb54f04658e84522cabdc 100644 (file)
@@ -18,6 +18,7 @@
 #define TDH_SYS_INIT           33
 #define TDH_SYS_RD             34
 #define TDH_SYS_LP_INIT                35
+#define TDH_SYS_TDMR_INIT      36
 #define TDH_SYS_CONFIG         45
 
 /*