PCI: iproc: Fix code comment to match code
[linux-2.6/btrfs-unstable.git] / drivers / pci / host / pcie-iproc.h
blob4880b091c487d13fa41370641174ade63fb53b73
1 /*
2 * Copyright (C) 2014-2015 Broadcom Corporation
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #ifndef _PCIE_IPROC_H
15 #define _PCIE_IPROC_H
17 #define IPROC_PCIE_MAX_NUM_IRQS 6
19 /**
20 * iProc PCIe device
21 * @dev: pointer to device data structure
22 * @base: PCIe host controller I/O register base
23 * @sysdata: Per PCI controller data (ARM-specific)
24 * @root_bus: pointer to root bus
25 * @phy: optional PHY device that controls the Serdes
26 * @irqs: interrupt IDs
27 * @map_irq: function callback to map interrupts
29 struct iproc_pcie {
30 struct device *dev;
31 void __iomem *base;
32 #ifdef CONFIG_ARM
33 struct pci_sys_data sysdata;
34 #endif
35 struct pci_bus *root_bus;
36 struct phy *phy;
37 int irqs[IPROC_PCIE_MAX_NUM_IRQS];
38 int (*map_irq)(const struct pci_dev *, u8, u8);
41 int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res);
42 int iproc_pcie_remove(struct iproc_pcie *pcie);
44 #endif /* _PCIE_IPROC_H */