blob: b6570abc84ef34fe8ece6987f5c9a189deb3d5c1 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Hans Verkuiladd953c2006-03-29 14:56:17 -03002/*
3 * upd64031a - NEC Electronics Ghost Reduction input defines
4 *
5 * 2006 by Hans Verkuil (hverkuil@xs4all.nl)
Hans Verkuiladd953c2006-03-29 14:56:17 -03006 */
7
8#ifndef _UPD64031A_H_
9#define _UPD64031A_H_
10
11/* Ghost reduction modes */
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050012#define UPD64031A_GR_ON 0
13#define UPD64031A_GR_OFF 1
14#define UPD64031A_GR_THROUGH 3
Hans Verkuiladd953c2006-03-29 14:56:17 -030015
16/* Direct 3D/YCS Connection */
17#define UPD64031A_3DYCS_DISABLE (0 << 2)
18#define UPD64031A_3DYCS_COMPOSITE (2 << 2)
19#define UPD64031A_3DYCS_SVIDEO (3 << 2)
20
21/* Composite sync digital separation circuit */
22#define UPD64031A_COMPOSITE_EXTERNAL (1 << 4)
23
24/* Vertical sync digital separation circuit */
25#define UPD64031A_VERTICAL_EXTERNAL (1 << 5)
26
27#endif