From patchwork Fri Aug 4 09:31:20 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: zhurui X-Patchwork-Id: 13341575 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 4A131C00528 for ; Fri, 4 Aug 2023 09:32:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date: Message-ID:References:CC:To:From:Subject:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Owner; bh=JMu5oaVMMAPM15a7aM9kCAR15I/3hpYS/Aibm0sIzlg=; b=dUSsEl6aMocfPEFopY/1V72vk/ HD01u+PwU190xZ8uf0Xwh/JT9mMWwzafHyRI41mUrhYOQ/Dd9eczYahr46n9sczsPMuekPnTg/Ohq Pgviv5XQJwUFe8G3KExpt9sfZP7NvslxcJDCEnMHUqgzWwNZxlSHqRERm4Qw6nuMtgSkHrMA1tYzP oPov8PvdyYEJY2ddAyjeIAZiodaQ/AM5uSBGzhk8/TF8qF95Go4uTsclooVuKiANEVRa2bUIYuSQ4 ktqKj2T5xHhOJYMsgRFuBKic2/1kn5Lzz9HlpfidyRtE8G2bfP+1NGS6eW5c0aFlnCnoHgOv5eIDo s68v1wZA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qRr9h-00C1Ib-2O; Fri, 04 Aug 2023 09:31:33 +0000 Received: from szxga01-in.huawei.com ([45.249.212.187]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1qRr9e-00C1HQ-1Q for linux-arm-kernel@lists.infradead.org; Fri, 04 Aug 2023 09:31:32 +0000 Received: from canpemm500006.china.huawei.com (unknown [172.30.72.53]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4RHL3d3LknztRs2; Fri, 4 Aug 2023 17:27:57 +0800 (CST) Received: from [10.67.145.224] (10.67.145.224) by canpemm500006.china.huawei.com (7.192.105.130) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.27; Fri, 4 Aug 2023 17:31:21 +0800 Subject: [PATCH v2 1/1] iommu/arm-smmu-v3: Fix error case of range command From: zhurui To: Will Deacon CC: , , , Robin Murphy , Joerg Roedel , Lu Baolu , Jason Gunthorpe , Yicong Yang , Tomas Krcka , Jean-Philippe Brucker , Nicolin Chen References: <1690784482-30028-1-git-send-email-wangwudi@hisilicon.com> <20230801085504.GA26130@willie-the-truck> <27c895b8-1fb0-be88-8bc3-878d754684c8@huawei.com> Message-ID: Date: Fri, 4 Aug 2023 17:31:20 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.6.0 MIME-Version: 1.0 In-Reply-To: <27c895b8-1fb0-be88-8bc3-878d754684c8@huawei.com> X-Originating-IP: [10.67.145.224] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To canpemm500006.china.huawei.com (7.192.105.130) X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230804_023130_828140_0E1B538D X-CRM114-Status: GOOD ( 14.91 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org When tg != 0 but ttl, scale, num all 0 in a range tlbi command, it is reserved and will cause the CERROR_ILL error. This case means that the size to be invalidated is only one page size, and the range invalidation is meaningless here. So we set tg to 0 in this case to do an non-range invalidation instead. Cc: Will Deacon Cc: Robin Murphy Cc: Joerg Roedel Cc: Lu Baolu Cc: Jason Gunthorpe Cc: Yicong Yang Cc: Tomas Krcka Cc: Jean-Philippe Brucker Cc: Nicolin Chen Cc: Rui Zhu Signed-off-by: Rui Zhu Reported-by: Rui Zhu Signed-off-by: Robin Murphy --- ChangeLog: v1-->v2: 1. Change from "Revert" to modify the problematic case drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) -- 1.8.3.1 diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c index 9b0dc3505601..5e56c7e85819 100644 --- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c +++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c @@ -1895,9 +1895,6 @@ static void __arm_smmu_tlb_inv_range(struct arm_smmu_cmdq_ent *cmd, /* Get the leaf page size */ tg = __ffs(smmu_domain->domain.pgsize_bitmap); - /* Convert page size of 12,14,16 (log2) to 1,2,3 */ - cmd->tlbi.tg = (tg - 10) / 2; - /* * Determine what level the granule is at. For non-leaf, io-pgtable * assumes .tlb_flush_walk can invalidate multiple levels at once, @@ -1930,6 +1927,12 @@ static void __arm_smmu_tlb_inv_range(struct arm_smmu_cmdq_ent *cmd, num = (num_pages >> scale) & CMDQ_TLBI_RANGE_NUM_MAX; cmd->tlbi.num = num - 1; + /* Prevent error caused by one page tlbi with leaf 0 */ + if (scale == 0 && num == 1 && cmd->tlbi.leaf == 0) + cmd->tlbi.tg = 0; + else /* Convert page size of 12,14,16 (log2) to 1,2,3 */ + cmd->tlbi.tg = (tg - 10) / 2; + /* range is num * 2^scale * pgsize */ inv_range = num << (scale + tg);