18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * upd64031a - NEC Electronics Ghost Reduction input defines 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * 2006 by Hans Verkuil (hverkuil@xs4all.nl) 68c2ecf20Sopenharmony_ci */ 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci#ifndef _UPD64031A_H_ 98c2ecf20Sopenharmony_ci#define _UPD64031A_H_ 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci/* Ghost reduction modes */ 128c2ecf20Sopenharmony_ci#define UPD64031A_GR_ON 0 138c2ecf20Sopenharmony_ci#define UPD64031A_GR_OFF 1 148c2ecf20Sopenharmony_ci#define UPD64031A_GR_THROUGH 3 158c2ecf20Sopenharmony_ci 168c2ecf20Sopenharmony_ci/* Direct 3D/YCS Connection */ 178c2ecf20Sopenharmony_ci#define UPD64031A_3DYCS_DISABLE (0 << 2) 188c2ecf20Sopenharmony_ci#define UPD64031A_3DYCS_COMPOSITE (2 << 2) 198c2ecf20Sopenharmony_ci#define UPD64031A_3DYCS_SVIDEO (3 << 2) 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ci/* Composite sync digital separation circuit */ 228c2ecf20Sopenharmony_ci#define UPD64031A_COMPOSITE_EXTERNAL (1 << 4) 238c2ecf20Sopenharmony_ci 248c2ecf20Sopenharmony_ci/* Vertical sync digital separation circuit */ 258c2ecf20Sopenharmony_ci#define UPD64031A_VERTICAL_EXTERNAL (1 << 5) 268c2ecf20Sopenharmony_ci 278c2ecf20Sopenharmony_ci#endif 28