From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752615AbeA3Nv1 (ORCPT ); Tue, 30 Jan 2018 08:51:27 -0500 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70]:54046 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751914AbeA3Nv0 (ORCPT ); Tue, 30 Jan 2018 08:51:26 -0500 Subject: Re: [PATCH v2 13/16] firmware/psci: Expose SMCCC version through psci_ops To: Robin Murphy , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu Cc: Catalin Marinas , Will Deacon , Peter Maydell , Christoffer Dall , Lorenzo Pieralisi , Mark Rutland , Ard Biesheuvel , Jon Masters References: <20180129174559.1866-1-marc.zyngier@arm.com> <20180129174559.1866-14-marc.zyngier@arm.com> From: Marc Zyngier Organization: ARM Ltd Message-ID: <6bb72d9d-ac47-70c1-19a1-25d2bd477018@arm.com> Date: Tue, 30 Jan 2018 13:51:22 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 30/01/18 12:55, Robin Murphy wrote: > On 29/01/18 17:45, Marc Zyngier wrote: >> Since PSCI 1.0 allows the SMCCC version to be (indirectly) probed, >> let's do that at boot time, and expose the version of the calling >> convention as part of the psci_ops structure. >> >> Signed-off-by: Marc Zyngier >> --- >> drivers/firmware/psci.c | 21 +++++++++++++++++++++ >> include/linux/psci.h | 6 ++++++ >> 2 files changed, 27 insertions(+) >> >> diff --git a/drivers/firmware/psci.c b/drivers/firmware/psci.c >> index e9493da2b111..dd035aaa1c33 100644 >> --- a/drivers/firmware/psci.c >> +++ b/drivers/firmware/psci.c >> @@ -511,6 +511,26 @@ static void __init psci_init_migrate(void) >> pr_info("Trusted OS resident on physical CPU 0x%lx\n", cpuid); >> } >> >> +static void __init psci_init_smccc(u32 ver) >> +{ >> + int feature = PSCI_RET_NOT_SUPPORTED; >> + >> + if (PSCI_VERSION_MAJOR(ver) >= 1) >> + feature = psci_features(ARM_SMCCC_VERSION_FUNC_ID); >> + >> + if (feature == PSCI_RET_NOT_SUPPORTED) { >> + psci_ops.variant = SMCCC_VARIANT_1_0; > > Presumably at some point in the future we might want to update PSCI > itself to use 'fast' calls if available, at which point this > initialisation is a bit backwards given that you've already made a call > using *some* convention. Even I think relying on the enum value working > out OK is a bit subtle, so perhaps it's best to default-initialise > psci_ops.variant to 1.0 (either statically, or dynamically before the > first call), then only update it to 1.1 if and when we discover that. Indeed. Lorenzo already suggested something along those lines, and I now (statically) default to 1.0. Thanks, M. -- Jazz is not dead. It just smells funny...