OMAPDSS: SDI: fix regulators for DT
[cascardo/linux.git] / drivers / video / omap2 / dss / sdi.c
1 /*
2  * linux/drivers/video/omap2/dss/sdi.c
3  *
4  * Copyright (C) 2009 Nokia Corporation
5  * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License version 2 as published by
9  * the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #define DSS_SUBSYS_NAME "SDI"
21
22 #include <linux/kernel.h>
23 #include <linux/delay.h>
24 #include <linux/err.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/export.h>
27 #include <linux/platform_device.h>
28 #include <linux/string.h>
29
30 #include <video/omapdss.h>
31 #include "dss.h"
32
33 static struct {
34         struct platform_device *pdev;
35
36         bool update_enabled;
37         struct regulator *vdds_sdi_reg;
38
39         struct dss_lcd_mgr_config mgr_config;
40         struct omap_video_timings timings;
41         int datapairs;
42
43         struct omap_dss_output output;
44 } sdi;
45
46 struct sdi_clk_calc_ctx {
47         unsigned long pck_min, pck_max;
48
49         struct dss_clock_info dss_cinfo;
50         struct dispc_clock_info dispc_cinfo;
51 };
52
53 static bool dpi_calc_dispc_cb(int lckd, int pckd, unsigned long lck,
54                 unsigned long pck, void *data)
55 {
56         struct sdi_clk_calc_ctx *ctx = data;
57
58         ctx->dispc_cinfo.lck_div = lckd;
59         ctx->dispc_cinfo.pck_div = pckd;
60         ctx->dispc_cinfo.lck = lck;
61         ctx->dispc_cinfo.pck = pck;
62
63         return true;
64 }
65
66 static bool dpi_calc_dss_cb(int fckd, unsigned long fck, void *data)
67 {
68         struct sdi_clk_calc_ctx *ctx = data;
69
70         ctx->dss_cinfo.fck = fck;
71         ctx->dss_cinfo.fck_div = fckd;
72
73         return dispc_div_calc(fck, ctx->pck_min, ctx->pck_max,
74                         dpi_calc_dispc_cb, ctx);
75 }
76
77 static int sdi_calc_clock_div(unsigned long pclk,
78                 struct dss_clock_info *dss_cinfo,
79                 struct dispc_clock_info *dispc_cinfo)
80 {
81         int i;
82         struct sdi_clk_calc_ctx ctx;
83
84         /*
85          * DSS fclk gives us very few possibilities, so finding a good pixel
86          * clock may not be possible. We try multiple times to find the clock,
87          * each time widening the pixel clock range we look for, up to
88          * +/- 1MHz.
89          */
90
91         for (i = 0; i < 10; ++i) {
92                 bool ok;
93
94                 memset(&ctx, 0, sizeof(ctx));
95                 if (pclk > 1000 * i * i * i)
96                         ctx.pck_min = max(pclk - 1000 * i * i * i, 0lu);
97                 else
98                         ctx.pck_min = 0;
99                 ctx.pck_max = pclk + 1000 * i * i * i;
100
101                 ok = dss_div_calc(ctx.pck_min, dpi_calc_dss_cb, &ctx);
102                 if (ok) {
103                         *dss_cinfo = ctx.dss_cinfo;
104                         *dispc_cinfo = ctx.dispc_cinfo;
105                         return 0;
106                 }
107         }
108
109         return -EINVAL;
110 }
111
112 static void sdi_config_lcd_manager(struct omap_dss_device *dssdev)
113 {
114         struct omap_overlay_manager *mgr = dssdev->output->manager;
115
116         sdi.mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
117
118         sdi.mgr_config.stallmode = false;
119         sdi.mgr_config.fifohandcheck = false;
120
121         sdi.mgr_config.video_port_width = 24;
122         sdi.mgr_config.lcden_sig_polarity = 1;
123
124         dss_mgr_set_lcd_config(mgr, &sdi.mgr_config);
125 }
126
127 int omapdss_sdi_display_enable(struct omap_dss_device *dssdev)
128 {
129         struct omap_dss_output *out = dssdev->output;
130         struct omap_video_timings *t = &sdi.timings;
131         struct dss_clock_info dss_cinfo;
132         struct dispc_clock_info dispc_cinfo;
133         unsigned long pck;
134         int r;
135
136         if (out == NULL || out->manager == NULL) {
137                 DSSERR("failed to enable display: no output/manager\n");
138                 return -ENODEV;
139         }
140
141         r = omap_dss_start_device(dssdev);
142         if (r) {
143                 DSSERR("failed to start device\n");
144                 goto err_start_dev;
145         }
146
147         r = regulator_enable(sdi.vdds_sdi_reg);
148         if (r)
149                 goto err_reg_enable;
150
151         r = dispc_runtime_get();
152         if (r)
153                 goto err_get_dispc;
154
155         /* 15.5.9.1.2 */
156         t->data_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE;
157         t->sync_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE;
158
159         r = sdi_calc_clock_div(t->pixel_clock * 1000, &dss_cinfo, &dispc_cinfo);
160         if (r)
161                 goto err_calc_clock_div;
162
163         sdi.mgr_config.clock_info = dispc_cinfo;
164
165         pck = dss_cinfo.fck / dispc_cinfo.lck_div / dispc_cinfo.pck_div / 1000;
166
167         if (pck != t->pixel_clock) {
168                 DSSWARN("Could not find exact pixel clock. Requested %d kHz, "
169                                 "got %lu kHz\n",
170                                 t->pixel_clock, pck);
171
172                 t->pixel_clock = pck;
173         }
174
175
176         dss_mgr_set_timings(out->manager, t);
177
178         r = dss_set_clock_div(&dss_cinfo);
179         if (r)
180                 goto err_set_dss_clock_div;
181
182         sdi_config_lcd_manager(dssdev);
183
184         /*
185          * LCLK and PCLK divisors are located in shadow registers, and we
186          * normally write them to DISPC registers when enabling the output.
187          * However, SDI uses pck-free as source clock for its PLL, and pck-free
188          * is affected by the divisors. And as we need the PLL before enabling
189          * the output, we need to write the divisors early.
190          *
191          * It seems just writing to the DISPC register is enough, and we don't
192          * need to care about the shadow register mechanism for pck-free. The
193          * exact reason for this is unknown.
194          */
195         dispc_mgr_set_clock_div(out->manager->id, &sdi.mgr_config.clock_info);
196
197         dss_sdi_init(sdi.datapairs);
198         r = dss_sdi_enable();
199         if (r)
200                 goto err_sdi_enable;
201         mdelay(2);
202
203         r = dss_mgr_enable(out->manager);
204         if (r)
205                 goto err_mgr_enable;
206
207         return 0;
208
209 err_mgr_enable:
210         dss_sdi_disable();
211 err_sdi_enable:
212 err_set_dss_clock_div:
213 err_calc_clock_div:
214         dispc_runtime_put();
215 err_get_dispc:
216         regulator_disable(sdi.vdds_sdi_reg);
217 err_reg_enable:
218         omap_dss_stop_device(dssdev);
219 err_start_dev:
220         return r;
221 }
222 EXPORT_SYMBOL(omapdss_sdi_display_enable);
223
224 void omapdss_sdi_display_disable(struct omap_dss_device *dssdev)
225 {
226         struct omap_overlay_manager *mgr = dssdev->output->manager;
227
228         dss_mgr_disable(mgr);
229
230         dss_sdi_disable();
231
232         dispc_runtime_put();
233
234         regulator_disable(sdi.vdds_sdi_reg);
235
236         omap_dss_stop_device(dssdev);
237 }
238 EXPORT_SYMBOL(omapdss_sdi_display_disable);
239
240 void omapdss_sdi_set_timings(struct omap_dss_device *dssdev,
241                 struct omap_video_timings *timings)
242 {
243         sdi.timings = *timings;
244 }
245 EXPORT_SYMBOL(omapdss_sdi_set_timings);
246
247 void omapdss_sdi_set_datapairs(struct omap_dss_device *dssdev, int datapairs)
248 {
249         sdi.datapairs = datapairs;
250 }
251 EXPORT_SYMBOL(omapdss_sdi_set_datapairs);
252
253 static int sdi_init_regulator(void)
254 {
255         struct regulator *vdds_sdi;
256
257         if (sdi.vdds_sdi_reg)
258                 return 0;
259
260         vdds_sdi = dss_get_vdds_sdi();
261
262         if (IS_ERR(vdds_sdi)) {
263                 vdds_sdi = devm_regulator_get(&sdi.pdev->dev, "vdds_sdi");
264                 if (IS_ERR(vdds_sdi)) {
265                         DSSERR("can't get VDDS_SDI regulator\n");
266                         return PTR_ERR(vdds_sdi);
267                 }
268         }
269
270         sdi.vdds_sdi_reg = vdds_sdi;
271
272         return 0;
273 }
274
275 static struct omap_dss_device *sdi_find_dssdev(struct platform_device *pdev)
276 {
277         struct omap_dss_board_info *pdata = pdev->dev.platform_data;
278         const char *def_disp_name = omapdss_get_default_display_name();
279         struct omap_dss_device *def_dssdev;
280         int i;
281
282         def_dssdev = NULL;
283
284         for (i = 0; i < pdata->num_devices; ++i) {
285                 struct omap_dss_device *dssdev = pdata->devices[i];
286
287                 if (dssdev->type != OMAP_DISPLAY_TYPE_SDI)
288                         continue;
289
290                 if (def_dssdev == NULL)
291                         def_dssdev = dssdev;
292
293                 if (def_disp_name != NULL &&
294                                 strcmp(dssdev->name, def_disp_name) == 0) {
295                         def_dssdev = dssdev;
296                         break;
297                 }
298         }
299
300         return def_dssdev;
301 }
302
303 static int sdi_probe_pdata(struct platform_device *sdidev)
304 {
305         struct omap_dss_device *plat_dssdev;
306         struct omap_dss_device *dssdev;
307         int r;
308
309         plat_dssdev = sdi_find_dssdev(sdidev);
310
311         if (!plat_dssdev)
312                 return 0;
313
314         dssdev = dss_alloc_and_init_device(&sdidev->dev);
315         if (!dssdev)
316                 return -ENOMEM;
317
318         dss_copy_device_pdata(dssdev, plat_dssdev);
319
320         r = sdi_init_regulator();
321         if (r) {
322                 DSSERR("device %s init failed: %d\n", dssdev->name, r);
323                 dss_put_device(dssdev);
324                 return r;
325         }
326
327         r = omapdss_output_set_device(&sdi.output, dssdev);
328         if (r) {
329                 DSSERR("failed to connect output to new device: %s\n",
330                                 dssdev->name);
331                 dss_put_device(dssdev);
332                 return r;
333         }
334
335         r = dss_add_device(dssdev);
336         if (r) {
337                 DSSERR("device %s register failed: %d\n", dssdev->name, r);
338                 omapdss_output_unset_device(&sdi.output);
339                 dss_put_device(dssdev);
340                 return r;
341         }
342
343         return 0;
344 }
345
346 static void sdi_init_output(struct platform_device *pdev)
347 {
348         struct omap_dss_output *out = &sdi.output;
349
350         out->pdev = pdev;
351         out->id = OMAP_DSS_OUTPUT_SDI;
352         out->type = OMAP_DISPLAY_TYPE_SDI;
353         out->name = "sdi.0";
354         out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
355
356         dss_register_output(out);
357 }
358
359 static void __exit sdi_uninit_output(struct platform_device *pdev)
360 {
361         struct omap_dss_output *out = &sdi.output;
362
363         dss_unregister_output(out);
364 }
365
366 static int omap_sdi_probe(struct platform_device *pdev)
367 {
368         int r;
369
370         sdi.pdev = pdev;
371
372         sdi_init_output(pdev);
373
374         if (pdev->dev.platform_data) {
375                 r = sdi_probe_pdata(pdev);
376                 if (r)
377                         goto err_probe;
378         }
379
380         return 0;
381
382 err_probe:
383         sdi_uninit_output(pdev);
384         return r;
385 }
386
387 static int __exit omap_sdi_remove(struct platform_device *pdev)
388 {
389         dss_unregister_child_devices(&pdev->dev);
390
391         sdi_uninit_output(pdev);
392
393         return 0;
394 }
395
396 static struct platform_driver omap_sdi_driver = {
397         .probe          = omap_sdi_probe,
398         .remove         = __exit_p(omap_sdi_remove),
399         .driver         = {
400                 .name   = "omapdss_sdi",
401                 .owner  = THIS_MODULE,
402         },
403 };
404
405 int __init sdi_init_platform_driver(void)
406 {
407         return platform_driver_register(&omap_sdi_driver);
408 }
409
410 void __exit sdi_uninit_platform_driver(void)
411 {
412         platform_driver_unregister(&omap_sdi_driver);
413 }