Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / drivers / gpu / drm / omapdrm / dss / sdi.c
blobd8ab31f3a8134d517e8b2f31778079c113639292
1 /*
2 * Copyright (C) 2009 Nokia Corporation
3 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #define DSS_SUBSYS_NAME "SDI"
20 #include <linux/kernel.h>
21 #include <linux/delay.h>
22 #include <linux/err.h>
23 #include <linux/regulator/consumer.h>
24 #include <linux/export.h>
25 #include <linux/platform_device.h>
26 #include <linux/string.h>
27 #include <linux/of.h>
29 #include "omapdss.h"
30 #include "dss.h"
32 static struct {
33 struct platform_device *pdev;
35 bool update_enabled;
36 struct regulator *vdds_sdi_reg;
38 struct dss_lcd_mgr_config mgr_config;
39 struct videomode vm;
40 int datapairs;
42 struct omap_dss_device output;
44 bool port_initialized;
45 } sdi;
47 struct sdi_clk_calc_ctx {
48 unsigned long pck_min, pck_max;
50 unsigned long fck;
51 struct dispc_clock_info dispc_cinfo;
54 static bool dpi_calc_dispc_cb(int lckd, int pckd, unsigned long lck,
55 unsigned long pck, void *data)
57 struct sdi_clk_calc_ctx *ctx = data;
59 ctx->dispc_cinfo.lck_div = lckd;
60 ctx->dispc_cinfo.pck_div = pckd;
61 ctx->dispc_cinfo.lck = lck;
62 ctx->dispc_cinfo.pck = pck;
64 return true;
67 static bool dpi_calc_dss_cb(unsigned long fck, void *data)
69 struct sdi_clk_calc_ctx *ctx = data;
71 ctx->fck = fck;
73 return dispc_div_calc(fck, ctx->pck_min, ctx->pck_max,
74 dpi_calc_dispc_cb, ctx);
77 static int sdi_calc_clock_div(unsigned long pclk,
78 unsigned long *fck,
79 struct dispc_clock_info *dispc_cinfo)
81 int i;
82 struct sdi_clk_calc_ctx ctx;
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.
91 for (i = 0; i < 10; ++i) {
92 bool ok;
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;
101 ok = dss_div_calc(pclk, ctx.pck_min, dpi_calc_dss_cb, &ctx);
102 if (ok) {
103 *fck = ctx.fck;
104 *dispc_cinfo = ctx.dispc_cinfo;
105 return 0;
109 return -EINVAL;
112 static void sdi_config_lcd_manager(struct omap_dss_device *dssdev)
114 enum omap_channel channel = dssdev->dispc_channel;
116 sdi.mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
118 sdi.mgr_config.stallmode = false;
119 sdi.mgr_config.fifohandcheck = false;
121 sdi.mgr_config.video_port_width = 24;
122 sdi.mgr_config.lcden_sig_polarity = 1;
124 dss_mgr_set_lcd_config(channel, &sdi.mgr_config);
127 static int sdi_display_enable(struct omap_dss_device *dssdev)
129 struct omap_dss_device *out = &sdi.output;
130 enum omap_channel channel = dssdev->dispc_channel;
131 struct videomode *vm = &sdi.vm;
132 unsigned long fck;
133 struct dispc_clock_info dispc_cinfo;
134 unsigned long pck;
135 int r;
137 if (!out->dispc_channel_connected) {
138 DSSERR("failed to enable display: no output/manager\n");
139 return -ENODEV;
142 r = regulator_enable(sdi.vdds_sdi_reg);
143 if (r)
144 goto err_reg_enable;
146 r = dispc_runtime_get();
147 if (r)
148 goto err_get_dispc;
150 /* 15.5.9.1.2 */
151 vm->flags |= DISPLAY_FLAGS_PIXDATA_POSEDGE | DISPLAY_FLAGS_SYNC_POSEDGE;
153 r = sdi_calc_clock_div(vm->pixelclock, &fck, &dispc_cinfo);
154 if (r)
155 goto err_calc_clock_div;
157 sdi.mgr_config.clock_info = dispc_cinfo;
159 pck = fck / dispc_cinfo.lck_div / dispc_cinfo.pck_div;
161 if (pck != vm->pixelclock) {
162 DSSWARN("Could not find exact pixel clock. Requested %lu Hz, got %lu Hz\n",
163 vm->pixelclock, pck);
165 vm->pixelclock = pck;
169 dss_mgr_set_timings(channel, vm);
171 r = dss_set_fck_rate(fck);
172 if (r)
173 goto err_set_dss_clock_div;
175 sdi_config_lcd_manager(dssdev);
178 * LCLK and PCLK divisors are located in shadow registers, and we
179 * normally write them to DISPC registers when enabling the output.
180 * However, SDI uses pck-free as source clock for its PLL, and pck-free
181 * is affected by the divisors. And as we need the PLL before enabling
182 * the output, we need to write the divisors early.
184 * It seems just writing to the DISPC register is enough, and we don't
185 * need to care about the shadow register mechanism for pck-free. The
186 * exact reason for this is unknown.
188 dispc_mgr_set_clock_div(channel, &sdi.mgr_config.clock_info);
190 dss_sdi_init(sdi.datapairs);
191 r = dss_sdi_enable();
192 if (r)
193 goto err_sdi_enable;
194 mdelay(2);
196 r = dss_mgr_enable(channel);
197 if (r)
198 goto err_mgr_enable;
200 return 0;
202 err_mgr_enable:
203 dss_sdi_disable();
204 err_sdi_enable:
205 err_set_dss_clock_div:
206 err_calc_clock_div:
207 dispc_runtime_put();
208 err_get_dispc:
209 regulator_disable(sdi.vdds_sdi_reg);
210 err_reg_enable:
211 return r;
214 static void sdi_display_disable(struct omap_dss_device *dssdev)
216 enum omap_channel channel = dssdev->dispc_channel;
218 dss_mgr_disable(channel);
220 dss_sdi_disable();
222 dispc_runtime_put();
224 regulator_disable(sdi.vdds_sdi_reg);
227 static void sdi_set_timings(struct omap_dss_device *dssdev,
228 struct videomode *vm)
230 sdi.vm = *vm;
233 static void sdi_get_timings(struct omap_dss_device *dssdev,
234 struct videomode *vm)
236 *vm = sdi.vm;
239 static int sdi_check_timings(struct omap_dss_device *dssdev,
240 struct videomode *vm)
242 enum omap_channel channel = dssdev->dispc_channel;
244 if (!dispc_mgr_timings_ok(channel, vm))
245 return -EINVAL;
247 if (vm->pixelclock == 0)
248 return -EINVAL;
250 return 0;
253 static int sdi_init_regulator(void)
255 struct regulator *vdds_sdi;
257 if (sdi.vdds_sdi_reg)
258 return 0;
260 vdds_sdi = devm_regulator_get(&sdi.pdev->dev, "vdds_sdi");
261 if (IS_ERR(vdds_sdi)) {
262 if (PTR_ERR(vdds_sdi) != -EPROBE_DEFER)
263 DSSERR("can't get VDDS_SDI regulator\n");
264 return PTR_ERR(vdds_sdi);
267 sdi.vdds_sdi_reg = vdds_sdi;
269 return 0;
272 static int sdi_connect(struct omap_dss_device *dssdev,
273 struct omap_dss_device *dst)
275 enum omap_channel channel = dssdev->dispc_channel;
276 int r;
278 r = sdi_init_regulator();
279 if (r)
280 return r;
282 r = dss_mgr_connect(channel, dssdev);
283 if (r)
284 return r;
286 r = omapdss_output_set_device(dssdev, dst);
287 if (r) {
288 DSSERR("failed to connect output to new device: %s\n",
289 dst->name);
290 dss_mgr_disconnect(channel, dssdev);
291 return r;
294 return 0;
297 static void sdi_disconnect(struct omap_dss_device *dssdev,
298 struct omap_dss_device *dst)
300 enum omap_channel channel = dssdev->dispc_channel;
302 WARN_ON(dst != dssdev->dst);
304 if (dst != dssdev->dst)
305 return;
307 omapdss_output_unset_device(dssdev);
309 dss_mgr_disconnect(channel, dssdev);
312 static const struct omapdss_sdi_ops sdi_ops = {
313 .connect = sdi_connect,
314 .disconnect = sdi_disconnect,
316 .enable = sdi_display_enable,
317 .disable = sdi_display_disable,
319 .check_timings = sdi_check_timings,
320 .set_timings = sdi_set_timings,
321 .get_timings = sdi_get_timings,
324 static void sdi_init_output(struct platform_device *pdev)
326 struct omap_dss_device *out = &sdi.output;
328 out->dev = &pdev->dev;
329 out->id = OMAP_DSS_OUTPUT_SDI;
330 out->output_type = OMAP_DISPLAY_TYPE_SDI;
331 out->name = "sdi.0";
332 out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
333 /* We have SDI only on OMAP3, where it's on port 1 */
334 out->port_num = 1;
335 out->ops.sdi = &sdi_ops;
336 out->owner = THIS_MODULE;
338 omapdss_register_output(out);
341 static void sdi_uninit_output(struct platform_device *pdev)
343 struct omap_dss_device *out = &sdi.output;
345 omapdss_unregister_output(out);
348 int sdi_init_port(struct platform_device *pdev, struct device_node *port)
350 struct device_node *ep;
351 u32 datapairs;
352 int r;
354 ep = of_get_next_child(port, NULL);
355 if (!ep)
356 return 0;
358 r = of_property_read_u32(ep, "datapairs", &datapairs);
359 if (r) {
360 DSSERR("failed to parse datapairs\n");
361 goto err_datapairs;
364 sdi.datapairs = datapairs;
366 of_node_put(ep);
368 sdi.pdev = pdev;
370 sdi_init_output(pdev);
372 sdi.port_initialized = true;
374 return 0;
376 err_datapairs:
377 of_node_put(ep);
379 return r;
382 void sdi_uninit_port(struct device_node *port)
384 if (!sdi.port_initialized)
385 return;
387 sdi_uninit_output(sdi.pdev);