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 
venc_write_reg(int idx,u32 val)301 static inline void venc_write_reg(int idx, u32 val)
302 {
303 	__raw_writel(val, venc.base + idx);
304 }
305 
venc_read_reg(int idx)306 static inline u32 venc_read_reg(int idx)
307 {
308 	u32 l = __raw_readl(venc.base + idx);
309 	return l;
310 }
311 
venc_write_config(const struct venc_config * config)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 
venc_reset(void)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 
venc_runtime_get(void)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 
venc_runtime_put(void)398 static void venc_runtime_put(void)
399 {
400 	int r;
401 
402 	DSSDBG("venc_runtime_put\n");
403 
404 	r = pm_runtime_put_sync(&venc.pdev->dev);
405 	WARN_ON(r < 0);
406 }
407 
venc_timings_to_config(struct omap_video_timings * timings)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 
venc_power_on(struct omap_dss_device * dssdev)420 static int venc_power_on(struct omap_dss_device *dssdev)
421 {
422 	u32 l;
423 	int r;
424 
425 	venc_reset();
426 	venc_write_config(venc_timings_to_config(&dssdev->panel.timings));
427 
428 	dss_set_venc_output(dssdev->phy.venc.type);
429 	dss_set_dac_pwrdn_bgz(1);
430 
431 	l = 0;
432 
433 	if (dssdev->phy.venc.type == OMAP_DSS_VENC_TYPE_COMPOSITE)
434 		l |= 1 << 1;
435 	else /* S-Video */
436 		l |= (1 << 0) | (1 << 2);
437 
438 	if (dssdev->phy.venc.invert_polarity == false)
439 		l |= 1 << 3;
440 
441 	venc_write_reg(VENC_OUTPUT_CONTROL, l);
442 
443 	dispc_set_digit_size(dssdev->panel.timings.x_res,
444 			dssdev->panel.timings.y_res/2);
445 
446 	regulator_enable(venc.vdda_dac_reg);
447 
448 	if (dssdev->platform_enable)
449 		dssdev->platform_enable(dssdev);
450 
451 	r = dss_mgr_enable(dssdev->manager);
452 	if (r)
453 		goto err;
454 
455 	return 0;
456 
457 err:
458 	venc_write_reg(VENC_OUTPUT_CONTROL, 0);
459 	dss_set_dac_pwrdn_bgz(0);
460 
461 	if (dssdev->platform_disable)
462 		dssdev->platform_disable(dssdev);
463 
464 	regulator_disable(venc.vdda_dac_reg);
465 
466 	return r;
467 }
468 
venc_power_off(struct omap_dss_device * dssdev)469 static void venc_power_off(struct omap_dss_device *dssdev)
470 {
471 	venc_write_reg(VENC_OUTPUT_CONTROL, 0);
472 	dss_set_dac_pwrdn_bgz(0);
473 
474 	dss_mgr_disable(dssdev->manager);
475 
476 	if (dssdev->platform_disable)
477 		dssdev->platform_disable(dssdev);
478 
479 	regulator_disable(venc.vdda_dac_reg);
480 }
481 
venc_get_pixel_clock(void)482 unsigned long venc_get_pixel_clock(void)
483 {
484 	/* VENC Pixel Clock in Mhz */
485 	return 13500000;
486 }
487 
488 /* driver */
venc_panel_probe(struct omap_dss_device * dssdev)489 static int venc_panel_probe(struct omap_dss_device *dssdev)
490 {
491 	dssdev->panel.timings = omap_dss_pal_timings;
492 
493 	return 0;
494 }
495 
venc_panel_remove(struct omap_dss_device * dssdev)496 static void venc_panel_remove(struct omap_dss_device *dssdev)
497 {
498 }
499 
venc_panel_enable(struct omap_dss_device * dssdev)500 static int venc_panel_enable(struct omap_dss_device *dssdev)
501 {
502 	int r = 0;
503 
504 	DSSDBG("venc_enable_display\n");
505 
506 	mutex_lock(&venc.venc_lock);
507 
508 	r = omap_dss_start_device(dssdev);
509 	if (r) {
510 		DSSERR("failed to start device\n");
511 		goto err0;
512 	}
513 
514 	if (dssdev->state != OMAP_DSS_DISPLAY_DISABLED) {
515 		r = -EINVAL;
516 		goto err1;
517 	}
518 
519 	r = venc_runtime_get();
520 	if (r)
521 		goto err1;
522 
523 	r = venc_power_on(dssdev);
524 	if (r)
525 		goto err2;
526 
527 	venc.wss_data = 0;
528 
529 	dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
530 
531 	mutex_unlock(&venc.venc_lock);
532 	return 0;
533 err2:
534 	venc_runtime_put();
535 err1:
536 	omap_dss_stop_device(dssdev);
537 err0:
538 	mutex_unlock(&venc.venc_lock);
539 
540 	return r;
541 }
542 
venc_panel_disable(struct omap_dss_device * dssdev)543 static void venc_panel_disable(struct omap_dss_device *dssdev)
544 {
545 	DSSDBG("venc_disable_display\n");
546 
547 	mutex_lock(&venc.venc_lock);
548 
549 	if (dssdev->state == OMAP_DSS_DISPLAY_DISABLED)
550 		goto end;
551 
552 	if (dssdev->state == OMAP_DSS_DISPLAY_SUSPENDED) {
553 		/* suspended is the same as disabled with venc */
554 		dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
555 		goto end;
556 	}
557 
558 	venc_power_off(dssdev);
559 
560 	venc_runtime_put();
561 
562 	dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
563 
564 	omap_dss_stop_device(dssdev);
565 end:
566 	mutex_unlock(&venc.venc_lock);
567 }
568 
venc_panel_suspend(struct omap_dss_device * dssdev)569 static int venc_panel_suspend(struct omap_dss_device *dssdev)
570 {
571 	venc_panel_disable(dssdev);
572 	return 0;
573 }
574 
venc_panel_resume(struct omap_dss_device * dssdev)575 static int venc_panel_resume(struct omap_dss_device *dssdev)
576 {
577 	return venc_panel_enable(dssdev);
578 }
579 
venc_get_timings(struct omap_dss_device * dssdev,struct omap_video_timings * timings)580 static void venc_get_timings(struct omap_dss_device *dssdev,
581 			struct omap_video_timings *timings)
582 {
583 	*timings = dssdev->panel.timings;
584 }
585 
venc_set_timings(struct omap_dss_device * dssdev,struct omap_video_timings * timings)586 static void venc_set_timings(struct omap_dss_device *dssdev,
587 			struct omap_video_timings *timings)
588 {
589 	DSSDBG("venc_set_timings\n");
590 
591 	/* Reset WSS data when the TV standard changes. */
592 	if (memcmp(&dssdev->panel.timings, timings, sizeof(*timings)))
593 		venc.wss_data = 0;
594 
595 	dssdev->panel.timings = *timings;
596 	if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) {
597 		/* turn the venc off and on to get new timings to use */
598 		venc_panel_disable(dssdev);
599 		venc_panel_enable(dssdev);
600 	}
601 }
602 
venc_check_timings(struct omap_dss_device * dssdev,struct omap_video_timings * timings)603 static int venc_check_timings(struct omap_dss_device *dssdev,
604 			struct omap_video_timings *timings)
605 {
606 	DSSDBG("venc_check_timings\n");
607 
608 	if (memcmp(&omap_dss_pal_timings, timings, sizeof(*timings)) == 0)
609 		return 0;
610 
611 	if (memcmp(&omap_dss_ntsc_timings, timings, sizeof(*timings)) == 0)
612 		return 0;
613 
614 	return -EINVAL;
615 }
616 
venc_get_wss(struct omap_dss_device * dssdev)617 static u32 venc_get_wss(struct omap_dss_device *dssdev)
618 {
619 	/* Invert due to VENC_L21_WC_CTL:INV=1 */
620 	return (venc.wss_data >> 8) ^ 0xfffff;
621 }
622 
venc_set_wss(struct omap_dss_device * dssdev,u32 wss)623 static int venc_set_wss(struct omap_dss_device *dssdev,	u32 wss)
624 {
625 	const struct venc_config *config;
626 	int r;
627 
628 	DSSDBG("venc_set_wss\n");
629 
630 	mutex_lock(&venc.venc_lock);
631 
632 	config = venc_timings_to_config(&dssdev->panel.timings);
633 
634 	/* Invert due to VENC_L21_WC_CTL:INV=1 */
635 	venc.wss_data = (wss ^ 0xfffff) << 8;
636 
637 	r = venc_runtime_get();
638 	if (r)
639 		goto err;
640 
641 	venc_write_reg(VENC_BSTAMP_WSS_DATA, config->bstamp_wss_data |
642 			venc.wss_data);
643 
644 	venc_runtime_put();
645 
646 err:
647 	mutex_unlock(&venc.venc_lock);
648 
649 	return r;
650 }
651 
652 static struct omap_dss_driver venc_driver = {
653 	.probe		= venc_panel_probe,
654 	.remove		= venc_panel_remove,
655 
656 	.enable		= venc_panel_enable,
657 	.disable	= venc_panel_disable,
658 	.suspend	= venc_panel_suspend,
659 	.resume		= venc_panel_resume,
660 
661 	.get_resolution	= omapdss_default_get_resolution,
662 	.get_recommended_bpp = omapdss_default_get_recommended_bpp,
663 
664 	.get_timings	= venc_get_timings,
665 	.set_timings	= venc_set_timings,
666 	.check_timings	= venc_check_timings,
667 
668 	.get_wss	= venc_get_wss,
669 	.set_wss	= venc_set_wss,
670 
671 	.driver         = {
672 		.name   = "venc",
673 		.owner  = THIS_MODULE,
674 	},
675 };
676 /* driver end */
677 
venc_init_display(struct omap_dss_device * dssdev)678 int venc_init_display(struct omap_dss_device *dssdev)
679 {
680 	DSSDBG("init_display\n");
681 
682 	if (venc.vdda_dac_reg == NULL) {
683 		struct regulator *vdda_dac;
684 
685 		vdda_dac = regulator_get(&venc.pdev->dev, "vdda_dac");
686 
687 		if (IS_ERR(vdda_dac)) {
688 			DSSERR("can't get VDDA_DAC regulator\n");
689 			return PTR_ERR(vdda_dac);
690 		}
691 
692 		venc.vdda_dac_reg = vdda_dac;
693 	}
694 
695 	return 0;
696 }
697 
venc_dump_regs(struct seq_file * s)698 void venc_dump_regs(struct seq_file *s)
699 {
700 #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, venc_read_reg(r))
701 
702 	if (venc_runtime_get())
703 		return;
704 
705 	DUMPREG(VENC_F_CONTROL);
706 	DUMPREG(VENC_VIDOUT_CTRL);
707 	DUMPREG(VENC_SYNC_CTRL);
708 	DUMPREG(VENC_LLEN);
709 	DUMPREG(VENC_FLENS);
710 	DUMPREG(VENC_HFLTR_CTRL);
711 	DUMPREG(VENC_CC_CARR_WSS_CARR);
712 	DUMPREG(VENC_C_PHASE);
713 	DUMPREG(VENC_GAIN_U);
714 	DUMPREG(VENC_GAIN_V);
715 	DUMPREG(VENC_GAIN_Y);
716 	DUMPREG(VENC_BLACK_LEVEL);
717 	DUMPREG(VENC_BLANK_LEVEL);
718 	DUMPREG(VENC_X_COLOR);
719 	DUMPREG(VENC_M_CONTROL);
720 	DUMPREG(VENC_BSTAMP_WSS_DATA);
721 	DUMPREG(VENC_S_CARR);
722 	DUMPREG(VENC_LINE21);
723 	DUMPREG(VENC_LN_SEL);
724 	DUMPREG(VENC_L21__WC_CTL);
725 	DUMPREG(VENC_HTRIGGER_VTRIGGER);
726 	DUMPREG(VENC_SAVID__EAVID);
727 	DUMPREG(VENC_FLEN__FAL);
728 	DUMPREG(VENC_LAL__PHASE_RESET);
729 	DUMPREG(VENC_HS_INT_START_STOP_X);
730 	DUMPREG(VENC_HS_EXT_START_STOP_X);
731 	DUMPREG(VENC_VS_INT_START_X);
732 	DUMPREG(VENC_VS_INT_STOP_X__VS_INT_START_Y);
733 	DUMPREG(VENC_VS_INT_STOP_Y__VS_EXT_START_X);
734 	DUMPREG(VENC_VS_EXT_STOP_X__VS_EXT_START_Y);
735 	DUMPREG(VENC_VS_EXT_STOP_Y);
736 	DUMPREG(VENC_AVID_START_STOP_X);
737 	DUMPREG(VENC_AVID_START_STOP_Y);
738 	DUMPREG(VENC_FID_INT_START_X__FID_INT_START_Y);
739 	DUMPREG(VENC_FID_INT_OFFSET_Y__FID_EXT_START_X);
740 	DUMPREG(VENC_FID_EXT_START_Y__FID_EXT_OFFSET_Y);
741 	DUMPREG(VENC_TVDETGP_INT_START_STOP_X);
742 	DUMPREG(VENC_TVDETGP_INT_START_STOP_Y);
743 	DUMPREG(VENC_GEN_CTRL);
744 	DUMPREG(VENC_OUTPUT_CONTROL);
745 	DUMPREG(VENC_OUTPUT_TEST);
746 
747 	venc_runtime_put();
748 
749 #undef DUMPREG
750 }
751 
venc_get_clocks(struct platform_device * pdev)752 static int venc_get_clocks(struct platform_device *pdev)
753 {
754 	struct clk *clk;
755 
756 	if (dss_has_feature(FEAT_VENC_REQUIRES_TV_DAC_CLK)) {
757 		clk = clk_get(&pdev->dev, "tv_dac_clk");
758 		if (IS_ERR(clk)) {
759 			DSSERR("can't get tv_dac_clk\n");
760 			return PTR_ERR(clk);
761 		}
762 	} else {
763 		clk = NULL;
764 	}
765 
766 	venc.tv_dac_clk = clk;
767 
768 	return 0;
769 }
770 
venc_put_clocks(void)771 static void venc_put_clocks(void)
772 {
773 	if (venc.tv_dac_clk)
774 		clk_put(venc.tv_dac_clk);
775 }
776 
777 /* VENC HW IP initialisation */
omap_venchw_probe(struct platform_device * pdev)778 static int omap_venchw_probe(struct platform_device *pdev)
779 {
780 	u8 rev_id;
781 	struct resource *venc_mem;
782 	int r;
783 
784 	venc.pdev = pdev;
785 
786 	mutex_init(&venc.venc_lock);
787 
788 	venc.wss_data = 0;
789 
790 	venc_mem = platform_get_resource(venc.pdev, IORESOURCE_MEM, 0);
791 	if (!venc_mem) {
792 		DSSERR("can't get IORESOURCE_MEM VENC\n");
793 		r = -EINVAL;
794 		goto err_ioremap;
795 	}
796 	venc.base = ioremap(venc_mem->start, resource_size(venc_mem));
797 	if (!venc.base) {
798 		DSSERR("can't ioremap VENC\n");
799 		r = -ENOMEM;
800 		goto err_ioremap;
801 	}
802 
803 	r = venc_get_clocks(pdev);
804 	if (r)
805 		goto err_get_clk;
806 
807 	pm_runtime_enable(&pdev->dev);
808 
809 	r = venc_runtime_get();
810 	if (r)
811 		goto err_get_venc;
812 
813 	rev_id = (u8)(venc_read_reg(VENC_REV_ID) & 0xff);
814 	dev_dbg(&pdev->dev, "OMAP VENC rev %d\n", rev_id);
815 
816 	venc_runtime_put();
817 
818 	return omap_dss_register_driver(&venc_driver);
819 
820 err_get_venc:
821 	pm_runtime_disable(&pdev->dev);
822 	venc_put_clocks();
823 err_get_clk:
824 	iounmap(venc.base);
825 err_ioremap:
826 	return r;
827 }
828 
omap_venchw_remove(struct platform_device * pdev)829 static int omap_venchw_remove(struct platform_device *pdev)
830 {
831 	if (venc.vdda_dac_reg != NULL) {
832 		regulator_put(venc.vdda_dac_reg);
833 		venc.vdda_dac_reg = NULL;
834 	}
835 	omap_dss_unregister_driver(&venc_driver);
836 
837 	pm_runtime_disable(&pdev->dev);
838 	venc_put_clocks();
839 
840 	iounmap(venc.base);
841 	return 0;
842 }
843 
venc_runtime_suspend(struct device * dev)844 static int venc_runtime_suspend(struct device *dev)
845 {
846 	if (venc.tv_dac_clk)
847 		clk_disable(venc.tv_dac_clk);
848 
849 	dispc_runtime_put();
850 	dss_runtime_put();
851 
852 	return 0;
853 }
854 
venc_runtime_resume(struct device * dev)855 static int venc_runtime_resume(struct device *dev)
856 {
857 	int r;
858 
859 	r = dss_runtime_get();
860 	if (r < 0)
861 		goto err_get_dss;
862 
863 	r = dispc_runtime_get();
864 	if (r < 0)
865 		goto err_get_dispc;
866 
867 	if (venc.tv_dac_clk)
868 		clk_enable(venc.tv_dac_clk);
869 
870 	return 0;
871 
872 err_get_dispc:
873 	dss_runtime_put();
874 err_get_dss:
875 	return r;
876 }
877 
878 static const struct dev_pm_ops venc_pm_ops = {
879 	.runtime_suspend = venc_runtime_suspend,
880 	.runtime_resume = venc_runtime_resume,
881 };
882 
883 static struct platform_driver omap_venchw_driver = {
884 	.probe          = omap_venchw_probe,
885 	.remove         = omap_venchw_remove,
886 	.driver         = {
887 		.name   = "omapdss_venc",
888 		.owner  = THIS_MODULE,
889 		.pm	= &venc_pm_ops,
890 	},
891 };
892 
venc_init_platform_driver(void)893 int venc_init_platform_driver(void)
894 {
895 	if (cpu_is_omap44xx())
896 		return 0;
897 
898 	return platform_driver_register(&omap_venchw_driver);
899 }
900 
venc_uninit_platform_driver(void)901 void venc_uninit_platform_driver(void)
902 {
903 	if (cpu_is_omap44xx())
904 		return;
905 
906 	return platform_driver_unregister(&omap_venchw_driver);
907 }
908