mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 09:32:32 +00:00
8d9bfe3702
Add arm64 support to the iProc PCIe driver. Note that on arm32, bus->sysdata points to the arm32-specific pci_sys_data struct, and pci_sys_data.private_data contains the iproc_pcie pointer. For arm64, there's nothing corresponding to pci_sys_data, so we keep the iproc_pcie pointer directly in bus->sysdata. In addition, arm64 does IRQ mapping in pcibios_add_device(), so it doesn't need pci_fixup_irqs() as arm32 does. Signed-off-by: Ray Jui <rjui@broadcom.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Scott Branden <sbranden@broadcom.com>
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2014-2015 Broadcom Corporation
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation version 2.
|
|
*
|
|
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
|
|
* kind, whether express or implied; without even the implied warranty
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _PCIE_IPROC_H
|
|
#define _PCIE_IPROC_H
|
|
|
|
#define IPROC_PCIE_MAX_NUM_IRQS 6
|
|
|
|
/**
|
|
* iProc PCIe device
|
|
* @dev: pointer to device data structure
|
|
* @base: PCIe host controller I/O register base
|
|
* @resources: linked list of all PCI resources
|
|
* @sysdata: Per PCI controller data (ARM-specific)
|
|
* @root_bus: pointer to root bus
|
|
* @phy: optional PHY device that controls the Serdes
|
|
* @irqs: interrupt IDs
|
|
*/
|
|
struct iproc_pcie {
|
|
struct device *dev;
|
|
void __iomem *base;
|
|
#ifdef CONFIG_ARM
|
|
struct pci_sys_data sysdata;
|
|
#endif
|
|
struct pci_bus *root_bus;
|
|
struct phy *phy;
|
|
int irqs[IPROC_PCIE_MAX_NUM_IRQS];
|
|
int (*map_irq)(const struct pci_dev *, u8, u8);
|
|
};
|
|
|
|
int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res);
|
|
int iproc_pcie_remove(struct iproc_pcie *pcie);
|
|
|
|
#endif /* _PCIE_IPROC_H */
|