GNU Linux-libre 4.14.332-gnu1
[releases.git] / drivers / video / fbdev / omap2 / omapfb / 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 #include <linux/of.h>
38 #include <linux/component.h>
39
40 #include <video/omapfb_dss.h>
41
42 #include "dss.h"
43 #include "dss_features.h"
44
45 /* Venc registers */
46 #define VENC_REV_ID                             0x00
47 #define VENC_STATUS                             0x04
48 #define VENC_F_CONTROL                          0x08
49 #define VENC_VIDOUT_CTRL                        0x10
50 #define VENC_SYNC_CTRL                          0x14
51 #define VENC_LLEN                               0x1C
52 #define VENC_FLENS                              0x20
53 #define VENC_HFLTR_CTRL                         0x24
54 #define VENC_CC_CARR_WSS_CARR                   0x28
55 #define VENC_C_PHASE                            0x2C
56 #define VENC_GAIN_U                             0x30
57 #define VENC_GAIN_V                             0x34
58 #define VENC_GAIN_Y                             0x38
59 #define VENC_BLACK_LEVEL                        0x3C
60 #define VENC_BLANK_LEVEL                        0x40
61 #define VENC_X_COLOR                            0x44
62 #define VENC_M_CONTROL                          0x48
63 #define VENC_BSTAMP_WSS_DATA                    0x4C
64 #define VENC_S_CARR                             0x50
65 #define VENC_LINE21                             0x54
66 #define VENC_LN_SEL                             0x58
67 #define VENC_L21__WC_CTL                        0x5C
68 #define VENC_HTRIGGER_VTRIGGER                  0x60
69 #define VENC_SAVID__EAVID                       0x64
70 #define VENC_FLEN__FAL                          0x68
71 #define VENC_LAL__PHASE_RESET                   0x6C
72 #define VENC_HS_INT_START_STOP_X                0x70
73 #define VENC_HS_EXT_START_STOP_X                0x74
74 #define VENC_VS_INT_START_X                     0x78
75 #define VENC_VS_INT_STOP_X__VS_INT_START_Y      0x7C
76 #define VENC_VS_INT_STOP_Y__VS_EXT_START_X      0x80
77 #define VENC_VS_EXT_STOP_X__VS_EXT_START_Y      0x84
78 #define VENC_VS_EXT_STOP_Y                      0x88
79 #define VENC_AVID_START_STOP_X                  0x90
80 #define VENC_AVID_START_STOP_Y                  0x94
81 #define VENC_FID_INT_START_X__FID_INT_START_Y   0xA0
82 #define VENC_FID_INT_OFFSET_Y__FID_EXT_START_X  0xA4
83 #define VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y  0xA8
84 #define VENC_TVDETGP_INT_START_STOP_X           0xB0
85 #define VENC_TVDETGP_INT_START_STOP_Y           0xB4
86 #define VENC_GEN_CTRL                           0xB8
87 #define VENC_OUTPUT_CONTROL                     0xC4
88 #define VENC_OUTPUT_TEST                        0xC8
89 #define VENC_DAC_B__DAC_C                       0xC8
90
91 struct venc_config {
92         u32 f_control;
93         u32 vidout_ctrl;
94         u32 sync_ctrl;
95         u32 llen;
96         u32 flens;
97         u32 hfltr_ctrl;
98         u32 cc_carr_wss_carr;
99         u32 c_phase;
100         u32 gain_u;
101         u32 gain_v;
102         u32 gain_y;
103         u32 black_level;
104         u32 blank_level;
105         u32 x_color;
106         u32 m_control;
107         u32 bstamp_wss_data;
108         u32 s_carr;
109         u32 line21;
110         u32 ln_sel;
111         u32 l21__wc_ctl;
112         u32 htrigger_vtrigger;
113         u32 savid__eavid;
114         u32 flen__fal;
115         u32 lal__phase_reset;
116         u32 hs_int_start_stop_x;
117         u32 hs_ext_start_stop_x;
118         u32 vs_int_start_x;
119         u32 vs_int_stop_x__vs_int_start_y;
120         u32 vs_int_stop_y__vs_ext_start_x;
121         u32 vs_ext_stop_x__vs_ext_start_y;
122         u32 vs_ext_stop_y;
123         u32 avid_start_stop_x;
124         u32 avid_start_stop_y;
125         u32 fid_int_start_x__fid_int_start_y;
126         u32 fid_int_offset_y__fid_ext_start_x;
127         u32 fid_ext_start_y__fid_ext_offset_y;
128         u32 tvdetgp_int_start_stop_x;
129         u32 tvdetgp_int_start_stop_y;
130         u32 gen_ctrl;
131 };
132
133 /* from TRM */
134 static const struct venc_config venc_config_pal_trm = {
135         .f_control                              = 0,
136         .vidout_ctrl                            = 1,
137         .sync_ctrl                              = 0x40,
138         .llen                                   = 0x35F, /* 863 */
139         .flens                                  = 0x270, /* 624 */
140         .hfltr_ctrl                             = 0,
141         .cc_carr_wss_carr                       = 0x2F7225ED,
142         .c_phase                                = 0,
143         .gain_u                                 = 0x111,
144         .gain_v                                 = 0x181,
145         .gain_y                                 = 0x140,
146         .black_level                            = 0x3B,
147         .blank_level                            = 0x3B,
148         .x_color                                = 0x7,
149         .m_control                              = 0x2,
150         .bstamp_wss_data                        = 0x3F,
151         .s_carr                                 = 0x2A098ACB,
152         .line21                                 = 0,
153         .ln_sel                                 = 0x01290015,
154         .l21__wc_ctl                            = 0x0000F603,
155         .htrigger_vtrigger                      = 0,
156
157         .savid__eavid                           = 0x06A70108,
158         .flen__fal                              = 0x00180270,
159         .lal__phase_reset                       = 0x00040135,
160         .hs_int_start_stop_x                    = 0x00880358,
161         .hs_ext_start_stop_x                    = 0x000F035F,
162         .vs_int_start_x                         = 0x01A70000,
163         .vs_int_stop_x__vs_int_start_y          = 0x000001A7,
164         .vs_int_stop_y__vs_ext_start_x          = 0x01AF0000,
165         .vs_ext_stop_x__vs_ext_start_y          = 0x000101AF,
166         .vs_ext_stop_y                          = 0x00000025,
167         .avid_start_stop_x                      = 0x03530083,
168         .avid_start_stop_y                      = 0x026C002E,
169         .fid_int_start_x__fid_int_start_y       = 0x0001008A,
170         .fid_int_offset_y__fid_ext_start_x      = 0x002E0138,
171         .fid_ext_start_y__fid_ext_offset_y      = 0x01380001,
172
173         .tvdetgp_int_start_stop_x               = 0x00140001,
174         .tvdetgp_int_start_stop_y               = 0x00010001,
175         .gen_ctrl                               = 0x00FF0000,
176 };
177
178 /* from TRM */
179 static const struct venc_config venc_config_ntsc_trm = {
180         .f_control                              = 0,
181         .vidout_ctrl                            = 1,
182         .sync_ctrl                              = 0x8040,
183         .llen                                   = 0x359,
184         .flens                                  = 0x20C,
185         .hfltr_ctrl                             = 0,
186         .cc_carr_wss_carr                       = 0x043F2631,
187         .c_phase                                = 0,
188         .gain_u                                 = 0x102,
189         .gain_v                                 = 0x16C,
190         .gain_y                                 = 0x12F,
191         .black_level                            = 0x43,
192         .blank_level                            = 0x38,
193         .x_color                                = 0x7,
194         .m_control                              = 0x1,
195         .bstamp_wss_data                        = 0x38,
196         .s_carr                                 = 0x21F07C1F,
197         .line21                                 = 0,
198         .ln_sel                                 = 0x01310011,
199         .l21__wc_ctl                            = 0x0000F003,
200         .htrigger_vtrigger                      = 0,
201
202         .savid__eavid                           = 0x069300F4,
203         .flen__fal                              = 0x0016020C,
204         .lal__phase_reset                       = 0x00060107,
205         .hs_int_start_stop_x                    = 0x008E0350,
206         .hs_ext_start_stop_x                    = 0x000F0359,
207         .vs_int_start_x                         = 0x01A00000,
208         .vs_int_stop_x__vs_int_start_y          = 0x020701A0,
209         .vs_int_stop_y__vs_ext_start_x          = 0x01AC0024,
210         .vs_ext_stop_x__vs_ext_start_y          = 0x020D01AC,
211         .vs_ext_stop_y                          = 0x00000006,
212         .avid_start_stop_x                      = 0x03480078,
213         .avid_start_stop_y                      = 0x02060024,
214         .fid_int_start_x__fid_int_start_y       = 0x0001008A,
215         .fid_int_offset_y__fid_ext_start_x      = 0x01AC0106,
216         .fid_ext_start_y__fid_ext_offset_y      = 0x01060006,
217
218         .tvdetgp_int_start_stop_x               = 0x00140001,
219         .tvdetgp_int_start_stop_y               = 0x00010001,
220         .gen_ctrl                               = 0x00F90000,
221 };
222
223 static const struct venc_config venc_config_pal_bdghi = {
224         .f_control                              = 0,
225         .vidout_ctrl                            = 0,
226         .sync_ctrl                              = 0,
227         .hfltr_ctrl                             = 0,
228         .x_color                                = 0,
229         .line21                                 = 0,
230         .ln_sel                                 = 21,
231         .htrigger_vtrigger                      = 0,
232         .tvdetgp_int_start_stop_x               = 0x00140001,
233         .tvdetgp_int_start_stop_y               = 0x00010001,
234         .gen_ctrl                               = 0x00FB0000,
235
236         .llen                                   = 864-1,
237         .flens                                  = 625-1,
238         .cc_carr_wss_carr                       = 0x2F7625ED,
239         .c_phase                                = 0xDF,
240         .gain_u                                 = 0x111,
241         .gain_v                                 = 0x181,
242         .gain_y                                 = 0x140,
243         .black_level                            = 0x3e,
244         .blank_level                            = 0x3e,
245         .m_control                              = 0<<2 | 1<<1,
246         .bstamp_wss_data                        = 0x42,
247         .s_carr                                 = 0x2a098acb,
248         .l21__wc_ctl                            = 0<<13 | 0x16<<8 | 0<<0,
249         .savid__eavid                           = 0x06A70108,
250         .flen__fal                              = 23<<16 | 624<<0,
251         .lal__phase_reset                       = 2<<17 | 310<<0,
252         .hs_int_start_stop_x                    = 0x00920358,
253         .hs_ext_start_stop_x                    = 0x000F035F,
254         .vs_int_start_x                         = 0x1a7<<16,
255         .vs_int_stop_x__vs_int_start_y          = 0x000601A7,
256         .vs_int_stop_y__vs_ext_start_x          = 0x01AF0036,
257         .vs_ext_stop_x__vs_ext_start_y          = 0x27101af,
258         .vs_ext_stop_y                          = 0x05,
259         .avid_start_stop_x                      = 0x03530082,
260         .avid_start_stop_y                      = 0x0270002E,
261         .fid_int_start_x__fid_int_start_y       = 0x0005008A,
262         .fid_int_offset_y__fid_ext_start_x      = 0x002E0138,
263         .fid_ext_start_y__fid_ext_offset_y      = 0x01380005,
264 };
265
266 const struct omap_video_timings omap_dss_pal_timings = {
267         .x_res          = 720,
268         .y_res          = 574,
269         .pixelclock     = 13500000,
270         .hsw            = 64,
271         .hfp            = 12,
272         .hbp            = 68,
273         .vsw            = 5,
274         .vfp            = 5,
275         .vbp            = 41,
276
277         .interlace      = true,
278 };
279 EXPORT_SYMBOL(omap_dss_pal_timings);
280
281 const struct omap_video_timings omap_dss_ntsc_timings = {
282         .x_res          = 720,
283         .y_res          = 482,
284         .pixelclock     = 13500000,
285         .hsw            = 64,
286         .hfp            = 16,
287         .hbp            = 58,
288         .vsw            = 6,
289         .vfp            = 6,
290         .vbp            = 31,
291
292         .interlace      = true,
293 };
294 EXPORT_SYMBOL(omap_dss_ntsc_timings);
295
296 static struct {
297         struct platform_device *pdev;
298         void __iomem *base;
299         struct mutex venc_lock;
300         u32 wss_data;
301         struct regulator *vdda_dac_reg;
302
303         struct clk      *tv_dac_clk;
304
305         struct omap_video_timings timings;
306         enum omap_dss_venc_type type;
307         bool invert_polarity;
308
309         struct omap_dss_device output;
310 } venc;
311
312 static inline void venc_write_reg(int idx, u32 val)
313 {
314         __raw_writel(val, venc.base + idx);
315 }
316
317 static inline u32 venc_read_reg(int idx)
318 {
319         u32 l = __raw_readl(venc.base + idx);
320         return l;
321 }
322
323 static void venc_write_config(const struct venc_config *config)
324 {
325         DSSDBG("write venc conf\n");
326
327         venc_write_reg(VENC_LLEN, config->llen);
328         venc_write_reg(VENC_FLENS, config->flens);
329         venc_write_reg(VENC_CC_CARR_WSS_CARR, config->cc_carr_wss_carr);
330         venc_write_reg(VENC_C_PHASE, config->c_phase);
331         venc_write_reg(VENC_GAIN_U, config->gain_u);
332         venc_write_reg(VENC_GAIN_V, config->gain_v);
333         venc_write_reg(VENC_GAIN_Y, config->gain_y);
334         venc_write_reg(VENC_BLACK_LEVEL, config->black_level);
335         venc_write_reg(VENC_BLANK_LEVEL, config->blank_level);
336         venc_write_reg(VENC_M_CONTROL, config->m_control);
337         venc_write_reg(VENC_BSTAMP_WSS_DATA, config->bstamp_wss_data |
338                         venc.wss_data);
339         venc_write_reg(VENC_S_CARR, config->s_carr);
340         venc_write_reg(VENC_L21__WC_CTL, config->l21__wc_ctl);
341         venc_write_reg(VENC_SAVID__EAVID, config->savid__eavid);
342         venc_write_reg(VENC_FLEN__FAL, config->flen__fal);
343         venc_write_reg(VENC_LAL__PHASE_RESET, config->lal__phase_reset);
344         venc_write_reg(VENC_HS_INT_START_STOP_X, config->hs_int_start_stop_x);
345         venc_write_reg(VENC_HS_EXT_START_STOP_X, config->hs_ext_start_stop_x);
346         venc_write_reg(VENC_VS_INT_START_X, config->vs_int_start_x);
347         venc_write_reg(VENC_VS_INT_STOP_X__VS_INT_START_Y,
348                        config->vs_int_stop_x__vs_int_start_y);
349         venc_write_reg(VENC_VS_INT_STOP_Y__VS_EXT_START_X,
350                        config->vs_int_stop_y__vs_ext_start_x);
351         venc_write_reg(VENC_VS_EXT_STOP_X__VS_EXT_START_Y,
352                        config->vs_ext_stop_x__vs_ext_start_y);
353         venc_write_reg(VENC_VS_EXT_STOP_Y, config->vs_ext_stop_y);
354         venc_write_reg(VENC_AVID_START_STOP_X, config->avid_start_stop_x);
355         venc_write_reg(VENC_AVID_START_STOP_Y, config->avid_start_stop_y);
356         venc_write_reg(VENC_FID_INT_START_X__FID_INT_START_Y,
357                        config->fid_int_start_x__fid_int_start_y);
358         venc_write_reg(VENC_FID_INT_OFFSET_Y__FID_EXT_START_X,
359                        config->fid_int_offset_y__fid_ext_start_x);
360         venc_write_reg(VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y,
361                        config->fid_ext_start_y__fid_ext_offset_y);
362
363         venc_write_reg(VENC_DAC_B__DAC_C,  venc_read_reg(VENC_DAC_B__DAC_C));
364         venc_write_reg(VENC_VIDOUT_CTRL, config->vidout_ctrl);
365         venc_write_reg(VENC_HFLTR_CTRL, config->hfltr_ctrl);
366         venc_write_reg(VENC_X_COLOR, config->x_color);
367         venc_write_reg(VENC_LINE21, config->line21);
368         venc_write_reg(VENC_LN_SEL, config->ln_sel);
369         venc_write_reg(VENC_HTRIGGER_VTRIGGER, config->htrigger_vtrigger);
370         venc_write_reg(VENC_TVDETGP_INT_START_STOP_X,
371                        config->tvdetgp_int_start_stop_x);
372         venc_write_reg(VENC_TVDETGP_INT_START_STOP_Y,
373                        config->tvdetgp_int_start_stop_y);
374         venc_write_reg(VENC_GEN_CTRL, config->gen_ctrl);
375         venc_write_reg(VENC_F_CONTROL, config->f_control);
376         venc_write_reg(VENC_SYNC_CTRL, config->sync_ctrl);
377 }
378
379 static void venc_reset(void)
380 {
381         int t = 1000;
382
383         venc_write_reg(VENC_F_CONTROL, 1<<8);
384         while (venc_read_reg(VENC_F_CONTROL) & (1<<8)) {
385                 if (--t == 0) {
386                         DSSERR("Failed to reset venc\n");
387                         return;
388                 }
389         }
390
391 #ifdef CONFIG_FB_OMAP2_DSS_SLEEP_AFTER_VENC_RESET
392         /* the magical sleep that makes things work */
393         /* XXX more info? What bug this circumvents? */
394         msleep(20);
395 #endif
396 }
397
398 static int venc_runtime_get(void)
399 {
400         int r;
401
402         DSSDBG("venc_runtime_get\n");
403
404         r = pm_runtime_get_sync(&venc.pdev->dev);
405         if (WARN_ON(r < 0)) {
406                 pm_runtime_put_sync(&venc.pdev->dev);
407                 return r;
408         }
409         return 0;
410 }
411
412 static void venc_runtime_put(void)
413 {
414         int r;
415
416         DSSDBG("venc_runtime_put\n");
417
418         r = pm_runtime_put_sync(&venc.pdev->dev);
419         WARN_ON(r < 0 && r != -ENOSYS);
420 }
421
422 static const struct venc_config *venc_timings_to_config(
423                 struct omap_video_timings *timings)
424 {
425         if (memcmp(&omap_dss_pal_timings, timings, sizeof(*timings)) == 0)
426                 return &venc_config_pal_trm;
427
428         if (memcmp(&omap_dss_ntsc_timings, timings, sizeof(*timings)) == 0)
429                 return &venc_config_ntsc_trm;
430
431         BUG();
432         return NULL;
433 }
434
435 static int venc_power_on(struct omap_dss_device *dssdev)
436 {
437         struct omap_overlay_manager *mgr = venc.output.manager;
438         u32 l;
439         int r;
440
441         r = venc_runtime_get();
442         if (r)
443                 goto err0;
444
445         venc_reset();
446         venc_write_config(venc_timings_to_config(&venc.timings));
447
448         dss_set_venc_output(venc.type);
449         dss_set_dac_pwrdn_bgz(1);
450
451         l = 0;
452
453         if (venc.type == OMAP_DSS_VENC_TYPE_COMPOSITE)
454                 l |= 1 << 1;
455         else /* S-Video */
456                 l |= (1 << 0) | (1 << 2);
457
458         if (venc.invert_polarity == false)
459                 l |= 1 << 3;
460
461         venc_write_reg(VENC_OUTPUT_CONTROL, l);
462
463         dss_mgr_set_timings(mgr, &venc.timings);
464
465         r = regulator_enable(venc.vdda_dac_reg);
466         if (r)
467                 goto err1;
468
469         r = dss_mgr_enable(mgr);
470         if (r)
471                 goto err2;
472
473         return 0;
474
475 err2:
476         regulator_disable(venc.vdda_dac_reg);
477 err1:
478         venc_write_reg(VENC_OUTPUT_CONTROL, 0);
479         dss_set_dac_pwrdn_bgz(0);
480
481         venc_runtime_put();
482 err0:
483         return r;
484 }
485
486 static void venc_power_off(struct omap_dss_device *dssdev)
487 {
488         struct omap_overlay_manager *mgr = venc.output.manager;
489
490         venc_write_reg(VENC_OUTPUT_CONTROL, 0);
491         dss_set_dac_pwrdn_bgz(0);
492
493         dss_mgr_disable(mgr);
494
495         regulator_disable(venc.vdda_dac_reg);
496
497         venc_runtime_put();
498 }
499
500 static int venc_display_enable(struct omap_dss_device *dssdev)
501 {
502         struct omap_dss_device *out = &venc.output;
503         int r;
504
505         DSSDBG("venc_display_enable\n");
506
507         mutex_lock(&venc.venc_lock);
508
509         if (out->manager == NULL) {
510                 DSSERR("Failed to enable display: no output/manager\n");
511                 r = -ENODEV;
512                 goto err0;
513         }
514
515         r = venc_power_on(dssdev);
516         if (r)
517                 goto err0;
518
519         venc.wss_data = 0;
520
521         mutex_unlock(&venc.venc_lock);
522
523         return 0;
524 err0:
525         mutex_unlock(&venc.venc_lock);
526         return r;
527 }
528
529 static void venc_display_disable(struct omap_dss_device *dssdev)
530 {
531         DSSDBG("venc_display_disable\n");
532
533         mutex_lock(&venc.venc_lock);
534
535         venc_power_off(dssdev);
536
537         mutex_unlock(&venc.venc_lock);
538 }
539
540 static void venc_set_timings(struct omap_dss_device *dssdev,
541                 struct omap_video_timings *timings)
542 {
543         DSSDBG("venc_set_timings\n");
544
545         mutex_lock(&venc.venc_lock);
546
547         /* Reset WSS data when the TV standard changes. */
548         if (memcmp(&venc.timings, timings, sizeof(*timings)))
549                 venc.wss_data = 0;
550
551         venc.timings = *timings;
552
553         dispc_set_tv_pclk(13500000);
554
555         mutex_unlock(&venc.venc_lock);
556 }
557
558 static int venc_check_timings(struct omap_dss_device *dssdev,
559                 struct omap_video_timings *timings)
560 {
561         DSSDBG("venc_check_timings\n");
562
563         if (memcmp(&omap_dss_pal_timings, timings, sizeof(*timings)) == 0)
564                 return 0;
565
566         if (memcmp(&omap_dss_ntsc_timings, timings, sizeof(*timings)) == 0)
567                 return 0;
568
569         return -EINVAL;
570 }
571
572 static void venc_get_timings(struct omap_dss_device *dssdev,
573                 struct omap_video_timings *timings)
574 {
575         mutex_lock(&venc.venc_lock);
576
577         *timings = venc.timings;
578
579         mutex_unlock(&venc.venc_lock);
580 }
581
582 static u32 venc_get_wss(struct omap_dss_device *dssdev)
583 {
584         /* Invert due to VENC_L21_WC_CTL:INV=1 */
585         return (venc.wss_data >> 8) ^ 0xfffff;
586 }
587
588 static int venc_set_wss(struct omap_dss_device *dssdev, u32 wss)
589 {
590         const struct venc_config *config;
591         int r;
592
593         DSSDBG("venc_set_wss\n");
594
595         mutex_lock(&venc.venc_lock);
596
597         config = venc_timings_to_config(&venc.timings);
598
599         /* Invert due to VENC_L21_WC_CTL:INV=1 */
600         venc.wss_data = (wss ^ 0xfffff) << 8;
601
602         r = venc_runtime_get();
603         if (r)
604                 goto err;
605
606         venc_write_reg(VENC_BSTAMP_WSS_DATA, config->bstamp_wss_data |
607                         venc.wss_data);
608
609         venc_runtime_put();
610
611 err:
612         mutex_unlock(&venc.venc_lock);
613
614         return r;
615 }
616
617 static void venc_set_type(struct omap_dss_device *dssdev,
618                 enum omap_dss_venc_type type)
619 {
620         mutex_lock(&venc.venc_lock);
621
622         venc.type = type;
623
624         mutex_unlock(&venc.venc_lock);
625 }
626
627 static void venc_invert_vid_out_polarity(struct omap_dss_device *dssdev,
628                 bool invert_polarity)
629 {
630         mutex_lock(&venc.venc_lock);
631
632         venc.invert_polarity = invert_polarity;
633
634         mutex_unlock(&venc.venc_lock);
635 }
636
637 static int venc_init_regulator(void)
638 {
639         struct regulator *vdda_dac;
640
641         if (venc.vdda_dac_reg != NULL)
642                 return 0;
643
644         if (venc.pdev->dev.of_node)
645                 vdda_dac = devm_regulator_get(&venc.pdev->dev, "vdda");
646         else
647                 vdda_dac = devm_regulator_get(&venc.pdev->dev, "vdda_dac");
648
649         if (IS_ERR(vdda_dac)) {
650                 if (PTR_ERR(vdda_dac) != -EPROBE_DEFER)
651                         DSSERR("can't get VDDA_DAC regulator\n");
652                 return PTR_ERR(vdda_dac);
653         }
654
655         venc.vdda_dac_reg = vdda_dac;
656
657         return 0;
658 }
659
660 static void venc_dump_regs(struct seq_file *s)
661 {
662 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, venc_read_reg(r))
663
664         if (venc_runtime_get())
665                 return;
666
667         DUMPREG(VENC_F_CONTROL);
668         DUMPREG(VENC_VIDOUT_CTRL);
669         DUMPREG(VENC_SYNC_CTRL);
670         DUMPREG(VENC_LLEN);
671         DUMPREG(VENC_FLENS);
672         DUMPREG(VENC_HFLTR_CTRL);
673         DUMPREG(VENC_CC_CARR_WSS_CARR);
674         DUMPREG(VENC_C_PHASE);
675         DUMPREG(VENC_GAIN_U);
676         DUMPREG(VENC_GAIN_V);
677         DUMPREG(VENC_GAIN_Y);
678         DUMPREG(VENC_BLACK_LEVEL);
679         DUMPREG(VENC_BLANK_LEVEL);
680         DUMPREG(VENC_X_COLOR);
681         DUMPREG(VENC_M_CONTROL);
682         DUMPREG(VENC_BSTAMP_WSS_DATA);
683         DUMPREG(VENC_S_CARR);
684         DUMPREG(VENC_LINE21);
685         DUMPREG(VENC_LN_SEL);
686         DUMPREG(VENC_L21__WC_CTL);
687         DUMPREG(VENC_HTRIGGER_VTRIGGER);
688         DUMPREG(VENC_SAVID__EAVID);
689         DUMPREG(VENC_FLEN__FAL);
690         DUMPREG(VENC_LAL__PHASE_RESET);
691         DUMPREG(VENC_HS_INT_START_STOP_X);
692         DUMPREG(VENC_HS_EXT_START_STOP_X);
693         DUMPREG(VENC_VS_INT_START_X);
694         DUMPREG(VENC_VS_INT_STOP_X__VS_INT_START_Y);
695         DUMPREG(VENC_VS_INT_STOP_Y__VS_EXT_START_X);
696         DUMPREG(VENC_VS_EXT_STOP_X__VS_EXT_START_Y);
697         DUMPREG(VENC_VS_EXT_STOP_Y);
698         DUMPREG(VENC_AVID_START_STOP_X);
699         DUMPREG(VENC_AVID_START_STOP_Y);
700         DUMPREG(VENC_FID_INT_START_X__FID_INT_START_Y);
701         DUMPREG(VENC_FID_INT_OFFSET_Y__FID_EXT_START_X);
702         DUMPREG(VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y);
703         DUMPREG(VENC_TVDETGP_INT_START_STOP_X);
704         DUMPREG(VENC_TVDETGP_INT_START_STOP_Y);
705         DUMPREG(VENC_GEN_CTRL);
706         DUMPREG(VENC_OUTPUT_CONTROL);
707         DUMPREG(VENC_OUTPUT_TEST);
708
709         venc_runtime_put();
710
711 #undef DUMPREG
712 }
713
714 static int venc_get_clocks(struct platform_device *pdev)
715 {
716         struct clk *clk;
717
718         if (dss_has_feature(FEAT_VENC_REQUIRES_TV_DAC_CLK)) {
719                 clk = devm_clk_get(&pdev->dev, "tv_dac_clk");
720                 if (IS_ERR(clk)) {
721                         DSSERR("can't get tv_dac_clk\n");
722                         return PTR_ERR(clk);
723                 }
724         } else {
725                 clk = NULL;
726         }
727
728         venc.tv_dac_clk = clk;
729
730         return 0;
731 }
732
733 static int venc_connect(struct omap_dss_device *dssdev,
734                 struct omap_dss_device *dst)
735 {
736         struct omap_overlay_manager *mgr;
737         int r;
738
739         r = venc_init_regulator();
740         if (r)
741                 return r;
742
743         mgr = omap_dss_get_overlay_manager(dssdev->dispc_channel);
744         if (!mgr)
745                 return -ENODEV;
746
747         r = dss_mgr_connect(mgr, dssdev);
748         if (r)
749                 return r;
750
751         r = omapdss_output_set_device(dssdev, dst);
752         if (r) {
753                 DSSERR("failed to connect output to new device: %s\n",
754                                 dst->name);
755                 dss_mgr_disconnect(mgr, dssdev);
756                 return r;
757         }
758
759         return 0;
760 }
761
762 static void venc_disconnect(struct omap_dss_device *dssdev,
763                 struct omap_dss_device *dst)
764 {
765         WARN_ON(dst != dssdev->dst);
766
767         if (dst != dssdev->dst)
768                 return;
769
770         omapdss_output_unset_device(dssdev);
771
772         if (dssdev->manager)
773                 dss_mgr_disconnect(dssdev->manager, dssdev);
774 }
775
776 static const struct omapdss_atv_ops venc_ops = {
777         .connect = venc_connect,
778         .disconnect = venc_disconnect,
779
780         .enable = venc_display_enable,
781         .disable = venc_display_disable,
782
783         .check_timings = venc_check_timings,
784         .set_timings = venc_set_timings,
785         .get_timings = venc_get_timings,
786
787         .set_type = venc_set_type,
788         .invert_vid_out_polarity = venc_invert_vid_out_polarity,
789
790         .set_wss = venc_set_wss,
791         .get_wss = venc_get_wss,
792 };
793
794 static void venc_init_output(struct platform_device *pdev)
795 {
796         struct omap_dss_device *out = &venc.output;
797
798         out->dev = &pdev->dev;
799         out->id = OMAP_DSS_OUTPUT_VENC;
800         out->output_type = OMAP_DISPLAY_TYPE_VENC;
801         out->name = "venc.0";
802         out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
803         out->ops.atv = &venc_ops;
804         out->owner = THIS_MODULE;
805
806         omapdss_register_output(out);
807 }
808
809 static void venc_uninit_output(struct platform_device *pdev)
810 {
811         struct omap_dss_device *out = &venc.output;
812
813         omapdss_unregister_output(out);
814 }
815
816 static int venc_probe_of(struct platform_device *pdev)
817 {
818         struct device_node *node = pdev->dev.of_node;
819         struct device_node *ep;
820         u32 channels;
821         int r;
822
823         ep = omapdss_of_get_first_endpoint(node);
824         if (!ep)
825                 return 0;
826
827         venc.invert_polarity = of_property_read_bool(ep, "ti,invert-polarity");
828
829         r = of_property_read_u32(ep, "ti,channels", &channels);
830         if (r) {
831                 dev_err(&pdev->dev,
832                         "failed to read property 'ti,channels': %d\n", r);
833                 goto err;
834         }
835
836         switch (channels) {
837         case 1:
838                 venc.type = OMAP_DSS_VENC_TYPE_COMPOSITE;
839                 break;
840         case 2:
841                 venc.type = OMAP_DSS_VENC_TYPE_SVIDEO;
842                 break;
843         default:
844                 dev_err(&pdev->dev, "bad channel propert '%d'\n", channels);
845                 r = -EINVAL;
846                 goto err;
847         }
848
849         of_node_put(ep);
850
851         return 0;
852 err:
853         of_node_put(ep);
854
855         return 0;
856 }
857
858 /* VENC HW IP initialisation */
859 static int venc_bind(struct device *dev, struct device *master, void *data)
860 {
861         struct platform_device *pdev = to_platform_device(dev);
862         u8 rev_id;
863         struct resource *venc_mem;
864         int r;
865
866         venc.pdev = pdev;
867
868         mutex_init(&venc.venc_lock);
869
870         venc.wss_data = 0;
871
872         venc_mem = platform_get_resource(venc.pdev, IORESOURCE_MEM, 0);
873         if (!venc_mem) {
874                 DSSERR("can't get IORESOURCE_MEM VENC\n");
875                 return -EINVAL;
876         }
877
878         venc.base = devm_ioremap(&pdev->dev, venc_mem->start,
879                                  resource_size(venc_mem));
880         if (!venc.base) {
881                 DSSERR("can't ioremap VENC\n");
882                 return -ENOMEM;
883         }
884
885         r = venc_get_clocks(pdev);
886         if (r)
887                 return r;
888
889         pm_runtime_enable(&pdev->dev);
890
891         r = venc_runtime_get();
892         if (r)
893                 goto err_runtime_get;
894
895         rev_id = (u8)(venc_read_reg(VENC_REV_ID) & 0xff);
896         dev_dbg(&pdev->dev, "OMAP VENC rev %d\n", rev_id);
897
898         venc_runtime_put();
899
900         if (pdev->dev.of_node) {
901                 r = venc_probe_of(pdev);
902                 if (r) {
903                         DSSERR("Invalid DT data\n");
904                         goto err_probe_of;
905                 }
906         }
907
908         dss_debugfs_create_file("venc", venc_dump_regs);
909
910         venc_init_output(pdev);
911
912         return 0;
913
914 err_probe_of:
915 err_runtime_get:
916         pm_runtime_disable(&pdev->dev);
917         return r;
918 }
919
920 static void venc_unbind(struct device *dev, struct device *master, void *data)
921 {
922         struct platform_device *pdev = to_platform_device(dev);
923
924         venc_uninit_output(pdev);
925
926         pm_runtime_disable(&pdev->dev);
927 }
928
929 static const struct component_ops venc_component_ops = {
930         .bind   = venc_bind,
931         .unbind = venc_unbind,
932 };
933
934 static int venc_probe(struct platform_device *pdev)
935 {
936         return component_add(&pdev->dev, &venc_component_ops);
937 }
938
939 static int venc_remove(struct platform_device *pdev)
940 {
941         component_del(&pdev->dev, &venc_component_ops);
942         return 0;
943 }
944
945 static int venc_runtime_suspend(struct device *dev)
946 {
947         if (venc.tv_dac_clk)
948                 clk_disable_unprepare(venc.tv_dac_clk);
949
950         dispc_runtime_put();
951
952         return 0;
953 }
954
955 static int venc_runtime_resume(struct device *dev)
956 {
957         int r;
958
959         r = dispc_runtime_get();
960         if (r < 0)
961                 return r;
962
963         if (venc.tv_dac_clk)
964                 clk_prepare_enable(venc.tv_dac_clk);
965
966         return 0;
967 }
968
969 static const struct dev_pm_ops venc_pm_ops = {
970         .runtime_suspend = venc_runtime_suspend,
971         .runtime_resume = venc_runtime_resume,
972 };
973
974 static const struct of_device_id venc_of_match[] = {
975         { .compatible = "ti,omap2-venc", },
976         { .compatible = "ti,omap3-venc", },
977         { .compatible = "ti,omap4-venc", },
978         {},
979 };
980
981 static struct platform_driver omap_venchw_driver = {
982         .probe          = venc_probe,
983         .remove         = venc_remove,
984         .driver         = {
985                 .name   = "omapdss_venc",
986                 .pm     = &venc_pm_ops,
987                 .of_match_table = venc_of_match,
988                 .suppress_bind_attrs = true,
989         },
990 };
991
992 int __init venc_init_platform_driver(void)
993 {
994         return platform_driver_register(&omap_venchw_driver);
995 }
996
997 void venc_uninit_platform_driver(void)
998 {
999         platform_driver_unregister(&omap_venchw_driver);
1000 }