From: Honghui Zhang <honghui.zhang@mediatek.com>
To: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: youlin.pei@mediatek.com, devicetree <devicetree@vger.kernel.org>,
hongkun.cao@mediatek.com,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
Marc Zyngier <marc.zyngier@arm.com>,
linux-pci@vger.kernel.org, sean.wang@mediatek.com,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
YT Shen <yt.shen@mediatek.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
ryder.lee@mediatek.com,
"moderated list:ARM/Mediatek SoC support"
<linux-mediatek@lists.infradead.org>,
yong.wu@mediatek.com, Bjorn Helgaas <bhelgaas@google.com>,
yingjoe.chen@mediatek.com, Eddie Huang <eddie.huang@mediatek.com>,
linux-arm Mailing List <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 1/4] PCI: mediatek: fixup mtk_pcie_find_port logical
Date: Thu, 28 Jun 2018 09:12:07 +0800 [thread overview]
Message-ID: <1530148327.28284.1.camel@mhfsdcap03> (raw)
In-Reply-To: <CAHp75Ve2N_Bt8FvX8xCx3JtQ+ozZE=isfsKp9swY+86Cg-78XQ@mail.gmail.com>
On Wed, 2018-06-27 at 19:35 +0300, Andy Shevchenko wrote:
> On Wed, Jun 27, 2018 at 12:21 PM, <honghui.zhang@mediatek.com> wrote:
> > From: Honghui Zhang <honghui.zhang@mediatek.com>
> >
> > Mediatek's host controller have two slots, each have it's own control
> > registers. The host driver need to identify which slot was connected
> > in order to access the device's configuration space. There's problem
> > for current host driver to find out which slot was connected to for
> > a given EP device.
> >
> > Assuming each slot have connect with one EP device as below:
> >
> > host bridge
> > bus 0 --> __________|_______
> > | |
> > | |
> > slot 0 slot 1
> > bus 1 -->| bus 2 --> |
> > | |
> > EP 0 EP 1
> >
> > While PCI emulation, system software will scan all the PCI device
> > starting from devfn 0. So it will get the proper port for slot0 and
> > slot1 device when using PCI_SLOT(devfn) for match. But it will get
> > the wrong slot for EP1: The devfn will be start from 0 when scanning
> > EP1 behind slot1, it will get port0 since the PCI_SLOT(EP1) is match
> > for port0's slot value. So the host driver should not using EP's devfn
> > but the slot's devfn(the slot which EP was connected to) for match.
> >
> > This patch fix the mtk_pcie_find_port's logical by using the slot's
> > devfn for match.
>
>
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + if (bus->number == 0 && port->slot == PCI_SLOT(devfn)) {
> > return port;
> > + } else if (bus->number != 0) {
>
> You can do it like (no need 'else')
>
> if (...)
> return ...;
> if (bus->number) {
> ...
> }
>
> > + pbus = bus;
> > + do {
> > + dev = pbus->self;
> > + if (port->slot == PCI_SLOT(dev->devfn))
> > + return port;
> > +
> > + pbus = dev->bus;
> > + } while (dev->bus->number != 0);
>
> This can be rewritten like
>
> pbus = bus;
> while (pbus->number) {
> dev = ...;
> ...
> pbus = dev->bus;
> }
>
> and no need for if (bus->number) anymore.
>
Hi, Andy, thanks very much for your advise, I will change it in the next
version.
thanks.
> > + }
> > + }
> >
> > return NULL;
> > }
> > --
> > 2.6.4
> >
>
>
>
_______________________________________________
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:[~2018-06-28 1:12 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-27 9:21 [PATCH 0/4] PCI: mediatek: fixup find_port, enable_msi and add pm, module support honghui.zhang
2018-06-27 9:21 ` [PATCH 1/4] PCI: mediatek: fixup mtk_pcie_find_port logical honghui.zhang
2018-06-27 16:35 ` Andy Shevchenko
2018-06-28 1:12 ` Honghui Zhang [this message]
2018-06-28 13:07 ` Bjorn Helgaas
2018-06-29 7:51 ` Honghui Zhang
2018-06-27 9:21 ` [PATCH 2/4] PCI: mediatek: enable msi after clock enabled honghui.zhang
2018-06-27 9:21 ` [PATCH 3/4] PCI: mediatek: Add system pm support for MT2712 and MT7622 honghui.zhang
2018-06-27 16:45 ` Andy Shevchenko
2018-06-28 1:44 ` Honghui Zhang
2018-06-27 9:21 ` [PATCH 4/4] PCI: mediatek: Add loadable kernel module support honghui.zhang
2018-06-27 16:39 ` Andy Shevchenko
2018-06-28 1:17 ` Honghui Zhang
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=1530148327.28284.1.camel@mhfsdcap03 \
--to=honghui.zhang@mediatek.com \
--cc=andy.shevchenko@gmail.com \
--cc=bhelgaas@google.com \
--cc=devicetree@vger.kernel.org \
--cc=eddie.huang@mediatek.com \
--cc=hongkun.cao@mediatek.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=marc.zyngier@arm.com \
--cc=matthias.bgg@gmail.com \
--cc=ryder.lee@mediatek.com \
--cc=sean.wang@mediatek.com \
--cc=yingjoe.chen@mediatek.com \
--cc=yong.wu@mediatek.com \
--cc=youlin.pei@mediatek.com \
--cc=yt.shen@mediatek.com \
/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).