Merge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[pandora-kernel.git] / drivers / video / omap2 / dss / venc.c
1 /*
2  * linux/drivers/video/omap2/dss/venc.c
3  *
4  * Copyright (C) 2009 Nokia Corporation
5  * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6  *
7  * VENC settings from TI's DSS driver
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License version 2 as published by
11  * the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
16  * more details.
17  *
18  * You should have received a copy of the GNU General Public License along with
19  * this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #define DSS_SUBSYS_NAME "VENC"
23
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/clk.h>
27 #include <linux/err.h>
28 #include <linux/io.h>
29 #include <linux/mutex.h>
30 #include <linux/completion.h>
31 #include <linux/delay.h>
32 #include <linux/string.h>
33 #include <linux/seq_file.h>
34 #include <linux/platform_device.h>
35 #include <linux/regulator/consumer.h>
36 #include <linux/pm_runtime.h>
37
38 #include <video/omapdss.h>
39 #include <plat/cpu.h>
40
41 #include "dss.h"
42 #include "dss_features.h"
43
44 /* Venc registers */
45 #define VENC_REV_ID                             0x00
46 #define VENC_STATUS                             0x04
47 #define VENC_F_CONTROL                          0x08
48 #define VENC_VIDOUT_CTRL                        0x10
49 #define VENC_SYNC_CTRL                          0x14
50 #define VENC_LLEN                               0x1C
51 #define VENC_FLENS                              0x20
52 #define VENC_HFLTR_CTRL                         0x24
53 #define VENC_CC_CARR_WSS_CARR                   0x28
54 #define VENC_C_PHASE                            0x2C
55 #define VENC_GAIN_U                             0x30
56 #define VENC_GAIN_V                             0x34
57 #define VENC_GAIN_Y                             0x38
58 #define VENC_BLACK_LEVEL                        0x3C
59 #define VENC_BLANK_LEVEL                        0x40
60 #define VENC_X_COLOR                            0x44
61 #define VENC_M_CONTROL                          0x48
62 #define VENC_BSTAMP_WSS_DATA                    0x4C
63 #define VENC_S_CARR                             0x50
64 #define VENC_LINE21                             0x54
65 #define VENC_LN_SEL                             0x58
66 #define VENC_L21__WC_CTL                        0x5C
67 #define VENC_HTRIGGER_VTRIGGER                  0x60
68 #define VENC_SAVID__EAVID                       0x64
69 #define VENC_FLEN__FAL                          0x68
70 #define VENC_LAL__PHASE_RESET                   0x6C
71 #define VENC_HS_INT_START_STOP_X                0x70
72 #define VENC_HS_EXT_START_STOP_X                0x74
73 #define VENC_VS_INT_START_X                     0x78
74 #define VENC_VS_INT_STOP_X__VS_INT_START_Y      0x7C
75 #define VENC_VS_INT_STOP_Y__VS_EXT_START_X      0x80
76 #define VENC_VS_EXT_STOP_X__VS_EXT_START_Y      0x84
77 #define VENC_VS_EXT_STOP_Y                      0x88
78 #define VENC_AVID_START_STOP_X                  0x90
79 #define VENC_AVID_START_STOP_Y                  0x94
80 #define VENC_FID_INT_START_X__FID_INT_START_Y   0xA0
81 #define VENC_FID_INT_OFFSET_Y__FID_EXT_START_X  0xA4
82 #define VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y  0xA8
83 #define VENC_TVDETGP_INT_START_STOP_X           0xB0
84 #define VENC_TVDETGP_INT_START_STOP_Y           0xB4
85 #define VENC_GEN_CTRL                           0xB8
86 #define VENC_OUTPUT_CONTROL                     0xC4
87 #define VENC_OUTPUT_TEST                        0xC8
88 #define VENC_DAC_B__DAC_C                       0xC8
89
90 struct venc_config {
91         u32 f_control;
92         u32 vidout_ctrl;
93         u32 sync_ctrl;
94         u32 llen;
95         u32 flens;
96         u32 hfltr_ctrl;
97         u32 cc_carr_wss_carr;
98         u32 c_phase;
99         u32 gain_u;
100         u32 gain_v;
101         u32 gain_y;
102         u32 black_level;
103         u32 blank_level;
104         u32 x_color;
105         u32 m_control;
106         u32 bstamp_wss_data;
107         u32 s_carr;
108         u32 line21;
109         u32 ln_sel;
110         u32 l21__wc_ctl;
111         u32 htrigger_vtrigger;
112         u32 savid__eavid;
113         u32 flen__fal;
114         u32 lal__phase_reset;
115         u32 hs_int_start_stop_x;
116         u32 hs_ext_start_stop_x;
117         u32 vs_int_start_x;
118         u32 vs_int_stop_x__vs_int_start_y;
119         u32 vs_int_stop_y__vs_ext_start_x;
120         u32 vs_ext_stop_x__vs_ext_start_y;
121         u32 vs_ext_stop_y;
122         u32 avid_start_stop_x;
123         u32 avid_start_stop_y;
124         u32 fid_int_start_x__fid_int_start_y;
125         u32 fid_int_offset_y__fid_ext_start_x;
126         u32 fid_ext_start_y__fid_ext_offset_y;
127         u32 tvdetgp_int_start_stop_x;
128         u32 tvdetgp_int_start_stop_y;
129         u32 gen_ctrl;
130 };
131
132 /* from TRM */
133 static const struct venc_config venc_config_pal_trm = {
134         .f_control                              = 0,
135         .vidout_ctrl                            = 1,
136         .sync_ctrl                              = 0x40,
137         .llen                                   = 0x35F, /* 863 */
138         .flens                                  = 0x270, /* 624 */
139         .hfltr_ctrl                             = 0,
140         .cc_carr_wss_carr                       = 0x2F7225ED,
141         .c_phase                                = 0,
142         .gain_u                                 = 0x111,
143         .gain_v                                 = 0x181,
144         .gain_y                                 = 0x140,
145         .black_level                            = 0x3B,
146         .blank_level                            = 0x3B,
147         .x_color                                = 0x7,
148         .m_control                              = 0x2,
149         .bstamp_wss_data                        = 0x3F,
150         .s_carr                                 = 0x2A098ACB,
151         .line21                                 = 0,
152         .ln_sel                                 = 0x01290015,
153         .l21__wc_ctl                            = 0x0000F603,
154         .htrigger_vtrigger                      = 0,
155
156         .savid__eavid                           = 0x06A70108,
157         .flen__fal                              = 0x00180270,
158         .lal__phase_reset                       = 0x00040135,
159         .hs_int_start_stop_x                    = 0x00880358,
160         .hs_ext_start_stop_x                    = 0x000F035F,
161         .vs_int_start_x                         = 0x01A70000,
162         .vs_int_stop_x__vs_int_start_y          = 0x000001A7,
163         .vs_int_stop_y__vs_ext_start_x          = 0x01AF0000,
164         .vs_ext_stop_x__vs_ext_start_y          = 0x000101AF,
165         .vs_ext_stop_y                          = 0x00000025,
166         .avid_start_stop_x                      = 0x03530083,
167         .avid_start_stop_y                      = 0x026C002E,
168         .fid_int_start_x__fid_int_start_y       = 0x0001008A,
169         .fid_int_offset_y__fid_ext_start_x      = 0x002E0138,
170         .fid_ext_start_y__fid_ext_offset_y      = 0x01380001,
171
172         .tvdetgp_int_start_stop_x               = 0x00140001,
173         .tvdetgp_int_start_stop_y               = 0x00010001,
174         .gen_ctrl                               = 0x00FF0000,
175 };
176
177 /* from TRM */
178 static const struct venc_config venc_config_ntsc_trm = {
179         .f_control                              = 0,
180         .vidout_ctrl                            = 1,
181         .sync_ctrl                              = 0x8040,
182         .llen                                   = 0x359,
183         .flens                                  = 0x20C,
184         .hfltr_ctrl                             = 0,
185         .cc_carr_wss_carr                       = 0x043F2631,
186         .c_phase                                = 0,
187         .gain_u                                 = 0x102,
188         .gain_v                                 = 0x16C,
189         .gain_y                                 = 0x12F,
190         .black_level                            = 0x43,
191         .blank_level                            = 0x38,
192         .x_color                                = 0x7,
193         .m_control                              = 0x1,
194         .bstamp_wss_data                        = 0x38,
195         .s_carr                                 = 0x21F07C1F,
196         .line21                                 = 0,
197         .ln_sel                                 = 0x01310011,
198         .l21__wc_ctl                            = 0x0000F003,
199         .htrigger_vtrigger                      = 0,
200
201         .savid__eavid                           = 0x069300F4,
202         .flen__fal                              = 0x0016020C,
203         .lal__phase_reset                       = 0x00060107,
204         .hs_int_start_stop_x                    = 0x008E0350,
205         .hs_ext_start_stop_x                    = 0x000F0359,
206         .vs_int_start_x                         = 0x01A00000,
207         .vs_int_stop_x__vs_int_start_y          = 0x020701A0,
208         .vs_int_stop_y__vs_ext_start_x          = 0x01AC0024,
209         .vs_ext_stop_x__vs_ext_start_y          = 0x020D01AC,
210         .vs_ext_stop_y                          = 0x00000006,
211         .avid_start_stop_x                      = 0x03480078,
212         .avid_start_stop_y                      = 0x02060024,
213         .fid_int_start_x__fid_int_start_y       = 0x0001008A,
214         .fid_int_offset_y__fid_ext_start_x      = 0x01AC0106,
215         .fid_ext_start_y__fid_ext_offset_y      = 0x01060006,
216
217         .tvdetgp_int_start_stop_x               = 0x00140001,
218         .tvdetgp_int_start_stop_y               = 0x00010001,
219         .gen_ctrl                               = 0x00F90000,
220 };
221
222 static const struct venc_config venc_config_pal_bdghi = {
223         .f_control                              = 0,
224         .vidout_ctrl                            = 0,
225         .sync_ctrl                              = 0,
226         .hfltr_ctrl                             = 0,
227         .x_color                                = 0,
228         .line21                                 = 0,
229         .ln_sel                                 = 21,
230         .htrigger_vtrigger                      = 0,
231         .tvdetgp_int_start_stop_x               = 0x00140001,
232         .tvdetgp_int_start_stop_y               = 0x00010001,
233         .gen_ctrl                               = 0x00FB0000,
234
235         .llen                                   = 864-1,
236         .flens                                  = 625-1,
237         .cc_carr_wss_carr                       = 0x2F7625ED,
238         .c_phase                                = 0xDF,
239         .gain_u                                 = 0x111,
240         .gain_v                                 = 0x181,
241         .gain_y                                 = 0x140,
242         .black_level                            = 0x3e,
243         .blank_level                            = 0x3e,
244         .m_control                              = 0<<2 | 1<<1,
245         .bstamp_wss_data                        = 0x42,
246         .s_carr                                 = 0x2a098acb,
247         .l21__wc_ctl                            = 0<<13 | 0x16<<8 | 0<<0,
248         .savid__eavid                           = 0x06A70108,
249         .flen__fal                              = 23<<16 | 624<<0,
250         .lal__phase_reset                       = 2<<17 | 310<<0,
251         .hs_int_start_stop_x                    = 0x00920358,
252         .hs_ext_start_stop_x                    = 0x000F035F,
253         .vs_int_start_x                         = 0x1a7<<16,
254         .vs_int_stop_x__vs_int_start_y          = 0x000601A7,
255         .vs_int_stop_y__vs_ext_start_x          = 0x01AF0036,
256         .vs_ext_stop_x__vs_ext_start_y          = 0x27101af,
257         .vs_ext_stop_y                          = 0x05,
258         .avid_start_stop_x                      = 0x03530082,
259         .avid_start_stop_y                      = 0x0270002E,
260         .fid_int_start_x__fid_int_start_y       = 0x0005008A,
261         .fid_int_offset_y__fid_ext_start_x      = 0x002E0138,
262         .fid_ext_start_y__fid_ext_offset_y      = 0x01380005,
263 };
264
265 const struct omap_video_timings omap_dss_pal_timings = {
266         .x_res          = 720,
267         .y_res          = 574,
268         .pixel_clock    = 13500,
269         .hsw            = 64,
270         .hfp            = 12,
271         .hbp            = 68,
272         .vsw            = 5,
273         .vfp            = 5,
274         .vbp            = 41,
275 };
276 EXPORT_SYMBOL(omap_dss_pal_timings);
277
278 const struct omap_video_timings omap_dss_ntsc_timings = {
279         .x_res          = 720,
280         .y_res          = 482,
281         .pixel_clock    = 13500,
282         .hsw            = 64,
283         .hfp            = 16,
284         .hbp            = 58,
285         .vsw            = 6,
286         .vfp            = 6,
287         .vbp            = 31,
288 };
289 EXPORT_SYMBOL(omap_dss_ntsc_timings);
290
291 static struct {
292         struct platform_device *pdev;
293         void __iomem *base;
294         struct mutex venc_lock;
295         u32 wss_data;
296         struct regulator *vdda_dac_reg;
297
298         struct clk      *tv_dac_clk;
299 } venc;
300
301 static inline void venc_write_reg(int idx, u32 val)
302 {
303         __raw_writel(val, venc.base + idx);
304 }
305
306 static inline u32 venc_read_reg(int idx)
307 {
308         u32 l = __raw_readl(venc.base + idx);
309         return l;
310 }
311
312 static void venc_write_config(const struct venc_config *config)
313 {
314         DSSDBG("write venc conf\n");
315
316         venc_write_reg(VENC_LLEN, config->llen);
317         venc_write_reg(VENC_FLENS, config->flens);
318         venc_write_reg(VENC_CC_CARR_WSS_CARR, config->cc_carr_wss_carr);
319         venc_write_reg(VENC_C_PHASE, config->c_phase);
320         venc_write_reg(VENC_GAIN_U, config->gain_u);
321         venc_write_reg(VENC_GAIN_V, config->gain_v);
322         venc_write_reg(VENC_GAIN_Y, config->gain_y);
323         venc_write_reg(VENC_BLACK_LEVEL, config->black_level);
324         venc_write_reg(VENC_BLANK_LEVEL, config->blank_level);
325         venc_write_reg(VENC_M_CONTROL, config->m_control);
326         venc_write_reg(VENC_BSTAMP_WSS_DATA, config->bstamp_wss_data |
327                         venc.wss_data);
328         venc_write_reg(VENC_S_CARR, config->s_carr);
329         venc_write_reg(VENC_L21__WC_CTL, config->l21__wc_ctl);
330         venc_write_reg(VENC_SAVID__EAVID, config->savid__eavid);
331         venc_write_reg(VENC_FLEN__FAL, config->flen__fal);
332         venc_write_reg(VENC_LAL__PHASE_RESET, config->lal__phase_reset);
333         venc_write_reg(VENC_HS_INT_START_STOP_X, config->hs_int_start_stop_x);
334         venc_write_reg(VENC_HS_EXT_START_STOP_X, config->hs_ext_start_stop_x);
335         venc_write_reg(VENC_VS_INT_START_X, config->vs_int_start_x);
336         venc_write_reg(VENC_VS_INT_STOP_X__VS_INT_START_Y,
337                        config->vs_int_stop_x__vs_int_start_y);
338         venc_write_reg(VENC_VS_INT_STOP_Y__VS_EXT_START_X,
339                        config->vs_int_stop_y__vs_ext_start_x);
340         venc_write_reg(VENC_VS_EXT_STOP_X__VS_EXT_START_Y,
341                        config->vs_ext_stop_x__vs_ext_start_y);
342         venc_write_reg(VENC_VS_EXT_STOP_Y, config->vs_ext_stop_y);
343         venc_write_reg(VENC_AVID_START_STOP_X, config->avid_start_stop_x);
344         venc_write_reg(VENC_AVID_START_STOP_Y, config->avid_start_stop_y);
345         venc_write_reg(VENC_FID_INT_START_X__FID_INT_START_Y,
346                        config->fid_int_start_x__fid_int_start_y);
347         venc_write_reg(VENC_FID_INT_OFFSET_Y__FID_EXT_START_X,
348                        config->fid_int_offset_y__fid_ext_start_x);
349         venc_write_reg(VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y,
350                        config->fid_ext_start_y__fid_ext_offset_y);
351
352         venc_write_reg(VENC_DAC_B__DAC_C,  venc_read_reg(VENC_DAC_B__DAC_C));
353         venc_write_reg(VENC_VIDOUT_CTRL, config->vidout_ctrl);
354         venc_write_reg(VENC_HFLTR_CTRL, config->hfltr_ctrl);
355         venc_write_reg(VENC_X_COLOR, config->x_color);
356         venc_write_reg(VENC_LINE21, config->line21);
357         venc_write_reg(VENC_LN_SEL, config->ln_sel);
358         venc_write_reg(VENC_HTRIGGER_VTRIGGER, config->htrigger_vtrigger);
359         venc_write_reg(VENC_TVDETGP_INT_START_STOP_X,
360                        config->tvdetgp_int_start_stop_x);
361         venc_write_reg(VENC_TVDETGP_INT_START_STOP_Y,
362                        config->tvdetgp_int_start_stop_y);
363         venc_write_reg(VENC_GEN_CTRL, config->gen_ctrl);
364         venc_write_reg(VENC_F_CONTROL, config->f_control);
365         venc_write_reg(VENC_SYNC_CTRL, config->sync_ctrl);
366 }
367
368 static void venc_reset(void)
369 {
370         int t = 1000;
371
372         venc_write_reg(VENC_F_CONTROL, 1<<8);
373         while (venc_read_reg(VENC_F_CONTROL) & (1<<8)) {
374                 if (--t == 0) {
375                         DSSERR("Failed to reset venc\n");
376                         return;
377                 }
378         }
379
380 #ifdef CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET
381         /* the magical sleep that makes things work */
382         /* XXX more info? What bug this circumvents? */
383         msleep(20);
384 #endif
385 }
386
387 static int venc_runtime_get(void)
388 {
389         int r;
390
391         DSSDBG("venc_runtime_get\n");
392
393         r = pm_runtime_get_sync(&venc.pdev->dev);
394         WARN_ON(r < 0);
395         return r < 0 ? r : 0;
396 }
397
398 static void venc_runtime_put(void)
399 {
400         int r;
401
402         DSSDBG("venc_runtime_put\n");
403
404         r = pm_runtime_put(&venc.pdev->dev);
405         WARN_ON(r < 0);
406 }
407
408 static const struct venc_config *venc_timings_to_config(
409                 struct omap_video_timings *timings)
410 {
411         if (memcmp(&omap_dss_pal_timings, timings, sizeof(*timings)) == 0)
412                 return &venc_config_pal_trm;
413
414         if (memcmp(&omap_dss_ntsc_timings, timings, sizeof(*timings)) == 0)
415                 return &venc_config_ntsc_trm;
416
417         BUG();
418 }
419
420 static void venc_power_on(struct omap_dss_device *dssdev)
421 {
422         u32 l;
423
424         venc_reset();
425         venc_write_config(venc_timings_to_config(&dssdev->panel.timings));
426
427         dss_set_venc_output(dssdev->phy.venc.type);
428         dss_set_dac_pwrdn_bgz(1);
429
430         l = 0;
431
432         if (dssdev->phy.venc.type == OMAP_DSS_VENC_TYPE_COMPOSITE)
433                 l |= 1 << 1;
434         else /* S-Video */
435                 l |= (1 << 0) | (1 << 2);
436
437         if (dssdev->phy.venc.invert_polarity == false)
438                 l |= 1 << 3;
439
440         venc_write_reg(VENC_OUTPUT_CONTROL, l);
441
442         dispc_set_digit_size(dssdev->panel.timings.x_res,
443                         dssdev->panel.timings.y_res/2);
444
445         regulator_enable(venc.vdda_dac_reg);
446
447         if (dssdev->platform_enable)
448                 dssdev->platform_enable(dssdev);
449
450         dssdev->manager->enable(dssdev->manager);
451 }
452
453 static void venc_power_off(struct omap_dss_device *dssdev)
454 {
455         venc_write_reg(VENC_OUTPUT_CONTROL, 0);
456         dss_set_dac_pwrdn_bgz(0);
457
458         dssdev->manager->disable(dssdev->manager);
459
460         if (dssdev->platform_disable)
461                 dssdev->platform_disable(dssdev);
462
463         regulator_disable(venc.vdda_dac_reg);
464 }
465
466 unsigned long venc_get_pixel_clock(void)
467 {
468         /* VENC Pixel Clock in Mhz */
469         return 13500000;
470 }
471
472 /* driver */
473 static int venc_panel_probe(struct omap_dss_device *dssdev)
474 {
475         dssdev->panel.timings = omap_dss_pal_timings;
476
477         return 0;
478 }
479
480 static void venc_panel_remove(struct omap_dss_device *dssdev)
481 {
482 }
483
484 static int venc_panel_enable(struct omap_dss_device *dssdev)
485 {
486         int r = 0;
487
488         DSSDBG("venc_enable_display\n");
489
490         mutex_lock(&venc.venc_lock);
491
492         r = omap_dss_start_device(dssdev);
493         if (r) {
494                 DSSERR("failed to start device\n");
495                 goto err0;
496         }
497
498         if (dssdev->state != OMAP_DSS_DISPLAY_DISABLED) {
499                 r = -EINVAL;
500                 goto err1;
501         }
502
503         r = venc_runtime_get();
504         if (r)
505                 goto err1;
506
507         venc_power_on(dssdev);
508
509         venc.wss_data = 0;
510
511         dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
512
513         mutex_unlock(&venc.venc_lock);
514         return 0;
515 err1:
516         omap_dss_stop_device(dssdev);
517 err0:
518         mutex_unlock(&venc.venc_lock);
519
520         return r;
521 }
522
523 static void venc_panel_disable(struct omap_dss_device *dssdev)
524 {
525         DSSDBG("venc_disable_display\n");
526
527         mutex_lock(&venc.venc_lock);
528
529         if (dssdev->state == OMAP_DSS_DISPLAY_DISABLED)
530                 goto end;
531
532         if (dssdev->state == OMAP_DSS_DISPLAY_SUSPENDED) {
533                 /* suspended is the same as disabled with venc */
534                 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
535                 goto end;
536         }
537
538         venc_power_off(dssdev);
539
540         venc_runtime_put();
541
542         dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
543
544         omap_dss_stop_device(dssdev);
545 end:
546         mutex_unlock(&venc.venc_lock);
547 }
548
549 static int venc_panel_suspend(struct omap_dss_device *dssdev)
550 {
551         venc_panel_disable(dssdev);
552         return 0;
553 }
554
555 static int venc_panel_resume(struct omap_dss_device *dssdev)
556 {
557         return venc_panel_enable(dssdev);
558 }
559
560 static void venc_get_timings(struct omap_dss_device *dssdev,
561                         struct omap_video_timings *timings)
562 {
563         *timings = dssdev->panel.timings;
564 }
565
566 static void venc_set_timings(struct omap_dss_device *dssdev,
567                         struct omap_video_timings *timings)
568 {
569         DSSDBG("venc_set_timings\n");
570
571         /* Reset WSS data when the TV standard changes. */
572         if (memcmp(&dssdev->panel.timings, timings, sizeof(*timings)))
573                 venc.wss_data = 0;
574
575         dssdev->panel.timings = *timings;
576         if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) {
577                 /* turn the venc off and on to get new timings to use */
578                 venc_panel_disable(dssdev);
579                 venc_panel_enable(dssdev);
580         }
581 }
582
583 static int venc_check_timings(struct omap_dss_device *dssdev,
584                         struct omap_video_timings *timings)
585 {
586         DSSDBG("venc_check_timings\n");
587
588         if (memcmp(&omap_dss_pal_timings, timings, sizeof(*timings)) == 0)
589                 return 0;
590
591         if (memcmp(&omap_dss_ntsc_timings, timings, sizeof(*timings)) == 0)
592                 return 0;
593
594         return -EINVAL;
595 }
596
597 static u32 venc_get_wss(struct omap_dss_device *dssdev)
598 {
599         /* Invert due to VENC_L21_WC_CTL:INV=1 */
600         return (venc.wss_data >> 8) ^ 0xfffff;
601 }
602
603 static int venc_set_wss(struct omap_dss_device *dssdev, u32 wss)
604 {
605         const struct venc_config *config;
606         int r;
607
608         DSSDBG("venc_set_wss\n");
609
610         mutex_lock(&venc.venc_lock);
611
612         config = venc_timings_to_config(&dssdev->panel.timings);
613
614         /* Invert due to VENC_L21_WC_CTL:INV=1 */
615         venc.wss_data = (wss ^ 0xfffff) << 8;
616
617         r = venc_runtime_get();
618         if (r)
619                 goto err;
620
621         venc_write_reg(VENC_BSTAMP_WSS_DATA, config->bstamp_wss_data |
622                         venc.wss_data);
623
624         venc_runtime_put();
625
626 err:
627         mutex_unlock(&venc.venc_lock);
628
629         return r;
630 }
631
632 static struct omap_dss_driver venc_driver = {
633         .probe          = venc_panel_probe,
634         .remove         = venc_panel_remove,
635
636         .enable         = venc_panel_enable,
637         .disable        = venc_panel_disable,
638         .suspend        = venc_panel_suspend,
639         .resume         = venc_panel_resume,
640
641         .get_resolution = omapdss_default_get_resolution,
642         .get_recommended_bpp = omapdss_default_get_recommended_bpp,
643
644         .get_timings    = venc_get_timings,
645         .set_timings    = venc_set_timings,
646         .check_timings  = venc_check_timings,
647
648         .get_wss        = venc_get_wss,
649         .set_wss        = venc_set_wss,
650
651         .driver         = {
652                 .name   = "venc",
653                 .owner  = THIS_MODULE,
654         },
655 };
656 /* driver end */
657
658 int venc_init_display(struct omap_dss_device *dssdev)
659 {
660         DSSDBG("init_display\n");
661
662         if (venc.vdda_dac_reg == NULL) {
663                 struct regulator *vdda_dac;
664
665                 vdda_dac = regulator_get(&venc.pdev->dev, "vdda_dac");
666
667                 if (IS_ERR(vdda_dac)) {
668                         DSSERR("can't get VDDA_DAC regulator\n");
669                         return PTR_ERR(vdda_dac);
670                 }
671
672                 venc.vdda_dac_reg = vdda_dac;
673         }
674
675         return 0;
676 }
677
678 void venc_dump_regs(struct seq_file *s)
679 {
680 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, venc_read_reg(r))
681
682         if (venc_runtime_get())
683                 return;
684
685         DUMPREG(VENC_F_CONTROL);
686         DUMPREG(VENC_VIDOUT_CTRL);
687         DUMPREG(VENC_SYNC_CTRL);
688         DUMPREG(VENC_LLEN);
689         DUMPREG(VENC_FLENS);
690         DUMPREG(VENC_HFLTR_CTRL);
691         DUMPREG(VENC_CC_CARR_WSS_CARR);
692         DUMPREG(VENC_C_PHASE);
693         DUMPREG(VENC_GAIN_U);
694         DUMPREG(VENC_GAIN_V);
695         DUMPREG(VENC_GAIN_Y);
696         DUMPREG(VENC_BLACK_LEVEL);
697         DUMPREG(VENC_BLANK_LEVEL);
698         DUMPREG(VENC_X_COLOR);
699         DUMPREG(VENC_M_CONTROL);
700         DUMPREG(VENC_BSTAMP_WSS_DATA);
701         DUMPREG(VENC_S_CARR);
702         DUMPREG(VENC_LINE21);
703         DUMPREG(VENC_LN_SEL);
704         DUMPREG(VENC_L21__WC_CTL);
705         DUMPREG(VENC_HTRIGGER_VTRIGGER);
706         DUMPREG(VENC_SAVID__EAVID);
707         DUMPREG(VENC_FLEN__FAL);
708         DUMPREG(VENC_LAL__PHASE_RESET);
709         DUMPREG(VENC_HS_INT_START_STOP_X);
710         DUMPREG(VENC_HS_EXT_START_STOP_X);
711         DUMPREG(VENC_VS_INT_START_X);
712         DUMPREG(VENC_VS_INT_STOP_X__VS_INT_START_Y);
713         DUMPREG(VENC_VS_INT_STOP_Y__VS_EXT_START_X);
714         DUMPREG(VENC_VS_EXT_STOP_X__VS_EXT_START_Y);
715         DUMPREG(VENC_VS_EXT_STOP_Y);
716         DUMPREG(VENC_AVID_START_STOP_X);
717         DUMPREG(VENC_AVID_START_STOP_Y);
718         DUMPREG(VENC_FID_INT_START_X__FID_INT_START_Y);
719         DUMPREG(VENC_FID_INT_OFFSET_Y__FID_EXT_START_X);
720         DUMPREG(VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y);
721         DUMPREG(VENC_TVDETGP_INT_START_STOP_X);
722         DUMPREG(VENC_TVDETGP_INT_START_STOP_Y);
723         DUMPREG(VENC_GEN_CTRL);
724         DUMPREG(VENC_OUTPUT_CONTROL);
725         DUMPREG(VENC_OUTPUT_TEST);
726
727         venc_runtime_put();
728
729 #undef DUMPREG
730 }
731
732 static int venc_get_clocks(struct platform_device *pdev)
733 {
734         struct clk *clk;
735
736         if (dss_has_feature(FEAT_VENC_REQUIRES_TV_DAC_CLK)) {
737                 clk = clk_get(&pdev->dev, "tv_dac_clk");
738                 if (IS_ERR(clk)) {
739                         DSSERR("can't get tv_dac_clk\n");
740                         return PTR_ERR(clk);
741                 }
742         } else {
743                 clk = NULL;
744         }
745
746         venc.tv_dac_clk = clk;
747
748         return 0;
749 }
750
751 static void venc_put_clocks(void)
752 {
753         if (venc.tv_dac_clk)
754                 clk_put(venc.tv_dac_clk);
755 }
756
757 /* VENC HW IP initialisation */
758 static int omap_venchw_probe(struct platform_device *pdev)
759 {
760         u8 rev_id;
761         struct resource *venc_mem;
762         int r;
763
764         venc.pdev = pdev;
765
766         mutex_init(&venc.venc_lock);
767
768         venc.wss_data = 0;
769
770         venc_mem = platform_get_resource(venc.pdev, IORESOURCE_MEM, 0);
771         if (!venc_mem) {
772                 DSSERR("can't get IORESOURCE_MEM VENC\n");
773                 r = -EINVAL;
774                 goto err_ioremap;
775         }
776         venc.base = ioremap(venc_mem->start, resource_size(venc_mem));
777         if (!venc.base) {
778                 DSSERR("can't ioremap VENC\n");
779                 r = -ENOMEM;
780                 goto err_ioremap;
781         }
782
783         r = venc_get_clocks(pdev);
784         if (r)
785                 goto err_get_clk;
786
787         pm_runtime_enable(&pdev->dev);
788
789         r = venc_runtime_get();
790         if (r)
791                 goto err_get_venc;
792
793         rev_id = (u8)(venc_read_reg(VENC_REV_ID) & 0xff);
794         dev_dbg(&pdev->dev, "OMAP VENC rev %d\n", rev_id);
795
796         venc_runtime_put();
797
798         return omap_dss_register_driver(&venc_driver);
799
800 err_get_venc:
801         pm_runtime_disable(&pdev->dev);
802         venc_put_clocks();
803 err_get_clk:
804         iounmap(venc.base);
805 err_ioremap:
806         return r;
807 }
808
809 static int omap_venchw_remove(struct platform_device *pdev)
810 {
811         if (venc.vdda_dac_reg != NULL) {
812                 regulator_put(venc.vdda_dac_reg);
813                 venc.vdda_dac_reg = NULL;
814         }
815         omap_dss_unregister_driver(&venc_driver);
816
817         pm_runtime_disable(&pdev->dev);
818         venc_put_clocks();
819
820         iounmap(venc.base);
821         return 0;
822 }
823
824 static int venc_runtime_suspend(struct device *dev)
825 {
826         if (venc.tv_dac_clk)
827                 clk_disable(venc.tv_dac_clk);
828
829         dispc_runtime_put();
830         dss_runtime_put();
831
832         return 0;
833 }
834
835 static int venc_runtime_resume(struct device *dev)
836 {
837         int r;
838
839         r = dss_runtime_get();
840         if (r < 0)
841                 goto err_get_dss;
842
843         r = dispc_runtime_get();
844         if (r < 0)
845                 goto err_get_dispc;
846
847         if (venc.tv_dac_clk)
848                 clk_enable(venc.tv_dac_clk);
849
850         return 0;
851
852 err_get_dispc:
853         dss_runtime_put();
854 err_get_dss:
855         return r;
856 }
857
858 static const struct dev_pm_ops venc_pm_ops = {
859         .runtime_suspend = venc_runtime_suspend,
860         .runtime_resume = venc_runtime_resume,
861 };
862
863 static struct platform_driver omap_venchw_driver = {
864         .probe          = omap_venchw_probe,
865         .remove         = omap_venchw_remove,
866         .driver         = {
867                 .name   = "omapdss_venc",
868                 .owner  = THIS_MODULE,
869                 .pm     = &venc_pm_ops,
870         },
871 };
872
873 int venc_init_platform_driver(void)
874 {
875         if (cpu_is_omap44xx())
876                 return 0;
877
878         return platform_driver_register(&omap_venchw_driver);
879 }
880
881 void venc_uninit_platform_driver(void)
882 {
883         if (cpu_is_omap44xx())
884                 return;
885
886         return platform_driver_unregister(&omap_venchw_driver);
887 }