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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C2A11C77B6F for ; Thu, 13 Apr 2023 09:15:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230097AbjDMJPE (ORCPT ); Thu, 13 Apr 2023 05:15:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38906 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230044AbjDMJPB (ORCPT ); Thu, 13 Apr 2023 05:15:01 -0400 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 5484C6EB7 for ; Thu, 13 Apr 2023 02:15:00 -0700 (PDT) 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 4EF5ED75; Thu, 13 Apr 2023 02:15:44 -0700 (PDT) Received: from pierre123.nice.arm.com (pierre123.nice.arm.com [10.34.100.129]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 30DCF3F6C4; Thu, 13 Apr 2023 02:14:58 -0700 (PDT) From: Pierre Gondois To: linux-kernel@vger.kernel.org Cc: Radu Rendec , Alexandre Ghiti , Conor Dooley , Will Deacon , Pierre Gondois , Sudeep Holla , Greg Kroah-Hartman , "Rafael J. Wysocki" , Palmer Dabbelt , Gavin Shan Subject: [PATCH v3 0/4] cacheinfo: Correctly fallback to using clidr_el1's information Date: Thu, 13 Apr 2023 11:14:30 +0200 Message-Id: <20230413091436.230134-1-pierre.gondois@arm.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org v3: cacheinfo: Check sib_leaf in cache_leaves_are_shared(): - Reformulate commit message - Fix rebase issue and move '&&' condition which was in the last patch to this patch. cacheinfo: Add use_arch[|_cache]_info field/function: - Put the function declaration in one line. arch_topology: Remove early cacheinfo error message: - New patch. v2: cacheinfo: Check sib_leaf in cache_leaves_are_shared() - Reformulate commit message - Add 'Fixes: f16d1becf96f ("cacheinfo: Use cache identifiers [...]' cacheinfo: Check cache properties are present in DT - Use of_property_present() - Add 'Reported-by: Alexandre Ghiti ' cacheinfo: Add use_arch[|_cache]_info field/function: - Make use_arch_cache_info() a static inline function The cache information can be extracted from either a Device Tree (DT), the PPTT ACPI table, or arch registers (clidr_el1 for arm64). When the DT is used but no cache properties are advertised, the current code doesn't correctly fallback to using arch information. Correct this. Also use the assumption that L1 data/instruction caches are private and L2/higher caches are shared when the cache information is coming form clidr_el1. As suggested by Alexandre, this serie should ideally go to 6.3 fixes. Pierre Gondois (4): cacheinfo: Check sib_leaf in cache_leaves_are_shared() cacheinfo: Check cache properties are present in DT arch_topology: Remove early cacheinfo error message cacheinfo: Add use_arch[|_cache]_info field/function drivers/base/arch_topology.c | 4 +-- drivers/base/cacheinfo.c | 48 +++++++++++++++++++++++++++++++++--- include/linux/cacheinfo.h | 10 ++++++++ 3 files changed, 55 insertions(+), 7 deletions(-) -- 2.25.1