From: Moritz Fischer <mdf@kernel.org>
To: Robin Murphy <robin.murphy@arm.com>
Cc: Moritz Fischer <mdf@kernel.org>,
lorenzo.pieralisi@arm.com, guohanjun@huawei.com,
rjw@rjwysocki.net, linux-kernel@vger.kernel.org,
linux-acpi@vger.kernel.org, moritzf@google.com,
sudeep.holla@arm.com, will@kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2] ACPI/IORT: Do not blindly trust DMA masks from firmware
Date: Fri, 22 Jan 2021 09:50:40 -0800 [thread overview]
Message-ID: <YAsQcLqvi0Lh8PVv@archbook> (raw)
In-Reply-To: <e01e2fd6-7f78-354e-374c-f93a5d1b8fd6@arm.com>
Hi Robin,
On Fri, Jan 22, 2021 at 02:42:05PM +0000, Robin Murphy wrote:
> On 2021-01-22 01:24, Moritz Fischer wrote:
> > Address issue observed on real world system with suboptimal IORT table
> > where DMA masks of PCI devices would get set to 0 as result.
> >
> > iort_dma_setup() would query the root complex'/named component IORT
> > entry for a DMA mask, and use that over the one the device has been
> > configured with earlier.
> >
> > Ideally we want to use the minimum mask of what the IORT contains for
> > the root complex and what the device was configured with.
> >
> > Fixes: 5ac65e8c8941 ("ACPI/IORT: Support address size limit for root complexes")
> > Signed-off-by: Moritz Fischer <mdf@kernel.org>
> > ---
> >
> > Changes from v1:
> > - Changed warning to FW_BUG
> > - Warn for both Named Component or Root Complex
> > - Replaced min_not_zero() with min()
> >
> > ---
> > drivers/acpi/arm64/iort.c | 14 ++++++++++++--
> > 1 file changed, 12 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c
> > index d4eac6d7e9fb..2494138a6905 100644
> > --- a/drivers/acpi/arm64/iort.c
> > +++ b/drivers/acpi/arm64/iort.c
> > @@ -1107,6 +1107,11 @@ static int nc_dma_get_range(struct device *dev, u64 *size)
> > ncomp = (struct acpi_iort_named_component *)node->node_data;
> > + if (!ncomp->memory_address_limit) {
> > + pr_warn(FW_BUG "Named component missing memory address limit\n");
> > + return -EINVAL;
> > + }
> > +
> > *size = ncomp->memory_address_limit >= 64 ? U64_MAX :
> > 1ULL<<ncomp->memory_address_limit;
> > @@ -1126,6 +1131,11 @@ static int rc_dma_get_range(struct device *dev, u64 *size)
> > rc = (struct acpi_iort_root_complex *)node->node_data;
> > + if (!rc->memory_address_limit) {
> > + pr_warn(FW_BUG "Root complex missing memory address limit\n");
> > + return -EINVAL;
> > + }
> > +
> > *size = rc->memory_address_limit >= 64 ? U64_MAX :
> > 1ULL<<rc->memory_address_limit;
> > @@ -1173,8 +1183,8 @@ void iort_dma_setup(struct device *dev, u64 *dma_addr, u64 *dma_size)
> > end = dmaaddr + size - 1;
> > mask = DMA_BIT_MASK(ilog2(end) + 1);
> > dev->bus_dma_limit = end;
> > - dev->coherent_dma_mask = mask;
> > - *dev->dma_mask = mask;
> > + dev->coherent_dma_mask = min(dev->coherent_dma_mask, mask);
> > + *dev->dma_mask = min(*dev->dma_mask, mask);
>
> Oops, I got so distracted by the "not_zero" aspect in v1 that I ended up
> thinking purely about smaller-than-default masks, but of course this *does*
> matter the other way round. And it is what we've always done on the DT side,
> so at least it makes us consistent.
>
> FWIW I've already started writing up a patch to kill off this bit entirely,
> but either way we still can't meaningfully interpret a supposed DMA limit of
> 0 bits in a table describing DMA-capable devices, so for this patch as a
> fix,
>
> Reviewed-by: Robin Murphy <robin.murphy@arm.com>
I think there's another issue the comparisons for revision should be
against < 2 not < 1.
From what I could find DEN0049D (IORT) spec introduced the fields
(curiously the C doc seems to be missing).
DEN0049B specifies revision as '0', DEN0049C (missing?), DEN0049D
specifies new fields for memory_size_limit and both Named Component and
Root Complex nodes set revision to 2.
so I think it should be:
if (!node || node->revision < 2)
return -ENODEV;
Only if we go past this and there is no address limit is it really a
firmware bug.
>
> Thanks,
> Robin.
>
> > }
> > *dma_addr = dmaaddr;
> >
- Moritz
WARNING: multiple messages have this Message-ID (diff)
From: Moritz Fischer <mdf@kernel.org>
To: Robin Murphy <robin.murphy@arm.com>
Cc: lorenzo.pieralisi@arm.com, sudeep.holla@arm.com,
rjw@rjwysocki.net, linux-kernel@vger.kernel.org,
linux-acpi@vger.kernel.org, Moritz Fischer <mdf@kernel.org>,
moritzf@google.com, guohanjun@huawei.com, will@kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2] ACPI/IORT: Do not blindly trust DMA masks from firmware
Date: Fri, 22 Jan 2021 09:50:40 -0800 [thread overview]
Message-ID: <YAsQcLqvi0Lh8PVv@archbook> (raw)
In-Reply-To: <e01e2fd6-7f78-354e-374c-f93a5d1b8fd6@arm.com>
Hi Robin,
On Fri, Jan 22, 2021 at 02:42:05PM +0000, Robin Murphy wrote:
> On 2021-01-22 01:24, Moritz Fischer wrote:
> > Address issue observed on real world system with suboptimal IORT table
> > where DMA masks of PCI devices would get set to 0 as result.
> >
> > iort_dma_setup() would query the root complex'/named component IORT
> > entry for a DMA mask, and use that over the one the device has been
> > configured with earlier.
> >
> > Ideally we want to use the minimum mask of what the IORT contains for
> > the root complex and what the device was configured with.
> >
> > Fixes: 5ac65e8c8941 ("ACPI/IORT: Support address size limit for root complexes")
> > Signed-off-by: Moritz Fischer <mdf@kernel.org>
> > ---
> >
> > Changes from v1:
> > - Changed warning to FW_BUG
> > - Warn for both Named Component or Root Complex
> > - Replaced min_not_zero() with min()
> >
> > ---
> > drivers/acpi/arm64/iort.c | 14 ++++++++++++--
> > 1 file changed, 12 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c
> > index d4eac6d7e9fb..2494138a6905 100644
> > --- a/drivers/acpi/arm64/iort.c
> > +++ b/drivers/acpi/arm64/iort.c
> > @@ -1107,6 +1107,11 @@ static int nc_dma_get_range(struct device *dev, u64 *size)
> > ncomp = (struct acpi_iort_named_component *)node->node_data;
> > + if (!ncomp->memory_address_limit) {
> > + pr_warn(FW_BUG "Named component missing memory address limit\n");
> > + return -EINVAL;
> > + }
> > +
> > *size = ncomp->memory_address_limit >= 64 ? U64_MAX :
> > 1ULL<<ncomp->memory_address_limit;
> > @@ -1126,6 +1131,11 @@ static int rc_dma_get_range(struct device *dev, u64 *size)
> > rc = (struct acpi_iort_root_complex *)node->node_data;
> > + if (!rc->memory_address_limit) {
> > + pr_warn(FW_BUG "Root complex missing memory address limit\n");
> > + return -EINVAL;
> > + }
> > +
> > *size = rc->memory_address_limit >= 64 ? U64_MAX :
> > 1ULL<<rc->memory_address_limit;
> > @@ -1173,8 +1183,8 @@ void iort_dma_setup(struct device *dev, u64 *dma_addr, u64 *dma_size)
> > end = dmaaddr + size - 1;
> > mask = DMA_BIT_MASK(ilog2(end) + 1);
> > dev->bus_dma_limit = end;
> > - dev->coherent_dma_mask = mask;
> > - *dev->dma_mask = mask;
> > + dev->coherent_dma_mask = min(dev->coherent_dma_mask, mask);
> > + *dev->dma_mask = min(*dev->dma_mask, mask);
>
> Oops, I got so distracted by the "not_zero" aspect in v1 that I ended up
> thinking purely about smaller-than-default masks, but of course this *does*
> matter the other way round. And it is what we've always done on the DT side,
> so at least it makes us consistent.
>
> FWIW I've already started writing up a patch to kill off this bit entirely,
> but either way we still can't meaningfully interpret a supposed DMA limit of
> 0 bits in a table describing DMA-capable devices, so for this patch as a
> fix,
>
> Reviewed-by: Robin Murphy <robin.murphy@arm.com>
I think there's another issue the comparisons for revision should be
against < 2 not < 1.
From what I could find DEN0049D (IORT) spec introduced the fields
(curiously the C doc seems to be missing).
DEN0049B specifies revision as '0', DEN0049C (missing?), DEN0049D
specifies new fields for memory_size_limit and both Named Component and
Root Complex nodes set revision to 2.
so I think it should be:
if (!node || node->revision < 2)
return -ENODEV;
Only if we go past this and there is no address limit is it really a
firmware bug.
>
> Thanks,
> Robin.
>
> > }
> > *dma_addr = dmaaddr;
> >
- Moritz
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2021-01-22 17:59 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-22 1:24 [PATCH v2] ACPI/IORT: Do not blindly trust DMA masks from firmware Moritz Fischer
2021-01-22 1:24 ` Moritz Fischer
2021-01-22 14:42 ` Robin Murphy
2021-01-22 14:42 ` Robin Murphy
2021-01-22 17:50 ` Moritz Fischer [this message]
2021-01-22 17:50 ` Moritz Fischer
2021-01-22 19:17 ` Robin Murphy
2021-01-22 19:17 ` Robin Murphy
2021-01-22 19:43 ` Moritz Fischer
2021-01-22 19:43 ` Moritz Fischer
2021-01-27 11:19 ` Lorenzo Pieralisi
2021-01-27 11:19 ` Lorenzo Pieralisi
2021-01-27 13:09 ` Catalin Marinas
2021-01-27 13:09 ` Catalin Marinas
2021-01-28 17:11 ` Moritz Fischer
2021-01-28 17:11 ` Moritz Fischer
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=YAsQcLqvi0Lh8PVv@archbook \
--to=mdf@kernel.org \
--cc=guohanjun@huawei.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=moritzf@google.com \
--cc=rjw@rjwysocki.net \
--cc=robin.murphy@arm.com \
--cc=sudeep.holla@arm.com \
--cc=will@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.