1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2018 MediaTek Inc.
7 #include "mtk_hdmi_phy.h"
9 static int mtk_hdmi_phy_power_on(struct phy *phy);
10 static int mtk_hdmi_phy_power_off(struct phy *phy);
12 static const struct phy_ops mtk_hdmi_phy_dev_ops = {
13 .power_on = mtk_hdmi_phy_power_on,
14 .power_off = mtk_hdmi_phy_power_off,
18 long mtk_hdmi_pll_round_rate(struct clk_hw *hw, unsigned long rate,
19 unsigned long *parent_rate)
21 struct mtk_hdmi_phy *hdmi_phy = to_mtk_hdmi_phy(hw);
23 hdmi_phy->pll_rate = rate;
27 *parent_rate = rate / 2;
32 unsigned long mtk_hdmi_pll_recalc_rate(struct clk_hw *hw,
33 unsigned long parent_rate)
35 struct mtk_hdmi_phy *hdmi_phy = to_mtk_hdmi_phy(hw);
37 return hdmi_phy->pll_rate;
40 void mtk_hdmi_phy_clear_bits(struct mtk_hdmi_phy *hdmi_phy, u32 offset,
43 void __iomem *reg = hdmi_phy->regs + offset;
51 void mtk_hdmi_phy_set_bits(struct mtk_hdmi_phy *hdmi_phy, u32 offset,
54 void __iomem *reg = hdmi_phy->regs + offset;
62 void mtk_hdmi_phy_mask(struct mtk_hdmi_phy *hdmi_phy, u32 offset,
65 void __iomem *reg = hdmi_phy->regs + offset;
69 tmp = (tmp & ~mask) | (val & mask);
73 inline struct mtk_hdmi_phy *to_mtk_hdmi_phy(struct clk_hw *hw)
75 return container_of(hw, struct mtk_hdmi_phy, pll_hw);
78 static int mtk_hdmi_phy_power_on(struct phy *phy)
80 struct mtk_hdmi_phy *hdmi_phy = phy_get_drvdata(phy);
83 ret = clk_prepare_enable(hdmi_phy->pll);
87 hdmi_phy->conf->hdmi_phy_enable_tmds(hdmi_phy);
91 static int mtk_hdmi_phy_power_off(struct phy *phy)
93 struct mtk_hdmi_phy *hdmi_phy = phy_get_drvdata(phy);
95 hdmi_phy->conf->hdmi_phy_disable_tmds(hdmi_phy);
96 clk_disable_unprepare(hdmi_phy->pll);
101 static const struct phy_ops *
102 mtk_hdmi_phy_dev_get_ops(const struct mtk_hdmi_phy *hdmi_phy)
104 if (hdmi_phy && hdmi_phy->conf &&
105 hdmi_phy->conf->hdmi_phy_enable_tmds &&
106 hdmi_phy->conf->hdmi_phy_disable_tmds)
107 return &mtk_hdmi_phy_dev_ops;
109 dev_err(hdmi_phy->dev, "Failed to get dev ops of phy\n");
113 static void mtk_hdmi_phy_clk_get_ops(struct mtk_hdmi_phy *hdmi_phy,
114 const struct clk_ops **ops)
116 if (hdmi_phy && hdmi_phy->conf && hdmi_phy->conf->hdmi_phy_clk_ops)
117 *ops = hdmi_phy->conf->hdmi_phy_clk_ops;
119 dev_err(hdmi_phy->dev, "Failed to get clk ops of phy\n");
122 static int mtk_hdmi_phy_probe(struct platform_device *pdev)
124 struct device *dev = &pdev->dev;
125 struct mtk_hdmi_phy *hdmi_phy;
126 struct resource *mem;
128 const char *ref_clk_name;
129 struct clk_init_data clk_init = {
131 .parent_names = (const char * const *)&ref_clk_name,
132 .flags = CLK_SET_RATE_PARENT | CLK_SET_RATE_GATE,
136 struct phy_provider *phy_provider;
139 hdmi_phy = devm_kzalloc(dev, sizeof(*hdmi_phy), GFP_KERNEL);
143 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
144 hdmi_phy->regs = devm_ioremap_resource(dev, mem);
145 if (IS_ERR(hdmi_phy->regs)) {
146 ret = PTR_ERR(hdmi_phy->regs);
147 dev_err(dev, "Failed to get memory resource: %d\n", ret);
151 ref_clk = devm_clk_get(dev, "pll_ref");
152 if (IS_ERR(ref_clk)) {
153 ret = PTR_ERR(ref_clk);
154 dev_err(&pdev->dev, "Failed to get PLL reference clock: %d\n",
158 ref_clk_name = __clk_get_name(ref_clk);
160 ret = of_property_read_string(dev->of_node, "clock-output-names",
163 dev_err(dev, "Failed to read clock-output-names: %d\n", ret);
169 (struct mtk_hdmi_phy_conf *)of_device_get_match_data(dev);
170 mtk_hdmi_phy_clk_get_ops(hdmi_phy, &clk_init.ops);
171 hdmi_phy->pll_hw.init = &clk_init;
172 hdmi_phy->pll = devm_clk_register(dev, &hdmi_phy->pll_hw);
173 if (IS_ERR(hdmi_phy->pll)) {
174 ret = PTR_ERR(hdmi_phy->pll);
175 dev_err(dev, "Failed to register PLL: %d\n", ret);
179 ret = of_property_read_u32(dev->of_node, "mediatek,ibias",
182 dev_err(&pdev->dev, "Failed to get ibias: %d\n", ret);
186 ret = of_property_read_u32(dev->of_node, "mediatek,ibias_up",
187 &hdmi_phy->ibias_up);
189 dev_err(&pdev->dev, "Failed to get ibias up: %d\n", ret);
193 dev_info(dev, "Using default TX DRV impedance: 4.2k/36\n");
194 hdmi_phy->drv_imp_clk = 0x30;
195 hdmi_phy->drv_imp_d2 = 0x30;
196 hdmi_phy->drv_imp_d1 = 0x30;
197 hdmi_phy->drv_imp_d0 = 0x30;
199 phy = devm_phy_create(dev, NULL, mtk_hdmi_phy_dev_get_ops(hdmi_phy));
201 dev_err(dev, "Failed to create HDMI PHY\n");
204 phy_set_drvdata(phy, hdmi_phy);
206 phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
207 if (IS_ERR(phy_provider)) {
208 dev_err(dev, "Failed to register HDMI PHY\n");
209 return PTR_ERR(phy_provider);
212 return of_clk_add_provider(dev->of_node, of_clk_src_simple_get,
216 static const struct of_device_id mtk_hdmi_phy_match[] = {
217 { .compatible = "mediatek,mt2701-hdmi-phy",
218 .data = &mtk_hdmi_phy_2701_conf,
220 { .compatible = "mediatek,mt8173-hdmi-phy",
221 .data = &mtk_hdmi_phy_8173_conf,
226 struct platform_driver mtk_hdmi_phy_driver = {
227 .probe = mtk_hdmi_phy_probe,
229 .name = "mediatek-hdmi-phy",
230 .of_match_table = mtk_hdmi_phy_match,
234 MODULE_DESCRIPTION("MediaTek HDMI PHY Driver");
235 MODULE_LICENSE("GPL v2");