hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* Texas Instruments Triple 8-/10-BIT 165-/110-MSPS Video and Graphics
 * Digitizer with Horizontal PLL registers
 *
 * Copyright (C) 2009 Texas Instruments Inc
 * Author: Santiago Nunez-Corrales <santiago.nunez@ridgerun.com>
 *
 * This code is partially based upon the TVP5150 driver
 * written by Mauro Carvalho Chehab <mchehab@kernel.org>,
 * the TVP514x driver written by Vaibhav Hiremath <hvaibhav@ti.com>
 * and the TVP7002 driver in the TI LSP 2.10.00.14
 */
 
/* Naming conventions
 * ------------------
 *
 * FDBK:  Feedback
 * DIV:   Divider
 * CTL:   Control
 * SEL:   Select
 * IN:    Input
 * OUT:   Output
 * R:     Red
 * G:     Green
 * B:     Blue
 * OFF:   Offset
 * THRS:  Threshold
 * DGTL:  Digital
 * LVL:   Level
 * PWR:   Power
 * MVIS:  Macrovision
 * W:     Width
 * H:     Height
 * ALGN:  Alignment
 * CLK:   Clocks
 * TOL:   Tolerance
 * BWTH:  Bandwidth
 * COEF:  Coefficient
 * STAT:  Status
 * AUTO:  Automatic
 * FLD:   Field
 * L:      Line
 */
 
#define TVP7002_CHIP_REV        0x00
#define TVP7002_HPLL_FDBK_DIV_MSBS    0x01
#define TVP7002_HPLL_FDBK_DIV_LSBS    0x02
#define TVP7002_HPLL_CRTL        0x03
#define TVP7002_HPLL_PHASE_SEL        0x04
#define TVP7002_CLAMP_START        0x05
#define TVP7002_CLAMP_W            0x06
#define TVP7002_HSYNC_OUT_W        0x07
#define TVP7002_B_FINE_GAIN        0x08
#define TVP7002_G_FINE_GAIN        0x09
#define TVP7002_R_FINE_GAIN        0x0a
#define TVP7002_B_FINE_OFF_MSBS        0x0b
#define TVP7002_G_FINE_OFF_MSBS         0x0c
#define TVP7002_R_FINE_OFF_MSBS         0x0d
#define TVP7002_SYNC_CTL_1        0x0e
#define TVP7002_HPLL_AND_CLAMP_CTL    0x0f
#define TVP7002_SYNC_ON_G_THRS        0x10
#define TVP7002_SYNC_SEPARATOR_THRS    0x11
#define TVP7002_HPLL_PRE_COAST        0x12
#define TVP7002_HPLL_POST_COAST        0x13
#define TVP7002_SYNC_DETECT_STAT    0x14
#define TVP7002_OUT_FORMATTER        0x15
#define TVP7002_MISC_CTL_1        0x16
#define TVP7002_MISC_CTL_2              0x17
#define TVP7002_MISC_CTL_3              0x18
#define TVP7002_IN_MUX_SEL_1        0x19
#define TVP7002_IN_MUX_SEL_2            0x1a
#define TVP7002_B_AND_G_COARSE_GAIN    0x1b
#define TVP7002_R_COARSE_GAIN        0x1c
#define TVP7002_FINE_OFF_LSBS        0x1d
#define TVP7002_B_COARSE_OFF        0x1e
#define TVP7002_G_COARSE_OFF            0x1f
#define TVP7002_R_COARSE_OFF            0x20
#define TVP7002_HSOUT_OUT_START        0x21
#define TVP7002_MISC_CTL_4        0x22
#define TVP7002_B_DGTL_ALC_OUT_LSBS    0x23
#define TVP7002_G_DGTL_ALC_OUT_LSBS     0x24
#define TVP7002_R_DGTL_ALC_OUT_LSBS     0x25
#define TVP7002_AUTO_LVL_CTL_ENABLE    0x26
#define TVP7002_DGTL_ALC_OUT_MSBS    0x27
#define TVP7002_AUTO_LVL_CTL_FILTER    0x28
/* Reserved 0x29*/
#define TVP7002_FINE_CLAMP_CTL        0x2a
#define TVP7002_PWR_CTL            0x2b
#define TVP7002_ADC_SETUP        0x2c
#define TVP7002_COARSE_CLAMP_CTL    0x2d
#define TVP7002_SOG_CLAMP        0x2e
#define TVP7002_RGB_COARSE_CLAMP_CTL    0x2f
#define TVP7002_SOG_COARSE_CLAMP_CTL    0x30
#define TVP7002_ALC_PLACEMENT        0x31
/* Reserved 0x32 */
/* Reserved 0x33 */
#define TVP7002_MVIS_STRIPPER_W        0x34
#define TVP7002_VSYNC_ALGN        0x35
#define TVP7002_SYNC_BYPASS        0x36
#define TVP7002_L_FRAME_STAT_LSBS    0x37
#define TVP7002_L_FRAME_STAT_MSBS    0x38
#define TVP7002_CLK_L_STAT_LSBS        0x39
#define TVP7002_CLK_L_STAT_MSBS        0x3a
#define TVP7002_HSYNC_W            0x3b
#define TVP7002_VSYNC_W                 0x3c
#define TVP7002_L_LENGTH_TOL        0x3d
/* Reserved 0x3e */
#define TVP7002_VIDEO_BWTH_CTL        0x3f
#define TVP7002_AVID_START_PIXEL_LSBS    0x40
#define TVP7002_AVID_START_PIXEL_MSBS   0x41
#define TVP7002_AVID_STOP_PIXEL_LSBS    0x42
#define TVP7002_AVID_STOP_PIXEL_MSBS    0x43
#define TVP7002_VBLK_F_0_START_L_OFF    0x44
#define TVP7002_VBLK_F_1_START_L_OFF    0x45
#define TVP7002_VBLK_F_0_DURATION    0x46
#define TVP7002_VBLK_F_1_DURATION       0x47
#define TVP7002_FBIT_F_0_START_L_OFF    0x48
#define TVP7002_FBIT_F_1_START_L_OFF    0x49
#define TVP7002_YUV_Y_G_COEF_LSBS    0x4a
#define TVP7002_YUV_Y_G_COEF_MSBS       0x4b
#define TVP7002_YUV_Y_B_COEF_LSBS       0x4c
#define TVP7002_YUV_Y_B_COEF_MSBS       0x4d
#define TVP7002_YUV_Y_R_COEF_LSBS       0x4e
#define TVP7002_YUV_Y_R_COEF_MSBS       0x4f
#define TVP7002_YUV_U_G_COEF_LSBS       0x50
#define TVP7002_YUV_U_G_COEF_MSBS       0x51
#define TVP7002_YUV_U_B_COEF_LSBS       0x52
#define TVP7002_YUV_U_B_COEF_MSBS       0x53
#define TVP7002_YUV_U_R_COEF_LSBS       0x54
#define TVP7002_YUV_U_R_COEF_MSBS       0x55
#define TVP7002_YUV_V_G_COEF_LSBS       0x56
#define TVP7002_YUV_V_G_COEF_MSBS       0x57
#define TVP7002_YUV_V_B_COEF_LSBS       0x58
#define TVP7002_YUV_V_B_COEF_MSBS       0x59
#define TVP7002_YUV_V_R_COEF_LSBS       0x5a
#define TVP7002_YUV_V_R_COEF_MSBS       0x5b