[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [XEN v6 04/12] xen/arm: smmu: Use writeq_relaxed_non_atomic() for writing to SMMU_CBn_TTBR0


  • To: Michal Orzel <michal.orzel@xxxxxxx>
  • From: Rahul Singh <Rahul.Singh@xxxxxxx>
  • Date: Thu, 4 May 2023 14:31:37 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=arm.com; dmarc=pass action=none header.from=arm.com; dkim=pass header.d=arm.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=TtzQXUYKMj+AdmzNXO2SGo6npQB/QyLYID7bcjuPU6I=; b=KnsemLskmTl6iWxGV2GiSlZkfPNQxqYDHz7nlHVE9TEGULUQ1EM43QxrH+6JGXYeY1MGU+MAcmGr7pNxq/x4HJlMrtV+EuNxL7I9/XtxLkxEVPo8HNcWJP4Ct91kv4OgT/5PRtXjlwhlZdkhx/y4HTccdUg9zwl/hVn3bsPfZnMW4m175b3HSdfT8CJFmjwcOo0D3v65ySymdzH7Lv04/1uvLaq248JTBSDqty/E6N6qmJcPOiiziiaZJeCSym+iFbbuC27er5GApeBdrkSrqGERt/H7Rlsn0Jv1Ztf1FLAjDIKxwX0/iA4kqii7NanknJSriptkrnI+oWStukBTKw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=g8G18LqzIc64k+tDxq/EKlThpU8nnjlVFGJTUfTjr/n5Tb8XCQRCvbADkohE9dzJABDOAqalxCe9ITsWxx6aW6iaq4WoeiTC7c+q9CQAbr9o/wB5Id3FwH62RCFa1UqtM85FK61Wp9mb9X8aa8jZBAtWPFrYDVKQlwZ3cffAISF9m3gYYPZXoPxY+VAt4mZfyIQx/542Ac4CDHC0P9QRH4JUXWbdTtrDGiuFuY0LLFoInNRvAOamOkYnn1bMu09m49LLFOingZozRYbv+2xA5qISWu+oDffNsoYf9czMD20E/xSg/7lVrD5BoLGweCTzU859cWU779zywKmsceoGQA==
  • Authentication-results-original: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=arm.com;
  • Cc: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxx>, Xen developer discussion <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, "Stabellini, Stefano" <stefano.stabellini@xxxxxxx>, Julien Grall <julien@xxxxxxx>, "Volodymyr_Babchuk@xxxxxxxx" <Volodymyr_Babchuk@xxxxxxxx>, Bertrand Marquis <Bertrand.Marquis@xxxxxxx>, "andrew.cooper3@xxxxxxxxxx" <andrew.cooper3@xxxxxxxxxx>, "george.dunlap@xxxxxxxxxx" <george.dunlap@xxxxxxxxxx>, "jbeulich@xxxxxxxx" <jbeulich@xxxxxxxx>, "wl@xxxxxxx" <wl@xxxxxxx>
  • Delivery-date: Thu, 04 May 2023 14:32:00 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Nodisclaimer: true
  • Original-authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=arm.com;
  • Thread-index: AQHZefsV/U5NscHjSECspfoDYyGz6a9JwnmAgABzyIA=
  • Thread-topic: [XEN v6 04/12] xen/arm: smmu: Use writeq_relaxed_non_atomic() for writing to SMMU_CBn_TTBR0

Hi Ayan,

On 4 May 2023, at 8:37 am, Michal Orzel <michal.orzel@xxxxxxx> wrote:



On 28/04/2023 19:55, Ayan Kumar Halder wrote:


Refer ARM IHI 0062D.c ID070116 (SMMU 2.0 spec), 17-360, 17.3.9,
SMMU_CBn_TTBR0 is a 64 bit register. Thus, one can use
writeq_relaxed_non_atomic() to write to it instead of invoking
writel_relaxed() twice for lower half and upper half of the register.

This also helps us as p2maddr is 'paddr_t' (which may be u32 in future).
Thus, one can assign p2maddr to a 64 bit register and do the bit
manipulations on it, to generate the value for SMMU_CBn_TTBR0.

Signed-off-by: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxx>
Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx>
---
Changes from -

v1 - 1. Extracted the patch from "[XEN v1 8/9] xen/arm: Other adaptations required to support 32bit paddr".
Use writeq_relaxed_non_atomic() to write u64 register in a non-atomic
fashion.

v2 - 1. Added R-b.

v3 - 1. No changes.

v4 - 1. Reordered the R-b. No further changes.
(This patch can be committed independent of the series).

v5 - Used 'uint64_t' instead of u64. As the change looked trivial to me, I
retained the R-b.

xen/drivers/passthrough/arm/smmu.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/xen/drivers/passthrough/arm/smmu.c b/xen/drivers/passthrough/arm/smmu.c
index 79281075ba..fb8bef5f69 100644
--- a/xen/drivers/passthrough/arm/smmu.c
+++ b/xen/drivers/passthrough/arm/smmu.c
@@ -499,8 +499,7 @@ enum arm_smmu_s2cr_privcfg {
#define ARM_SMMU_CB_SCTLR              0x0
#define ARM_SMMU_CB_RESUME             0x8
#define ARM_SMMU_CB_TTBCR2             0x10
-#define ARM_SMMU_CB_TTBR0_LO           0x20
-#define ARM_SMMU_CB_TTBR0_HI           0x24
+#define ARM_SMMU_CB_TTBR0              0x20
#define ARM_SMMU_CB_TTBCR              0x30
#define ARM_SMMU_CB_S1_MAIR0           0x38
#define ARM_SMMU_CB_FSR                        0x58
@@ -1083,6 +1082,7 @@ static void arm_smmu_flush_pgtable(struct arm_smmu_device *smmu, void *addr,
static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain)
{
       u32 reg;
+       uint64_t reg64;
       bool stage1;
       struct arm_smmu_cfg *cfg = &smmu_domain->cfg;
       struct arm_smmu_device *smmu = smmu_domain->smmu;
@@ -1177,12 +1177,13 @@ static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain)
       dev_notice(smmu->dev, "d%u: p2maddr 0x%"PRIpaddr"\n",
                  smmu_domain->cfg.domain->domain_id, p2maddr);

-       reg = (p2maddr & ((1ULL << 32) - 1));
-       writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_LO);
-       reg = (p2maddr >> 32);
+       reg64 = p2maddr;
+
       if (stage1)
-               reg |= ARM_SMMU_CB_ASID(cfg) << TTBRn_HI_ASID_SHIFT;
-       writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBR0_HI);
+               reg64 |= (((uint64_t) (ARM_SMMU_CB_ASID(cfg) << TTBRn_HI_ASID_SHIFT))
+                        << 32);
I think << should be aligned to the second '(' above.

Reviewed-by: Michal Orzel <michal.orzel@xxxxxxx>

With the Michal comment fixed.
Reviewed-by: Rahul Singh <rahul.singh@xxxxxxx>

Regards,
Rahul


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.