From: York Sun <york.sun@nxp.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] pcie/layerscape: fix bug in bus number computation when setting msi-map
Date: Fri, 3 Jun 2016 09:31:50 -0700 [thread overview]
Message-ID: <5751B0F6.4050107@nxp.com> (raw)
In-Reply-To: <20e21c72-6d37-5715-6d86-153ddb1a43cc@nxp.com>
On 06/03/2016 04:19 AM, Bogdan Purcareata wrote:
> Ping?
If you checked patchwork, you would see this patch is marked as "under review".
It is in my test queue and will be merged along with other patches.
York
>
> Bogdan P.
>
> On 17.05.2016 10:18, Bogdan Purcareata wrote:
>> When multiple PCI cards are present in an ls2080a board, the second
>> card does not get its msi-map set up properly due to a bug in computing
>> the bus number.
>>
>> The bus number returned by PCI_BDF() is not the actual PCI bus
>> number, but instead represents a global u-boot PCI bus number. A given
>> bus number is relative to hose->first_busno, so that has to be subtracted
>> from the PCI device id.
>>
>> Signed-off-by: Bogdan Purcareata <bogdan.purcareata@nxp.com>
>> Acked-by: Stuart Yoder <stuart.yoder@nxp.com>
>> ---
>> drivers/pci/pcie_layerscape.c | 9 ++++++---
>> 1 file changed, 6 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/pci/pcie_layerscape.c b/drivers/pci/pcie_layerscape.c
>> index 0ba960e..2e6b986 100644
>> --- a/drivers/pci/pcie_layerscape.c
>> +++ b/drivers/pci/pcie_layerscape.c
>> @@ -569,7 +569,7 @@ static void fdt_fixup_pcie(void *blob)
>> unsigned char header_type;
>> int index;
>> u32 streamid;
>> - pci_dev_t dev;
>> + pci_dev_t dev, bdf;
>> int bus;
>> unsigned short id;
>> struct pci_controller *hose;
>> @@ -611,12 +611,15 @@ static void fdt_fixup_pcie(void *blob)
>> continue;
>> }
>>
>> + /* the DT fixup must be relative to the hose first_busno */
>> + bdf = dev - PCI_BDF(hose->first_busno, 0, 0);
>> +
>> /* map PCI b.d.f to streamID in LUT */
>> - ls_pcie_lut_set_mapping(pcie, index, dev >> 8,
>> + ls_pcie_lut_set_mapping(pcie, index, bdf >> 8,
>> streamid);
>>
>> /* update msi-map in device tree */
>> - fdt_pcie_set_msi_map_entry(blob, pcie, dev >> 8,
>> + fdt_pcie_set_msi_map_entry(blob, pcie, bdf >> 8,
>> streamid);
>> }
>> }
>>
next prev parent reply other threads:[~2016-06-03 16:31 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-17 7:18 [U-Boot] [PATCH] pcie/layerscape: fix bug in bus number computation when setting msi-map Bogdan Purcareata
2016-06-03 11:19 ` Bogdan Purcareata
2016-06-03 16:31 ` York Sun [this message]
2016-06-04 5:05 ` York Sun
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=5751B0F6.4050107@nxp.com \
--to=york.sun@nxp.com \
--cc=u-boot@lists.denx.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 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.