linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: honghui.zhang@mediatek.com (Honghui Zhang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 4/5] PCI: mediatek: Add new generation controller support
Date: Mon, 7 Aug 2017 11:40:31 +0800	[thread overview]
Message-ID: <1502077231.24341.29.camel@mtksdaap41> (raw)
In-Reply-To: <1501913813.12086.17.camel@mtkswgap22>

On Sat, 2017-08-05 at 14:16 +0800, Ryder Lee wrote:
> On Sat, 2017-08-05 at 12:52 +0800, Ryder Lee wrote:
> > Hi Honghui, Bjorn,
> > 
> > On Fri, 2017-08-04 at 08:18 -0500, Bjorn Helgaas wrote:
> > > On Fri, Aug 04, 2017 at 04:39:36PM +0800, Honghui Zhang wrote:
> > > > On Thu, 2017-08-03 at 17:42 -0500, Bjorn Helgaas wrote:
> > > > > > +
> > > > > > +static struct mtk_pcie_port *mtk_pcie_find_port(struct mtk_pcie *pcie,
> > > > > > +						struct pci_bus *bus, int devfn)
> > > > > > +{
> > > > > > +	struct pci_dev *dev;
> > > > > > +	struct pci_bus *pbus;
> > > > > > +	struct mtk_pcie_port *port, *tmp;
> > > > > > +
> > > > > > +	list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
> > > > > > +		if (bus->number == 0 && port->index == PCI_SLOT(devfn)) {
> > > > > > +			return port;
> > > > > > +		} else if (bus->number != 0) {
> > > > > > +			pbus = bus;
> > > > > > +			do {
> > > > > > +				dev = pbus->self;
> > > > > > +				if (port->index == PCI_SLOT(dev->devfn))
> > > > > > +					return port;
> > > > > > +				pbus = dev->bus;
> > > > > > +			} while (dev->bus->number != 0);
> > > > > > +		}
> > > > > > +	}
> > > > > > +
> > > > > > +	return NULL;
> > > > > 
> > > > > You should be able to use sysdata to avoid searching the list.
> > > > > See drivers/pci/host/pci-aardvark.c, for example.
> > > > > 
> > > > 
> > > > I could put the mtk_pcie * in sysdata, but still need to searching the
> > > > list to get the mtk_pcie_port *, how about:
> > > > 
> > > > 	list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
> > > > 		if (port->index == PCI_SLOT(devfn))
> > > > 			return port;
> > > > 	}
> > > 
> > > No.  Other drivers don't need to search the list.  Please take a look
> > > at them and see how they solve this problem.  I don't think your
> > > hardware is fundamentally different in a way that means you need to
> > > search when the others don't.
> > > 
> > 
> > I'm not directly involved in this generation, but I guess the main reason why Honghui need to do that is just because this hardware access configuration space via per-port registers, not just for the guard.  
> > Currently, We had a host bridge with two ports (two subnodes in binding text), thus he tried to tells them apart so that he can get the correct registers.
> > 
> > Some platforms don't need to do that since they just have a single port (no more subnodes), the others might have specific/shared registers to access configuration space. (e.g. Tegra, MTK legacy IP block).
> > Or, he can split them into two independent nodes, but it will break common probing flow by doing so. (I'd prefer to use subnodes.)
> > 
> > Ryder
> > 
> 
> Sorry for the typesetting in previous mail and noise again,
> 
> I've took a look at pci-rcar-gen2.c, this is a similar case I can found
> for Honghui's case. It gathers two ports reg regions into one, and uses
> the "slot id" to calculate the cfg base of each port.
> 
> Perhaps this is a example for those who need to use subnodes and use
> port registers for cfg operation. Not sure whether it's worthwhile doing
> that since we need to changes ports/host structures.
> 
> Ryder.
> 
As Ryder's description, Mediatek's new generation HW blocks has two
separate ports, they have separate control register base address. We
must touch the per-port control register to access the EP's
configuration space. One port's control register is the only way to
access the EP's configuration space(the EP which is connect under this
very port).
Given an EP device, we need to determine which ports it's been
connected, and get the base address for that port. It's a bit like
pci-tegra/pci-mvebu.

Seems list is not forbidden, pci-tegra search the list to identify the
ports[1], mvebu use point array to search the ports[2], they have the
same functionality through different approach. I may propose another
patch to make the code like mvebu[2] if you insist, but I'm prefer the
current list way.

[1]http://elixir.free-electrons.com/linux/v4.13-rc4/source/drivers/pci/host/pci-tegra.c#L456
[2]http://elixir.free-electrons.com/linux/v4.13-rc4/source/drivers/pci/host/pci-mvebu.c#L780

thanks.
> 

  reply	other threads:[~2017-08-07  3:40 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-27  2:58 [PATCH v2 0/5] PCI: MediaTek: Add support for new generation host controller honghui.zhang at mediatek.com
2017-07-27  2:58 ` [PATCH v2 1/5] PCI: mediatek: Add a structure to abstract the controller generations honghui.zhang at mediatek.com
2017-07-27  3:19   ` Honghui Zhang
2017-07-27  3:28     ` Honghui Zhang
2017-08-03 22:15   ` Bjorn Helgaas
2017-07-27  2:58 ` [PATCH v2 2/5] PCI: mediatek: switch to use platform_get_resource_byname() honghui.zhang at mediatek.com
2017-07-27  2:58 ` [PATCH v2 3/5] dt-bindings: PCI: rename and cleanup MediaTek binding text honghui.zhang at mediatek.com
2017-08-03 19:10   ` Rob Herring
2017-08-03 22:17   ` Bjorn Helgaas
2017-07-27  2:58 ` [PATCH v2 4/5] PCI: mediatek: Add new generation controller support honghui.zhang at mediatek.com
2017-08-03 22:42   ` Bjorn Helgaas
2017-08-04  8:39     ` Honghui Zhang
2017-08-04 13:18       ` Bjorn Helgaas
2017-08-05  4:52         ` Ryder Lee
2017-08-05  6:16           ` Ryder Lee
2017-08-07  3:40             ` Honghui Zhang [this message]
2017-08-08 20:16           ` Bjorn Helgaas
2017-08-08 20:19         ` Bjorn Helgaas
2017-08-09  6:49           ` Honghui Zhang
2017-08-09 16:43             ` Paul Burton
2017-07-27  2:58 ` [PATCH v2 5/5] dt-bindings: PCI: add support for new generation controller honghui.zhang at mediatek.com
2017-07-27  3:31   ` Honghui Zhang
2017-07-27  3:38   ` Honghui Zhang
2017-08-03 22:45   ` Bjorn Helgaas

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=1502077231.24341.29.camel@mtksdaap41 \
    --to=honghui.zhang@mediatek.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).