linux/drivers/phy/freescale/phy-fsl-imx8m-pcie.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright 2021 NXP
 */

#include <linux/bitfield.h>
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/iopoll.h>
#include <linux/mfd/syscon.h>
#include <linux/mfd/syscon/imx7-iomuxc-gpr.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/reset.h>

#include <dt-bindings/phy/phy-imx8-pcie.h>

#define IMX8MM_PCIE_PHY_CMN_REG061
#define ANA_PLL_CLK_OUT_TO_EXT_IO_EN
#define IMX8MM_PCIE_PHY_CMN_REG062
#define ANA_PLL_CLK_OUT_TO_EXT_IO_SEL
#define IMX8MM_PCIE_PHY_CMN_REG063
#define AUX_PLL_REFCLK_SEL_SYS_PLL
#define IMX8MM_PCIE_PHY_CMN_REG064
#define ANA_AUX_RX_TX_SEL_TX
#define ANA_AUX_RX_TERM_GND_EN
#define ANA_AUX_TX_TERM
#define IMX8MM_PCIE_PHY_CMN_REG065
#define ANA_AUX_RX_TERM
#define ANA_AUX_TX_LVL
#define IMX8MM_PCIE_PHY_CMN_REG075
#define ANA_PLL_DONE
#define PCIE_PHY_TRSV_REG5
#define PCIE_PHY_TRSV_REG6

#define IMX8MM_GPR_PCIE_REF_CLK_SEL
#define IMX8MM_GPR_PCIE_REF_CLK_PLL
#define IMX8MM_GPR_PCIE_REF_CLK_EXT
#define IMX8MM_GPR_PCIE_AUX_EN
#define IMX8MM_GPR_PCIE_CMN_RST
#define IMX8MM_GPR_PCIE_POWER_OFF
#define IMX8MM_GPR_PCIE_SSC_EN
#define IMX8MM_GPR_PCIE_AUX_EN_OVERRIDE

enum imx8_pcie_phy_type {};

struct imx8_pcie_phy_drvdata {};

struct imx8_pcie_phy {};

static int imx8_pcie_phy_power_on(struct phy *phy)
{}

static int imx8_pcie_phy_init(struct phy *phy)
{}

static int imx8_pcie_phy_exit(struct phy *phy)
{}

static const struct phy_ops imx8_pcie_phy_ops =;

static const struct imx8_pcie_phy_drvdata imx8mm_drvdata =;

static const struct imx8_pcie_phy_drvdata imx8mp_drvdata =;

static const struct of_device_id imx8_pcie_phy_of_match[] =;
MODULE_DEVICE_TABLE(of, imx8_pcie_phy_of_match);

static int imx8_pcie_phy_probe(struct platform_device *pdev)
{}

static struct platform_driver imx8_pcie_phy_driver =;
module_platform_driver();

MODULE_DESCRIPTION();
MODULE_LICENSE();