mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
pci: fsl: Use PCI_CONF1_EXT_ADDRESS() macro
PCI fsl driver uses extended format of Config Address for PCI Configuration Mechanism #1. So use new U-Boot macro PCI_CONF1_EXT_ADDRESS(). Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
86be29e9d9
commit
f031f07f3a
1 changed files with 6 additions and 4 deletions
|
@ -58,8 +58,9 @@ static int fsl_pcie_read_config(const struct udevice *bus, pci_dev_t bdf,
|
|||
return 0;
|
||||
}
|
||||
|
||||
bdf = bdf - PCI_BDF(dev_seq(bus), 0, 0);
|
||||
val = bdf | (offset & 0xfc) | ((offset & 0xf00) << 16) | 0x80000000;
|
||||
val = PCI_CONF1_EXT_ADDRESS(PCI_BUS(bdf) - dev_seq(bus),
|
||||
PCI_DEV(bdf), PCI_FUNC(bdf),
|
||||
offset);
|
||||
out_be32(®s->cfg_addr, val);
|
||||
|
||||
sync();
|
||||
|
@ -94,8 +95,9 @@ static int fsl_pcie_write_config(struct udevice *bus, pci_dev_t bdf,
|
|||
if (fsl_pcie_addr_valid(pcie, bdf))
|
||||
return 0;
|
||||
|
||||
bdf = bdf - PCI_BDF(dev_seq(bus), 0, 0);
|
||||
val = bdf | (offset & 0xfc) | ((offset & 0xf00) << 16) | 0x80000000;
|
||||
val = PCI_CONF1_EXT_ADDRESS(PCI_BUS(bdf) - dev_seq(bus),
|
||||
PCI_DEV(bdf), PCI_FUNC(bdf),
|
||||
offset);
|
||||
out_be32(®s->cfg_addr, val);
|
||||
|
||||
sync();
|
||||
|
|
Loading…
Add table
Reference in a new issue