4 * Copyright (C) 2013 Texas Instruments Incorporated
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
11 #define DSS_SUBSYS_NAME "HDMIPLL"
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/err.h>
17 #include <linux/platform_device.h>
18 #include <linux/clk.h>
20 #include <video/omapdss.h>
25 void hdmi_pll_dump(struct hdmi_pll_data
*pll
, struct seq_file
*s
)
27 #define DUMPPLL(r) seq_printf(s, "%-35s %08x\n", #r,\
28 hdmi_read_reg(pll->base, r))
30 DUMPPLL(PLLCTRL_PLL_CONTROL
);
31 DUMPPLL(PLLCTRL_PLL_STATUS
);
32 DUMPPLL(PLLCTRL_PLL_GO
);
33 DUMPPLL(PLLCTRL_CFG1
);
34 DUMPPLL(PLLCTRL_CFG2
);
35 DUMPPLL(PLLCTRL_CFG3
);
36 DUMPPLL(PLLCTRL_SSC_CFG1
);
37 DUMPPLL(PLLCTRL_SSC_CFG2
);
38 DUMPPLL(PLLCTRL_CFG4
);
41 void hdmi_pll_compute(struct hdmi_pll_data
*pll
,
42 unsigned long target_tmds
, struct dss_pll_clock_info
*pi
)
44 unsigned long fint
, clkdco
, clkout
;
45 unsigned long target_bitclk
, target_clkdco
;
46 unsigned long min_dco
;
47 unsigned n
, m
, mf
, m2
, sd
;
49 const struct dss_pll_hw
*hw
= pll
->pll
.hw
;
51 clkin
= clk_get_rate(pll
->pll
.clkin
);
53 DSSDBG("clkin %lu, target tmds %lu\n", clkin
, target_tmds
);
55 target_bitclk
= target_tmds
* 10;
58 n
= DIV_ROUND_UP(clkin
, hw
->fint_max
);
61 /* adjust m2 so that the clkdco will be high enough */
62 min_dco
= roundup(hw
->clkdco_min
, fint
);
63 m2
= DIV_ROUND_UP(min_dco
, target_bitclk
);
67 target_clkdco
= target_bitclk
* m2
;
68 m
= target_clkdco
/ fint
;
72 /* adjust clkdco with fractional mf */
73 if (WARN_ON(target_clkdco
- clkdco
> fint
))
76 mf
= (u32
)div_u64(262144ull * (target_clkdco
- clkdco
), fint
);
79 clkdco
+= (u32
)div_u64((u64
)mf
* fint
, 262144);
84 sd
= DIV_ROUND_UP(fint
* m
, 250000000);
86 DSSDBG("N = %u, M = %u, M.f = %u, M2 = %u, SD = %u\n",
88 DSSDBG("Fint %lu, clkdco %lu, clkout %lu\n", fint
, clkdco
, clkout
);
98 pi
->clkout
[0] = clkout
;
101 static int hdmi_pll_enable(struct dss_pll
*dsspll
)
103 struct hdmi_pll_data
*pll
= container_of(dsspll
, struct hdmi_pll_data
, pll
);
104 struct hdmi_wp_data
*wp
= pll
->wp
;
107 dss_ctrl_pll_enable(DSS_PLL_HDMI
, true);
109 r
= hdmi_wp_set_pll_pwr(wp
, HDMI_PLLPWRCMD_BOTHON_ALLCLKS
);
116 static void hdmi_pll_disable(struct dss_pll
*dsspll
)
118 struct hdmi_pll_data
*pll
= container_of(dsspll
, struct hdmi_pll_data
, pll
);
119 struct hdmi_wp_data
*wp
= pll
->wp
;
121 hdmi_wp_set_pll_pwr(wp
, HDMI_PLLPWRCMD_ALLOFF
);
123 dss_ctrl_pll_enable(DSS_PLL_HDMI
, false);
126 static const struct dss_pll_ops dsi_pll_ops
= {
127 .enable
= hdmi_pll_enable
,
128 .disable
= hdmi_pll_disable
,
129 .set_config
= dss_pll_write_config_type_b
,
132 static const struct dss_pll_hw dss_omap4_hdmi_pll_hw
= {
140 .clkdco_min
= 500000000,
141 .clkdco_low
= 1000000000,
142 .clkdco_max
= 2000000000,
152 .has_selfreqdco
= true,
155 static const struct dss_pll_hw dss_omap5_hdmi_pll_hw
= {
163 .clkdco_min
= 750000000,
164 .clkdco_low
= 1500000000,
165 .clkdco_max
= 2500000000UL,
175 .has_selfreqdco
= true,
179 static int dsi_init_pll_data(struct platform_device
*pdev
, struct hdmi_pll_data
*hpll
)
181 struct dss_pll
*pll
= &hpll
->pll
;
185 clk
= devm_clk_get(&pdev
->dev
, "sys_clk");
187 DSSERR("can't get sys_clk\n");
192 pll
->id
= DSS_PLL_HDMI
;
193 pll
->base
= hpll
->base
;
196 switch (omapdss_get_version()) {
197 case OMAPDSS_VER_OMAP4430_ES1
:
198 case OMAPDSS_VER_OMAP4430_ES2
:
199 case OMAPDSS_VER_OMAP4
:
200 pll
->hw
= &dss_omap4_hdmi_pll_hw
;
203 case OMAPDSS_VER_OMAP5
:
204 case OMAPDSS_VER_DRA7xx
:
205 pll
->hw
= &dss_omap5_hdmi_pll_hw
;
212 pll
->ops
= &dsi_pll_ops
;
214 r
= dss_pll_register(pll
);
221 int hdmi_pll_init(struct platform_device
*pdev
, struct hdmi_pll_data
*pll
,
222 struct hdmi_wp_data
*wp
)
225 struct resource
*res
;
229 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pll");
231 DSSERR("can't get PLL mem resource\n");
235 pll
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
236 if (IS_ERR(pll
->base
)) {
237 DSSERR("can't ioremap PLLCTRL\n");
238 return PTR_ERR(pll
->base
);
241 r
= dsi_init_pll_data(pdev
, pll
);
243 DSSERR("failed to init HDMI PLL\n");
250 void hdmi_pll_uninit(struct hdmi_pll_data
*hpll
)
252 struct dss_pll
*pll
= &hpll
->pll
;
254 dss_pll_unregister(pll
);