2016-05-09 19:49:03 +08:00
|
|
|
/*
|
|
|
|
* PCIe host controller driver for Axis ARTPEC-6 SoC
|
|
|
|
*
|
2016-07-03 07:13:22 +08:00
|
|
|
* Author: Niklas Cassel <niklas.cassel@axis.com>
|
|
|
|
*
|
2016-05-09 19:49:03 +08:00
|
|
|
* Based on work done by Phil Edworthy <phil@edworthys.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/kernel.h>
|
2016-07-03 07:13:22 +08:00
|
|
|
#include <linux/init.h>
|
2017-12-20 07:29:35 +08:00
|
|
|
#include <linux/of_device.h>
|
2016-05-09 19:49:03 +08:00
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/resource.h>
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/mfd/syscon.h>
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
|
|
|
|
#include "pcie-designware.h"
|
|
|
|
|
2017-02-15 21:18:14 +08:00
|
|
|
#define to_artpec6_pcie(x) dev_get_drvdata((x)->dev)
|
2016-05-09 19:49:03 +08:00
|
|
|
|
|
|
|
struct artpec6_pcie {
|
2017-02-15 21:18:14 +08:00
|
|
|
struct dw_pcie *pci;
|
2016-10-07 02:30:56 +08:00
|
|
|
struct regmap *regmap; /* DT axis,syscon-pcie */
|
|
|
|
void __iomem *phy_base; /* DT phy */
|
2017-12-20 07:29:35 +08:00
|
|
|
enum dw_pcie_device_mode mode;
|
2016-05-09 19:49:03 +08:00
|
|
|
};
|
|
|
|
|
2017-12-20 07:29:35 +08:00
|
|
|
struct artpec_pcie_of_data {
|
|
|
|
enum dw_pcie_device_mode mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct of_device_id artpec6_pcie_of_match[];
|
|
|
|
|
2016-05-09 19:49:03 +08:00
|
|
|
/* PCIe Port Logic registers (memory-mapped) */
|
|
|
|
#define PL_OFFSET 0x700
|
|
|
|
|
|
|
|
/* ARTPEC-6 specific registers */
|
|
|
|
#define PCIECFG 0x18
|
2017-12-20 07:29:32 +08:00
|
|
|
#define PCIECFG_DBG_OEN BIT(24)
|
|
|
|
#define PCIECFG_CORE_RESET_REQ BIT(21)
|
|
|
|
#define PCIECFG_LTSSM_ENABLE BIT(20)
|
2017-12-20 07:29:35 +08:00
|
|
|
#define PCIECFG_DEVICE_TYPE_MASK GENMASK(19, 16)
|
2017-12-20 07:29:32 +08:00
|
|
|
#define PCIECFG_CLKREQ_B BIT(11)
|
|
|
|
#define PCIECFG_REFCLK_ENABLE BIT(10)
|
|
|
|
#define PCIECFG_PLL_ENABLE BIT(9)
|
|
|
|
#define PCIECFG_PCLK_ENABLE BIT(8)
|
|
|
|
#define PCIECFG_RISRCREN BIT(4)
|
|
|
|
#define PCIECFG_MODE_TX_DRV_EN BIT(3)
|
|
|
|
#define PCIECFG_CISRREN BIT(2)
|
|
|
|
#define PCIECFG_MACRO_ENABLE BIT(0)
|
2016-05-09 19:49:03 +08:00
|
|
|
|
|
|
|
#define NOCCFG 0x40
|
2017-12-20 07:29:32 +08:00
|
|
|
#define NOCCFG_ENABLE_CLK_PCIE BIT(4)
|
|
|
|
#define NOCCFG_POWER_PCIE_IDLEACK BIT(3)
|
|
|
|
#define NOCCFG_POWER_PCIE_IDLE BIT(2)
|
|
|
|
#define NOCCFG_POWER_PCIE_IDLEREQ BIT(1)
|
2016-05-09 19:49:03 +08:00
|
|
|
|
|
|
|
#define PHY_STATUS 0x118
|
2017-12-20 07:29:32 +08:00
|
|
|
#define PHY_COSPLLLOCK BIT(0)
|
2016-05-09 19:49:03 +08:00
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
static u32 artpec6_pcie_readl(struct artpec6_pcie *artpec6_pcie, u32 offset)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
regmap_read(artpec6_pcie->regmap, offset, &val);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void artpec6_pcie_writel(struct artpec6_pcie *artpec6_pcie, u32 offset, u32 val)
|
|
|
|
{
|
|
|
|
regmap_write(artpec6_pcie->regmap, offset, val);
|
|
|
|
}
|
|
|
|
|
PCI: dwc: Make cpu_addr_fixup take struct dw_pcie as argument
The current cpu addr fixup mask for ARTPEC-6, GENMASK(27, 0), is wrong.
The correct cpu addr fixup mask for ARTPEC-6 is GENMASK(28, 0).
However, having a hardcoded cpu addr fixup mask in each driver is
arguably wrong.
A device tree property called something like "cpu-addr-fixup-mask"
would have been a better solution.
Introducing such a property is not needed though, since we already have
pp->cfg0_base and ep->phys_base, which is derived from already existing
device tree properties.
It is also worth noting that for ARTPEC-7, hardcoding the cpu addr fixup
mask is not possible, since it uses a High Address Bits Look Up Table,
which means that it can, at runtime, map the PCIe window to an arbitrary
address in the 32-bit address space.
By using pp->cfg0_base and ep->phys_base, we avoid hardcoding a mask
in each driver. This should work for ARTPEC-6, DRA7xx, and ARTPEC-7.
I have not changed the code in DRA7xx though, since their existing
code works, but if they want, they could use the same logic as
artpec6_pcie_cpu_addr_fixup, and thus remove their hardcoded mask.
The reason why the fixup mask is needed is explained in commit f4c55c5a3f7f
("PCI: designware: Program ATU with untranslated address").
Signed-off-by: Niklas Cassel <niklas.cassel@axis.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
2017-12-20 07:29:36 +08:00
|
|
|
static u64 artpec6_pcie_cpu_addr_fixup(struct dw_pcie *pci, u64 pci_addr)
|
2017-03-13 21:43:24 +08:00
|
|
|
{
|
PCI: dwc: Make cpu_addr_fixup take struct dw_pcie as argument
The current cpu addr fixup mask for ARTPEC-6, GENMASK(27, 0), is wrong.
The correct cpu addr fixup mask for ARTPEC-6 is GENMASK(28, 0).
However, having a hardcoded cpu addr fixup mask in each driver is
arguably wrong.
A device tree property called something like "cpu-addr-fixup-mask"
would have been a better solution.
Introducing such a property is not needed though, since we already have
pp->cfg0_base and ep->phys_base, which is derived from already existing
device tree properties.
It is also worth noting that for ARTPEC-7, hardcoding the cpu addr fixup
mask is not possible, since it uses a High Address Bits Look Up Table,
which means that it can, at runtime, map the PCIe window to an arbitrary
address in the 32-bit address space.
By using pp->cfg0_base and ep->phys_base, we avoid hardcoding a mask
in each driver. This should work for ARTPEC-6, DRA7xx, and ARTPEC-7.
I have not changed the code in DRA7xx though, since their existing
code works, but if they want, they could use the same logic as
artpec6_pcie_cpu_addr_fixup, and thus remove their hardcoded mask.
The reason why the fixup mask is needed is explained in commit f4c55c5a3f7f
("PCI: designware: Program ATU with untranslated address").
Signed-off-by: Niklas Cassel <niklas.cassel@axis.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
2017-12-20 07:29:36 +08:00
|
|
|
struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci);
|
|
|
|
struct pcie_port *pp = &pci->pp;
|
|
|
|
struct dw_pcie_ep *ep = &pci->ep;
|
|
|
|
|
|
|
|
switch (artpec6_pcie->mode) {
|
|
|
|
case DW_PCIE_RC_TYPE:
|
|
|
|
return pci_addr - pp->cfg0_base;
|
|
|
|
case DW_PCIE_EP_TYPE:
|
|
|
|
return pci_addr - ep->phys_base;
|
|
|
|
default:
|
|
|
|
dev_err(pci->dev, "UNKNOWN device type\n");
|
|
|
|
}
|
|
|
|
return pci_addr;
|
2017-03-13 21:43:24 +08:00
|
|
|
}
|
|
|
|
|
2017-12-20 07:29:33 +08:00
|
|
|
static int artpec6_pcie_establish_link(struct dw_pcie *pci)
|
2016-05-09 19:49:03 +08:00
|
|
|
{
|
2017-12-20 07:29:33 +08:00
|
|
|
struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci);
|
2016-05-09 19:49:03 +08:00
|
|
|
u32 val;
|
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, PCIECFG);
|
2017-12-20 07:29:33 +08:00
|
|
|
val |= PCIECFG_LTSSM_ENABLE;
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_writel(artpec6_pcie, PCIECFG, val);
|
2016-05-09 19:49:03 +08:00
|
|
|
|
2017-12-20 07:29:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-20 07:29:35 +08:00
|
|
|
static void artpec6_pcie_stop_link(struct dw_pcie *pci)
|
|
|
|
{
|
|
|
|
struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci);
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, PCIECFG);
|
|
|
|
val &= ~PCIECFG_LTSSM_ENABLE;
|
|
|
|
artpec6_pcie_writel(artpec6_pcie, PCIECFG, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct dw_pcie_ops dw_pcie_ops = {
|
|
|
|
.cpu_addr_fixup = artpec6_pcie_cpu_addr_fixup,
|
|
|
|
.start_link = artpec6_pcie_establish_link,
|
|
|
|
.stop_link = artpec6_pcie_stop_link,
|
|
|
|
};
|
|
|
|
|
2017-12-20 07:29:33 +08:00
|
|
|
static void artpec6_pcie_init_phy(struct artpec6_pcie *artpec6_pcie)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
unsigned int retries;
|
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, PCIECFG);
|
2016-05-09 19:49:03 +08:00
|
|
|
val |= PCIECFG_RISRCREN | /* Receiver term. 50 Ohm */
|
|
|
|
PCIECFG_MODE_TX_DRV_EN |
|
|
|
|
PCIECFG_CISRREN | /* Reference clock term. 100 Ohm */
|
|
|
|
PCIECFG_MACRO_ENABLE;
|
|
|
|
val |= PCIECFG_REFCLK_ENABLE;
|
|
|
|
val &= ~PCIECFG_DBG_OEN;
|
|
|
|
val &= ~PCIECFG_CLKREQ_B;
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_writel(artpec6_pcie, PCIECFG, val);
|
2016-05-09 19:49:03 +08:00
|
|
|
usleep_range(5000, 6000);
|
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, NOCCFG);
|
2016-05-09 19:49:03 +08:00
|
|
|
val |= NOCCFG_ENABLE_CLK_PCIE;
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_writel(artpec6_pcie, NOCCFG, val);
|
2016-05-09 19:49:03 +08:00
|
|
|
usleep_range(20, 30);
|
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, PCIECFG);
|
2016-05-09 19:49:03 +08:00
|
|
|
val |= PCIECFG_PCLK_ENABLE | PCIECFG_PLL_ENABLE;
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_writel(artpec6_pcie, PCIECFG, val);
|
2016-05-09 19:49:03 +08:00
|
|
|
usleep_range(6000, 7000);
|
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, NOCCFG);
|
2016-05-09 19:49:03 +08:00
|
|
|
val &= ~NOCCFG_POWER_PCIE_IDLEREQ;
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_writel(artpec6_pcie, NOCCFG, val);
|
2016-05-09 19:49:03 +08:00
|
|
|
|
|
|
|
retries = 50;
|
|
|
|
do {
|
|
|
|
usleep_range(1000, 2000);
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, NOCCFG);
|
2016-05-09 19:49:03 +08:00
|
|
|
retries--;
|
|
|
|
} while (retries &&
|
|
|
|
(val & (NOCCFG_POWER_PCIE_IDLEACK | NOCCFG_POWER_PCIE_IDLE)));
|
|
|
|
|
|
|
|
retries = 50;
|
|
|
|
do {
|
|
|
|
usleep_range(1000, 2000);
|
|
|
|
val = readl(artpec6_pcie->phy_base + PHY_STATUS);
|
|
|
|
retries--;
|
|
|
|
} while (retries && !(val & PHY_COSPLLLOCK));
|
2017-12-20 07:29:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void artpec6_pcie_assert_core_reset(struct artpec6_pcie *artpec6_pcie)
|
|
|
|
{
|
|
|
|
u32 val;
|
2016-05-09 19:49:03 +08:00
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, PCIECFG);
|
2017-12-20 07:29:33 +08:00
|
|
|
val |= PCIECFG_CORE_RESET_REQ;
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_writel(artpec6_pcie, PCIECFG, val);
|
2017-12-20 07:29:33 +08:00
|
|
|
}
|
2016-05-09 19:49:03 +08:00
|
|
|
|
2017-12-20 07:29:33 +08:00
|
|
|
static void artpec6_pcie_deassert_core_reset(struct artpec6_pcie *artpec6_pcie)
|
|
|
|
{
|
|
|
|
u32 val;
|
2016-05-09 19:49:03 +08:00
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, PCIECFG);
|
2017-12-20 07:29:33 +08:00
|
|
|
val &= ~PCIECFG_CORE_RESET_REQ;
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_writel(artpec6_pcie, PCIECFG, val);
|
2017-12-20 07:29:33 +08:00
|
|
|
usleep_range(100, 200);
|
2016-05-09 19:49:03 +08:00
|
|
|
}
|
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
static void artpec6_pcie_enable_interrupts(struct artpec6_pcie *artpec6_pcie)
|
2016-05-09 19:49:03 +08:00
|
|
|
{
|
2017-02-15 21:18:14 +08:00
|
|
|
struct dw_pcie *pci = artpec6_pcie->pci;
|
|
|
|
struct pcie_port *pp = &pci->pp;
|
2016-10-07 02:30:56 +08:00
|
|
|
|
2016-05-09 19:49:03 +08:00
|
|
|
if (IS_ENABLED(CONFIG_PCI_MSI))
|
|
|
|
dw_pcie_msi_init(pp);
|
|
|
|
}
|
|
|
|
|
2017-07-16 14:39:45 +08:00
|
|
|
static int artpec6_pcie_host_init(struct pcie_port *pp)
|
2016-05-09 19:49:03 +08:00
|
|
|
{
|
2017-02-15 21:18:14 +08:00
|
|
|
struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
|
|
|
|
struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci);
|
2016-10-07 02:30:56 +08:00
|
|
|
|
2017-12-20 07:29:33 +08:00
|
|
|
artpec6_pcie_assert_core_reset(artpec6_pcie);
|
|
|
|
artpec6_pcie_init_phy(artpec6_pcie);
|
|
|
|
artpec6_pcie_deassert_core_reset(artpec6_pcie);
|
|
|
|
dw_pcie_setup_rc(pp);
|
|
|
|
artpec6_pcie_establish_link(pci);
|
|
|
|
dw_pcie_wait_for_link(pci);
|
2016-10-07 02:30:56 +08:00
|
|
|
artpec6_pcie_enable_interrupts(artpec6_pcie);
|
2017-07-16 14:39:45 +08:00
|
|
|
|
|
|
|
return 0;
|
2016-05-09 19:49:03 +08:00
|
|
|
}
|
|
|
|
|
2017-06-05 16:53:46 +08:00
|
|
|
static const struct dw_pcie_host_ops artpec6_pcie_host_ops = {
|
2016-05-09 19:49:03 +08:00
|
|
|
.host_init = artpec6_pcie_host_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static irqreturn_t artpec6_pcie_msi_handler(int irq, void *arg)
|
|
|
|
{
|
2016-10-07 02:30:56 +08:00
|
|
|
struct artpec6_pcie *artpec6_pcie = arg;
|
2017-02-15 21:18:14 +08:00
|
|
|
struct dw_pcie *pci = artpec6_pcie->pci;
|
|
|
|
struct pcie_port *pp = &pci->pp;
|
2016-05-09 19:49:03 +08:00
|
|
|
|
|
|
|
return dw_handle_msi_irq(pp);
|
|
|
|
}
|
|
|
|
|
2016-10-07 02:30:56 +08:00
|
|
|
static int artpec6_add_pcie_port(struct artpec6_pcie *artpec6_pcie,
|
2016-09-09 15:45:30 +08:00
|
|
|
struct platform_device *pdev)
|
2016-05-09 19:49:03 +08:00
|
|
|
{
|
2017-02-15 21:18:14 +08:00
|
|
|
struct dw_pcie *pci = artpec6_pcie->pci;
|
|
|
|
struct pcie_port *pp = &pci->pp;
|
|
|
|
struct device *dev = pci->dev;
|
2016-05-09 19:49:03 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_PCI_MSI)) {
|
|
|
|
pp->msi_irq = platform_get_irq_byname(pdev, "msi");
|
2017-09-01 01:52:04 +08:00
|
|
|
if (pp->msi_irq < 0) {
|
2016-10-07 02:30:57 +08:00
|
|
|
dev_err(dev, "failed to get MSI irq\n");
|
2017-09-01 01:52:04 +08:00
|
|
|
return pp->msi_irq;
|
2016-05-09 19:49:03 +08:00
|
|
|
}
|
|
|
|
|
2016-10-07 02:30:57 +08:00
|
|
|
ret = devm_request_irq(dev, pp->msi_irq,
|
2016-05-09 19:49:03 +08:00
|
|
|
artpec6_pcie_msi_handler,
|
|
|
|
IRQF_SHARED | IRQF_NO_THREAD,
|
2016-10-07 02:30:56 +08:00
|
|
|
"artpec6-pcie-msi", artpec6_pcie);
|
2016-05-09 19:49:03 +08:00
|
|
|
if (ret) {
|
2016-10-07 02:30:57 +08:00
|
|
|
dev_err(dev, "failed to request MSI irq\n");
|
2016-05-09 19:49:03 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pp->root_bus_nr = -1;
|
|
|
|
pp->ops = &artpec6_pcie_host_ops;
|
|
|
|
|
|
|
|
ret = dw_pcie_host_init(pp);
|
|
|
|
if (ret) {
|
2016-10-07 02:30:57 +08:00
|
|
|
dev_err(dev, "failed to initialize host\n");
|
2016-05-09 19:49:03 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-20 07:29:35 +08:00
|
|
|
static void artpec6_pcie_ep_init(struct dw_pcie_ep *ep)
|
|
|
|
{
|
|
|
|
struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
|
|
|
|
struct artpec6_pcie *artpec6_pcie = to_artpec6_pcie(pci);
|
|
|
|
enum pci_barno bar;
|
|
|
|
|
|
|
|
artpec6_pcie_assert_core_reset(artpec6_pcie);
|
|
|
|
artpec6_pcie_init_phy(artpec6_pcie);
|
|
|
|
artpec6_pcie_deassert_core_reset(artpec6_pcie);
|
|
|
|
|
|
|
|
for (bar = BAR_0; bar <= BAR_5; bar++)
|
|
|
|
dw_pcie_ep_reset_bar(pci, bar);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int artpec6_pcie_raise_irq(struct dw_pcie_ep *ep,
|
|
|
|
enum pci_epc_irq_type type, u8 interrupt_num)
|
|
|
|
{
|
|
|
|
struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case PCI_EPC_IRQ_LEGACY:
|
|
|
|
dev_err(pci->dev, "EP cannot trigger legacy IRQs\n");
|
|
|
|
return -EINVAL;
|
|
|
|
case PCI_EPC_IRQ_MSI:
|
|
|
|
return dw_pcie_ep_raise_msi_irq(ep, interrupt_num);
|
|
|
|
default:
|
|
|
|
dev_err(pci->dev, "UNKNOWN IRQ type\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct dw_pcie_ep_ops pcie_ep_ops = {
|
|
|
|
.ep_init = artpec6_pcie_ep_init,
|
|
|
|
.raise_irq = artpec6_pcie_raise_irq,
|
2017-04-04 06:35:12 +08:00
|
|
|
};
|
|
|
|
|
2017-12-20 07:29:35 +08:00
|
|
|
static int artpec6_add_pcie_ep(struct artpec6_pcie *artpec6_pcie,
|
|
|
|
struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct dw_pcie_ep *ep;
|
|
|
|
struct resource *res;
|
|
|
|
struct device *dev = &pdev->dev;
|
|
|
|
struct dw_pcie *pci = artpec6_pcie->pci;
|
|
|
|
|
|
|
|
ep = &pci->ep;
|
|
|
|
ep->ops = &pcie_ep_ops;
|
|
|
|
|
|
|
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dbi2");
|
|
|
|
pci->dbi_base2 = devm_ioremap(dev, res->start, resource_size(res));
|
|
|
|
if (IS_ERR(pci->dbi_base2))
|
|
|
|
return PTR_ERR(pci->dbi_base2);
|
|
|
|
|
|
|
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "addr_space");
|
|
|
|
if (!res)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
ep->phys_base = res->start;
|
|
|
|
ep->addr_size = resource_size(res);
|
|
|
|
|
|
|
|
ret = dw_pcie_ep_init(ep);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(dev, "failed to initialize endpoint\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-09 19:49:03 +08:00
|
|
|
static int artpec6_pcie_probe(struct platform_device *pdev)
|
|
|
|
{
|
2016-10-07 02:30:57 +08:00
|
|
|
struct device *dev = &pdev->dev;
|
2017-02-15 21:18:14 +08:00
|
|
|
struct dw_pcie *pci;
|
2016-05-09 19:49:03 +08:00
|
|
|
struct artpec6_pcie *artpec6_pcie;
|
|
|
|
struct resource *dbi_base;
|
|
|
|
struct resource *phy_base;
|
|
|
|
int ret;
|
2017-12-20 07:29:35 +08:00
|
|
|
const struct of_device_id *match;
|
|
|
|
const struct artpec_pcie_of_data *data;
|
|
|
|
enum dw_pcie_device_mode mode;
|
|
|
|
|
|
|
|
match = of_match_device(artpec6_pcie_of_match, dev);
|
|
|
|
if (!match)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
data = (struct artpec_pcie_of_data *)match->data;
|
|
|
|
mode = (enum dw_pcie_device_mode)data->mode;
|
2016-05-09 19:49:03 +08:00
|
|
|
|
2016-10-07 02:30:57 +08:00
|
|
|
artpec6_pcie = devm_kzalloc(dev, sizeof(*artpec6_pcie), GFP_KERNEL);
|
2016-05-09 19:49:03 +08:00
|
|
|
if (!artpec6_pcie)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-02-15 21:18:14 +08:00
|
|
|
pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
|
|
|
|
if (!pci)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
pci->dev = dev;
|
2017-04-04 06:35:12 +08:00
|
|
|
pci->ops = &dw_pcie_ops;
|
2016-05-09 19:49:03 +08:00
|
|
|
|
2017-02-25 18:08:12 +08:00
|
|
|
artpec6_pcie->pci = pci;
|
2017-12-20 07:29:35 +08:00
|
|
|
artpec6_pcie->mode = mode;
|
2017-02-25 18:08:12 +08:00
|
|
|
|
2016-05-09 19:49:03 +08:00
|
|
|
dbi_base = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dbi");
|
2017-02-15 21:18:14 +08:00
|
|
|
pci->dbi_base = devm_ioremap_resource(dev, dbi_base);
|
|
|
|
if (IS_ERR(pci->dbi_base))
|
|
|
|
return PTR_ERR(pci->dbi_base);
|
2016-05-09 19:49:03 +08:00
|
|
|
|
|
|
|
phy_base = platform_get_resource_byname(pdev, IORESOURCE_MEM, "phy");
|
2016-10-07 02:30:57 +08:00
|
|
|
artpec6_pcie->phy_base = devm_ioremap_resource(dev, phy_base);
|
2016-05-09 19:49:03 +08:00
|
|
|
if (IS_ERR(artpec6_pcie->phy_base))
|
|
|
|
return PTR_ERR(artpec6_pcie->phy_base);
|
|
|
|
|
|
|
|
artpec6_pcie->regmap =
|
2016-10-07 02:30:57 +08:00
|
|
|
syscon_regmap_lookup_by_phandle(dev->of_node,
|
2016-05-09 19:49:03 +08:00
|
|
|
"axis,syscon-pcie");
|
|
|
|
if (IS_ERR(artpec6_pcie->regmap))
|
|
|
|
return PTR_ERR(artpec6_pcie->regmap);
|
|
|
|
|
2017-02-15 21:18:11 +08:00
|
|
|
platform_set_drvdata(pdev, artpec6_pcie);
|
|
|
|
|
2017-12-20 07:29:35 +08:00
|
|
|
switch (artpec6_pcie->mode) {
|
|
|
|
case DW_PCIE_RC_TYPE:
|
|
|
|
if (!IS_ENABLED(CONFIG_PCIE_ARTPEC6_HOST))
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
ret = artpec6_add_pcie_port(artpec6_pcie, pdev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
break;
|
|
|
|
case DW_PCIE_EP_TYPE: {
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
if (!IS_ENABLED(CONFIG_PCIE_ARTPEC6_EP))
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
val = artpec6_pcie_readl(artpec6_pcie, PCIECFG);
|
|
|
|
val &= ~PCIECFG_DEVICE_TYPE_MASK;
|
|
|
|
artpec6_pcie_writel(artpec6_pcie, PCIECFG, val);
|
|
|
|
ret = artpec6_add_pcie_ep(artpec6_pcie, pdev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
dev_err(dev, "INVALID device type %d\n", artpec6_pcie->mode);
|
|
|
|
}
|
2016-05-09 19:49:03 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-20 07:29:35 +08:00
|
|
|
static const struct artpec_pcie_of_data artpec6_pcie_rc_of_data = {
|
|
|
|
.mode = DW_PCIE_RC_TYPE,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct artpec_pcie_of_data artpec6_pcie_ep_of_data = {
|
|
|
|
.mode = DW_PCIE_EP_TYPE,
|
|
|
|
};
|
|
|
|
|
2016-05-09 19:49:03 +08:00
|
|
|
static const struct of_device_id artpec6_pcie_of_match[] = {
|
2017-12-20 07:29:35 +08:00
|
|
|
{
|
|
|
|
.compatible = "axis,artpec6-pcie",
|
|
|
|
.data = &artpec6_pcie_rc_of_data,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.compatible = "axis,artpec6-pcie-ep",
|
|
|
|
.data = &artpec6_pcie_ep_of_data,
|
|
|
|
},
|
2016-05-09 19:49:03 +08:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_driver artpec6_pcie_driver = {
|
|
|
|
.probe = artpec6_pcie_probe,
|
|
|
|
.driver = {
|
|
|
|
.name = "artpec6-pcie",
|
|
|
|
.of_match_table = artpec6_pcie_of_match,
|
2017-04-21 04:36:25 +08:00
|
|
|
.suppress_bind_attrs = true,
|
2016-05-09 19:49:03 +08:00
|
|
|
},
|
|
|
|
};
|
2016-07-03 07:13:22 +08:00
|
|
|
builtin_platform_driver(artpec6_pcie_driver);
|