#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/phy/phy.h>
#include <linux/regmap.h>
#include <linux/reset.h>
#include <linux/platform_device.h>
#include <linux/bitfield.h>
#include <dt-bindings/phy/phy.h>
#define MESON_PCIE_REG0 …
#define MESON_PCIE_COMMON_CLK …
#define MESON_PCIE_PORT_SEL …
#define MESON_PCIE_CLK …
#define MESON_PCIE_POWERDOWN …
#define MESON_PCIE_TWO_X1 …
#define MESON_PCIE_COMMON_REF_CLK …
#define MESON_PCIE_PHY_INIT …
#define MESON_PCIE_RESET_DELAY …
struct phy_axg_pcie_priv { … };
static const struct regmap_config phy_axg_pcie_regmap_conf = …;
static int phy_axg_pcie_power_on(struct phy *phy)
{ … }
static int phy_axg_pcie_power_off(struct phy *phy)
{ … }
static int phy_axg_pcie_init(struct phy *phy)
{ … }
static int phy_axg_pcie_exit(struct phy *phy)
{ … }
static int phy_axg_pcie_reset(struct phy *phy)
{ … }
static const struct phy_ops phy_axg_pcie_ops = …;
static int phy_axg_pcie_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id phy_axg_pcie_of_match[] = …;
MODULE_DEVICE_TABLE(of, phy_axg_pcie_of_match);
static struct platform_driver phy_axg_pcie_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;