blob: 180b55bbab8ac1cf955312da5a718c60efa308b7 [file] [log] [blame]
Tomi Valkeinen99767542014-07-04 13:38:27 +05301/*
2* Copyright (C) 2014 Texas Instruments Ltd
3*
4* This program is free software; you can redistribute it and/or modify it
5* under the terms of the GNU General Public License version 2 as published by
6* the Free Software Foundation.
7*
8* You should have received a copy of the GNU General Public License along with
9* this program. If not, see <http://www.gnu.org/licenses/>.
10*/
11
12#include <linux/clk.h>
13#include <linux/delay.h>
14#include <linux/err.h>
15#include <linux/io.h>
16#include <linux/kernel.h>
17#include <linux/platform_device.h>
18#include <linux/sched.h>
19
Peter Ujfalusi32043da2016-05-27 14:40:49 +030020#include "omapdss.h"
Tomi Valkeinen99767542014-07-04 13:38:27 +053021#include "dss.h"
22#include "dss_features.h"
23
24struct dss_video_pll {
25 struct dss_pll pll;
26
27 struct device *dev;
28
29 void __iomem *clkctrl_base;
30};
31
32#define REG_MOD(reg, val, start, end) \
33 writel_relaxed(FLD_MOD(readl_relaxed(reg), val, start, end), reg)
34
35static void dss_dpll_enable_scp_clk(struct dss_video_pll *vpll)
36{
37 REG_MOD(vpll->clkctrl_base, 1, 14, 14); /* CIO_CLK_ICG */
38}
39
40static void dss_dpll_disable_scp_clk(struct dss_video_pll *vpll)
41{
42 REG_MOD(vpll->clkctrl_base, 0, 14, 14); /* CIO_CLK_ICG */
43}
44
45static void dss_dpll_power_enable(struct dss_video_pll *vpll)
46{
47 REG_MOD(vpll->clkctrl_base, 2, 31, 30); /* PLL_POWER_ON_ALL */
48
49 /*
50 * DRA7x PLL CTRL's PLL_PWR_STATUS seems to always return 0,
51 * so we have to use fixed delay here.
52 */
53 msleep(1);
54}
55
56static void dss_dpll_power_disable(struct dss_video_pll *vpll)
57{
58 REG_MOD(vpll->clkctrl_base, 0, 31, 30); /* PLL_POWER_OFF */
59}
60
61static int dss_video_pll_enable(struct dss_pll *pll)
62{
63 struct dss_video_pll *vpll = container_of(pll, struct dss_video_pll, pll);
64 int r;
65
66 r = dss_runtime_get();
67 if (r)
68 return r;
69
70 dss_ctrl_pll_enable(pll->id, true);
71
72 dss_dpll_enable_scp_clk(vpll);
73
74 r = dss_pll_wait_reset_done(pll);
75 if (r)
76 goto err_reset;
77
78 dss_dpll_power_enable(vpll);
79
80 return 0;
81
82err_reset:
83 dss_dpll_disable_scp_clk(vpll);
84 dss_ctrl_pll_enable(pll->id, false);
85 dss_runtime_put();
86
87 return r;
88}
89
90static void dss_video_pll_disable(struct dss_pll *pll)
91{
92 struct dss_video_pll *vpll = container_of(pll, struct dss_video_pll, pll);
93
94 dss_dpll_power_disable(vpll);
95
96 dss_dpll_disable_scp_clk(vpll);
97
98 dss_ctrl_pll_enable(pll->id, false);
99
100 dss_runtime_put();
101}
102
103static const struct dss_pll_ops dss_pll_ops = {
104 .enable = dss_video_pll_enable,
105 .disable = dss_video_pll_disable,
106 .set_config = dss_pll_write_config_type_a,
107};
108
109static const struct dss_pll_hw dss_dra7_video_pll_hw = {
110 .n_max = (1 << 8) - 1,
111 .m_max = (1 << 12) - 1,
112 .mX_max = (1 << 5) - 1,
113 .fint_min = 500000,
114 .fint_max = 2500000,
115 .clkdco_max = 1800000000,
116
117 .n_msb = 8,
118 .n_lsb = 1,
119 .m_msb = 20,
120 .m_lsb = 9,
121
122 .mX_msb[0] = 25,
123 .mX_lsb[0] = 21,
124 .mX_msb[1] = 30,
125 .mX_lsb[1] = 26,
126
127 .has_refsel = true,
128};
129
130struct dss_pll *dss_video_pll_init(struct platform_device *pdev, int id,
131 struct regulator *regulator)
132{
133 const char * const reg_name[] = { "pll1", "pll2" };
134 const char * const clkctrl_name[] = { "pll1_clkctrl", "pll2_clkctrl" };
135 const char * const clkin_name[] = { "video1_clk", "video2_clk" };
136
137 struct resource *res;
138 struct dss_video_pll *vpll;
139 void __iomem *pll_base, *clkctrl_base;
140 struct clk *clk;
141 struct dss_pll *pll;
142 int r;
143
144 /* PLL CONTROL */
145
146 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, reg_name[id]);
147 if (!res) {
148 dev_err(&pdev->dev,
149 "missing platform resource data for pll%d\n", id);
150 return ERR_PTR(-ENODEV);
151 }
152
153 pll_base = devm_ioremap_resource(&pdev->dev, res);
154 if (IS_ERR(pll_base)) {
155 dev_err(&pdev->dev, "failed to ioremap pll%d reg_name\n", id);
156 return ERR_CAST(pll_base);
157 }
158
159 /* CLOCK CONTROL */
160
161 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
162 clkctrl_name[id]);
163 if (!res) {
164 dev_err(&pdev->dev,
165 "missing platform resource data for pll%d\n", id);
166 return ERR_PTR(-ENODEV);
167 }
168
169 clkctrl_base = devm_ioremap_resource(&pdev->dev, res);
170 if (IS_ERR(clkctrl_base)) {
171 dev_err(&pdev->dev, "failed to ioremap pll%d clkctrl\n", id);
172 return ERR_CAST(clkctrl_base);
173 }
174
175 /* CLKIN */
176
177 clk = devm_clk_get(&pdev->dev, clkin_name[id]);
178 if (IS_ERR(clk)) {
179 DSSERR("can't get video pll clkin\n");
180 return ERR_CAST(clk);
181 }
182
183 vpll = devm_kzalloc(&pdev->dev, sizeof(*vpll), GFP_KERNEL);
184 if (!vpll)
185 return ERR_PTR(-ENOMEM);
186
187 vpll->dev = &pdev->dev;
188 vpll->clkctrl_base = clkctrl_base;
189
190 pll = &vpll->pll;
191
192 pll->name = id == 0 ? "video0" : "video1";
193 pll->id = id == 0 ? DSS_PLL_VIDEO1 : DSS_PLL_VIDEO2;
194 pll->clkin = clk;
195 pll->regulator = regulator;
196 pll->base = pll_base;
197 pll->hw = &dss_dra7_video_pll_hw;
198 pll->ops = &dss_pll_ops;
199
200 r = dss_pll_register(pll);
201 if (r)
202 return ERR_PTR(r);
203
204 return pll;
205}
206
207void dss_video_pll_uninit(struct dss_pll *pll)
208{
209 dss_pll_unregister(pll);
210}