From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarkko Sakkinen Subject: Re: [PATCH v15 05/23] x86/cpu/intel: Detect SGX support and update caps appropriately Date: Mon, 5 Nov 2018 16:11:28 +0200 Message-ID: <20181105141128.GB24038@linux.intel.com> References: <20181102231320.29164-1-jarkko.sakkinen@linux.intel.com> <20181102231320.29164-6-jarkko.sakkinen@linux.intel.com> <20181105140933.GA24038@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20181105140933.GA24038@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org To: Andy Shevchenko Cc: "maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT)" , Platform Driver , linux-sgx@vger.kernel.org, Dave Hansen , sean.j.christopherson@intel.com, nhorman@redhat.com, npmccallum@redhat.com, serge.ayoun@intel.com, shay.katz-zamir@intel.com, haitao.huang@intel.com, mark.shanahan@intel.com, Andy Shevchenko , Thomas Gleixner , Ingo Molnar , Borislav Petkov , "H. Peter Anvin" , Konrad Rzeszutek Wilk , David Woodhouse , davidwang@zhaoxin.com, "Kirill A. Shutemov" , "Levin, Alexander (Sasha Levin)" List-Id: platform-driver-x86.vger.kernel.org On Mon, Nov 05, 2018 at 04:09:33PM +0200, Jarkko Sakkinen wrote: > On Sat, Nov 03, 2018 at 03:05:39PM +0200, Andy Shevchenko wrote: > > > +static void detect_sgx(struct cpuinfo_x86 *c) > > > +{ > > > + bool unsupported = false; > > > + unsigned long long fc; > > > + > > > + rdmsrl(MSR_IA32_FEATURE_CONTROL, fc); > > > + if (!(fc & FEATURE_CONTROL_LOCKED)) { > > > + pr_err_once("sgx: IA32_FEATURE_CONTROL MSR is not locked\n"); > > > + unsupported = true; > > > + } else if (!(fc & FEATURE_CONTROL_SGX_ENABLE)) { > > > + pr_err_once("sgx: not enabled in IA32_FEATURE_CONTROL MSR\n"); > > > + unsupported = true; > > > + } else if (!cpu_has(c, X86_FEATURE_SGX1)) { > > > + pr_err_once("sgx: SGX1 instruction set not supported\n"); > > > + unsupported = true; > > > + } > > > > If you do > > > > } else { > > /* Supported */ > > return; > > } > > Agree. Would this be a more clean flow in the attached patch? Actually I'll paste the whole function for clarity because it is not too long: static void detect_sgx(struct cpuinfo_x86 *c) { unsigned long long fc; rdmsrl(MSR_IA32_FEATURE_CONTROL, fc); if (!(fc & FEATURE_CONTROL_LOCKED)) { pr_err_once("sgx: IA32_FEATURE_CONTROL MSR is not locked\n"); goto out_unsupported; } if (!(fc & FEATURE_CONTROL_SGX_ENABLE)) { pr_err_once("sgx: not enabled in IA32_FEATURE_CONTROL MSR\n"); goto out_unsupported; } if (!cpu_has(c, X86_FEATURE_SGX1)) { pr_err_once("sgx: SGX1 instruction set not supported\n"); goto out_unsupported; } if (!(fc & FEATURE_CONTROL_SGX_LE_WR)) { pr_info_once("sgx: launch control MSRs are not writable\n"); goto out_msrs_rdonly; } return; out_unsupported: setup_clear_cpu_cap(X86_FEATURE_SGX); setup_clear_cpu_cap(X86_FEATURE_SGX1); setup_clear_cpu_cap(X86_FEATURE_SGX2); out_msrs_rdonly: setup_clear_cpu_cap(X86_FEATURE_SGX_LC); } /Jarkko