Linux Audio

Check our new training course

Loading...
v6.2
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * PCIe host controller driver for Freescale i.MX6 SoCs
   4 *
   5 * Copyright (C) 2013 Kosagi
   6 *		https://www.kosagi.com
   7 *
   8 * Author: Sean Cross <xobs@kosagi.com>
   9 */
  10
  11#include <linux/bitfield.h>
  12#include <linux/clk.h>
  13#include <linux/delay.h>
  14#include <linux/gpio.h>
  15#include <linux/kernel.h>
  16#include <linux/mfd/syscon.h>
  17#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
  18#include <linux/mfd/syscon/imx7-iomuxc-gpr.h>
  19#include <linux/module.h>
  20#include <linux/of_gpio.h>
  21#include <linux/of_device.h>
  22#include <linux/of_address.h>
  23#include <linux/pci.h>
  24#include <linux/platform_device.h>
  25#include <linux/regmap.h>
  26#include <linux/regulator/consumer.h>
  27#include <linux/resource.h>
  28#include <linux/signal.h>
  29#include <linux/types.h>
  30#include <linux/interrupt.h>
  31#include <linux/reset.h>
  32#include <linux/phy/phy.h>
  33#include <linux/pm_domain.h>
  34#include <linux/pm_runtime.h>
  35
  36#include "pcie-designware.h"
  37
  38#define IMX8MQ_GPR_PCIE_REF_USE_PAD		BIT(9)
  39#define IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN	BIT(10)
  40#define IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE	BIT(11)
  41#define IMX8MQ_GPR_PCIE_VREG_BYPASS		BIT(12)
  42#define IMX8MQ_GPR12_PCIE2_CTRL_DEVICE_TYPE	GENMASK(11, 8)
  43#define IMX8MQ_PCIE2_BASE_ADDR			0x33c00000
  44
  45#define to_imx6_pcie(x)	dev_get_drvdata((x)->dev)
  46
  47enum imx6_pcie_variants {
  48	IMX6Q,
  49	IMX6SX,
  50	IMX6QP,
  51	IMX7D,
  52	IMX8MQ,
  53	IMX8MM,
  54	IMX8MP,
  55};
  56
  57#define IMX6_PCIE_FLAG_IMX6_PHY			BIT(0)
  58#define IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE	BIT(1)
  59#define IMX6_PCIE_FLAG_SUPPORTS_SUSPEND		BIT(2)
  60
  61struct imx6_pcie_drvdata {
  62	enum imx6_pcie_variants variant;
  63	u32 flags;
  64	int dbi_length;
  65	const char *gpr;
  66};
  67
  68struct imx6_pcie {
  69	struct dw_pcie		*pci;
  70	int			reset_gpio;
  71	bool			gpio_active_high;
  72	bool			link_is_up;
  73	struct clk		*pcie_bus;
  74	struct clk		*pcie_phy;
  75	struct clk		*pcie_inbound_axi;
  76	struct clk		*pcie;
  77	struct clk		*pcie_aux;
  78	struct regmap		*iomuxc_gpr;
  79	u32			controller_id;
  80	struct reset_control	*pciephy_reset;
  81	struct reset_control	*apps_reset;
  82	struct reset_control	*turnoff_reset;
  83	u32			tx_deemph_gen1;
  84	u32			tx_deemph_gen2_3p5db;
  85	u32			tx_deemph_gen2_6db;
  86	u32			tx_swing_full;
  87	u32			tx_swing_low;
  88	struct regulator	*vpcie;
  89	struct regulator	*vph;
  90	void __iomem		*phy_base;
  91
  92	/* power domain for pcie */
  93	struct device		*pd_pcie;
  94	/* power domain for pcie phy */
  95	struct device		*pd_pcie_phy;
  96	struct phy		*phy;
  97	const struct imx6_pcie_drvdata *drvdata;
  98};
  99
 100/* Parameters for the waiting for PCIe PHY PLL to lock on i.MX7 */
 101#define PHY_PLL_LOCK_WAIT_USLEEP_MAX	200
 102#define PHY_PLL_LOCK_WAIT_TIMEOUT	(2000 * PHY_PLL_LOCK_WAIT_USLEEP_MAX)
 103
 104/* PCIe Port Logic registers (memory-mapped) */
 105#define PL_OFFSET 0x700
 106
 107#define PCIE_PHY_CTRL (PL_OFFSET + 0x114)
 108#define PCIE_PHY_CTRL_DATA(x)		FIELD_PREP(GENMASK(15, 0), (x))
 109#define PCIE_PHY_CTRL_CAP_ADR		BIT(16)
 110#define PCIE_PHY_CTRL_CAP_DAT		BIT(17)
 111#define PCIE_PHY_CTRL_WR		BIT(18)
 112#define PCIE_PHY_CTRL_RD		BIT(19)
 113
 114#define PCIE_PHY_STAT (PL_OFFSET + 0x110)
 115#define PCIE_PHY_STAT_ACK		BIT(16)
 116
 117/* PHY registers (not memory-mapped) */
 118#define PCIE_PHY_ATEOVRD			0x10
 119#define  PCIE_PHY_ATEOVRD_EN			BIT(2)
 120#define  PCIE_PHY_ATEOVRD_REF_CLKDIV_SHIFT	0
 121#define  PCIE_PHY_ATEOVRD_REF_CLKDIV_MASK	0x1
 122
 123#define PCIE_PHY_MPLL_OVRD_IN_LO		0x11
 124#define  PCIE_PHY_MPLL_MULTIPLIER_SHIFT		2
 125#define  PCIE_PHY_MPLL_MULTIPLIER_MASK		0x7f
 126#define  PCIE_PHY_MPLL_MULTIPLIER_OVRD		BIT(9)
 127
 128#define PCIE_PHY_RX_ASIC_OUT 0x100D
 129#define PCIE_PHY_RX_ASIC_OUT_VALID	(1 << 0)
 130
 131/* iMX7 PCIe PHY registers */
 132#define PCIE_PHY_CMN_REG4		0x14
 133/* These are probably the bits that *aren't* DCC_FB_EN */
 134#define PCIE_PHY_CMN_REG4_DCC_FB_EN	0x29
 135
 136#define PCIE_PHY_CMN_REG15	        0x54
 137#define PCIE_PHY_CMN_REG15_DLY_4	BIT(2)
 138#define PCIE_PHY_CMN_REG15_PLL_PD	BIT(5)
 139#define PCIE_PHY_CMN_REG15_OVRD_PLL_PD	BIT(7)
 140
 141#define PCIE_PHY_CMN_REG24		0x90
 142#define PCIE_PHY_CMN_REG24_RX_EQ	BIT(6)
 143#define PCIE_PHY_CMN_REG24_RX_EQ_SEL	BIT(3)
 144
 145#define PCIE_PHY_CMN_REG26		0x98
 146#define PCIE_PHY_CMN_REG26_ATT_MODE	0xBC
 147
 148#define PHY_RX_OVRD_IN_LO 0x1005
 149#define PHY_RX_OVRD_IN_LO_RX_DATA_EN		BIT(5)
 150#define PHY_RX_OVRD_IN_LO_RX_PLL_EN		BIT(3)
 151
 152static unsigned int imx6_pcie_grp_offset(const struct imx6_pcie *imx6_pcie)
 153{
 154	WARN_ON(imx6_pcie->drvdata->variant != IMX8MQ &&
 155		imx6_pcie->drvdata->variant != IMX8MM &&
 156		imx6_pcie->drvdata->variant != IMX8MP);
 157	return imx6_pcie->controller_id == 1 ? IOMUXC_GPR16 : IOMUXC_GPR14;
 158}
 159
 160static void imx6_pcie_configure_type(struct imx6_pcie *imx6_pcie)
 161{
 162	unsigned int mask, val;
 163
 164	if (imx6_pcie->drvdata->variant == IMX8MQ &&
 165	    imx6_pcie->controller_id == 1) {
 166		mask = IMX8MQ_GPR12_PCIE2_CTRL_DEVICE_TYPE;
 167		val  = FIELD_PREP(IMX8MQ_GPR12_PCIE2_CTRL_DEVICE_TYPE,
 168				  PCI_EXP_TYPE_ROOT_PORT);
 169	} else {
 170		mask = IMX6Q_GPR12_DEVICE_TYPE;
 171		val  = FIELD_PREP(IMX6Q_GPR12_DEVICE_TYPE,
 172				  PCI_EXP_TYPE_ROOT_PORT);
 173	}
 174
 175	regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12, mask, val);
 176}
 177
 178static int pcie_phy_poll_ack(struct imx6_pcie *imx6_pcie, bool exp_val)
 179{
 180	struct dw_pcie *pci = imx6_pcie->pci;
 181	bool val;
 182	u32 max_iterations = 10;
 183	u32 wait_counter = 0;
 184
 185	do {
 186		val = dw_pcie_readl_dbi(pci, PCIE_PHY_STAT) &
 187			PCIE_PHY_STAT_ACK;
 188		wait_counter++;
 189
 190		if (val == exp_val)
 191			return 0;
 192
 193		udelay(1);
 194	} while (wait_counter < max_iterations);
 195
 196	return -ETIMEDOUT;
 197}
 198
 199static int pcie_phy_wait_ack(struct imx6_pcie *imx6_pcie, int addr)
 200{
 201	struct dw_pcie *pci = imx6_pcie->pci;
 202	u32 val;
 203	int ret;
 204
 205	val = PCIE_PHY_CTRL_DATA(addr);
 206	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, val);
 207
 208	val |= PCIE_PHY_CTRL_CAP_ADR;
 209	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, val);
 210
 211	ret = pcie_phy_poll_ack(imx6_pcie, true);
 212	if (ret)
 213		return ret;
 214
 215	val = PCIE_PHY_CTRL_DATA(addr);
 216	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, val);
 217
 218	return pcie_phy_poll_ack(imx6_pcie, false);
 219}
 220
 221/* Read from the 16-bit PCIe PHY control registers (not memory-mapped) */
 222static int pcie_phy_read(struct imx6_pcie *imx6_pcie, int addr, u16 *data)
 223{
 224	struct dw_pcie *pci = imx6_pcie->pci;
 225	u32 phy_ctl;
 226	int ret;
 227
 228	ret = pcie_phy_wait_ack(imx6_pcie, addr);
 229	if (ret)
 230		return ret;
 231
 232	/* assert Read signal */
 233	phy_ctl = PCIE_PHY_CTRL_RD;
 234	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, phy_ctl);
 235
 236	ret = pcie_phy_poll_ack(imx6_pcie, true);
 237	if (ret)
 238		return ret;
 239
 240	*data = dw_pcie_readl_dbi(pci, PCIE_PHY_STAT);
 241
 242	/* deassert Read signal */
 243	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, 0x00);
 244
 245	return pcie_phy_poll_ack(imx6_pcie, false);
 246}
 247
 248static int pcie_phy_write(struct imx6_pcie *imx6_pcie, int addr, u16 data)
 249{
 250	struct dw_pcie *pci = imx6_pcie->pci;
 251	u32 var;
 252	int ret;
 253
 254	/* write addr */
 255	/* cap addr */
 256	ret = pcie_phy_wait_ack(imx6_pcie, addr);
 257	if (ret)
 258		return ret;
 259
 260	var = PCIE_PHY_CTRL_DATA(data);
 261	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 262
 263	/* capture data */
 264	var |= PCIE_PHY_CTRL_CAP_DAT;
 265	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 266
 267	ret = pcie_phy_poll_ack(imx6_pcie, true);
 268	if (ret)
 269		return ret;
 270
 271	/* deassert cap data */
 272	var = PCIE_PHY_CTRL_DATA(data);
 273	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 274
 275	/* wait for ack de-assertion */
 276	ret = pcie_phy_poll_ack(imx6_pcie, false);
 277	if (ret)
 278		return ret;
 279
 280	/* assert wr signal */
 281	var = PCIE_PHY_CTRL_WR;
 282	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 283
 284	/* wait for ack */
 285	ret = pcie_phy_poll_ack(imx6_pcie, true);
 286	if (ret)
 287		return ret;
 288
 289	/* deassert wr signal */
 290	var = PCIE_PHY_CTRL_DATA(data);
 291	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 292
 293	/* wait for ack de-assertion */
 294	ret = pcie_phy_poll_ack(imx6_pcie, false);
 295	if (ret)
 296		return ret;
 297
 298	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, 0x0);
 299
 300	return 0;
 301}
 302
 303static void imx6_pcie_init_phy(struct imx6_pcie *imx6_pcie)
 304{
 305	switch (imx6_pcie->drvdata->variant) {
 306	case IMX8MM:
 307	case IMX8MP:
 308		/*
 309		 * The PHY initialization had been done in the PHY
 310		 * driver, break here directly.
 311		 */
 312		break;
 313	case IMX8MQ:
 314		/*
 315		 * TODO: Currently this code assumes external
 316		 * oscillator is being used
 317		 */
 318		regmap_update_bits(imx6_pcie->iomuxc_gpr,
 319				   imx6_pcie_grp_offset(imx6_pcie),
 320				   IMX8MQ_GPR_PCIE_REF_USE_PAD,
 321				   IMX8MQ_GPR_PCIE_REF_USE_PAD);
 322		/*
 323		 * Regarding the datasheet, the PCIE_VPH is suggested
 324		 * to be 1.8V. If the PCIE_VPH is supplied by 3.3V, the
 325		 * VREG_BYPASS should be cleared to zero.
 326		 */
 327		if (imx6_pcie->vph &&
 328		    regulator_get_voltage(imx6_pcie->vph) > 3000000)
 329			regmap_update_bits(imx6_pcie->iomuxc_gpr,
 330					   imx6_pcie_grp_offset(imx6_pcie),
 331					   IMX8MQ_GPR_PCIE_VREG_BYPASS,
 332					   0);
 333		break;
 334	case IMX7D:
 335		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 336				   IMX7D_GPR12_PCIE_PHY_REFCLK_SEL, 0);
 337		break;
 338	case IMX6SX:
 339		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 340				   IMX6SX_GPR12_PCIE_RX_EQ_MASK,
 341				   IMX6SX_GPR12_PCIE_RX_EQ_2);
 342		fallthrough;
 343	default:
 344		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 345				   IMX6Q_GPR12_PCIE_CTL_2, 0 << 10);
 346
 347		/* configure constant input signal to the pcie ctrl and phy */
 348		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 349				   IMX6Q_GPR12_LOS_LEVEL, 9 << 4);
 350
 351		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 352				   IMX6Q_GPR8_TX_DEEMPH_GEN1,
 353				   imx6_pcie->tx_deemph_gen1 << 0);
 354		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 355				   IMX6Q_GPR8_TX_DEEMPH_GEN2_3P5DB,
 356				   imx6_pcie->tx_deemph_gen2_3p5db << 6);
 357		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 358				   IMX6Q_GPR8_TX_DEEMPH_GEN2_6DB,
 359				   imx6_pcie->tx_deemph_gen2_6db << 12);
 360		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 361				   IMX6Q_GPR8_TX_SWING_FULL,
 362				   imx6_pcie->tx_swing_full << 18);
 363		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 364				   IMX6Q_GPR8_TX_SWING_LOW,
 365				   imx6_pcie->tx_swing_low << 25);
 366		break;
 367	}
 368
 369	imx6_pcie_configure_type(imx6_pcie);
 370}
 371
 372static void imx7d_pcie_wait_for_phy_pll_lock(struct imx6_pcie *imx6_pcie)
 373{
 374	u32 val;
 375	struct device *dev = imx6_pcie->pci->dev;
 376
 377	if (regmap_read_poll_timeout(imx6_pcie->iomuxc_gpr,
 378				     IOMUXC_GPR22, val,
 379				     val & IMX7D_GPR22_PCIE_PHY_PLL_LOCKED,
 380				     PHY_PLL_LOCK_WAIT_USLEEP_MAX,
 381				     PHY_PLL_LOCK_WAIT_TIMEOUT))
 382		dev_err(dev, "PCIe PLL lock timeout\n");
 383}
 384
 385static int imx6_setup_phy_mpll(struct imx6_pcie *imx6_pcie)
 386{
 387	unsigned long phy_rate = clk_get_rate(imx6_pcie->pcie_phy);
 388	int mult, div;
 389	u16 val;
 390
 391	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_IMX6_PHY))
 392		return 0;
 393
 394	switch (phy_rate) {
 395	case 125000000:
 396		/*
 397		 * The default settings of the MPLL are for a 125MHz input
 398		 * clock, so no need to reconfigure anything in that case.
 399		 */
 400		return 0;
 401	case 100000000:
 402		mult = 25;
 403		div = 0;
 404		break;
 405	case 200000000:
 406		mult = 25;
 407		div = 1;
 408		break;
 409	default:
 410		dev_err(imx6_pcie->pci->dev,
 411			"Unsupported PHY reference clock rate %lu\n", phy_rate);
 412		return -EINVAL;
 413	}
 414
 415	pcie_phy_read(imx6_pcie, PCIE_PHY_MPLL_OVRD_IN_LO, &val);
 416	val &= ~(PCIE_PHY_MPLL_MULTIPLIER_MASK <<
 417		 PCIE_PHY_MPLL_MULTIPLIER_SHIFT);
 418	val |= mult << PCIE_PHY_MPLL_MULTIPLIER_SHIFT;
 419	val |= PCIE_PHY_MPLL_MULTIPLIER_OVRD;
 420	pcie_phy_write(imx6_pcie, PCIE_PHY_MPLL_OVRD_IN_LO, val);
 421
 422	pcie_phy_read(imx6_pcie, PCIE_PHY_ATEOVRD, &val);
 423	val &= ~(PCIE_PHY_ATEOVRD_REF_CLKDIV_MASK <<
 424		 PCIE_PHY_ATEOVRD_REF_CLKDIV_SHIFT);
 425	val |= div << PCIE_PHY_ATEOVRD_REF_CLKDIV_SHIFT;
 426	val |= PCIE_PHY_ATEOVRD_EN;
 427	pcie_phy_write(imx6_pcie, PCIE_PHY_ATEOVRD, val);
 428
 429	return 0;
 430}
 431
 432static void imx6_pcie_reset_phy(struct imx6_pcie *imx6_pcie)
 433{
 434	u16 tmp;
 435
 436	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_IMX6_PHY))
 437		return;
 438
 439	pcie_phy_read(imx6_pcie, PHY_RX_OVRD_IN_LO, &tmp);
 440	tmp |= (PHY_RX_OVRD_IN_LO_RX_DATA_EN |
 441		PHY_RX_OVRD_IN_LO_RX_PLL_EN);
 442	pcie_phy_write(imx6_pcie, PHY_RX_OVRD_IN_LO, tmp);
 443
 444	usleep_range(2000, 3000);
 445
 446	pcie_phy_read(imx6_pcie, PHY_RX_OVRD_IN_LO, &tmp);
 447	tmp &= ~(PHY_RX_OVRD_IN_LO_RX_DATA_EN |
 448		  PHY_RX_OVRD_IN_LO_RX_PLL_EN);
 449	pcie_phy_write(imx6_pcie, PHY_RX_OVRD_IN_LO, tmp);
 450}
 451
 452#ifdef CONFIG_ARM
 453/*  Added for PCI abort handling */
 454static int imx6q_pcie_abort_handler(unsigned long addr,
 455		unsigned int fsr, struct pt_regs *regs)
 456{
 457	unsigned long pc = instruction_pointer(regs);
 458	unsigned long instr = *(unsigned long *)pc;
 459	int reg = (instr >> 12) & 15;
 460
 461	/*
 462	 * If the instruction being executed was a read,
 463	 * make it look like it read all-ones.
 464	 */
 465	if ((instr & 0x0c100000) == 0x04100000) {
 466		unsigned long val;
 467
 468		if (instr & 0x00400000)
 469			val = 255;
 470		else
 471			val = -1;
 472
 473		regs->uregs[reg] = val;
 474		regs->ARM_pc += 4;
 475		return 0;
 476	}
 477
 478	if ((instr & 0x0e100090) == 0x00100090) {
 479		regs->uregs[reg] = -1;
 480		regs->ARM_pc += 4;
 481		return 0;
 482	}
 483
 484	return 1;
 485}
 486#endif
 487
 488static int imx6_pcie_attach_pd(struct device *dev)
 489{
 490	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 491	struct device_link *link;
 492
 493	/* Do nothing when in a single power domain */
 494	if (dev->pm_domain)
 495		return 0;
 496
 497	imx6_pcie->pd_pcie = dev_pm_domain_attach_by_name(dev, "pcie");
 498	if (IS_ERR(imx6_pcie->pd_pcie))
 499		return PTR_ERR(imx6_pcie->pd_pcie);
 500	/* Do nothing when power domain missing */
 501	if (!imx6_pcie->pd_pcie)
 502		return 0;
 503	link = device_link_add(dev, imx6_pcie->pd_pcie,
 504			DL_FLAG_STATELESS |
 505			DL_FLAG_PM_RUNTIME |
 506			DL_FLAG_RPM_ACTIVE);
 507	if (!link) {
 508		dev_err(dev, "Failed to add device_link to pcie pd.\n");
 509		return -EINVAL;
 510	}
 511
 512	imx6_pcie->pd_pcie_phy = dev_pm_domain_attach_by_name(dev, "pcie_phy");
 513	if (IS_ERR(imx6_pcie->pd_pcie_phy))
 514		return PTR_ERR(imx6_pcie->pd_pcie_phy);
 515
 516	link = device_link_add(dev, imx6_pcie->pd_pcie_phy,
 517			DL_FLAG_STATELESS |
 518			DL_FLAG_PM_RUNTIME |
 519			DL_FLAG_RPM_ACTIVE);
 520	if (!link) {
 521		dev_err(dev, "Failed to add device_link to pcie_phy pd.\n");
 522		return -EINVAL;
 523	}
 524
 525	return 0;
 526}
 527
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 528static int imx6_pcie_enable_ref_clk(struct imx6_pcie *imx6_pcie)
 529{
 530	struct dw_pcie *pci = imx6_pcie->pci;
 531	struct device *dev = pci->dev;
 532	unsigned int offset;
 533	int ret = 0;
 534
 535	switch (imx6_pcie->drvdata->variant) {
 536	case IMX6SX:
 537		ret = clk_prepare_enable(imx6_pcie->pcie_inbound_axi);
 538		if (ret) {
 539			dev_err(dev, "unable to enable pcie_axi clock\n");
 540			break;
 541		}
 542
 543		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 544				   IMX6SX_GPR12_PCIE_TEST_POWERDOWN, 0);
 545		break;
 546	case IMX6QP:
 547	case IMX6Q:
 548		/* power up core phy and enable ref clock */
 549		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 550				   IMX6Q_GPR1_PCIE_TEST_PD, 0 << 18);
 551		/*
 552		 * the async reset input need ref clock to sync internally,
 553		 * when the ref clock comes after reset, internal synced
 554		 * reset time is too short, cannot meet the requirement.
 555		 * add one ~10us delay here.
 556		 */
 557		usleep_range(10, 100);
 558		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 559				   IMX6Q_GPR1_PCIE_REF_CLK_EN, 1 << 16);
 560		break;
 561	case IMX7D:
 562		break;
 563	case IMX8MM:
 564	case IMX8MQ:
 565	case IMX8MP:
 566		ret = clk_prepare_enable(imx6_pcie->pcie_aux);
 567		if (ret) {
 568			dev_err(dev, "unable to enable pcie_aux clock\n");
 569			break;
 570		}
 571
 572		offset = imx6_pcie_grp_offset(imx6_pcie);
 573		/*
 574		 * Set the over ride low and enabled
 575		 * make sure that REF_CLK is turned on.
 576		 */
 577		regmap_update_bits(imx6_pcie->iomuxc_gpr, offset,
 578				   IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE,
 579				   0);
 580		regmap_update_bits(imx6_pcie->iomuxc_gpr, offset,
 581				   IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN,
 582				   IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN);
 583		break;
 584	}
 585
 586	return ret;
 587}
 588
 589static void imx6_pcie_disable_ref_clk(struct imx6_pcie *imx6_pcie)
 590{
 591	switch (imx6_pcie->drvdata->variant) {
 592	case IMX6SX:
 593		clk_disable_unprepare(imx6_pcie->pcie_inbound_axi);
 594		break;
 595	case IMX6QP:
 596	case IMX6Q:
 597		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 598				IMX6Q_GPR1_PCIE_REF_CLK_EN, 0);
 599		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 600				IMX6Q_GPR1_PCIE_TEST_PD,
 601				IMX6Q_GPR1_PCIE_TEST_PD);
 602		break;
 603	case IMX7D:
 604		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 605				   IMX7D_GPR12_PCIE_PHY_REFCLK_SEL,
 606				   IMX7D_GPR12_PCIE_PHY_REFCLK_SEL);
 607		break;
 608	case IMX8MM:
 609	case IMX8MQ:
 610	case IMX8MP:
 611		clk_disable_unprepare(imx6_pcie->pcie_aux);
 612		break;
 613	default:
 614		break;
 615	}
 616}
 617
 618static int imx6_pcie_clk_enable(struct imx6_pcie *imx6_pcie)
 619{
 620	struct dw_pcie *pci = imx6_pcie->pci;
 621	struct device *dev = pci->dev;
 622	int ret;
 623
 
 
 
 
 
 
 
 
 
 624	ret = clk_prepare_enable(imx6_pcie->pcie_phy);
 625	if (ret) {
 626		dev_err(dev, "unable to enable pcie_phy clock\n");
 627		return ret;
 628	}
 629
 630	ret = clk_prepare_enable(imx6_pcie->pcie_bus);
 631	if (ret) {
 632		dev_err(dev, "unable to enable pcie_bus clock\n");
 633		goto err_pcie_bus;
 634	}
 635
 636	ret = clk_prepare_enable(imx6_pcie->pcie);
 637	if (ret) {
 638		dev_err(dev, "unable to enable pcie clock\n");
 639		goto err_pcie;
 640	}
 641
 642	ret = imx6_pcie_enable_ref_clk(imx6_pcie);
 643	if (ret) {
 644		dev_err(dev, "unable to enable pcie ref clock\n");
 645		goto err_ref_clk;
 646	}
 647
 648	/* allow the clocks to stabilize */
 649	usleep_range(200, 500);
 650	return 0;
 651
 652err_ref_clk:
 653	clk_disable_unprepare(imx6_pcie->pcie);
 654err_pcie:
 655	clk_disable_unprepare(imx6_pcie->pcie_bus);
 656err_pcie_bus:
 657	clk_disable_unprepare(imx6_pcie->pcie_phy);
 658
 659	return ret;
 660}
 661
 662static void imx6_pcie_clk_disable(struct imx6_pcie *imx6_pcie)
 663{
 664	imx6_pcie_disable_ref_clk(imx6_pcie);
 665	clk_disable_unprepare(imx6_pcie->pcie);
 666	clk_disable_unprepare(imx6_pcie->pcie_bus);
 667	clk_disable_unprepare(imx6_pcie->pcie_phy);
 668}
 669
 670static void imx6_pcie_assert_core_reset(struct imx6_pcie *imx6_pcie)
 671{
 672	switch (imx6_pcie->drvdata->variant) {
 673	case IMX7D:
 674	case IMX8MQ:
 675		reset_control_assert(imx6_pcie->pciephy_reset);
 676		fallthrough;
 677	case IMX8MM:
 678	case IMX8MP:
 679		reset_control_assert(imx6_pcie->apps_reset);
 680		break;
 681	case IMX6SX:
 682		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 683				   IMX6SX_GPR12_PCIE_TEST_POWERDOWN,
 684				   IMX6SX_GPR12_PCIE_TEST_POWERDOWN);
 685		/* Force PCIe PHY reset */
 686		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR5,
 687				   IMX6SX_GPR5_PCIE_BTNRST_RESET,
 688				   IMX6SX_GPR5_PCIE_BTNRST_RESET);
 689		break;
 690	case IMX6QP:
 691		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 692				   IMX6Q_GPR1_PCIE_SW_RST,
 693				   IMX6Q_GPR1_PCIE_SW_RST);
 694		break;
 695	case IMX6Q:
 696		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 697				   IMX6Q_GPR1_PCIE_TEST_PD, 1 << 18);
 698		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 699				   IMX6Q_GPR1_PCIE_REF_CLK_EN, 0 << 16);
 700		break;
 701	}
 702
 703	/* Some boards don't have PCIe reset GPIO. */
 704	if (gpio_is_valid(imx6_pcie->reset_gpio))
 705		gpio_set_value_cansleep(imx6_pcie->reset_gpio,
 706					imx6_pcie->gpio_active_high);
 707}
 708
 709static int imx6_pcie_deassert_core_reset(struct imx6_pcie *imx6_pcie)
 710{
 711	struct dw_pcie *pci = imx6_pcie->pci;
 712	struct device *dev = pci->dev;
 713
 714	switch (imx6_pcie->drvdata->variant) {
 715	case IMX8MQ:
 716		reset_control_deassert(imx6_pcie->pciephy_reset);
 717		break;
 718	case IMX7D:
 719		reset_control_deassert(imx6_pcie->pciephy_reset);
 720
 721		/* Workaround for ERR010728, failure of PCI-e PLL VCO to
 722		 * oscillate, especially when cold.  This turns off "Duty-cycle
 723		 * Corrector" and other mysterious undocumented things.
 724		 */
 725		if (likely(imx6_pcie->phy_base)) {
 726			/* De-assert DCC_FB_EN */
 727			writel(PCIE_PHY_CMN_REG4_DCC_FB_EN,
 728			       imx6_pcie->phy_base + PCIE_PHY_CMN_REG4);
 729			/* Assert RX_EQS and RX_EQS_SEL */
 730			writel(PCIE_PHY_CMN_REG24_RX_EQ_SEL
 731				| PCIE_PHY_CMN_REG24_RX_EQ,
 732			       imx6_pcie->phy_base + PCIE_PHY_CMN_REG24);
 733			/* Assert ATT_MODE */
 734			writel(PCIE_PHY_CMN_REG26_ATT_MODE,
 735			       imx6_pcie->phy_base + PCIE_PHY_CMN_REG26);
 736		} else {
 737			dev_warn(dev, "Unable to apply ERR010728 workaround. DT missing fsl,imx7d-pcie-phy phandle ?\n");
 738		}
 739
 740		imx7d_pcie_wait_for_phy_pll_lock(imx6_pcie);
 741		break;
 742	case IMX6SX:
 743		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR5,
 744				   IMX6SX_GPR5_PCIE_BTNRST_RESET, 0);
 745		break;
 746	case IMX6QP:
 747		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 748				   IMX6Q_GPR1_PCIE_SW_RST, 0);
 749
 750		usleep_range(200, 500);
 751		break;
 752	case IMX6Q:		/* Nothing to do */
 753	case IMX8MM:
 754	case IMX8MP:
 755		break;
 756	}
 757
 758	/* Some boards don't have PCIe reset GPIO. */
 759	if (gpio_is_valid(imx6_pcie->reset_gpio)) {
 760		msleep(100);
 761		gpio_set_value_cansleep(imx6_pcie->reset_gpio,
 762					!imx6_pcie->gpio_active_high);
 763		/* Wait for 100ms after PERST# deassertion (PCIe r5.0, 6.6.1) */
 764		msleep(100);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 765	}
 766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 767	return 0;
 768}
 769
 770static int imx6_pcie_wait_for_speed_change(struct imx6_pcie *imx6_pcie)
 771{
 772	struct dw_pcie *pci = imx6_pcie->pci;
 773	struct device *dev = pci->dev;
 774	u32 tmp;
 775	unsigned int retries;
 776
 777	for (retries = 0; retries < 200; retries++) {
 778		tmp = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
 779		/* Test if the speed change finished. */
 780		if (!(tmp & PORT_LOGIC_SPEED_CHANGE))
 781			return 0;
 782		usleep_range(100, 1000);
 783	}
 784
 785	dev_err(dev, "Speed change timeout\n");
 786	return -ETIMEDOUT;
 787}
 788
 789static void imx6_pcie_ltssm_enable(struct device *dev)
 790{
 791	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 792
 793	switch (imx6_pcie->drvdata->variant) {
 794	case IMX6Q:
 795	case IMX6SX:
 796	case IMX6QP:
 797		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 798				   IMX6Q_GPR12_PCIE_CTL_2,
 799				   IMX6Q_GPR12_PCIE_CTL_2);
 800		break;
 801	case IMX7D:
 802	case IMX8MQ:
 803	case IMX8MM:
 804	case IMX8MP:
 805		reset_control_deassert(imx6_pcie->apps_reset);
 806		break;
 807	}
 808}
 809
 810static void imx6_pcie_ltssm_disable(struct device *dev)
 811{
 812	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 813
 814	switch (imx6_pcie->drvdata->variant) {
 815	case IMX6Q:
 816	case IMX6SX:
 817	case IMX6QP:
 818		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 819				   IMX6Q_GPR12_PCIE_CTL_2, 0);
 820		break;
 821	case IMX7D:
 822	case IMX8MQ:
 823	case IMX8MM:
 824	case IMX8MP:
 825		reset_control_assert(imx6_pcie->apps_reset);
 826		break;
 827	}
 828}
 829
 830static int imx6_pcie_start_link(struct dw_pcie *pci)
 831{
 832	struct imx6_pcie *imx6_pcie = to_imx6_pcie(pci);
 833	struct device *dev = pci->dev;
 834	u8 offset = dw_pcie_find_capability(pci, PCI_CAP_ID_EXP);
 835	u32 tmp;
 836	int ret;
 837
 838	/*
 839	 * Force Gen1 operation when starting the link.  In case the link is
 840	 * started in Gen2 mode, there is a possibility the devices on the
 841	 * bus will not be detected at all.  This happens with PCIe switches.
 842	 */
 843	dw_pcie_dbi_ro_wr_en(pci);
 844	tmp = dw_pcie_readl_dbi(pci, offset + PCI_EXP_LNKCAP);
 845	tmp &= ~PCI_EXP_LNKCAP_SLS;
 846	tmp |= PCI_EXP_LNKCAP_SLS_2_5GB;
 847	dw_pcie_writel_dbi(pci, offset + PCI_EXP_LNKCAP, tmp);
 848	dw_pcie_dbi_ro_wr_dis(pci);
 849
 850	/* Start LTSSM. */
 851	imx6_pcie_ltssm_enable(dev);
 852
 853	ret = dw_pcie_wait_for_link(pci);
 854	if (ret)
 855		goto err_reset_phy;
 856
 857	if (pci->link_gen > 1) {
 858		/* Allow faster modes after the link is up */
 859		dw_pcie_dbi_ro_wr_en(pci);
 860		tmp = dw_pcie_readl_dbi(pci, offset + PCI_EXP_LNKCAP);
 861		tmp &= ~PCI_EXP_LNKCAP_SLS;
 862		tmp |= pci->link_gen;
 863		dw_pcie_writel_dbi(pci, offset + PCI_EXP_LNKCAP, tmp);
 864
 865		/*
 866		 * Start Directed Speed Change so the best possible
 867		 * speed both link partners support can be negotiated.
 868		 */
 869		tmp = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
 870		tmp |= PORT_LOGIC_SPEED_CHANGE;
 871		dw_pcie_writel_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL, tmp);
 872		dw_pcie_dbi_ro_wr_dis(pci);
 873
 874		if (imx6_pcie->drvdata->flags &
 875		    IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE) {
 876			/*
 877			 * On i.MX7, DIRECT_SPEED_CHANGE behaves differently
 878			 * from i.MX6 family when no link speed transition
 879			 * occurs and we go Gen1 -> yep, Gen1. The difference
 880			 * is that, in such case, it will not be cleared by HW
 881			 * which will cause the following code to report false
 882			 * failure.
 883			 */
 884
 885			ret = imx6_pcie_wait_for_speed_change(imx6_pcie);
 886			if (ret) {
 887				dev_err(dev, "Failed to bring link up!\n");
 888				goto err_reset_phy;
 889			}
 890		}
 891
 892		/* Make sure link training is finished as well! */
 893		ret = dw_pcie_wait_for_link(pci);
 894		if (ret)
 
 895			goto err_reset_phy;
 
 896	} else {
 897		dev_info(dev, "Link: Only Gen1 is enabled\n");
 898	}
 899
 900	imx6_pcie->link_is_up = true;
 901	tmp = dw_pcie_readw_dbi(pci, offset + PCI_EXP_LNKSTA);
 902	dev_info(dev, "Link up, Gen%i\n", tmp & PCI_EXP_LNKSTA_CLS);
 903	return 0;
 904
 905err_reset_phy:
 906	imx6_pcie->link_is_up = false;
 907	dev_dbg(dev, "PHY DEBUG_R0=0x%08x DEBUG_R1=0x%08x\n",
 908		dw_pcie_readl_dbi(pci, PCIE_PORT_DEBUG0),
 909		dw_pcie_readl_dbi(pci, PCIE_PORT_DEBUG1));
 910	imx6_pcie_reset_phy(imx6_pcie);
 911	return 0;
 912}
 913
 914static void imx6_pcie_stop_link(struct dw_pcie *pci)
 915{
 916	struct device *dev = pci->dev;
 917
 918	/* Turn off PCIe LTSSM */
 919	imx6_pcie_ltssm_disable(dev);
 920}
 921
 922static int imx6_pcie_host_init(struct dw_pcie_rp *pp)
 923{
 924	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 925	struct device *dev = pci->dev;
 926	struct imx6_pcie *imx6_pcie = to_imx6_pcie(pci);
 927	int ret;
 928
 929	if (imx6_pcie->vpcie) {
 930		ret = regulator_enable(imx6_pcie->vpcie);
 931		if (ret) {
 932			dev_err(dev, "failed to enable vpcie regulator: %d\n",
 933				ret);
 934			return ret;
 935		}
 936	}
 937
 938	imx6_pcie_assert_core_reset(imx6_pcie);
 939	imx6_pcie_init_phy(imx6_pcie);
 940
 941	ret = imx6_pcie_clk_enable(imx6_pcie);
 942	if (ret) {
 943		dev_err(dev, "unable to enable pcie clocks: %d\n", ret);
 944		goto err_reg_disable;
 945	}
 946
 947	if (imx6_pcie->phy) {
 948		ret = phy_init(imx6_pcie->phy);
 949		if (ret) {
 950			dev_err(dev, "pcie PHY power up failed\n");
 951			goto err_clk_disable;
 952		}
 953	}
 954
 955	if (imx6_pcie->phy) {
 956		ret = phy_power_on(imx6_pcie->phy);
 957		if (ret) {
 958			dev_err(dev, "waiting for PHY ready timeout!\n");
 959			goto err_phy_off;
 960		}
 961	}
 962
 963	ret = imx6_pcie_deassert_core_reset(imx6_pcie);
 964	if (ret < 0) {
 965		dev_err(dev, "pcie deassert core reset failed: %d\n", ret);
 966		goto err_phy_off;
 967	}
 968
 969	imx6_setup_phy_mpll(imx6_pcie);
 970
 971	return 0;
 972
 973err_phy_off:
 974	if (imx6_pcie->phy)
 975		phy_exit(imx6_pcie->phy);
 976err_clk_disable:
 977	imx6_pcie_clk_disable(imx6_pcie);
 978err_reg_disable:
 979	if (imx6_pcie->vpcie)
 980		regulator_disable(imx6_pcie->vpcie);
 981	return ret;
 982}
 983
 984static void imx6_pcie_host_exit(struct dw_pcie_rp *pp)
 985{
 986	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 987	struct imx6_pcie *imx6_pcie = to_imx6_pcie(pci);
 988
 989	if (imx6_pcie->phy) {
 990		if (phy_power_off(imx6_pcie->phy))
 991			dev_err(pci->dev, "unable to power off PHY\n");
 992		phy_exit(imx6_pcie->phy);
 993	}
 994	imx6_pcie_clk_disable(imx6_pcie);
 995
 996	if (imx6_pcie->vpcie)
 997		regulator_disable(imx6_pcie->vpcie);
 998}
 999
1000static const struct dw_pcie_host_ops imx6_pcie_host_ops = {
1001	.host_init = imx6_pcie_host_init,
1002};
1003
1004static const struct dw_pcie_ops dw_pcie_ops = {
1005	.start_link = imx6_pcie_start_link,
1006};
1007
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1008static void imx6_pcie_pm_turnoff(struct imx6_pcie *imx6_pcie)
1009{
1010	struct device *dev = imx6_pcie->pci->dev;
1011
1012	/* Some variants have a turnoff reset in DT */
1013	if (imx6_pcie->turnoff_reset) {
1014		reset_control_assert(imx6_pcie->turnoff_reset);
1015		reset_control_deassert(imx6_pcie->turnoff_reset);
1016		goto pm_turnoff_sleep;
1017	}
1018
1019	/* Others poke directly at IOMUXC registers */
1020	switch (imx6_pcie->drvdata->variant) {
1021	case IMX6SX:
1022	case IMX6QP:
1023		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
1024				IMX6SX_GPR12_PCIE_PM_TURN_OFF,
1025				IMX6SX_GPR12_PCIE_PM_TURN_OFF);
1026		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
1027				IMX6SX_GPR12_PCIE_PM_TURN_OFF, 0);
1028		break;
1029	default:
1030		dev_err(dev, "PME_Turn_Off not implemented\n");
1031		return;
1032	}
1033
1034	/*
1035	 * Components with an upstream port must respond to
1036	 * PME_Turn_Off with PME_TO_Ack but we can't check.
1037	 *
1038	 * The standard recommends a 1-10ms timeout after which to
1039	 * proceed anyway as if acks were received.
1040	 */
1041pm_turnoff_sleep:
1042	usleep_range(1000, 10000);
1043}
1044
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1045static int imx6_pcie_suspend_noirq(struct device *dev)
1046{
1047	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
1048	struct dw_pcie_rp *pp = &imx6_pcie->pci->pp;
1049
1050	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_SUPPORTS_SUSPEND))
1051		return 0;
1052
1053	imx6_pcie_pm_turnoff(imx6_pcie);
1054	imx6_pcie_stop_link(imx6_pcie->pci);
1055	imx6_pcie_host_exit(pp);
1056
1057	return 0;
1058}
1059
1060static int imx6_pcie_resume_noirq(struct device *dev)
1061{
1062	int ret;
1063	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
1064	struct dw_pcie_rp *pp = &imx6_pcie->pci->pp;
1065
1066	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_SUPPORTS_SUSPEND))
1067		return 0;
1068
1069	ret = imx6_pcie_host_init(pp);
1070	if (ret)
1071		return ret;
1072	dw_pcie_setup_rc(pp);
1073
1074	if (imx6_pcie->link_is_up)
1075		imx6_pcie_start_link(imx6_pcie->pci);
 
1076
1077	return 0;
1078}
 
1079
1080static const struct dev_pm_ops imx6_pcie_pm_ops = {
1081	NOIRQ_SYSTEM_SLEEP_PM_OPS(imx6_pcie_suspend_noirq,
1082				  imx6_pcie_resume_noirq)
1083};
1084
1085static int imx6_pcie_probe(struct platform_device *pdev)
1086{
1087	struct device *dev = &pdev->dev;
1088	struct dw_pcie *pci;
1089	struct imx6_pcie *imx6_pcie;
1090	struct device_node *np;
1091	struct resource *dbi_base;
1092	struct device_node *node = dev->of_node;
1093	int ret;
1094	u16 val;
1095
1096	imx6_pcie = devm_kzalloc(dev, sizeof(*imx6_pcie), GFP_KERNEL);
1097	if (!imx6_pcie)
1098		return -ENOMEM;
1099
1100	pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
1101	if (!pci)
1102		return -ENOMEM;
1103
1104	pci->dev = dev;
1105	pci->ops = &dw_pcie_ops;
1106	pci->pp.ops = &imx6_pcie_host_ops;
1107
1108	imx6_pcie->pci = pci;
1109	imx6_pcie->drvdata = of_device_get_match_data(dev);
1110
1111	/* Find the PHY if one is defined, only imx7d uses it */
1112	np = of_parse_phandle(node, "fsl,imx7d-pcie-phy", 0);
1113	if (np) {
1114		struct resource res;
1115
1116		ret = of_address_to_resource(np, 0, &res);
1117		if (ret) {
1118			dev_err(dev, "Unable to map PCIe PHY\n");
1119			return ret;
1120		}
1121		imx6_pcie->phy_base = devm_ioremap_resource(dev, &res);
1122		if (IS_ERR(imx6_pcie->phy_base))
1123			return PTR_ERR(imx6_pcie->phy_base);
1124	}
1125
1126	dbi_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1127	pci->dbi_base = devm_ioremap_resource(dev, dbi_base);
1128	if (IS_ERR(pci->dbi_base))
1129		return PTR_ERR(pci->dbi_base);
1130
1131	/* Fetch GPIOs */
1132	imx6_pcie->reset_gpio = of_get_named_gpio(node, "reset-gpio", 0);
1133	imx6_pcie->gpio_active_high = of_property_read_bool(node,
1134						"reset-gpio-active-high");
1135	if (gpio_is_valid(imx6_pcie->reset_gpio)) {
1136		ret = devm_gpio_request_one(dev, imx6_pcie->reset_gpio,
1137				imx6_pcie->gpio_active_high ?
1138					GPIOF_OUT_INIT_HIGH :
1139					GPIOF_OUT_INIT_LOW,
1140				"PCIe reset");
1141		if (ret) {
1142			dev_err(dev, "unable to get reset gpio\n");
1143			return ret;
1144		}
1145	} else if (imx6_pcie->reset_gpio == -EPROBE_DEFER) {
1146		return imx6_pcie->reset_gpio;
1147	}
1148
1149	/* Fetch clocks */
 
 
 
 
 
1150	imx6_pcie->pcie_bus = devm_clk_get(dev, "pcie_bus");
1151	if (IS_ERR(imx6_pcie->pcie_bus))
1152		return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_bus),
1153				     "pcie_bus clock source missing or invalid\n");
1154
1155	imx6_pcie->pcie = devm_clk_get(dev, "pcie");
1156	if (IS_ERR(imx6_pcie->pcie))
1157		return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie),
1158				     "pcie clock source missing or invalid\n");
1159
1160	switch (imx6_pcie->drvdata->variant) {
1161	case IMX6SX:
1162		imx6_pcie->pcie_inbound_axi = devm_clk_get(dev,
1163							   "pcie_inbound_axi");
1164		if (IS_ERR(imx6_pcie->pcie_inbound_axi))
1165			return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_inbound_axi),
1166					     "pcie_inbound_axi clock missing or invalid\n");
1167		break;
1168	case IMX8MQ:
1169		imx6_pcie->pcie_aux = devm_clk_get(dev, "pcie_aux");
1170		if (IS_ERR(imx6_pcie->pcie_aux))
1171			return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_aux),
1172					     "pcie_aux clock source missing or invalid\n");
1173		fallthrough;
1174	case IMX7D:
1175		if (dbi_base->start == IMX8MQ_PCIE2_BASE_ADDR)
1176			imx6_pcie->controller_id = 1;
1177
1178		imx6_pcie->pciephy_reset = devm_reset_control_get_exclusive(dev,
1179									    "pciephy");
1180		if (IS_ERR(imx6_pcie->pciephy_reset)) {
1181			dev_err(dev, "Failed to get PCIEPHY reset control\n");
1182			return PTR_ERR(imx6_pcie->pciephy_reset);
1183		}
1184
1185		imx6_pcie->apps_reset = devm_reset_control_get_exclusive(dev,
1186									 "apps");
1187		if (IS_ERR(imx6_pcie->apps_reset)) {
1188			dev_err(dev, "Failed to get PCIE APPS reset control\n");
1189			return PTR_ERR(imx6_pcie->apps_reset);
1190		}
1191		break;
1192	case IMX8MM:
1193	case IMX8MP:
1194		imx6_pcie->pcie_aux = devm_clk_get(dev, "pcie_aux");
1195		if (IS_ERR(imx6_pcie->pcie_aux))
1196			return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_aux),
1197					     "pcie_aux clock source missing or invalid\n");
1198		imx6_pcie->apps_reset = devm_reset_control_get_exclusive(dev,
1199									 "apps");
1200		if (IS_ERR(imx6_pcie->apps_reset))
1201			return dev_err_probe(dev, PTR_ERR(imx6_pcie->apps_reset),
1202					     "failed to get pcie apps reset control\n");
1203
1204		imx6_pcie->phy = devm_phy_get(dev, "pcie-phy");
1205		if (IS_ERR(imx6_pcie->phy))
1206			return dev_err_probe(dev, PTR_ERR(imx6_pcie->phy),
1207					     "failed to get pcie phy\n");
1208
1209		break;
1210	default:
1211		break;
1212	}
1213	/* Don't fetch the pcie_phy clock, if it has abstract PHY driver */
1214	if (imx6_pcie->phy == NULL) {
1215		imx6_pcie->pcie_phy = devm_clk_get(dev, "pcie_phy");
1216		if (IS_ERR(imx6_pcie->pcie_phy))
1217			return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_phy),
1218					     "pcie_phy clock source missing or invalid\n");
1219	}
1220
1221
1222	/* Grab turnoff reset */
1223	imx6_pcie->turnoff_reset = devm_reset_control_get_optional_exclusive(dev, "turnoff");
1224	if (IS_ERR(imx6_pcie->turnoff_reset)) {
1225		dev_err(dev, "Failed to get TURNOFF reset control\n");
1226		return PTR_ERR(imx6_pcie->turnoff_reset);
1227	}
1228
1229	/* Grab GPR config register range */
1230	imx6_pcie->iomuxc_gpr =
1231		 syscon_regmap_lookup_by_compatible(imx6_pcie->drvdata->gpr);
1232	if (IS_ERR(imx6_pcie->iomuxc_gpr)) {
1233		dev_err(dev, "unable to find iomuxc registers\n");
1234		return PTR_ERR(imx6_pcie->iomuxc_gpr);
1235	}
1236
1237	/* Grab PCIe PHY Tx Settings */
1238	if (of_property_read_u32(node, "fsl,tx-deemph-gen1",
1239				 &imx6_pcie->tx_deemph_gen1))
1240		imx6_pcie->tx_deemph_gen1 = 0;
1241
1242	if (of_property_read_u32(node, "fsl,tx-deemph-gen2-3p5db",
1243				 &imx6_pcie->tx_deemph_gen2_3p5db))
1244		imx6_pcie->tx_deemph_gen2_3p5db = 0;
1245
1246	if (of_property_read_u32(node, "fsl,tx-deemph-gen2-6db",
1247				 &imx6_pcie->tx_deemph_gen2_6db))
1248		imx6_pcie->tx_deemph_gen2_6db = 20;
1249
1250	if (of_property_read_u32(node, "fsl,tx-swing-full",
1251				 &imx6_pcie->tx_swing_full))
1252		imx6_pcie->tx_swing_full = 127;
1253
1254	if (of_property_read_u32(node, "fsl,tx-swing-low",
1255				 &imx6_pcie->tx_swing_low))
1256		imx6_pcie->tx_swing_low = 127;
1257
1258	/* Limit link speed */
1259	pci->link_gen = 1;
1260	of_property_read_u32(node, "fsl,max-link-speed", &pci->link_gen);
1261
1262	imx6_pcie->vpcie = devm_regulator_get_optional(&pdev->dev, "vpcie");
1263	if (IS_ERR(imx6_pcie->vpcie)) {
1264		if (PTR_ERR(imx6_pcie->vpcie) != -ENODEV)
1265			return PTR_ERR(imx6_pcie->vpcie);
1266		imx6_pcie->vpcie = NULL;
1267	}
1268
1269	imx6_pcie->vph = devm_regulator_get_optional(&pdev->dev, "vph");
1270	if (IS_ERR(imx6_pcie->vph)) {
1271		if (PTR_ERR(imx6_pcie->vph) != -ENODEV)
1272			return PTR_ERR(imx6_pcie->vph);
1273		imx6_pcie->vph = NULL;
1274	}
1275
1276	platform_set_drvdata(pdev, imx6_pcie);
1277
1278	ret = imx6_pcie_attach_pd(dev);
1279	if (ret)
1280		return ret;
1281
1282	ret = dw_pcie_host_init(&pci->pp);
1283	if (ret < 0)
1284		return ret;
1285
1286	if (pci_msi_enabled()) {
1287		u8 offset = dw_pcie_find_capability(pci, PCI_CAP_ID_MSI);
1288		val = dw_pcie_readw_dbi(pci, offset + PCI_MSI_FLAGS);
1289		val |= PCI_MSI_FLAGS_ENABLE;
1290		dw_pcie_writew_dbi(pci, offset + PCI_MSI_FLAGS, val);
1291	}
1292
1293	return 0;
1294}
1295
1296static void imx6_pcie_shutdown(struct platform_device *pdev)
1297{
1298	struct imx6_pcie *imx6_pcie = platform_get_drvdata(pdev);
1299
1300	/* bring down link, so bootloader gets clean state in case of reboot */
1301	imx6_pcie_assert_core_reset(imx6_pcie);
1302}
1303
1304static const struct imx6_pcie_drvdata drvdata[] = {
1305	[IMX6Q] = {
1306		.variant = IMX6Q,
1307		.flags = IMX6_PCIE_FLAG_IMX6_PHY |
1308			 IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE,
1309		.dbi_length = 0x200,
1310		.gpr = "fsl,imx6q-iomuxc-gpr",
1311	},
1312	[IMX6SX] = {
1313		.variant = IMX6SX,
1314		.flags = IMX6_PCIE_FLAG_IMX6_PHY |
1315			 IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE |
1316			 IMX6_PCIE_FLAG_SUPPORTS_SUSPEND,
1317		.gpr = "fsl,imx6q-iomuxc-gpr",
1318	},
1319	[IMX6QP] = {
1320		.variant = IMX6QP,
1321		.flags = IMX6_PCIE_FLAG_IMX6_PHY |
1322			 IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE |
1323			 IMX6_PCIE_FLAG_SUPPORTS_SUSPEND,
1324		.dbi_length = 0x200,
1325		.gpr = "fsl,imx6q-iomuxc-gpr",
1326	},
1327	[IMX7D] = {
1328		.variant = IMX7D,
1329		.flags = IMX6_PCIE_FLAG_SUPPORTS_SUSPEND,
1330		.gpr = "fsl,imx7d-iomuxc-gpr",
1331	},
1332	[IMX8MQ] = {
1333		.variant = IMX8MQ,
1334		.gpr = "fsl,imx8mq-iomuxc-gpr",
1335	},
1336	[IMX8MM] = {
1337		.variant = IMX8MM,
1338		.flags = IMX6_PCIE_FLAG_SUPPORTS_SUSPEND,
1339		.gpr = "fsl,imx8mm-iomuxc-gpr",
1340	},
1341	[IMX8MP] = {
1342		.variant = IMX8MP,
1343		.flags = IMX6_PCIE_FLAG_SUPPORTS_SUSPEND,
1344		.gpr = "fsl,imx8mp-iomuxc-gpr",
1345	},
1346};
1347
1348static const struct of_device_id imx6_pcie_of_match[] = {
1349	{ .compatible = "fsl,imx6q-pcie",  .data = &drvdata[IMX6Q],  },
1350	{ .compatible = "fsl,imx6sx-pcie", .data = &drvdata[IMX6SX], },
1351	{ .compatible = "fsl,imx6qp-pcie", .data = &drvdata[IMX6QP], },
1352	{ .compatible = "fsl,imx7d-pcie",  .data = &drvdata[IMX7D],  },
1353	{ .compatible = "fsl,imx8mq-pcie", .data = &drvdata[IMX8MQ], },
1354	{ .compatible = "fsl,imx8mm-pcie", .data = &drvdata[IMX8MM], },
1355	{ .compatible = "fsl,imx8mp-pcie", .data = &drvdata[IMX8MP], },
1356	{},
1357};
1358
1359static struct platform_driver imx6_pcie_driver = {
1360	.driver = {
1361		.name	= "imx6q-pcie",
1362		.of_match_table = imx6_pcie_of_match,
1363		.suppress_bind_attrs = true,
1364		.pm = &imx6_pcie_pm_ops,
1365		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
1366	},
1367	.probe    = imx6_pcie_probe,
1368	.shutdown = imx6_pcie_shutdown,
1369};
1370
1371static void imx6_pcie_quirk(struct pci_dev *dev)
1372{
1373	struct pci_bus *bus = dev->bus;
1374	struct dw_pcie_rp *pp = bus->sysdata;
1375
1376	/* Bus parent is the PCI bridge, its parent is this platform driver */
1377	if (!bus->dev.parent || !bus->dev.parent->parent)
1378		return;
1379
1380	/* Make sure we only quirk devices associated with this driver */
1381	if (bus->dev.parent->parent->driver != &imx6_pcie_driver.driver)
1382		return;
1383
1384	if (pci_is_root_bus(bus)) {
1385		struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
1386		struct imx6_pcie *imx6_pcie = to_imx6_pcie(pci);
1387
1388		/*
1389		 * Limit config length to avoid the kernel reading beyond
1390		 * the register set and causing an abort on i.MX 6Quad
1391		 */
1392		if (imx6_pcie->drvdata->dbi_length) {
1393			dev->cfg_size = imx6_pcie->drvdata->dbi_length;
1394			dev_info(&dev->dev, "Limiting cfg_size to %d\n",
1395					dev->cfg_size);
1396		}
1397	}
1398}
1399DECLARE_PCI_FIXUP_CLASS_HEADER(PCI_VENDOR_ID_SYNOPSYS, 0xabcd,
1400			PCI_CLASS_BRIDGE_PCI, 8, imx6_pcie_quirk);
1401
1402static int __init imx6_pcie_init(void)
1403{
1404#ifdef CONFIG_ARM
1405	/*
1406	 * Since probe() can be deferred we need to make sure that
1407	 * hook_fault_code is not called after __init memory is freed
1408	 * by kernel and since imx6q_pcie_abort_handler() is a no-op,
1409	 * we can install the handler here without risking it
1410	 * accessing some uninitialized driver state.
1411	 */
1412	hook_fault_code(8, imx6q_pcie_abort_handler, SIGBUS, 0,
1413			"external abort on non-linefetch");
1414#endif
1415
1416	return platform_driver_register(&imx6_pcie_driver);
1417}
1418device_initcall(imx6_pcie_init);
v5.14.15
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * PCIe host controller driver for Freescale i.MX6 SoCs
   4 *
   5 * Copyright (C) 2013 Kosagi
   6 *		https://www.kosagi.com
   7 *
   8 * Author: Sean Cross <xobs@kosagi.com>
   9 */
  10
  11#include <linux/bitfield.h>
  12#include <linux/clk.h>
  13#include <linux/delay.h>
  14#include <linux/gpio.h>
  15#include <linux/kernel.h>
  16#include <linux/mfd/syscon.h>
  17#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
  18#include <linux/mfd/syscon/imx7-iomuxc-gpr.h>
  19#include <linux/module.h>
  20#include <linux/of_gpio.h>
  21#include <linux/of_device.h>
  22#include <linux/of_address.h>
  23#include <linux/pci.h>
  24#include <linux/platform_device.h>
  25#include <linux/regmap.h>
  26#include <linux/regulator/consumer.h>
  27#include <linux/resource.h>
  28#include <linux/signal.h>
  29#include <linux/types.h>
  30#include <linux/interrupt.h>
  31#include <linux/reset.h>
 
  32#include <linux/pm_domain.h>
  33#include <linux/pm_runtime.h>
  34
  35#include "pcie-designware.h"
  36
  37#define IMX8MQ_GPR_PCIE_REF_USE_PAD		BIT(9)
  38#define IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN	BIT(10)
  39#define IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE	BIT(11)
  40#define IMX8MQ_GPR_PCIE_VREG_BYPASS		BIT(12)
  41#define IMX8MQ_GPR12_PCIE2_CTRL_DEVICE_TYPE	GENMASK(11, 8)
  42#define IMX8MQ_PCIE2_BASE_ADDR			0x33c00000
  43
  44#define to_imx6_pcie(x)	dev_get_drvdata((x)->dev)
  45
  46enum imx6_pcie_variants {
  47	IMX6Q,
  48	IMX6SX,
  49	IMX6QP,
  50	IMX7D,
  51	IMX8MQ,
 
 
  52};
  53
  54#define IMX6_PCIE_FLAG_IMX6_PHY			BIT(0)
  55#define IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE	BIT(1)
  56#define IMX6_PCIE_FLAG_SUPPORTS_SUSPEND		BIT(2)
  57
  58struct imx6_pcie_drvdata {
  59	enum imx6_pcie_variants variant;
  60	u32 flags;
  61	int dbi_length;
 
  62};
  63
  64struct imx6_pcie {
  65	struct dw_pcie		*pci;
  66	int			reset_gpio;
  67	bool			gpio_active_high;
 
  68	struct clk		*pcie_bus;
  69	struct clk		*pcie_phy;
  70	struct clk		*pcie_inbound_axi;
  71	struct clk		*pcie;
  72	struct clk		*pcie_aux;
  73	struct regmap		*iomuxc_gpr;
  74	u32			controller_id;
  75	struct reset_control	*pciephy_reset;
  76	struct reset_control	*apps_reset;
  77	struct reset_control	*turnoff_reset;
  78	u32			tx_deemph_gen1;
  79	u32			tx_deemph_gen2_3p5db;
  80	u32			tx_deemph_gen2_6db;
  81	u32			tx_swing_full;
  82	u32			tx_swing_low;
  83	struct regulator	*vpcie;
  84	struct regulator	*vph;
  85	void __iomem		*phy_base;
  86
  87	/* power domain for pcie */
  88	struct device		*pd_pcie;
  89	/* power domain for pcie phy */
  90	struct device		*pd_pcie_phy;
 
  91	const struct imx6_pcie_drvdata *drvdata;
  92};
  93
  94/* Parameters for the waiting for PCIe PHY PLL to lock on i.MX7 */
  95#define PHY_PLL_LOCK_WAIT_USLEEP_MAX	200
  96#define PHY_PLL_LOCK_WAIT_TIMEOUT	(2000 * PHY_PLL_LOCK_WAIT_USLEEP_MAX)
  97
  98/* PCIe Port Logic registers (memory-mapped) */
  99#define PL_OFFSET 0x700
 100
 101#define PCIE_PHY_CTRL (PL_OFFSET + 0x114)
 102#define PCIE_PHY_CTRL_DATA(x)		FIELD_PREP(GENMASK(15, 0), (x))
 103#define PCIE_PHY_CTRL_CAP_ADR		BIT(16)
 104#define PCIE_PHY_CTRL_CAP_DAT		BIT(17)
 105#define PCIE_PHY_CTRL_WR		BIT(18)
 106#define PCIE_PHY_CTRL_RD		BIT(19)
 107
 108#define PCIE_PHY_STAT (PL_OFFSET + 0x110)
 109#define PCIE_PHY_STAT_ACK		BIT(16)
 110
 111/* PHY registers (not memory-mapped) */
 112#define PCIE_PHY_ATEOVRD			0x10
 113#define  PCIE_PHY_ATEOVRD_EN			BIT(2)
 114#define  PCIE_PHY_ATEOVRD_REF_CLKDIV_SHIFT	0
 115#define  PCIE_PHY_ATEOVRD_REF_CLKDIV_MASK	0x1
 116
 117#define PCIE_PHY_MPLL_OVRD_IN_LO		0x11
 118#define  PCIE_PHY_MPLL_MULTIPLIER_SHIFT		2
 119#define  PCIE_PHY_MPLL_MULTIPLIER_MASK		0x7f
 120#define  PCIE_PHY_MPLL_MULTIPLIER_OVRD		BIT(9)
 121
 122#define PCIE_PHY_RX_ASIC_OUT 0x100D
 123#define PCIE_PHY_RX_ASIC_OUT_VALID	(1 << 0)
 124
 125/* iMX7 PCIe PHY registers */
 126#define PCIE_PHY_CMN_REG4		0x14
 127/* These are probably the bits that *aren't* DCC_FB_EN */
 128#define PCIE_PHY_CMN_REG4_DCC_FB_EN	0x29
 129
 130#define PCIE_PHY_CMN_REG15	        0x54
 131#define PCIE_PHY_CMN_REG15_DLY_4	BIT(2)
 132#define PCIE_PHY_CMN_REG15_PLL_PD	BIT(5)
 133#define PCIE_PHY_CMN_REG15_OVRD_PLL_PD	BIT(7)
 134
 135#define PCIE_PHY_CMN_REG24		0x90
 136#define PCIE_PHY_CMN_REG24_RX_EQ	BIT(6)
 137#define PCIE_PHY_CMN_REG24_RX_EQ_SEL	BIT(3)
 138
 139#define PCIE_PHY_CMN_REG26		0x98
 140#define PCIE_PHY_CMN_REG26_ATT_MODE	0xBC
 141
 142#define PHY_RX_OVRD_IN_LO 0x1005
 143#define PHY_RX_OVRD_IN_LO_RX_DATA_EN		BIT(5)
 144#define PHY_RX_OVRD_IN_LO_RX_PLL_EN		BIT(3)
 145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 146static int pcie_phy_poll_ack(struct imx6_pcie *imx6_pcie, bool exp_val)
 147{
 148	struct dw_pcie *pci = imx6_pcie->pci;
 149	bool val;
 150	u32 max_iterations = 10;
 151	u32 wait_counter = 0;
 152
 153	do {
 154		val = dw_pcie_readl_dbi(pci, PCIE_PHY_STAT) &
 155			PCIE_PHY_STAT_ACK;
 156		wait_counter++;
 157
 158		if (val == exp_val)
 159			return 0;
 160
 161		udelay(1);
 162	} while (wait_counter < max_iterations);
 163
 164	return -ETIMEDOUT;
 165}
 166
 167static int pcie_phy_wait_ack(struct imx6_pcie *imx6_pcie, int addr)
 168{
 169	struct dw_pcie *pci = imx6_pcie->pci;
 170	u32 val;
 171	int ret;
 172
 173	val = PCIE_PHY_CTRL_DATA(addr);
 174	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, val);
 175
 176	val |= PCIE_PHY_CTRL_CAP_ADR;
 177	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, val);
 178
 179	ret = pcie_phy_poll_ack(imx6_pcie, true);
 180	if (ret)
 181		return ret;
 182
 183	val = PCIE_PHY_CTRL_DATA(addr);
 184	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, val);
 185
 186	return pcie_phy_poll_ack(imx6_pcie, false);
 187}
 188
 189/* Read from the 16-bit PCIe PHY control registers (not memory-mapped) */
 190static int pcie_phy_read(struct imx6_pcie *imx6_pcie, int addr, u16 *data)
 191{
 192	struct dw_pcie *pci = imx6_pcie->pci;
 193	u32 phy_ctl;
 194	int ret;
 195
 196	ret = pcie_phy_wait_ack(imx6_pcie, addr);
 197	if (ret)
 198		return ret;
 199
 200	/* assert Read signal */
 201	phy_ctl = PCIE_PHY_CTRL_RD;
 202	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, phy_ctl);
 203
 204	ret = pcie_phy_poll_ack(imx6_pcie, true);
 205	if (ret)
 206		return ret;
 207
 208	*data = dw_pcie_readl_dbi(pci, PCIE_PHY_STAT);
 209
 210	/* deassert Read signal */
 211	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, 0x00);
 212
 213	return pcie_phy_poll_ack(imx6_pcie, false);
 214}
 215
 216static int pcie_phy_write(struct imx6_pcie *imx6_pcie, int addr, u16 data)
 217{
 218	struct dw_pcie *pci = imx6_pcie->pci;
 219	u32 var;
 220	int ret;
 221
 222	/* write addr */
 223	/* cap addr */
 224	ret = pcie_phy_wait_ack(imx6_pcie, addr);
 225	if (ret)
 226		return ret;
 227
 228	var = PCIE_PHY_CTRL_DATA(data);
 229	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 230
 231	/* capture data */
 232	var |= PCIE_PHY_CTRL_CAP_DAT;
 233	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 234
 235	ret = pcie_phy_poll_ack(imx6_pcie, true);
 236	if (ret)
 237		return ret;
 238
 239	/* deassert cap data */
 240	var = PCIE_PHY_CTRL_DATA(data);
 241	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 242
 243	/* wait for ack de-assertion */
 244	ret = pcie_phy_poll_ack(imx6_pcie, false);
 245	if (ret)
 246		return ret;
 247
 248	/* assert wr signal */
 249	var = PCIE_PHY_CTRL_WR;
 250	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 251
 252	/* wait for ack */
 253	ret = pcie_phy_poll_ack(imx6_pcie, true);
 254	if (ret)
 255		return ret;
 256
 257	/* deassert wr signal */
 258	var = PCIE_PHY_CTRL_DATA(data);
 259	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, var);
 260
 261	/* wait for ack de-assertion */
 262	ret = pcie_phy_poll_ack(imx6_pcie, false);
 263	if (ret)
 264		return ret;
 265
 266	dw_pcie_writel_dbi(pci, PCIE_PHY_CTRL, 0x0);
 267
 268	return 0;
 269}
 270
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 271static void imx6_pcie_reset_phy(struct imx6_pcie *imx6_pcie)
 272{
 273	u16 tmp;
 274
 275	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_IMX6_PHY))
 276		return;
 277
 278	pcie_phy_read(imx6_pcie, PHY_RX_OVRD_IN_LO, &tmp);
 279	tmp |= (PHY_RX_OVRD_IN_LO_RX_DATA_EN |
 280		PHY_RX_OVRD_IN_LO_RX_PLL_EN);
 281	pcie_phy_write(imx6_pcie, PHY_RX_OVRD_IN_LO, tmp);
 282
 283	usleep_range(2000, 3000);
 284
 285	pcie_phy_read(imx6_pcie, PHY_RX_OVRD_IN_LO, &tmp);
 286	tmp &= ~(PHY_RX_OVRD_IN_LO_RX_DATA_EN |
 287		  PHY_RX_OVRD_IN_LO_RX_PLL_EN);
 288	pcie_phy_write(imx6_pcie, PHY_RX_OVRD_IN_LO, tmp);
 289}
 290
 291#ifdef CONFIG_ARM
 292/*  Added for PCI abort handling */
 293static int imx6q_pcie_abort_handler(unsigned long addr,
 294		unsigned int fsr, struct pt_regs *regs)
 295{
 296	unsigned long pc = instruction_pointer(regs);
 297	unsigned long instr = *(unsigned long *)pc;
 298	int reg = (instr >> 12) & 15;
 299
 300	/*
 301	 * If the instruction being executed was a read,
 302	 * make it look like it read all-ones.
 303	 */
 304	if ((instr & 0x0c100000) == 0x04100000) {
 305		unsigned long val;
 306
 307		if (instr & 0x00400000)
 308			val = 255;
 309		else
 310			val = -1;
 311
 312		regs->uregs[reg] = val;
 313		regs->ARM_pc += 4;
 314		return 0;
 315	}
 316
 317	if ((instr & 0x0e100090) == 0x00100090) {
 318		regs->uregs[reg] = -1;
 319		regs->ARM_pc += 4;
 320		return 0;
 321	}
 322
 323	return 1;
 324}
 325#endif
 326
 327static int imx6_pcie_attach_pd(struct device *dev)
 328{
 329	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 330	struct device_link *link;
 331
 332	/* Do nothing when in a single power domain */
 333	if (dev->pm_domain)
 334		return 0;
 335
 336	imx6_pcie->pd_pcie = dev_pm_domain_attach_by_name(dev, "pcie");
 337	if (IS_ERR(imx6_pcie->pd_pcie))
 338		return PTR_ERR(imx6_pcie->pd_pcie);
 339	/* Do nothing when power domain missing */
 340	if (!imx6_pcie->pd_pcie)
 341		return 0;
 342	link = device_link_add(dev, imx6_pcie->pd_pcie,
 343			DL_FLAG_STATELESS |
 344			DL_FLAG_PM_RUNTIME |
 345			DL_FLAG_RPM_ACTIVE);
 346	if (!link) {
 347		dev_err(dev, "Failed to add device_link to pcie pd.\n");
 348		return -EINVAL;
 349	}
 350
 351	imx6_pcie->pd_pcie_phy = dev_pm_domain_attach_by_name(dev, "pcie_phy");
 352	if (IS_ERR(imx6_pcie->pd_pcie_phy))
 353		return PTR_ERR(imx6_pcie->pd_pcie_phy);
 354
 355	link = device_link_add(dev, imx6_pcie->pd_pcie_phy,
 356			DL_FLAG_STATELESS |
 357			DL_FLAG_PM_RUNTIME |
 358			DL_FLAG_RPM_ACTIVE);
 359	if (!link) {
 360		dev_err(dev, "Failed to add device_link to pcie_phy pd.\n");
 361		return -EINVAL;
 362	}
 363
 364	return 0;
 365}
 366
 367static void imx6_pcie_assert_core_reset(struct imx6_pcie *imx6_pcie)
 368{
 369	struct device *dev = imx6_pcie->pci->dev;
 370
 371	switch (imx6_pcie->drvdata->variant) {
 372	case IMX7D:
 373	case IMX8MQ:
 374		reset_control_assert(imx6_pcie->pciephy_reset);
 375		reset_control_assert(imx6_pcie->apps_reset);
 376		break;
 377	case IMX6SX:
 378		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 379				   IMX6SX_GPR12_PCIE_TEST_POWERDOWN,
 380				   IMX6SX_GPR12_PCIE_TEST_POWERDOWN);
 381		/* Force PCIe PHY reset */
 382		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR5,
 383				   IMX6SX_GPR5_PCIE_BTNRST_RESET,
 384				   IMX6SX_GPR5_PCIE_BTNRST_RESET);
 385		break;
 386	case IMX6QP:
 387		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 388				   IMX6Q_GPR1_PCIE_SW_RST,
 389				   IMX6Q_GPR1_PCIE_SW_RST);
 390		break;
 391	case IMX6Q:
 392		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 393				   IMX6Q_GPR1_PCIE_TEST_PD, 1 << 18);
 394		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 395				   IMX6Q_GPR1_PCIE_REF_CLK_EN, 0 << 16);
 396		break;
 397	}
 398
 399	if (imx6_pcie->vpcie && regulator_is_enabled(imx6_pcie->vpcie) > 0) {
 400		int ret = regulator_disable(imx6_pcie->vpcie);
 401
 402		if (ret)
 403			dev_err(dev, "failed to disable vpcie regulator: %d\n",
 404				ret);
 405	}
 406}
 407
 408static unsigned int imx6_pcie_grp_offset(const struct imx6_pcie *imx6_pcie)
 409{
 410	WARN_ON(imx6_pcie->drvdata->variant != IMX8MQ);
 411	return imx6_pcie->controller_id == 1 ? IOMUXC_GPR16 : IOMUXC_GPR14;
 412}
 413
 414static int imx6_pcie_enable_ref_clk(struct imx6_pcie *imx6_pcie)
 415{
 416	struct dw_pcie *pci = imx6_pcie->pci;
 417	struct device *dev = pci->dev;
 418	unsigned int offset;
 419	int ret = 0;
 420
 421	switch (imx6_pcie->drvdata->variant) {
 422	case IMX6SX:
 423		ret = clk_prepare_enable(imx6_pcie->pcie_inbound_axi);
 424		if (ret) {
 425			dev_err(dev, "unable to enable pcie_axi clock\n");
 426			break;
 427		}
 428
 429		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 430				   IMX6SX_GPR12_PCIE_TEST_POWERDOWN, 0);
 431		break;
 432	case IMX6QP:
 433	case IMX6Q:
 434		/* power up core phy and enable ref clock */
 435		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 436				   IMX6Q_GPR1_PCIE_TEST_PD, 0 << 18);
 437		/*
 438		 * the async reset input need ref clock to sync internally,
 439		 * when the ref clock comes after reset, internal synced
 440		 * reset time is too short, cannot meet the requirement.
 441		 * add one ~10us delay here.
 442		 */
 443		usleep_range(10, 100);
 444		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 445				   IMX6Q_GPR1_PCIE_REF_CLK_EN, 1 << 16);
 446		break;
 447	case IMX7D:
 448		break;
 
 449	case IMX8MQ:
 
 450		ret = clk_prepare_enable(imx6_pcie->pcie_aux);
 451		if (ret) {
 452			dev_err(dev, "unable to enable pcie_aux clock\n");
 453			break;
 454		}
 455
 456		offset = imx6_pcie_grp_offset(imx6_pcie);
 457		/*
 458		 * Set the over ride low and enabled
 459		 * make sure that REF_CLK is turned on.
 460		 */
 461		regmap_update_bits(imx6_pcie->iomuxc_gpr, offset,
 462				   IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE,
 463				   0);
 464		regmap_update_bits(imx6_pcie->iomuxc_gpr, offset,
 465				   IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN,
 466				   IMX8MQ_GPR_PCIE_CLK_REQ_OVERRIDE_EN);
 467		break;
 468	}
 469
 470	return ret;
 471}
 472
 473static void imx7d_pcie_wait_for_phy_pll_lock(struct imx6_pcie *imx6_pcie)
 474{
 475	u32 val;
 476	struct device *dev = imx6_pcie->pci->dev;
 477
 478	if (regmap_read_poll_timeout(imx6_pcie->iomuxc_gpr,
 479				     IOMUXC_GPR22, val,
 480				     val & IMX7D_GPR22_PCIE_PHY_PLL_LOCKED,
 481				     PHY_PLL_LOCK_WAIT_USLEEP_MAX,
 482				     PHY_PLL_LOCK_WAIT_TIMEOUT))
 483		dev_err(dev, "PCIe PLL lock timeout\n");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 484}
 485
 486static void imx6_pcie_deassert_core_reset(struct imx6_pcie *imx6_pcie)
 487{
 488	struct dw_pcie *pci = imx6_pcie->pci;
 489	struct device *dev = pci->dev;
 490	int ret;
 491
 492	if (imx6_pcie->vpcie && !regulator_is_enabled(imx6_pcie->vpcie)) {
 493		ret = regulator_enable(imx6_pcie->vpcie);
 494		if (ret) {
 495			dev_err(dev, "failed to enable vpcie regulator: %d\n",
 496				ret);
 497			return;
 498		}
 499	}
 500
 501	ret = clk_prepare_enable(imx6_pcie->pcie_phy);
 502	if (ret) {
 503		dev_err(dev, "unable to enable pcie_phy clock\n");
 504		goto err_pcie_phy;
 505	}
 506
 507	ret = clk_prepare_enable(imx6_pcie->pcie_bus);
 508	if (ret) {
 509		dev_err(dev, "unable to enable pcie_bus clock\n");
 510		goto err_pcie_bus;
 511	}
 512
 513	ret = clk_prepare_enable(imx6_pcie->pcie);
 514	if (ret) {
 515		dev_err(dev, "unable to enable pcie clock\n");
 516		goto err_pcie;
 517	}
 518
 519	ret = imx6_pcie_enable_ref_clk(imx6_pcie);
 520	if (ret) {
 521		dev_err(dev, "unable to enable pcie ref clock\n");
 522		goto err_ref_clk;
 523	}
 524
 525	/* allow the clocks to stabilize */
 526	usleep_range(200, 500);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 527
 528	/* Some boards don't have PCIe reset GPIO. */
 529	if (gpio_is_valid(imx6_pcie->reset_gpio)) {
 530		gpio_set_value_cansleep(imx6_pcie->reset_gpio,
 531					imx6_pcie->gpio_active_high);
 532		msleep(100);
 533		gpio_set_value_cansleep(imx6_pcie->reset_gpio,
 534					!imx6_pcie->gpio_active_high);
 535	}
 
 
 536
 537	switch (imx6_pcie->drvdata->variant) {
 538	case IMX8MQ:
 539		reset_control_deassert(imx6_pcie->pciephy_reset);
 540		break;
 541	case IMX7D:
 542		reset_control_deassert(imx6_pcie->pciephy_reset);
 543
 544		/* Workaround for ERR010728, failure of PCI-e PLL VCO to
 545		 * oscillate, especially when cold.  This turns off "Duty-cycle
 546		 * Corrector" and other mysterious undocumented things.
 547		 */
 548		if (likely(imx6_pcie->phy_base)) {
 549			/* De-assert DCC_FB_EN */
 550			writel(PCIE_PHY_CMN_REG4_DCC_FB_EN,
 551			       imx6_pcie->phy_base + PCIE_PHY_CMN_REG4);
 552			/* Assert RX_EQS and RX_EQS_SEL */
 553			writel(PCIE_PHY_CMN_REG24_RX_EQ_SEL
 554				| PCIE_PHY_CMN_REG24_RX_EQ,
 555			       imx6_pcie->phy_base + PCIE_PHY_CMN_REG24);
 556			/* Assert ATT_MODE */
 557			writel(PCIE_PHY_CMN_REG26_ATT_MODE,
 558			       imx6_pcie->phy_base + PCIE_PHY_CMN_REG26);
 559		} else {
 560			dev_warn(dev, "Unable to apply ERR010728 workaround. DT missing fsl,imx7d-pcie-phy phandle ?\n");
 561		}
 562
 563		imx7d_pcie_wait_for_phy_pll_lock(imx6_pcie);
 564		break;
 565	case IMX6SX:
 566		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR5,
 567				   IMX6SX_GPR5_PCIE_BTNRST_RESET, 0);
 568		break;
 569	case IMX6QP:
 570		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR1,
 571				   IMX6Q_GPR1_PCIE_SW_RST, 0);
 572
 573		usleep_range(200, 500);
 574		break;
 575	case IMX6Q:		/* Nothing to do */
 
 
 576		break;
 577	}
 578
 579	return;
 580
 581err_ref_clk:
 582	clk_disable_unprepare(imx6_pcie->pcie);
 583err_pcie:
 584	clk_disable_unprepare(imx6_pcie->pcie_bus);
 585err_pcie_bus:
 586	clk_disable_unprepare(imx6_pcie->pcie_phy);
 587err_pcie_phy:
 588	if (imx6_pcie->vpcie && regulator_is_enabled(imx6_pcie->vpcie) > 0) {
 589		ret = regulator_disable(imx6_pcie->vpcie);
 590		if (ret)
 591			dev_err(dev, "failed to disable vpcie regulator: %d\n",
 592				ret);
 593	}
 594}
 595
 596static void imx6_pcie_configure_type(struct imx6_pcie *imx6_pcie)
 597{
 598	unsigned int mask, val;
 599
 600	if (imx6_pcie->drvdata->variant == IMX8MQ &&
 601	    imx6_pcie->controller_id == 1) {
 602		mask   = IMX8MQ_GPR12_PCIE2_CTRL_DEVICE_TYPE;
 603		val    = FIELD_PREP(IMX8MQ_GPR12_PCIE2_CTRL_DEVICE_TYPE,
 604				    PCI_EXP_TYPE_ROOT_PORT);
 605	} else {
 606		mask = IMX6Q_GPR12_DEVICE_TYPE;
 607		val  = FIELD_PREP(IMX6Q_GPR12_DEVICE_TYPE,
 608				  PCI_EXP_TYPE_ROOT_PORT);
 609	}
 610
 611	regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12, mask, val);
 612}
 613
 614static void imx6_pcie_init_phy(struct imx6_pcie *imx6_pcie)
 615{
 616	switch (imx6_pcie->drvdata->variant) {
 617	case IMX8MQ:
 618		/*
 619		 * TODO: Currently this code assumes external
 620		 * oscillator is being used
 621		 */
 622		regmap_update_bits(imx6_pcie->iomuxc_gpr,
 623				   imx6_pcie_grp_offset(imx6_pcie),
 624				   IMX8MQ_GPR_PCIE_REF_USE_PAD,
 625				   IMX8MQ_GPR_PCIE_REF_USE_PAD);
 626		/*
 627		 * Regarding the datasheet, the PCIE_VPH is suggested
 628		 * to be 1.8V. If the PCIE_VPH is supplied by 3.3V, the
 629		 * VREG_BYPASS should be cleared to zero.
 630		 */
 631		if (imx6_pcie->vph &&
 632		    regulator_get_voltage(imx6_pcie->vph) > 3000000)
 633			regmap_update_bits(imx6_pcie->iomuxc_gpr,
 634					   imx6_pcie_grp_offset(imx6_pcie),
 635					   IMX8MQ_GPR_PCIE_VREG_BYPASS,
 636					   0);
 637		break;
 638	case IMX7D:
 639		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 640				   IMX7D_GPR12_PCIE_PHY_REFCLK_SEL, 0);
 641		break;
 642	case IMX6SX:
 643		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 644				   IMX6SX_GPR12_PCIE_RX_EQ_MASK,
 645				   IMX6SX_GPR12_PCIE_RX_EQ_2);
 646		fallthrough;
 647	default:
 648		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 649				   IMX6Q_GPR12_PCIE_CTL_2, 0 << 10);
 650
 651		/* configure constant input signal to the pcie ctrl and phy */
 652		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 653				   IMX6Q_GPR12_LOS_LEVEL, 9 << 4);
 654
 655		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 656				   IMX6Q_GPR8_TX_DEEMPH_GEN1,
 657				   imx6_pcie->tx_deemph_gen1 << 0);
 658		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 659				   IMX6Q_GPR8_TX_DEEMPH_GEN2_3P5DB,
 660				   imx6_pcie->tx_deemph_gen2_3p5db << 6);
 661		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 662				   IMX6Q_GPR8_TX_DEEMPH_GEN2_6DB,
 663				   imx6_pcie->tx_deemph_gen2_6db << 12);
 664		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 665				   IMX6Q_GPR8_TX_SWING_FULL,
 666				   imx6_pcie->tx_swing_full << 18);
 667		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR8,
 668				   IMX6Q_GPR8_TX_SWING_LOW,
 669				   imx6_pcie->tx_swing_low << 25);
 670		break;
 671	}
 672
 673	imx6_pcie_configure_type(imx6_pcie);
 674}
 675
 676static int imx6_setup_phy_mpll(struct imx6_pcie *imx6_pcie)
 677{
 678	unsigned long phy_rate = clk_get_rate(imx6_pcie->pcie_phy);
 679	int mult, div;
 680	u16 val;
 681
 682	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_IMX6_PHY))
 683		return 0;
 684
 685	switch (phy_rate) {
 686	case 125000000:
 687		/*
 688		 * The default settings of the MPLL are for a 125MHz input
 689		 * clock, so no need to reconfigure anything in that case.
 690		 */
 691		return 0;
 692	case 100000000:
 693		mult = 25;
 694		div = 0;
 695		break;
 696	case 200000000:
 697		mult = 25;
 698		div = 1;
 699		break;
 700	default:
 701		dev_err(imx6_pcie->pci->dev,
 702			"Unsupported PHY reference clock rate %lu\n", phy_rate);
 703		return -EINVAL;
 704	}
 705
 706	pcie_phy_read(imx6_pcie, PCIE_PHY_MPLL_OVRD_IN_LO, &val);
 707	val &= ~(PCIE_PHY_MPLL_MULTIPLIER_MASK <<
 708		 PCIE_PHY_MPLL_MULTIPLIER_SHIFT);
 709	val |= mult << PCIE_PHY_MPLL_MULTIPLIER_SHIFT;
 710	val |= PCIE_PHY_MPLL_MULTIPLIER_OVRD;
 711	pcie_phy_write(imx6_pcie, PCIE_PHY_MPLL_OVRD_IN_LO, val);
 712
 713	pcie_phy_read(imx6_pcie, PCIE_PHY_ATEOVRD, &val);
 714	val &= ~(PCIE_PHY_ATEOVRD_REF_CLKDIV_MASK <<
 715		 PCIE_PHY_ATEOVRD_REF_CLKDIV_SHIFT);
 716	val |= div << PCIE_PHY_ATEOVRD_REF_CLKDIV_SHIFT;
 717	val |= PCIE_PHY_ATEOVRD_EN;
 718	pcie_phy_write(imx6_pcie, PCIE_PHY_ATEOVRD, val);
 719
 720	return 0;
 721}
 722
 723static int imx6_pcie_wait_for_speed_change(struct imx6_pcie *imx6_pcie)
 724{
 725	struct dw_pcie *pci = imx6_pcie->pci;
 726	struct device *dev = pci->dev;
 727	u32 tmp;
 728	unsigned int retries;
 729
 730	for (retries = 0; retries < 200; retries++) {
 731		tmp = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
 732		/* Test if the speed change finished. */
 733		if (!(tmp & PORT_LOGIC_SPEED_CHANGE))
 734			return 0;
 735		usleep_range(100, 1000);
 736	}
 737
 738	dev_err(dev, "Speed change timeout\n");
 739	return -ETIMEDOUT;
 740}
 741
 742static void imx6_pcie_ltssm_enable(struct device *dev)
 743{
 744	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 745
 746	switch (imx6_pcie->drvdata->variant) {
 747	case IMX6Q:
 748	case IMX6SX:
 749	case IMX6QP:
 750		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 751				   IMX6Q_GPR12_PCIE_CTL_2,
 752				   IMX6Q_GPR12_PCIE_CTL_2);
 753		break;
 754	case IMX7D:
 755	case IMX8MQ:
 
 
 756		reset_control_deassert(imx6_pcie->apps_reset);
 757		break;
 758	}
 759}
 760
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 761static int imx6_pcie_start_link(struct dw_pcie *pci)
 762{
 763	struct imx6_pcie *imx6_pcie = to_imx6_pcie(pci);
 764	struct device *dev = pci->dev;
 765	u8 offset = dw_pcie_find_capability(pci, PCI_CAP_ID_EXP);
 766	u32 tmp;
 767	int ret;
 768
 769	/*
 770	 * Force Gen1 operation when starting the link.  In case the link is
 771	 * started in Gen2 mode, there is a possibility the devices on the
 772	 * bus will not be detected at all.  This happens with PCIe switches.
 773	 */
 
 774	tmp = dw_pcie_readl_dbi(pci, offset + PCI_EXP_LNKCAP);
 775	tmp &= ~PCI_EXP_LNKCAP_SLS;
 776	tmp |= PCI_EXP_LNKCAP_SLS_2_5GB;
 777	dw_pcie_writel_dbi(pci, offset + PCI_EXP_LNKCAP, tmp);
 
 778
 779	/* Start LTSSM. */
 780	imx6_pcie_ltssm_enable(dev);
 781
 782	ret = dw_pcie_wait_for_link(pci);
 783	if (ret)
 784		goto err_reset_phy;
 785
 786	if (pci->link_gen == 2) {
 787		/* Allow Gen2 mode after the link is up. */
 
 788		tmp = dw_pcie_readl_dbi(pci, offset + PCI_EXP_LNKCAP);
 789		tmp &= ~PCI_EXP_LNKCAP_SLS;
 790		tmp |= PCI_EXP_LNKCAP_SLS_5_0GB;
 791		dw_pcie_writel_dbi(pci, offset + PCI_EXP_LNKCAP, tmp);
 792
 793		/*
 794		 * Start Directed Speed Change so the best possible
 795		 * speed both link partners support can be negotiated.
 796		 */
 797		tmp = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
 798		tmp |= PORT_LOGIC_SPEED_CHANGE;
 799		dw_pcie_writel_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL, tmp);
 
 800
 801		if (imx6_pcie->drvdata->flags &
 802		    IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE) {
 803			/*
 804			 * On i.MX7, DIRECT_SPEED_CHANGE behaves differently
 805			 * from i.MX6 family when no link speed transition
 806			 * occurs and we go Gen1 -> yep, Gen1. The difference
 807			 * is that, in such case, it will not be cleared by HW
 808			 * which will cause the following code to report false
 809			 * failure.
 810			 */
 811
 812			ret = imx6_pcie_wait_for_speed_change(imx6_pcie);
 813			if (ret) {
 814				dev_err(dev, "Failed to bring link up!\n");
 815				goto err_reset_phy;
 816			}
 817		}
 818
 819		/* Make sure link training is finished as well! */
 820		ret = dw_pcie_wait_for_link(pci);
 821		if (ret) {
 822			dev_err(dev, "Failed to bring link up!\n");
 823			goto err_reset_phy;
 824		}
 825	} else {
 826		dev_info(dev, "Link: Gen2 disabled\n");
 827	}
 828
 
 829	tmp = dw_pcie_readw_dbi(pci, offset + PCI_EXP_LNKSTA);
 830	dev_info(dev, "Link up, Gen%i\n", tmp & PCI_EXP_LNKSTA_CLS);
 831	return 0;
 832
 833err_reset_phy:
 
 834	dev_dbg(dev, "PHY DEBUG_R0=0x%08x DEBUG_R1=0x%08x\n",
 835		dw_pcie_readl_dbi(pci, PCIE_PORT_DEBUG0),
 836		dw_pcie_readl_dbi(pci, PCIE_PORT_DEBUG1));
 837	imx6_pcie_reset_phy(imx6_pcie);
 838	return ret;
 
 
 
 
 
 
 
 
 839}
 840
 841static int imx6_pcie_host_init(struct pcie_port *pp)
 842{
 843	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
 
 844	struct imx6_pcie *imx6_pcie = to_imx6_pcie(pci);
 
 
 
 
 
 
 
 
 
 
 845
 846	imx6_pcie_assert_core_reset(imx6_pcie);
 847	imx6_pcie_init_phy(imx6_pcie);
 848	imx6_pcie_deassert_core_reset(imx6_pcie);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 849	imx6_setup_phy_mpll(imx6_pcie);
 850
 851	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 852}
 853
 854static const struct dw_pcie_host_ops imx6_pcie_host_ops = {
 855	.host_init = imx6_pcie_host_init,
 856};
 857
 858static const struct dw_pcie_ops dw_pcie_ops = {
 859	.start_link = imx6_pcie_start_link,
 860};
 861
 862#ifdef CONFIG_PM_SLEEP
 863static void imx6_pcie_ltssm_disable(struct device *dev)
 864{
 865	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 866
 867	switch (imx6_pcie->drvdata->variant) {
 868	case IMX6SX:
 869	case IMX6QP:
 870		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 871				   IMX6Q_GPR12_PCIE_CTL_2, 0);
 872		break;
 873	case IMX7D:
 874		reset_control_assert(imx6_pcie->apps_reset);
 875		break;
 876	default:
 877		dev_err(dev, "ltssm_disable not supported\n");
 878	}
 879}
 880
 881static void imx6_pcie_pm_turnoff(struct imx6_pcie *imx6_pcie)
 882{
 883	struct device *dev = imx6_pcie->pci->dev;
 884
 885	/* Some variants have a turnoff reset in DT */
 886	if (imx6_pcie->turnoff_reset) {
 887		reset_control_assert(imx6_pcie->turnoff_reset);
 888		reset_control_deassert(imx6_pcie->turnoff_reset);
 889		goto pm_turnoff_sleep;
 890	}
 891
 892	/* Others poke directly at IOMUXC registers */
 893	switch (imx6_pcie->drvdata->variant) {
 894	case IMX6SX:
 
 895		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 896				IMX6SX_GPR12_PCIE_PM_TURN_OFF,
 897				IMX6SX_GPR12_PCIE_PM_TURN_OFF);
 898		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 899				IMX6SX_GPR12_PCIE_PM_TURN_OFF, 0);
 900		break;
 901	default:
 902		dev_err(dev, "PME_Turn_Off not implemented\n");
 903		return;
 904	}
 905
 906	/*
 907	 * Components with an upstream port must respond to
 908	 * PME_Turn_Off with PME_TO_Ack but we can't check.
 909	 *
 910	 * The standard recommends a 1-10ms timeout after which to
 911	 * proceed anyway as if acks were received.
 912	 */
 913pm_turnoff_sleep:
 914	usleep_range(1000, 10000);
 915}
 916
 917static void imx6_pcie_clk_disable(struct imx6_pcie *imx6_pcie)
 918{
 919	clk_disable_unprepare(imx6_pcie->pcie);
 920	clk_disable_unprepare(imx6_pcie->pcie_phy);
 921	clk_disable_unprepare(imx6_pcie->pcie_bus);
 922
 923	switch (imx6_pcie->drvdata->variant) {
 924	case IMX6SX:
 925		clk_disable_unprepare(imx6_pcie->pcie_inbound_axi);
 926		break;
 927	case IMX7D:
 928		regmap_update_bits(imx6_pcie->iomuxc_gpr, IOMUXC_GPR12,
 929				   IMX7D_GPR12_PCIE_PHY_REFCLK_SEL,
 930				   IMX7D_GPR12_PCIE_PHY_REFCLK_SEL);
 931		break;
 932	case IMX8MQ:
 933		clk_disable_unprepare(imx6_pcie->pcie_aux);
 934		break;
 935	default:
 936		break;
 937	}
 938}
 939
 940static int imx6_pcie_suspend_noirq(struct device *dev)
 941{
 942	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 
 943
 944	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_SUPPORTS_SUSPEND))
 945		return 0;
 946
 947	imx6_pcie_pm_turnoff(imx6_pcie);
 948	imx6_pcie_clk_disable(imx6_pcie);
 949	imx6_pcie_ltssm_disable(dev);
 950
 951	return 0;
 952}
 953
 954static int imx6_pcie_resume_noirq(struct device *dev)
 955{
 956	int ret;
 957	struct imx6_pcie *imx6_pcie = dev_get_drvdata(dev);
 958	struct pcie_port *pp = &imx6_pcie->pci->pp;
 959
 960	if (!(imx6_pcie->drvdata->flags & IMX6_PCIE_FLAG_SUPPORTS_SUSPEND))
 961		return 0;
 962
 963	imx6_pcie_assert_core_reset(imx6_pcie);
 964	imx6_pcie_init_phy(imx6_pcie);
 965	imx6_pcie_deassert_core_reset(imx6_pcie);
 966	dw_pcie_setup_rc(pp);
 967
 968	ret = imx6_pcie_start_link(imx6_pcie->pci);
 969	if (ret < 0)
 970		dev_info(dev, "pcie link is down after resume.\n");
 971
 972	return 0;
 973}
 974#endif
 975
 976static const struct dev_pm_ops imx6_pcie_pm_ops = {
 977	SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(imx6_pcie_suspend_noirq,
 978				      imx6_pcie_resume_noirq)
 979};
 980
 981static int imx6_pcie_probe(struct platform_device *pdev)
 982{
 983	struct device *dev = &pdev->dev;
 984	struct dw_pcie *pci;
 985	struct imx6_pcie *imx6_pcie;
 986	struct device_node *np;
 987	struct resource *dbi_base;
 988	struct device_node *node = dev->of_node;
 989	int ret;
 990	u16 val;
 991
 992	imx6_pcie = devm_kzalloc(dev, sizeof(*imx6_pcie), GFP_KERNEL);
 993	if (!imx6_pcie)
 994		return -ENOMEM;
 995
 996	pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
 997	if (!pci)
 998		return -ENOMEM;
 999
1000	pci->dev = dev;
1001	pci->ops = &dw_pcie_ops;
1002	pci->pp.ops = &imx6_pcie_host_ops;
1003
1004	imx6_pcie->pci = pci;
1005	imx6_pcie->drvdata = of_device_get_match_data(dev);
1006
1007	/* Find the PHY if one is defined, only imx7d uses it */
1008	np = of_parse_phandle(node, "fsl,imx7d-pcie-phy", 0);
1009	if (np) {
1010		struct resource res;
1011
1012		ret = of_address_to_resource(np, 0, &res);
1013		if (ret) {
1014			dev_err(dev, "Unable to map PCIe PHY\n");
1015			return ret;
1016		}
1017		imx6_pcie->phy_base = devm_ioremap_resource(dev, &res);
1018		if (IS_ERR(imx6_pcie->phy_base))
1019			return PTR_ERR(imx6_pcie->phy_base);
1020	}
1021
1022	dbi_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1023	pci->dbi_base = devm_ioremap_resource(dev, dbi_base);
1024	if (IS_ERR(pci->dbi_base))
1025		return PTR_ERR(pci->dbi_base);
1026
1027	/* Fetch GPIOs */
1028	imx6_pcie->reset_gpio = of_get_named_gpio(node, "reset-gpio", 0);
1029	imx6_pcie->gpio_active_high = of_property_read_bool(node,
1030						"reset-gpio-active-high");
1031	if (gpio_is_valid(imx6_pcie->reset_gpio)) {
1032		ret = devm_gpio_request_one(dev, imx6_pcie->reset_gpio,
1033				imx6_pcie->gpio_active_high ?
1034					GPIOF_OUT_INIT_HIGH :
1035					GPIOF_OUT_INIT_LOW,
1036				"PCIe reset");
1037		if (ret) {
1038			dev_err(dev, "unable to get reset gpio\n");
1039			return ret;
1040		}
1041	} else if (imx6_pcie->reset_gpio == -EPROBE_DEFER) {
1042		return imx6_pcie->reset_gpio;
1043	}
1044
1045	/* Fetch clocks */
1046	imx6_pcie->pcie_phy = devm_clk_get(dev, "pcie_phy");
1047	if (IS_ERR(imx6_pcie->pcie_phy))
1048		return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_phy),
1049				     "pcie_phy clock source missing or invalid\n");
1050
1051	imx6_pcie->pcie_bus = devm_clk_get(dev, "pcie_bus");
1052	if (IS_ERR(imx6_pcie->pcie_bus))
1053		return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_bus),
1054				     "pcie_bus clock source missing or invalid\n");
1055
1056	imx6_pcie->pcie = devm_clk_get(dev, "pcie");
1057	if (IS_ERR(imx6_pcie->pcie))
1058		return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie),
1059				     "pcie clock source missing or invalid\n");
1060
1061	switch (imx6_pcie->drvdata->variant) {
1062	case IMX6SX:
1063		imx6_pcie->pcie_inbound_axi = devm_clk_get(dev,
1064							   "pcie_inbound_axi");
1065		if (IS_ERR(imx6_pcie->pcie_inbound_axi))
1066			return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_inbound_axi),
1067					     "pcie_inbound_axi clock missing or invalid\n");
1068		break;
1069	case IMX8MQ:
1070		imx6_pcie->pcie_aux = devm_clk_get(dev, "pcie_aux");
1071		if (IS_ERR(imx6_pcie->pcie_aux))
1072			return dev_err_probe(dev, PTR_ERR(imx6_pcie->pcie_aux),
1073					     "pcie_aux clock source missing or invalid\n");
1074		fallthrough;
1075	case IMX7D:
1076		if (dbi_base->start == IMX8MQ_PCIE2_BASE_ADDR)
1077			imx6_pcie->controller_id = 1;
1078
1079		imx6_pcie->pciephy_reset = devm_reset_control_get_exclusive(dev,
1080									    "pciephy");
1081		if (IS_ERR(imx6_pcie->pciephy_reset)) {
1082			dev_err(dev, "Failed to get PCIEPHY reset control\n");
1083			return PTR_ERR(imx6_pcie->pciephy_reset);
1084		}
1085
1086		imx6_pcie->apps_reset = devm_reset_control_get_exclusive(dev,
1087									 "apps");
1088		if (IS_ERR(imx6_pcie->apps_reset)) {
1089			dev_err(dev, "Failed to get PCIE APPS reset control\n");
1090			return PTR_ERR(imx6_pcie->apps_reset);
1091		}
1092		break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1093	default:
1094		break;
1095	}
 
 
 
 
 
 
 
 
1096
1097	/* Grab turnoff reset */
1098	imx6_pcie->turnoff_reset = devm_reset_control_get_optional_exclusive(dev, "turnoff");
1099	if (IS_ERR(imx6_pcie->turnoff_reset)) {
1100		dev_err(dev, "Failed to get TURNOFF reset control\n");
1101		return PTR_ERR(imx6_pcie->turnoff_reset);
1102	}
1103
1104	/* Grab GPR config register range */
1105	imx6_pcie->iomuxc_gpr =
1106		 syscon_regmap_lookup_by_compatible("fsl,imx6q-iomuxc-gpr");
1107	if (IS_ERR(imx6_pcie->iomuxc_gpr)) {
1108		dev_err(dev, "unable to find iomuxc registers\n");
1109		return PTR_ERR(imx6_pcie->iomuxc_gpr);
1110	}
1111
1112	/* Grab PCIe PHY Tx Settings */
1113	if (of_property_read_u32(node, "fsl,tx-deemph-gen1",
1114				 &imx6_pcie->tx_deemph_gen1))
1115		imx6_pcie->tx_deemph_gen1 = 0;
1116
1117	if (of_property_read_u32(node, "fsl,tx-deemph-gen2-3p5db",
1118				 &imx6_pcie->tx_deemph_gen2_3p5db))
1119		imx6_pcie->tx_deemph_gen2_3p5db = 0;
1120
1121	if (of_property_read_u32(node, "fsl,tx-deemph-gen2-6db",
1122				 &imx6_pcie->tx_deemph_gen2_6db))
1123		imx6_pcie->tx_deemph_gen2_6db = 20;
1124
1125	if (of_property_read_u32(node, "fsl,tx-swing-full",
1126				 &imx6_pcie->tx_swing_full))
1127		imx6_pcie->tx_swing_full = 127;
1128
1129	if (of_property_read_u32(node, "fsl,tx-swing-low",
1130				 &imx6_pcie->tx_swing_low))
1131		imx6_pcie->tx_swing_low = 127;
1132
1133	/* Limit link speed */
1134	pci->link_gen = 1;
1135	ret = of_property_read_u32(node, "fsl,max-link-speed", &pci->link_gen);
1136
1137	imx6_pcie->vpcie = devm_regulator_get_optional(&pdev->dev, "vpcie");
1138	if (IS_ERR(imx6_pcie->vpcie)) {
1139		if (PTR_ERR(imx6_pcie->vpcie) != -ENODEV)
1140			return PTR_ERR(imx6_pcie->vpcie);
1141		imx6_pcie->vpcie = NULL;
1142	}
1143
1144	imx6_pcie->vph = devm_regulator_get_optional(&pdev->dev, "vph");
1145	if (IS_ERR(imx6_pcie->vph)) {
1146		if (PTR_ERR(imx6_pcie->vph) != -ENODEV)
1147			return PTR_ERR(imx6_pcie->vph);
1148		imx6_pcie->vph = NULL;
1149	}
1150
1151	platform_set_drvdata(pdev, imx6_pcie);
1152
1153	ret = imx6_pcie_attach_pd(dev);
1154	if (ret)
1155		return ret;
1156
1157	ret = dw_pcie_host_init(&pci->pp);
1158	if (ret < 0)
1159		return ret;
1160
1161	if (pci_msi_enabled()) {
1162		u8 offset = dw_pcie_find_capability(pci, PCI_CAP_ID_MSI);
1163		val = dw_pcie_readw_dbi(pci, offset + PCI_MSI_FLAGS);
1164		val |= PCI_MSI_FLAGS_ENABLE;
1165		dw_pcie_writew_dbi(pci, offset + PCI_MSI_FLAGS, val);
1166	}
1167
1168	return 0;
1169}
1170
1171static void imx6_pcie_shutdown(struct platform_device *pdev)
1172{
1173	struct imx6_pcie *imx6_pcie = platform_get_drvdata(pdev);
1174
1175	/* bring down link, so bootloader gets clean state in case of reboot */
1176	imx6_pcie_assert_core_reset(imx6_pcie);
1177}
1178
1179static const struct imx6_pcie_drvdata drvdata[] = {
1180	[IMX6Q] = {
1181		.variant = IMX6Q,
1182		.flags = IMX6_PCIE_FLAG_IMX6_PHY |
1183			 IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE,
1184		.dbi_length = 0x200,
 
1185	},
1186	[IMX6SX] = {
1187		.variant = IMX6SX,
1188		.flags = IMX6_PCIE_FLAG_IMX6_PHY |
1189			 IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE |
1190			 IMX6_PCIE_FLAG_SUPPORTS_SUSPEND,
 
1191	},
1192	[IMX6QP] = {
1193		.variant = IMX6QP,
1194		.flags = IMX6_PCIE_FLAG_IMX6_PHY |
1195			 IMX6_PCIE_FLAG_IMX6_SPEED_CHANGE,
 
1196		.dbi_length = 0x200,
 
1197	},
1198	[IMX7D] = {
1199		.variant = IMX7D,
1200		.flags = IMX6_PCIE_FLAG_SUPPORTS_SUSPEND,
 
1201	},
1202	[IMX8MQ] = {
1203		.variant = IMX8MQ,
 
 
 
 
 
 
 
 
 
 
 
1204	},
1205};
1206
1207static const struct of_device_id imx6_pcie_of_match[] = {
1208	{ .compatible = "fsl,imx6q-pcie",  .data = &drvdata[IMX6Q],  },
1209	{ .compatible = "fsl,imx6sx-pcie", .data = &drvdata[IMX6SX], },
1210	{ .compatible = "fsl,imx6qp-pcie", .data = &drvdata[IMX6QP], },
1211	{ .compatible = "fsl,imx7d-pcie",  .data = &drvdata[IMX7D],  },
1212	{ .compatible = "fsl,imx8mq-pcie", .data = &drvdata[IMX8MQ], } ,
 
 
1213	{},
1214};
1215
1216static struct platform_driver imx6_pcie_driver = {
1217	.driver = {
1218		.name	= "imx6q-pcie",
1219		.of_match_table = imx6_pcie_of_match,
1220		.suppress_bind_attrs = true,
1221		.pm = &imx6_pcie_pm_ops,
1222		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
1223	},
1224	.probe    = imx6_pcie_probe,
1225	.shutdown = imx6_pcie_shutdown,
1226};
1227
1228static void imx6_pcie_quirk(struct pci_dev *dev)
1229{
1230	struct pci_bus *bus = dev->bus;
1231	struct pcie_port *pp = bus->sysdata;
1232
1233	/* Bus parent is the PCI bridge, its parent is this platform driver */
1234	if (!bus->dev.parent || !bus->dev.parent->parent)
1235		return;
1236
1237	/* Make sure we only quirk devices associated with this driver */
1238	if (bus->dev.parent->parent->driver != &imx6_pcie_driver.driver)
1239		return;
1240
1241	if (pci_is_root_bus(bus)) {
1242		struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
1243		struct imx6_pcie *imx6_pcie = to_imx6_pcie(pci);
1244
1245		/*
1246		 * Limit config length to avoid the kernel reading beyond
1247		 * the register set and causing an abort on i.MX 6Quad
1248		 */
1249		if (imx6_pcie->drvdata->dbi_length) {
1250			dev->cfg_size = imx6_pcie->drvdata->dbi_length;
1251			dev_info(&dev->dev, "Limiting cfg_size to %d\n",
1252					dev->cfg_size);
1253		}
1254	}
1255}
1256DECLARE_PCI_FIXUP_CLASS_HEADER(PCI_VENDOR_ID_SYNOPSYS, 0xabcd,
1257			PCI_CLASS_BRIDGE_PCI, 8, imx6_pcie_quirk);
1258
1259static int __init imx6_pcie_init(void)
1260{
1261#ifdef CONFIG_ARM
1262	/*
1263	 * Since probe() can be deferred we need to make sure that
1264	 * hook_fault_code is not called after __init memory is freed
1265	 * by kernel and since imx6q_pcie_abort_handler() is a no-op,
1266	 * we can install the handler here without risking it
1267	 * accessing some uninitialized driver state.
1268	 */
1269	hook_fault_code(8, imx6q_pcie_abort_handler, SIGBUS, 0,
1270			"external abort on non-linefetch");
1271#endif
1272
1273	return platform_driver_register(&imx6_pcie_driver);
1274}
1275device_initcall(imx6_pcie_init);