/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* upd64031a - NEC Electronics Ghost Reduction input defines3*4* 2006 by Hans Verkuil ([email protected])5*/67#ifndef _UPD64031A_H_8#define _UPD64031A_H_910/* Ghost reduction modes */11#define UPD64031A_GR_ON 012#define UPD64031A_GR_OFF 113#define UPD64031A_GR_THROUGH 31415/* Direct 3D/YCS Connection */16#define UPD64031A_3DYCS_DISABLE (0 << 2)17#define UPD64031A_3DYCS_COMPOSITE (2 << 2)18#define UPD64031A_3DYCS_SVIDEO (3 << 2)1920/* Composite sync digital separation circuit */21#define UPD64031A_COMPOSITE_EXTERNAL (1 << 4)2223/* Vertical sync digital separation circuit */24#define UPD64031A_VERTICAL_EXTERNAL (1 << 5)2526#endif272829