From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C2C09C2BB55 for ; Wed, 15 Apr 2020 10:47:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id ABCC420787 for ; Wed, 15 Apr 2020 10:47:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2896622AbgDOKrS (ORCPT ); Wed, 15 Apr 2020 06:47:18 -0400 Received: from foss.arm.com ([217.140.110.172]:42116 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2896604AbgDOKqM (ORCPT ); Wed, 15 Apr 2020 06:46:12 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 716E81063; Wed, 15 Apr 2020 03:46:11 -0700 (PDT) Received: from [10.37.12.1] (unknown [10.37.12.1]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 6C5C73F68F; Wed, 15 Apr 2020 03:46:09 -0700 (PDT) Subject: Re: [PATCH 7/8] arm64: cpufeature: Relax checks for AArch32 support at EL[0-2] To: will@kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu Cc: linux-kernel@vger.kernel.org, mark.rutland@arm.com, maz@kernel.org, anshuman.khandual@arm.com, catalin.marinas@arm.com, saiprakash.ranjan@codeaurora.org, dianders@chromium.org, kernel-team@android.com References: <20200414213114.2378-1-will@kernel.org> <20200414213114.2378-8-will@kernel.org> From: Suzuki K Poulose Message-ID: <714f124c-7eb7-b750-e98c-63da64ddae75@arm.com> Date: Wed, 15 Apr 2020 11:50:58 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <20200414213114.2378-8-will@kernel.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 04/14/2020 10:31 PM, Will Deacon wrote: > We don't need to be quite as strict about mismatched AArch32 support, > which is good because the friendly hardware folks have been busy > mismatching this to their hearts' content. > > * We don't care about EL2 or EL3 (there are silly comments concerning > the latter, so remove those) > > * EL1 support is gated by the ARM64_HAS_32BIT_EL1 capability and handled > gracefully when a mismatch occurs > > * EL1 support is gated by the ARM64_HAS_32BIT_EL0 capability and handled s/EL1/EL0 > gracefully when a mismatch occurs > > Relax the AArch32 checks to FTR_NONSTRICT. Agreed. We should do something similar for the features exposed by the ELF_HWCAP, of course in a separate series. > > Signed-off-by: Will Deacon Reviewed-by: Suzuki K Poulose