linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Rob Herring <robh+dt@kernel.org>
To: Jiaxun Yang <jiaxun.yang@flygoat.com>
Cc: PCI <linux-pci@vger.kernel.org>,
	Bjorn Helgaas <bhelgaas@google.com>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
	Huacai Chen <chenhc@lemote.com>,
	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
	Andrew Murray <amurray@thegoodpenguin.co.uk>,
	Paul Burton <paulburton@kernel.org>,
	devicetree@vger.kernel.org,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"open list:MIPS" <linux-mips@vger.kernel.org>
Subject: Re: [PATCH v5 1/6] PCI: OF: Don't remap iospace on unsupported platform
Date: Fri, 24 Apr 2020 14:05:23 -0500	[thread overview]
Message-ID: <CAL_JsqLEHZOZXkuW4_9KeUWjzahvP0OMtQUGVU_pASi9Ag=GAQ@mail.gmail.com> (raw)
In-Reply-To: <D5CC0902-F84F-43F1-88E5-C03018B25050@flygoat.com>

On Fri, Apr 24, 2020 at 1:03 PM Jiaxun Yang <jiaxun.yang@flygoat.com> wrote:
>
>
>
> 于 2020年4月25日 GMT+08:00 上午1:47:23, Rob Herring <robh+dt@kernel.org> 写到:
> >On Fri, Apr 24, 2020 at 8:09 AM Jiaxun Yang <jiaxun.yang@flygoat.com> wrote:
> >>
> >> There are some platforms that don't support I/O space remapping
> >> like MIPS. However, our PCI code will try to remap iospace
> >> unconditionally and reject io resources on these platforms.
> >>
> >> So we should remove I/O space remapping check and use a range
> >> check instead on these platforms.
> >>
> >> Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
> >> --
> >> v4: Fix a typo in commit message.
> >> v5: Commit message massage
> >> ---
> >>  drivers/pci/of.c | 9 +++++++++
> >>  1 file changed, 9 insertions(+)
> >>
> >> diff --git a/drivers/pci/of.c b/drivers/pci/of.c
> >> index 81ceeaa6f1d5..36e8761b66c6 100644
> >> --- a/drivers/pci/of.c
> >> +++ b/drivers/pci/of.c
> >> @@ -547,12 +547,21 @@ int pci_parse_request_of_pci_ranges(struct device *dev,
> >>
> >>                 switch (resource_type(res)) {
> >>                 case IORESOURCE_IO:
> >> +#if defined(PCI_IOBASE) && defined(CONFIG_MMU)
> >
> >We already have the same condition in pci_remap_iospace(). All this
> >does is suppress a WARN. If a WARN is not desired, then change it.
> >Perhaps just a single line rather than backtrace would be okay.
> >Whether to WARN or not shouldn't be a decision for firmware code.
> >
> >Though really, if I/O space can never be supported, then it's an error
> >in your DT to describe it.
>
> In MIPS world, we do have inb/oub family of I/O functions
> to support I/O space. But we're not using remap_iospace as it's breaking
> some of our assumptions.

I suspect that's largely because most MIPS drivers pre-date the common
iospace handling. Really MIPS should start using this.

> We have our own inb/outb implementation.

That's orthogonal to mapping the iospace.

> In that case, I think make a range check instead of remapping would
> be more practical.

Not the kernel's job to validate the DT especially if you aren't using
this data anywhere.

Just remove the WARN, make it a single line print, or add
!IS_ENABLED(CONFIG_MIPS) where the warning is.

Rob

  reply	other threads:[~2020-04-24 19:05 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-24 13:08 [PATCH v5 0/6] Loongson PCI Generic Driver Jiaxun Yang
2020-04-24 13:08 ` [PATCH v5 1/6] PCI: OF: Don't remap iospace on unsupported platform Jiaxun Yang
2020-04-24 17:47   ` Rob Herring
2020-04-24 18:03     ` Jiaxun Yang
2020-04-24 19:05       ` Rob Herring [this message]
2020-04-24 13:08 ` [PATCH v5 2/6] PCI: Don't disable decoding when mmio_always_on is set Jiaxun Yang
2020-04-24 13:08 ` [PATCH v5 3/6] PCI: Add Loongson PCI Controller support Jiaxun Yang
2020-04-24 18:22   ` Rob Herring
2020-04-24 13:08 ` [PATCH v5 4/6] dt-bindings: Document Loongson PCI Host Controller Jiaxun Yang
2020-04-24 18:38   ` Rob Herring
2020-04-24 13:08 ` [PATCH v5 5/6] MIPS: DTS: Loongson64: Add PCI Controller Node Jiaxun Yang
2020-04-24 19:10   ` Rob Herring
2020-04-24 13:08 ` [PATCH v5 6/6] MIPS: Loongson64: Switch to generic PCI driver Jiaxun Yang

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='CAL_JsqLEHZOZXkuW4_9KeUWjzahvP0OMtQUGVU_pASi9Ag=GAQ@mail.gmail.com' \
    --to=robh+dt@kernel.org \
    --cc=amurray@thegoodpenguin.co.uk \
    --cc=bhelgaas@google.com \
    --cc=chenhc@lemote.com \
    --cc=devicetree@vger.kernel.org \
    --cc=jiaxun.yang@flygoat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=lorenzo.pieralisi@arm.com \
    --cc=paulburton@kernel.org \
    --cc=tsbogend@alpha.franken.de \
    /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).