diff options
author | Mark Kettenis <kettenis@openbsd.org> | 2023-07-14 21:15:16 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-08-14 17:51:50 -0400 |
commit | 815ce125a4a0a2f17ed5fee900b80954542b360c (patch) | |
tree | d99ae8fdb0f48dfb25443af2398336c0cf21a0ff | |
parent | 831a80c2af322a80890cd9ef81c8ab7697788712 (diff) |
pci: apple: Enable CONFIG_SYS_PCI_64BIT
The Apple hardware supports 64-bit prefetchable memory windows so
enable CONFIG_SYS_PCI_64BIT. This fixes BAR assignments for the
Broadcom Ethernet controller used in some of the desktop machines.
Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
-rw-r--r-- | drivers/pci/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index a0bf44d38a..74e514adbe 100644 --- a/drivers/pci/Kconfig +++ b/drivers/pci/Kconfig @@ -121,6 +121,7 @@ config PCIE_APPLE bool "Enable Apple PCIe driver" depends on ARCH_APPLE imply PCI_INIT_R + select SYS_PCI_64BIT default y help Say Y here if you want to enable PCIe controller support on |