/* SPDX-License-Identifier: GPL-2.0 */1#ifndef PCI_BCM63XX_H_2#define PCI_BCM63XX_H_34#include <bcm63xx_cpu.h>5#include <bcm63xx_io.h>6#include <bcm63xx_regs.h>7#include <bcm63xx_dev_pci.h>89/*10* Cardbus shares the PCI bus, but has no IDSEL, so a special id is11* reserved for it. If you have a standard PCI device at this id, you12* need to change the following definition.13*/14#define CARDBUS_PCI_IDSEL 0x8151617#define PCIE_BUS_BRIDGE 018#define PCIE_BUS_DEVICE 11920/*21* defined in ops-bcm63xx.c22*/23extern struct pci_ops bcm63xx_pci_ops;24extern struct pci_ops bcm63xx_cb_ops;25extern struct pci_ops bcm63xx_pcie_ops;2627/*28* defined in pci-bcm63xx.c29*/30extern void __iomem *pci_iospace_start;3132#endif /* ! PCI_BCM63XX_H_ */333435