2015-04-09 02:21:35 +08:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2015-10-16 21:18:24 +08:00
|
|
|
/**
|
|
|
|
* iProc PCIe outbound mapping
|
|
|
|
* @set_oarr_size: indicates the OARR size bit needs to be set
|
|
|
|
* @axi_offset: offset from the AXI address to the internal address used by
|
|
|
|
* the iProc PCIe core
|
|
|
|
* @window_size: outbound window size
|
|
|
|
*/
|
|
|
|
struct iproc_pcie_ob {
|
|
|
|
bool set_oarr_size;
|
|
|
|
resource_size_t axi_offset;
|
|
|
|
resource_size_t window_size;
|
|
|
|
};
|
|
|
|
|
2015-04-09 02:21:35 +08:00
|
|
|
/**
|
|
|
|
* iProc PCIe device
|
|
|
|
* @dev: pointer to device data structure
|
|
|
|
* @base: PCIe host controller I/O register base
|
2015-07-22 09:29:40 +08:00
|
|
|
* @sysdata: Per PCI controller data (ARM-specific)
|
2015-04-09 02:21:35 +08:00
|
|
|
* @root_bus: pointer to root bus
|
|
|
|
* @phy: optional PHY device that controls the Serdes
|
|
|
|
* @irqs: interrupt IDs
|
2015-09-16 08:39:15 +08:00
|
|
|
* @map_irq: function callback to map interrupts
|
2015-10-16 21:18:24 +08:00
|
|
|
* @need_ob_cfg: indidates SW needs to configure the outbound mapping window
|
|
|
|
* @ob: outbound mapping parameters
|
2015-04-09 02:21:35 +08:00
|
|
|
*/
|
|
|
|
struct iproc_pcie {
|
|
|
|
struct device *dev;
|
|
|
|
void __iomem *base;
|
2015-07-22 09:29:40 +08:00
|
|
|
#ifdef CONFIG_ARM
|
2015-04-09 02:21:35 +08:00
|
|
|
struct pci_sys_data sysdata;
|
2015-07-22 09:29:40 +08:00
|
|
|
#endif
|
2015-04-09 02:21:35 +08:00
|
|
|
struct pci_bus *root_bus;
|
|
|
|
struct phy *phy;
|
2015-05-13 05:23:00 +08:00
|
|
|
int (*map_irq)(const struct pci_dev *, u8, u8);
|
2015-10-16 21:18:24 +08:00
|
|
|
bool need_ob_cfg;
|
|
|
|
struct iproc_pcie_ob ob;
|
2015-04-09 02:21:35 +08:00
|
|
|
};
|
|
|
|
|
2015-05-25 04:37:02 +08:00
|
|
|
int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res);
|
2015-04-09 02:21:35 +08:00
|
|
|
int iproc_pcie_remove(struct iproc_pcie *pcie);
|
|
|
|
|
|
|
|
#endif /* _PCIE_IPROC_H */
|