From patchwork Fri Apr 26 01:40:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shaokun Zhang X-Patchwork-Id: 10917955 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id B5294933 for ; Fri, 26 Apr 2019 01:48:09 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9FAF128D27 for ; Fri, 26 Apr 2019 01:48:09 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 933E428D85; Fri, 26 Apr 2019 01:48:09 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 225E328D7F for ; Fri, 26 Apr 2019 01:48:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=E+0nJOvTZUsIIFOpjeIpfF90OEJxEx4umLjlDKPSQrE=; b=TWpp8vYXY8mTbO nAA/J/QRe+IU30n212psHJxx5aKKCkHon4HEPLODmEtd0YNJC2El3nV43yrxJHnOqvf/gitBauu4I K9ziH1JLQx/cpsgmqsA34/b8QcPQxMsEqbKouXMHCsn5r3UQxvH/WqC5Sa969pffz64vF1D6tNdHP +jFW0JYY0o/kuWSiSgNo9tlCwOTvvLAqcruvQOYemmyr4/l3eZB5jTtxH2rM7xZ/oRr2uNpbx1ol4 9LQtTlMzxRVcGYsJqYUH9VU3AYDOnGLUFDGCf3zLR4ImCxCC1G88Hn/EgF3Z++4/xmNwVyB9mneKp arFL+lY7pnVVZC7mKeJg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1hJpy8-0000tt-Ij; Fri, 26 Apr 2019 01:48:04 +0000 Received: from szxga06-in.huawei.com ([45.249.212.32] helo=huawei.com) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1hJpy4-0000t6-Sk for linux-arm-kernel@lists.infradead.org; Fri, 26 Apr 2019 01:48:02 +0000 Received: from DGGEMS414-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id D78F97D7DB270DEFD412; Fri, 26 Apr 2019 09:42:00 +0800 (CST) Received: from localhost.localdomain (10.67.212.132) by DGGEMS414-HUB.china.huawei.com (10.3.19.214) with Microsoft SMTP Server id 14.3.439.0; Fri, 26 Apr 2019 09:41:53 +0800 From: Shaokun Zhang To: Subject: [PATCH 1/2] ACPI/PPTT: Add variable to record max cache line size Date: Fri, 26 Apr 2019 09:40:20 +0800 Message-ID: <1556242821-5080-1-git-send-email-zhangshaokun@hisilicon.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.67.212.132] X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190425_184801_099508_C256F37F X-CRM114-Status: GOOD ( 11.86 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Catalin Marinas , john.garry@huawei.com, "Rafael J. Wysocki" , Jeremy Linton , Shaokun Zhang , qiuzhenfa@hisilicon.com, guohanjun@huawei.com, Len Brown Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP Add coherency_max_size variable to record the maximum cache line size detected from PPTT information for different cache levels. We will synchronize it with CTR_EL0.CWG reporting in cache_line_size() for arm64. Cc: "Rafael J. Wysocki" Cc: Len Brown Cc: Jeremy Linton Cc: Catalin Marinas To: linux-acpi@vger.kernel.org Signed-off-by: Shaokun Zhang --- drivers/acpi/pptt.c | 7 ++++++- include/linux/acpi.h | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/acpi/pptt.c b/drivers/acpi/pptt.c index 065c4fc245d1..3998621e00ce 100644 --- a/drivers/acpi/pptt.c +++ b/drivers/acpi/pptt.c @@ -341,6 +341,8 @@ static struct acpi_pptt_cache *acpi_find_cache_node(struct acpi_table_header *ta return found; } +unsigned int coherency_max_size; + /** * update_cache_properties() - Update cacheinfo for the given processor * @this_leaf: Kernel cache info structure being updated @@ -360,8 +362,11 @@ static void update_cache_properties(struct cacheinfo *this_leaf, this_leaf->fw_token = cpu_node; if (found_cache->flags & ACPI_PPTT_SIZE_PROPERTY_VALID) this_leaf->size = found_cache->size; - if (found_cache->flags & ACPI_PPTT_LINE_SIZE_VALID) + if (found_cache->flags & ACPI_PPTT_LINE_SIZE_VALID) { this_leaf->coherency_line_size = found_cache->line_size; + coherency_max_size = this_leaf->coherency_line_size > coherency_max_size ? + this_leaf->coherency_line_size : coherency_max_size; + } if (found_cache->flags & ACPI_PPTT_NUMBER_OF_SETS_VALID) this_leaf->number_of_sets = found_cache->number_of_sets; if (found_cache->flags & ACPI_PPTT_ASSOCIATIVITY_VALID) diff --git a/include/linux/acpi.h b/include/linux/acpi.h index d5dcebd7aad3..199cde875d5b 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -315,6 +315,7 @@ static inline bool acpi_sci_irq_valid(void) extern int sbf_port; extern unsigned long acpi_realmode_flags; +extern unsigned int coherency_max_size; int acpi_register_gsi (struct device *dev, u32 gsi, int triggering, int polarity); int acpi_gsi_to_irq (u32 gsi, unsigned int *irq);