1 // SPDX-License-Identifier: GPL-2.0+
3 * P2U (PIPE to UPHY) driver for Tegra T194 SoC
5 * Copyright (C) 2019 NVIDIA Corporation.
7 * Author: Vidya Sagar <vidyas@nvidia.com>
10 #include <linux/err.h>
12 #include <linux/module.h>
14 #include <linux/of_platform.h>
15 #include <linux/phy/phy.h>
17 #define P2U_PERIODIC_EQ_CTRL_GEN3 0xc0
18 #define P2U_PERIODIC_EQ_CTRL_GEN3_PERIODIC_EQ_EN BIT(0)
19 #define P2U_PERIODIC_EQ_CTRL_GEN3_INIT_PRESET_EQ_TRAIN_EN BIT(1)
20 #define P2U_PERIODIC_EQ_CTRL_GEN4 0xc4
21 #define P2U_PERIODIC_EQ_CTRL_GEN4_INIT_PRESET_EQ_TRAIN_EN BIT(1)
23 #define P2U_RX_DEBOUNCE_TIME 0xa4
24 #define P2U_RX_DEBOUNCE_TIME_DEBOUNCE_TIMER_MASK 0xffff
25 #define P2U_RX_DEBOUNCE_TIME_DEBOUNCE_TIMER_VAL 160
31 static inline void p2u_writel(struct tegra_p2u
*phy
, const u32 value
,
34 writel_relaxed(value
, phy
->base
+ reg
);
37 static inline u32
p2u_readl(struct tegra_p2u
*phy
, const u32 reg
)
39 return readl_relaxed(phy
->base
+ reg
);
42 static int tegra_p2u_power_on(struct phy
*x
)
44 struct tegra_p2u
*phy
= phy_get_drvdata(x
);
47 val
= p2u_readl(phy
, P2U_PERIODIC_EQ_CTRL_GEN3
);
48 val
&= ~P2U_PERIODIC_EQ_CTRL_GEN3_PERIODIC_EQ_EN
;
49 val
|= P2U_PERIODIC_EQ_CTRL_GEN3_INIT_PRESET_EQ_TRAIN_EN
;
50 p2u_writel(phy
, val
, P2U_PERIODIC_EQ_CTRL_GEN3
);
52 val
= p2u_readl(phy
, P2U_PERIODIC_EQ_CTRL_GEN4
);
53 val
|= P2U_PERIODIC_EQ_CTRL_GEN4_INIT_PRESET_EQ_TRAIN_EN
;
54 p2u_writel(phy
, val
, P2U_PERIODIC_EQ_CTRL_GEN4
);
56 val
= p2u_readl(phy
, P2U_RX_DEBOUNCE_TIME
);
57 val
&= ~P2U_RX_DEBOUNCE_TIME_DEBOUNCE_TIMER_MASK
;
58 val
|= P2U_RX_DEBOUNCE_TIME_DEBOUNCE_TIMER_VAL
;
59 p2u_writel(phy
, val
, P2U_RX_DEBOUNCE_TIME
);
64 static const struct phy_ops ops
= {
65 .power_on
= tegra_p2u_power_on
,
69 static int tegra_p2u_probe(struct platform_device
*pdev
)
71 struct phy_provider
*phy_provider
;
72 struct device
*dev
= &pdev
->dev
;
73 struct phy
*generic_phy
;
74 struct tegra_p2u
*phy
;
77 phy
= devm_kzalloc(dev
, sizeof(*phy
), GFP_KERNEL
);
81 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "ctl");
82 phy
->base
= devm_ioremap_resource(dev
, res
);
83 if (IS_ERR(phy
->base
))
84 return PTR_ERR(phy
->base
);
86 platform_set_drvdata(pdev
, phy
);
88 generic_phy
= devm_phy_create(dev
, NULL
, &ops
);
89 if (IS_ERR(generic_phy
))
90 return PTR_ERR(generic_phy
);
92 phy_set_drvdata(generic_phy
, phy
);
94 phy_provider
= devm_of_phy_provider_register(dev
, of_phy_simple_xlate
);
95 if (IS_ERR(phy_provider
))
96 return PTR_ERR(phy_provider
);
101 static const struct of_device_id tegra_p2u_id_table
[] = {
103 .compatible
= "nvidia,tegra194-p2u",
107 MODULE_DEVICE_TABLE(of
, tegra_p2u_id_table
);
109 static struct platform_driver tegra_p2u_driver
= {
110 .probe
= tegra_p2u_probe
,
112 .name
= "tegra194-p2u",
113 .of_match_table
= tegra_p2u_id_table
,
116 module_platform_driver(tegra_p2u_driver
);
118 MODULE_AUTHOR("Vidya Sagar <vidyas@nvidia.com>");
119 MODULE_DESCRIPTION("NVIDIA Tegra194 PIPE2UPHY PHY driver");
120 MODULE_LICENSE("GPL v2");