From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] iommu/arm-smmu: Fix 16bit ASID configuration
Date: Mon, 3 Apr 2017 18:49:11 +0100 [thread overview]
Message-ID: <20170403174911.GJ5706@arm.com> (raw)
In-Reply-To: <CA+sq2CeUKZfr_DgHQ9kmW7-UwRKbC2=sfLfq=YwSB3TwZQwUBw@mail.gmail.com>
On Mon, Apr 03, 2017 at 11:16:33PM +0530, Sunil Kovvuri wrote:
> On Tue, Mar 28, 2017 at 4:11 PM, <sunil.kovvuri@gmail.com> wrote:
> > From: Sunil Goutham <sgoutham@cavium.com>
> >
> > 16bit ASID should be enabled before initializing TTBR0/1,
> > otherwise only LSB 8bit ASID will be considered. Hence
> > moving configuration of TTBCR register ahead of TTBR0/1
> > while initializing context bank.
> >
> > Signed-off-by: Sunil Goutham <sgoutham@cavium.com>
> > ---
> > drivers/iommu/arm-smmu.c | 41 ++++++++++++++++++++++-------------------
> > 1 file changed, 22 insertions(+), 19 deletions(-)
> >
> > diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
> > index 9b33700..2845d73 100644
> > --- a/drivers/iommu/arm-smmu.c
> > +++ b/drivers/iommu/arm-smmu.c
> > @@ -758,6 +758,28 @@ static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain,
> > }
> > writel_relaxed(reg, gr1_base + ARM_SMMU_GR1_CBAR(cfg->cbndx));
> >
> > + /* TTBCR */
> > + if (stage1) {
> > + if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH32_S) {
> > + reg = pgtbl_cfg->arm_v7s_cfg.tcr;
> > + reg2 = 0;
> > + } else {
> > + reg = pgtbl_cfg->arm_lpae_s1_cfg.tcr;
> > + reg2 = pgtbl_cfg->arm_lpae_s1_cfg.tcr >> 32;
> > + reg2 |= TTBCR2_SEP_UPSTREAM;
> > + /* 16bit ASID should be enabled before write to TTBR,
> > + * otherwise only LSB 8bit will be considered.
> > + */
> > + if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH64)
> > + reg2 |= TTBCR2_AS;
> > + }
> > + if (smmu->version > ARM_SMMU_V1)
> > + writel_relaxed(reg2, cb_base + ARM_SMMU_CB_TTBCR2);
> > + } else {
> > + reg = pgtbl_cfg->arm_lpae_s2_cfg.vtcr;
> > + }
> > + writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR);
> > +
> > /* TTBRs */
> > if (stage1) {
> > u16 asid = ARM_SMMU_CB_ASID(smmu, cfg);
> > @@ -781,25 +803,6 @@ static void arm_smmu_init_context_bank(struct arm_smmu_domain *smmu_domain,
> > writeq_relaxed(reg64, cb_base + ARM_SMMU_CB_TTBR0);
> > }
> >
> > - /* TTBCR */
> > - if (stage1) {
> > - if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH32_S) {
> > - reg = pgtbl_cfg->arm_v7s_cfg.tcr;
> > - reg2 = 0;
> > - } else {
> > - reg = pgtbl_cfg->arm_lpae_s1_cfg.tcr;
> > - reg2 = pgtbl_cfg->arm_lpae_s1_cfg.tcr >> 32;
> > - reg2 |= TTBCR2_SEP_UPSTREAM;
> > - if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH64)
> > - reg2 |= TTBCR2_AS;
> > - }
> > - if (smmu->version > ARM_SMMU_V1)
> > - writel_relaxed(reg2, cb_base + ARM_SMMU_CB_TTBCR2);
> > - } else {
> > - reg = pgtbl_cfg->arm_lpae_s2_cfg.vtcr;
> > - }
> > - writel_relaxed(reg, cb_base + ARM_SMMU_CB_TTBCR);
> > -
> > /* MAIRs (stage-1 only) */
> > if (stage1) {
> > if (cfg->fmt == ARM_SMMU_CTX_FMT_AARCH32_S) {
> > --
> > 2.7.4
> >
>
> Any comments or feedback on this patch ?
I've picked it up.
Will
prev parent reply other threads:[~2017-04-03 17:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-28 10:41 [PATCH] iommu/arm-smmu: Fix 16bit ASID configuration sunil.kovvuri at gmail.com
2017-04-03 17:46 ` Sunil Kovvuri
2017-04-03 17:49 ` Will Deacon [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170403174911.GJ5706@arm.com \
--to=will.deacon@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).