blob: 73612c5353d1942c4daa9de76c58aa15591ebe4d [file] [log] [blame]
Devin Heitmueller968cf782009-03-11 03:00:38 -03001/*
2 * Auvitek AU8522 QAM/8VSB demodulator driver and video decoder
3 *
4 * Copyright (C) 2009 Devin Heitmueller <dheitmueller@linuxtv.org>
5 * Copyright (C) 2005-2008 Auvitek International, Ltd.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * As published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 * 02110-1301, USA.
21 */
22
23/* Developer notes:
24 *
25 * VBI support is not yet working
Devin Heitmueller968cf782009-03-11 03:00:38 -030026 * Enough is implemented here for CVBS and S-Video inputs, but the actual
27 * analog demodulator code isn't implemented (not needed for xc5000 since it
28 * has its own demodulator and outputs CVBS)
29 *
30 */
31
32#include <linux/kernel.h>
33#include <linux/slab.h>
34#include <linux/videodev2.h>
35#include <linux/i2c.h>
36#include <linux/delay.h>
37#include <media/v4l2-common.h>
Devin Heitmueller968cf782009-03-11 03:00:38 -030038#include <media/v4l2-device.h>
39#include "au8522.h"
40#include "au8522_priv.h"
41
42MODULE_AUTHOR("Devin Heitmueller");
43MODULE_LICENSE("GPL");
44
45static int au8522_analog_debug;
46
Devin Heitmueller968cf782009-03-11 03:00:38 -030047
48module_param_named(analog_debug, au8522_analog_debug, int, 0644);
49
50MODULE_PARM_DESC(analog_debug,
51 "Analog debugging messages [0=Off (default) 1=On]");
52
Devin Heitmueller968cf782009-03-11 03:00:38 -030053struct au8522_register_config {
54 u16 reg_name;
55 u8 reg_val[8];
56};
57
58
59/* Video Decoder Filter Coefficients
60 The values are as follows from left to right
61 0="ATV RF" 1="ATV RF13" 2="CVBS" 3="S-Video" 4="PAL" 5=CVBS13" 6="SVideo13"
62*/
Márton Némethc86a3c32009-12-13 17:19:37 -030063static const struct au8522_register_config filter_coef[] = {
Devin Heitmueller62899a22009-03-15 18:48:52 -030064 {AU8522_FILTER_COEF_R410, {0x25, 0x00, 0x25, 0x25, 0x00, 0x00, 0x00} },
65 {AU8522_FILTER_COEF_R411, {0x20, 0x00, 0x20, 0x20, 0x00, 0x00, 0x00} },
66 {AU8522_FILTER_COEF_R412, {0x03, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00} },
67 {AU8522_FILTER_COEF_R413, {0xe6, 0x00, 0xe6, 0xe6, 0x00, 0x00, 0x00} },
68 {AU8522_FILTER_COEF_R414, {0x40, 0x00, 0x40, 0x40, 0x00, 0x00, 0x00} },
69 {AU8522_FILTER_COEF_R415, {0x1b, 0x00, 0x1b, 0x1b, 0x00, 0x00, 0x00} },
70 {AU8522_FILTER_COEF_R416, {0xc0, 0x00, 0xc0, 0x04, 0x00, 0x00, 0x00} },
71 {AU8522_FILTER_COEF_R417, {0x04, 0x00, 0x04, 0x04, 0x00, 0x00, 0x00} },
72 {AU8522_FILTER_COEF_R418, {0x8c, 0x00, 0x8c, 0x8c, 0x00, 0x00, 0x00} },
73 {AU8522_FILTER_COEF_R419, {0xa0, 0x40, 0xa0, 0xa0, 0x40, 0x40, 0x40} },
74 {AU8522_FILTER_COEF_R41A, {0x21, 0x09, 0x21, 0x21, 0x09, 0x09, 0x09} },
75 {AU8522_FILTER_COEF_R41B, {0x6c, 0x38, 0x6c, 0x6c, 0x38, 0x38, 0x38} },
76 {AU8522_FILTER_COEF_R41C, {0x03, 0xff, 0x03, 0x03, 0xff, 0xff, 0xff} },
77 {AU8522_FILTER_COEF_R41D, {0xbf, 0xc7, 0xbf, 0xbf, 0xc7, 0xc7, 0xc7} },
78 {AU8522_FILTER_COEF_R41E, {0xa0, 0xdf, 0xa0, 0xa0, 0xdf, 0xdf, 0xdf} },
79 {AU8522_FILTER_COEF_R41F, {0x10, 0x06, 0x10, 0x10, 0x06, 0x06, 0x06} },
80 {AU8522_FILTER_COEF_R420, {0xae, 0x30, 0xae, 0xae, 0x30, 0x30, 0x30} },
81 {AU8522_FILTER_COEF_R421, {0xc4, 0x01, 0xc4, 0xc4, 0x01, 0x01, 0x01} },
82 {AU8522_FILTER_COEF_R422, {0x54, 0xdd, 0x54, 0x54, 0xdd, 0xdd, 0xdd} },
83 {AU8522_FILTER_COEF_R423, {0xd0, 0xaf, 0xd0, 0xd0, 0xaf, 0xaf, 0xaf} },
84 {AU8522_FILTER_COEF_R424, {0x1c, 0xf7, 0x1c, 0x1c, 0xf7, 0xf7, 0xf7} },
85 {AU8522_FILTER_COEF_R425, {0x76, 0xdb, 0x76, 0x76, 0xdb, 0xdb, 0xdb} },
86 {AU8522_FILTER_COEF_R426, {0x61, 0xc0, 0x61, 0x61, 0xc0, 0xc0, 0xc0} },
87 {AU8522_FILTER_COEF_R427, {0xd1, 0x2f, 0xd1, 0xd1, 0x2f, 0x2f, 0x2f} },
88 {AU8522_FILTER_COEF_R428, {0x84, 0xd8, 0x84, 0x84, 0xd8, 0xd8, 0xd8} },
89 {AU8522_FILTER_COEF_R429, {0x06, 0xfb, 0x06, 0x06, 0xfb, 0xfb, 0xfb} },
90 {AU8522_FILTER_COEF_R42A, {0x21, 0xd5, 0x21, 0x21, 0xd5, 0xd5, 0xd5} },
91 {AU8522_FILTER_COEF_R42B, {0x0a, 0x3e, 0x0a, 0x0a, 0x3e, 0x3e, 0x3e} },
92 {AU8522_FILTER_COEF_R42C, {0xe6, 0x15, 0xe6, 0xe6, 0x15, 0x15, 0x15} },
93 {AU8522_FILTER_COEF_R42D, {0x01, 0x34, 0x01, 0x01, 0x34, 0x34, 0x34} },
Devin Heitmueller968cf782009-03-11 03:00:38 -030094
95};
Devin Heitmueller62899a22009-03-15 18:48:52 -030096#define NUM_FILTER_COEF (sizeof(filter_coef)\
97 / sizeof(struct au8522_register_config))
Devin Heitmueller968cf782009-03-11 03:00:38 -030098
99
100/* Registers 0x060b through 0x0652 are the LP Filter coefficients
101 The values are as follows from left to right
102 0="SIF" 1="ATVRF/ATVRF13"
103 Note: the "ATVRF/ATVRF13" mode has never been tested
104*/
Márton Némethc86a3c32009-12-13 17:19:37 -0300105static const struct au8522_register_config lpfilter_coef[] = {
Devin Heitmueller62899a22009-03-15 18:48:52 -0300106 {0x060b, {0x21, 0x0b} },
107 {0x060c, {0xad, 0xad} },
108 {0x060d, {0x70, 0xf0} },
109 {0x060e, {0xea, 0xe9} },
110 {0x060f, {0xdd, 0xdd} },
111 {0x0610, {0x08, 0x64} },
112 {0x0611, {0x60, 0x60} },
113 {0x0612, {0xf8, 0xb2} },
114 {0x0613, {0x01, 0x02} },
115 {0x0614, {0xe4, 0xb4} },
116 {0x0615, {0x19, 0x02} },
117 {0x0616, {0xae, 0x2e} },
118 {0x0617, {0xee, 0xc5} },
119 {0x0618, {0x56, 0x56} },
120 {0x0619, {0x30, 0x58} },
121 {0x061a, {0xf9, 0xf8} },
122 {0x061b, {0x24, 0x64} },
123 {0x061c, {0x07, 0x07} },
124 {0x061d, {0x30, 0x30} },
125 {0x061e, {0xa9, 0xed} },
126 {0x061f, {0x09, 0x0b} },
127 {0x0620, {0x42, 0xc2} },
128 {0x0621, {0x1d, 0x2a} },
129 {0x0622, {0xd6, 0x56} },
130 {0x0623, {0x95, 0x8b} },
131 {0x0624, {0x2b, 0x2b} },
132 {0x0625, {0x30, 0x24} },
133 {0x0626, {0x3e, 0x3e} },
134 {0x0627, {0x62, 0xe2} },
135 {0x0628, {0xe9, 0xf5} },
136 {0x0629, {0x99, 0x19} },
137 {0x062a, {0xd4, 0x11} },
138 {0x062b, {0x03, 0x04} },
139 {0x062c, {0xb5, 0x85} },
140 {0x062d, {0x1e, 0x20} },
141 {0x062e, {0x2a, 0xea} },
142 {0x062f, {0xd7, 0xd2} },
143 {0x0630, {0x15, 0x15} },
144 {0x0631, {0xa3, 0xa9} },
145 {0x0632, {0x1f, 0x1f} },
146 {0x0633, {0xf9, 0xd1} },
147 {0x0634, {0xc0, 0xc3} },
148 {0x0635, {0x4d, 0x8d} },
149 {0x0636, {0x21, 0x31} },
150 {0x0637, {0x83, 0x83} },
151 {0x0638, {0x08, 0x8c} },
152 {0x0639, {0x19, 0x19} },
153 {0x063a, {0x45, 0xa5} },
154 {0x063b, {0xef, 0xec} },
155 {0x063c, {0x8a, 0x8a} },
156 {0x063d, {0xf4, 0xf6} },
157 {0x063e, {0x8f, 0x8f} },
158 {0x063f, {0x44, 0x0c} },
159 {0x0640, {0xef, 0xf0} },
160 {0x0641, {0x66, 0x66} },
161 {0x0642, {0xcc, 0xd2} },
162 {0x0643, {0x41, 0x41} },
163 {0x0644, {0x63, 0x93} },
164 {0x0645, {0x8e, 0x8e} },
165 {0x0646, {0xa2, 0x42} },
166 {0x0647, {0x7b, 0x7b} },
167 {0x0648, {0x04, 0x04} },
168 {0x0649, {0x00, 0x00} },
169 {0x064a, {0x40, 0x40} },
170 {0x064b, {0x8c, 0x98} },
171 {0x064c, {0x00, 0x00} },
172 {0x064d, {0x63, 0xc3} },
173 {0x064e, {0x04, 0x04} },
174 {0x064f, {0x20, 0x20} },
175 {0x0650, {0x00, 0x00} },
176 {0x0651, {0x40, 0x40} },
177 {0x0652, {0x01, 0x01} },
Devin Heitmueller968cf782009-03-11 03:00:38 -0300178};
Devin Heitmueller62899a22009-03-15 18:48:52 -0300179#define NUM_LPFILTER_COEF (sizeof(lpfilter_coef)\
180 / sizeof(struct au8522_register_config))
Devin Heitmueller968cf782009-03-11 03:00:38 -0300181
182static inline struct au8522_state *to_state(struct v4l2_subdev *sd)
183{
184 return container_of(sd, struct au8522_state, sd);
185}
186
187static void setup_vbi(struct au8522_state *state, int aud_input)
188{
189 int i;
190
191 /* These are set to zero regardless of what mode we're in */
192 au8522_writereg(state, AU8522_TVDEC_VBI_CTRL_H_REG017H, 0x00);
193 au8522_writereg(state, AU8522_TVDEC_VBI_CTRL_L_REG018H, 0x00);
194 au8522_writereg(state, AU8522_TVDEC_VBI_USER_TOTAL_BITS_REG019H, 0x00);
195 au8522_writereg(state, AU8522_TVDEC_VBI_USER_TUNIT_H_REG01AH, 0x00);
196 au8522_writereg(state, AU8522_TVDEC_VBI_USER_TUNIT_L_REG01BH, 0x00);
197 au8522_writereg(state, AU8522_TVDEC_VBI_USER_THRESH1_REG01CH, 0x00);
198 au8522_writereg(state, AU8522_TVDEC_VBI_USER_FRAME_PAT2_REG01EH, 0x00);
199 au8522_writereg(state, AU8522_TVDEC_VBI_USER_FRAME_PAT1_REG01FH, 0x00);
200 au8522_writereg(state, AU8522_TVDEC_VBI_USER_FRAME_PAT0_REG020H, 0x00);
Devin Heitmueller62899a22009-03-15 18:48:52 -0300201 au8522_writereg(state, AU8522_TVDEC_VBI_USER_FRAME_MASK2_REG021H,
202 0x00);
203 au8522_writereg(state, AU8522_TVDEC_VBI_USER_FRAME_MASK1_REG022H,
204 0x00);
205 au8522_writereg(state, AU8522_TVDEC_VBI_USER_FRAME_MASK0_REG023H,
206 0x00);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300207
208 /* Setup the VBI registers */
Devin Heitmueller62899a22009-03-15 18:48:52 -0300209 for (i = 0x30; i < 0x60; i++)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300210 au8522_writereg(state, i, 0x40);
Devin Heitmueller62899a22009-03-15 18:48:52 -0300211
Devin Heitmueller968cf782009-03-11 03:00:38 -0300212 /* For some reason, every register is 0x40 except register 0x44
213 (confirmed via the HVR-950q USB capture) */
214 au8522_writereg(state, 0x44, 0x60);
215
216 /* Enable VBI (we always do this regardless of whether the user is
217 viewing closed caption info) */
218 au8522_writereg(state, AU8522_TVDEC_VBI_CTRL_H_REG017H,
219 AU8522_TVDEC_VBI_CTRL_H_REG017H_CCON);
220
221}
222
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300223static void setup_decoder_defaults(struct au8522_state *state, bool is_svideo)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300224{
225 int i;
226 int filter_coef_type;
227
228 /* Provide reasonable defaults for picture tuning values */
229 au8522_writereg(state, AU8522_TVDEC_SHARPNESSREG009H, 0x07);
230 au8522_writereg(state, AU8522_TVDEC_BRIGHTNESS_REG00AH, 0xed);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300231 au8522_writereg(state, AU8522_TVDEC_CONTRAST_REG00BH, 0x79);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300232 au8522_writereg(state, AU8522_TVDEC_SATURATION_CB_REG00CH, 0x80);
233 au8522_writereg(state, AU8522_TVDEC_SATURATION_CR_REG00DH, 0x80);
234 au8522_writereg(state, AU8522_TVDEC_HUE_H_REG00EH, 0x00);
235 au8522_writereg(state, AU8522_TVDEC_HUE_L_REG00FH, 0x00);
236
237 /* Other decoder registers */
238 au8522_writereg(state, AU8522_TVDEC_INT_MASK_REG010H, 0x00);
239
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300240 if (is_svideo)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300241 au8522_writereg(state, AU8522_VIDEO_MODE_REG011H, 0x04);
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300242 else
Devin Heitmueller968cf782009-03-11 03:00:38 -0300243 au8522_writereg(state, AU8522_VIDEO_MODE_REG011H, 0x00);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300244
245 au8522_writereg(state, AU8522_TVDEC_PGA_REG012H,
246 AU8522_TVDEC_PGA_REG012H_CVBS);
247 au8522_writereg(state, AU8522_TVDEC_COMB_MODE_REG015H,
248 AU8522_TVDEC_COMB_MODE_REG015H_CVBS);
249 au8522_writereg(state, AU8522_TVDED_DBG_MODE_REG060H,
250 AU8522_TVDED_DBG_MODE_REG060H_CVBS);
Mauro Carvalho Chehabf2fd7ce2014-06-08 13:54:56 -0300251
252 if (state->std == V4L2_STD_PAL_M) {
253 au8522_writereg(state, AU8522_TVDEC_FORMAT_CTRL1_REG061H,
254 AU8522_TVDEC_FORMAT_CTRL1_REG061H_FIELD_LEN_525 |
255 AU8522_TVDEC_FORMAT_CTRL1_REG061H_LINE_LEN_63_492 |
256 AU8522_TVDEC_FORMAT_CTRL1_REG061H_SUBCARRIER_NTSC_AUTO);
257 au8522_writereg(state, AU8522_TVDEC_FORMAT_CTRL2_REG062H,
258 AU8522_TVDEC_FORMAT_CTRL2_REG062H_STD_PAL_M);
259 } else {
260 /* NTSC */
261 au8522_writereg(state, AU8522_TVDEC_FORMAT_CTRL1_REG061H,
262 AU8522_TVDEC_FORMAT_CTRL1_REG061H_FIELD_LEN_525 |
263 AU8522_TVDEC_FORMAT_CTRL1_REG061H_LINE_LEN_63_492 |
264 AU8522_TVDEC_FORMAT_CTRL1_REG061H_SUBCARRIER_NTSC_MN);
265 au8522_writereg(state, AU8522_TVDEC_FORMAT_CTRL2_REG062H,
266 AU8522_TVDEC_FORMAT_CTRL2_REG062H_STD_NTSC);
267 }
Devin Heitmueller968cf782009-03-11 03:00:38 -0300268 au8522_writereg(state, AU8522_TVDEC_VCR_DET_LLIM_REG063H,
269 AU8522_TVDEC_VCR_DET_LLIM_REG063H_CVBS);
270 au8522_writereg(state, AU8522_TVDEC_VCR_DET_HLIM_REG064H,
271 AU8522_TVDEC_VCR_DET_HLIM_REG064H_CVBS);
272 au8522_writereg(state, AU8522_TVDEC_COMB_VDIF_THR1_REG065H,
273 AU8522_TVDEC_COMB_VDIF_THR1_REG065H_CVBS);
274 au8522_writereg(state, AU8522_TVDEC_COMB_VDIF_THR2_REG066H,
275 AU8522_TVDEC_COMB_VDIF_THR2_REG066H_CVBS);
276 au8522_writereg(state, AU8522_TVDEC_COMB_VDIF_THR3_REG067H,
277 AU8522_TVDEC_COMB_VDIF_THR3_REG067H_CVBS);
278 au8522_writereg(state, AU8522_TVDEC_COMB_NOTCH_THR_REG068H,
279 AU8522_TVDEC_COMB_NOTCH_THR_REG068H_CVBS);
280 au8522_writereg(state, AU8522_TVDEC_COMB_HDIF_THR1_REG069H,
281 AU8522_TVDEC_COMB_HDIF_THR1_REG069H_CVBS);
282 au8522_writereg(state, AU8522_TVDEC_COMB_HDIF_THR2_REG06AH,
283 AU8522_TVDEC_COMB_HDIF_THR2_REG06AH_CVBS);
284 au8522_writereg(state, AU8522_TVDEC_COMB_HDIF_THR3_REG06BH,
285 AU8522_TVDEC_COMB_HDIF_THR3_REG06BH_CVBS);
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300286 if (is_svideo) {
Devin Heitmueller301c9f22010-06-27 18:12:42 -0300287 au8522_writereg(state, AU8522_TVDEC_COMB_DCDIF_THR1_REG06CH,
288 AU8522_TVDEC_COMB_DCDIF_THR1_REG06CH_SVIDEO);
289 au8522_writereg(state, AU8522_TVDEC_COMB_DCDIF_THR2_REG06DH,
290 AU8522_TVDEC_COMB_DCDIF_THR2_REG06DH_SVIDEO);
291 } else {
292 au8522_writereg(state, AU8522_TVDEC_COMB_DCDIF_THR1_REG06CH,
293 AU8522_TVDEC_COMB_DCDIF_THR1_REG06CH_CVBS);
294 au8522_writereg(state, AU8522_TVDEC_COMB_DCDIF_THR2_REG06DH,
295 AU8522_TVDEC_COMB_DCDIF_THR2_REG06DH_CVBS);
296 }
Devin Heitmueller968cf782009-03-11 03:00:38 -0300297 au8522_writereg(state, AU8522_TVDEC_COMB_DCDIF_THR3_REG06EH,
298 AU8522_TVDEC_COMB_DCDIF_THR3_REG06EH_CVBS);
299 au8522_writereg(state, AU8522_TVDEC_UV_SEP_THR_REG06FH,
300 AU8522_TVDEC_UV_SEP_THR_REG06FH_CVBS);
301 au8522_writereg(state, AU8522_TVDEC_COMB_DC_THR1_NTSC_REG070H,
302 AU8522_TVDEC_COMB_DC_THR1_NTSC_REG070H_CVBS);
303 au8522_writereg(state, AU8522_REG071H, AU8522_REG071H_CVBS);
304 au8522_writereg(state, AU8522_REG072H, AU8522_REG072H_CVBS);
305 au8522_writereg(state, AU8522_TVDEC_COMB_DC_THR2_NTSC_REG073H,
306 AU8522_TVDEC_COMB_DC_THR2_NTSC_REG073H_CVBS);
307 au8522_writereg(state, AU8522_REG074H, AU8522_REG074H_CVBS);
308 au8522_writereg(state, AU8522_REG075H, AU8522_REG075H_CVBS);
309 au8522_writereg(state, AU8522_TVDEC_DCAGC_CTRL_REG077H,
310 AU8522_TVDEC_DCAGC_CTRL_REG077H_CVBS);
311 au8522_writereg(state, AU8522_TVDEC_PIC_START_ADJ_REG078H,
312 AU8522_TVDEC_PIC_START_ADJ_REG078H_CVBS);
313 au8522_writereg(state, AU8522_TVDEC_AGC_HIGH_LIMIT_REG079H,
314 AU8522_TVDEC_AGC_HIGH_LIMIT_REG079H_CVBS);
315 au8522_writereg(state, AU8522_TVDEC_MACROVISION_SYNC_THR_REG07AH,
316 AU8522_TVDEC_MACROVISION_SYNC_THR_REG07AH_CVBS);
317 au8522_writereg(state, AU8522_TVDEC_INTRP_CTRL_REG07BH,
318 AU8522_TVDEC_INTRP_CTRL_REG07BH_CVBS);
319 au8522_writereg(state, AU8522_TVDEC_AGC_LOW_LIMIT_REG0E4H,
320 AU8522_TVDEC_AGC_LOW_LIMIT_REG0E4H_CVBS);
321 au8522_writereg(state, AU8522_TOREGAAGC_REG0E5H,
322 AU8522_TOREGAAGC_REG0E5H_CVBS);
323 au8522_writereg(state, AU8522_REG016H, AU8522_REG016H_CVBS);
324
325 setup_vbi(state, 0);
326
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300327 if (is_svideo) {
Devin Heitmueller968cf782009-03-11 03:00:38 -0300328 /* Despite what the table says, for the HVR-950q we still need
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200329 to be in CVBS mode for the S-Video input (reason unknown). */
Devin Heitmueller968cf782009-03-11 03:00:38 -0300330 /* filter_coef_type = 3; */
331 filter_coef_type = 5;
332 } else {
333 filter_coef_type = 5;
334 }
335
336 /* Load the Video Decoder Filter Coefficients */
337 for (i = 0; i < NUM_FILTER_COEF; i++) {
338 au8522_writereg(state, filter_coef[i].reg_name,
339 filter_coef[i].reg_val[filter_coef_type]);
340 }
341
342 /* It's not clear what these registers are for, but they are always
343 set to the same value regardless of what mode we're in */
344 au8522_writereg(state, AU8522_REG42EH, 0x87);
345 au8522_writereg(state, AU8522_REG42FH, 0xa2);
346 au8522_writereg(state, AU8522_REG430H, 0xbf);
347 au8522_writereg(state, AU8522_REG431H, 0xcb);
348 au8522_writereg(state, AU8522_REG432H, 0xa1);
349 au8522_writereg(state, AU8522_REG433H, 0x41);
350 au8522_writereg(state, AU8522_REG434H, 0x88);
351 au8522_writereg(state, AU8522_REG435H, 0xc2);
352 au8522_writereg(state, AU8522_REG436H, 0x3c);
353}
354
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300355static void au8522_setup_cvbs_mode(struct au8522_state *state, u8 input_mode)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300356{
357 /* here we're going to try the pre-programmed route */
358 au8522_writereg(state, AU8522_MODULE_CLOCK_CONTROL_REG0A3H,
359 AU8522_MODULE_CLOCK_CONTROL_REG0A3H_CVBS);
360
Devin Heitmuellerd2c194c2010-06-27 18:01:40 -0300361 /* PGA in automatic mode */
Devin Heitmueller968cf782009-03-11 03:00:38 -0300362 au8522_writereg(state, AU8522_PGA_CONTROL_REG082H, 0x00);
Devin Heitmuellerd2c194c2010-06-27 18:01:40 -0300363
364 /* Enable clamping control */
365 au8522_writereg(state, AU8522_CLAMPING_CONTROL_REG083H, 0x00);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300366
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300367 au8522_writereg(state, AU8522_INPUT_CONTROL_REG081H, input_mode);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300368
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300369 setup_decoder_defaults(state, false);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300370
371 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H,
372 AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H_CVBS);
373}
374
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300375static void au8522_setup_cvbs_tuner_mode(struct au8522_state *state,
376 u8 input_mode)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300377{
378 /* here we're going to try the pre-programmed route */
379 au8522_writereg(state, AU8522_MODULE_CLOCK_CONTROL_REG0A3H,
380 AU8522_MODULE_CLOCK_CONTROL_REG0A3H_CVBS);
381
Devin Heitmuellerd2c194c2010-06-27 18:01:40 -0300382 /* It's not clear why we have to have the PGA in automatic mode while
383 enabling clamp control, but it's what Windows does */
Devin Heitmueller968cf782009-03-11 03:00:38 -0300384 au8522_writereg(state, AU8522_PGA_CONTROL_REG082H, 0x00);
385
386 /* Enable clamping control */
387 au8522_writereg(state, AU8522_CLAMPING_CONTROL_REG083H, 0x0e);
388
Devin Heitmuellerd2c194c2010-06-27 18:01:40 -0300389 /* Disable automatic PGA (since the CVBS is coming from the tuner) */
Devin Heitmueller968cf782009-03-11 03:00:38 -0300390 au8522_writereg(state, AU8522_PGA_CONTROL_REG082H, 0x10);
391
392 /* Set input mode to CVBS on channel 4 with SIF audio input enabled */
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300393 au8522_writereg(state, AU8522_INPUT_CONTROL_REG081H, input_mode);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300394
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300395 setup_decoder_defaults(state, false);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300396
397 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H,
398 AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H_CVBS);
399}
400
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300401static void au8522_setup_svideo_mode(struct au8522_state *state,
402 u8 input_mode)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300403{
404 au8522_writereg(state, AU8522_MODULE_CLOCK_CONTROL_REG0A3H,
405 AU8522_MODULE_CLOCK_CONTROL_REG0A3H_SVIDEO);
406
407 /* Set input to Y on Channe1, C on Channel 3 */
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300408 au8522_writereg(state, AU8522_INPUT_CONTROL_REG081H, input_mode);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300409
Devin Heitmuellerd2c194c2010-06-27 18:01:40 -0300410 /* PGA in automatic mode */
411 au8522_writereg(state, AU8522_PGA_CONTROL_REG082H, 0x00);
412
413 /* Enable clamping control */
Devin Heitmueller968cf782009-03-11 03:00:38 -0300414 au8522_writereg(state, AU8522_CLAMPING_CONTROL_REG083H, 0x00);
415
Mauro Carvalho Chehab65c88202014-06-08 13:54:54 -0300416 setup_decoder_defaults(state, true);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300417
418 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H,
419 AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H_CVBS);
420}
421
422/* ----------------------------------------------------------------------- */
423
424static void disable_audio_input(struct au8522_state *state)
425{
Devin Heitmueller968cf782009-03-11 03:00:38 -0300426 au8522_writereg(state, AU8522_AUDIO_VOLUME_L_REG0F2H, 0x00);
427 au8522_writereg(state, AU8522_AUDIO_VOLUME_R_REG0F3H, 0x00);
428 au8522_writereg(state, AU8522_AUDIO_VOLUME_REG0F4H, 0x00);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300429
430 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_1_REG0A5H, 0x04);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300431 au8522_writereg(state, AU8522_I2S_CTRL_2_REG112H, 0x02);
432
433 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H,
Devin Heitmueller2428a2e2010-06-27 17:40:42 -0300434 AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H_SVIDEO);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300435}
436
437/* 0=disable, 1=SIF */
Mauro Carvalho Chehabd289cdf2014-06-08 13:54:53 -0300438static void set_audio_input(struct au8522_state *state)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300439{
Mauro Carvalho Chehabd289cdf2014-06-08 13:54:53 -0300440 int aud_input = state->aud_input;
Devin Heitmueller968cf782009-03-11 03:00:38 -0300441 int i;
442
443 /* Note that this function needs to be used in conjunction with setting
444 the input routing via register 0x81 */
445
446 if (aud_input == AU8522_AUDIO_NONE) {
447 disable_audio_input(state);
448 return;
449 }
450
451 if (aud_input != AU8522_AUDIO_SIF) {
452 /* The caller asked for a mode we don't currently support */
Devin Heitmueller62899a22009-03-15 18:48:52 -0300453 printk(KERN_ERR "Unsupported audio mode requested! mode=%d\n",
Devin Heitmueller968cf782009-03-11 03:00:38 -0300454 aud_input);
455 return;
456 }
457
458 /* Load the Audio Decoder Filter Coefficients */
459 for (i = 0; i < NUM_LPFILTER_COEF; i++) {
460 au8522_writereg(state, lpfilter_coef[i].reg_name,
461 lpfilter_coef[i].reg_val[0]);
462 }
463
464 /* Setup audio */
465 au8522_writereg(state, AU8522_AUDIO_VOLUME_L_REG0F2H, 0x00);
466 au8522_writereg(state, AU8522_AUDIO_VOLUME_R_REG0F3H, 0x00);
467 au8522_writereg(state, AU8522_AUDIO_VOLUME_REG0F4H, 0x00);
468 au8522_writereg(state, AU8522_I2C_CONTROL_REG1_REG091H, 0x80);
469 au8522_writereg(state, AU8522_I2C_CONTROL_REG0_REG090H, 0x84);
470 msleep(150);
471 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H, 0x00);
Mauro Carvalho Chehabc9f5ccc2014-06-08 13:54:55 -0300472 msleep(10);
473 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H,
474 AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H_CVBS);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300475 msleep(50);
476 au8522_writereg(state, AU8522_AUDIO_VOLUME_L_REG0F2H, 0x7F);
477 au8522_writereg(state, AU8522_AUDIO_VOLUME_R_REG0F3H, 0x7F);
478 au8522_writereg(state, AU8522_AUDIO_VOLUME_REG0F4H, 0xff);
479 msleep(80);
480 au8522_writereg(state, AU8522_AUDIO_VOLUME_L_REG0F2H, 0x7F);
481 au8522_writereg(state, AU8522_AUDIO_VOLUME_R_REG0F3H, 0x7F);
482 au8522_writereg(state, AU8522_REG0F9H, AU8522_REG0F9H_AUDIO);
483 au8522_writereg(state, AU8522_AUDIO_MODE_REG0F1H, 0x82);
484 msleep(70);
485 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_1_REG0A5H, 0x09);
486 au8522_writereg(state, AU8522_AUDIOFREQ_REG606H, 0x03);
487 au8522_writereg(state, AU8522_I2S_CTRL_2_REG112H, 0xc2);
488}
489
490/* ----------------------------------------------------------------------- */
491
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300492static int au8522_s_ctrl(struct v4l2_ctrl *ctrl)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300493{
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300494 struct au8522_state *state =
495 container_of(ctrl->handler, struct au8522_state, hdl);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300496
497 switch (ctrl->id) {
498 case V4L2_CID_BRIGHTNESS:
Devin Heitmueller968cf782009-03-11 03:00:38 -0300499 au8522_writereg(state, AU8522_TVDEC_BRIGHTNESS_REG00AH,
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300500 ctrl->val - 128);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300501 break;
502 case V4L2_CID_CONTRAST:
Devin Heitmueller968cf782009-03-11 03:00:38 -0300503 au8522_writereg(state, AU8522_TVDEC_CONTRAST_REG00BH,
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300504 ctrl->val);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300505 break;
506 case V4L2_CID_SATURATION:
Devin Heitmueller36a91872009-10-13 23:32:29 -0300507 au8522_writereg(state, AU8522_TVDEC_SATURATION_CB_REG00CH,
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300508 ctrl->val);
Devin Heitmueller36a91872009-10-13 23:32:29 -0300509 au8522_writereg(state, AU8522_TVDEC_SATURATION_CR_REG00DH,
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300510 ctrl->val);
Devin Heitmueller36a91872009-10-13 23:32:29 -0300511 break;
Devin Heitmueller968cf782009-03-11 03:00:38 -0300512 case V4L2_CID_HUE:
Devin Heitmueller36a91872009-10-13 23:32:29 -0300513 au8522_writereg(state, AU8522_TVDEC_HUE_H_REG00EH,
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300514 ctrl->val >> 8);
Devin Heitmueller36a91872009-10-13 23:32:29 -0300515 au8522_writereg(state, AU8522_TVDEC_HUE_L_REG00FH,
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300516 ctrl->val & 0xFF);
Devin Heitmueller36a91872009-10-13 23:32:29 -0300517 break;
Devin Heitmueller968cf782009-03-11 03:00:38 -0300518 default:
519 return -EINVAL;
520 }
521
522 return 0;
523}
524
525/* ----------------------------------------------------------------------- */
526
Devin Heitmueller968cf782009-03-11 03:00:38 -0300527#ifdef CONFIG_VIDEO_ADV_DEBUG
528static int au8522_g_register(struct v4l2_subdev *sd,
529 struct v4l2_dbg_register *reg)
530{
Devin Heitmueller968cf782009-03-11 03:00:38 -0300531 struct au8522_state *state = to_state(sd);
532
Devin Heitmueller968cf782009-03-11 03:00:38 -0300533 reg->val = au8522_readreg(state, reg->reg & 0xffff);
534 return 0;
535}
536
537static int au8522_s_register(struct v4l2_subdev *sd,
Hans Verkuil977ba3b2013-03-24 08:28:46 -0300538 const struct v4l2_dbg_register *reg)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300539{
Devin Heitmueller968cf782009-03-11 03:00:38 -0300540 struct au8522_state *state = to_state(sd);
541
Devin Heitmueller968cf782009-03-11 03:00:38 -0300542 au8522_writereg(state, reg->reg, reg->val & 0xff);
543 return 0;
544}
545#endif
546
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300547static void au8522_video_set(struct au8522_state *state)
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300548{
549 u8 input_mode;
550
Mauro Carvalho Chehab38fe3512014-06-08 13:54:52 -0300551 au8522_writereg(state, 0xa4, 1 << 5);
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300552
553 switch (state->vid_input) {
554 case AU8522_COMPOSITE_CH1:
555 input_mode = AU8522_INPUT_CONTROL_REG081H_CVBS_CH1;
556 au8522_setup_cvbs_mode(state, input_mode);
557 break;
558 case AU8522_COMPOSITE_CH2:
559 input_mode = AU8522_INPUT_CONTROL_REG081H_CVBS_CH2;
560 au8522_setup_cvbs_mode(state, input_mode);
561 break;
562 case AU8522_COMPOSITE_CH3:
563 input_mode = AU8522_INPUT_CONTROL_REG081H_CVBS_CH3;
564 au8522_setup_cvbs_mode(state, input_mode);
565 break;
566 case AU8522_COMPOSITE_CH4:
567 input_mode = AU8522_INPUT_CONTROL_REG081H_CVBS_CH4;
568 au8522_setup_cvbs_mode(state, input_mode);
569 break;
570 case AU8522_SVIDEO_CH13:
571 input_mode = AU8522_INPUT_CONTROL_REG081H_SVIDEO_CH13;
572 au8522_setup_svideo_mode(state, input_mode);
573 break;
574 case AU8522_SVIDEO_CH24:
575 input_mode = AU8522_INPUT_CONTROL_REG081H_SVIDEO_CH24;
576 au8522_setup_svideo_mode(state, input_mode);
577 break;
578 default:
579 case AU8522_COMPOSITE_CH4_SIF:
580 input_mode = AU8522_INPUT_CONTROL_REG081H_CVBS_CH4_SIF;
581 au8522_setup_cvbs_tuner_mode(state, input_mode);
582 break;
583 }
584}
585
Mauro Carvalho Chehab38fe3512014-06-08 13:54:52 -0300586static int au8522_s_stream(struct v4l2_subdev *sd, int enable)
587{
588 struct au8522_state *state = to_state(sd);
589
590 if (enable) {
Mauro Carvalho Chehab38fe3512014-06-08 13:54:52 -0300591 /*
592 * Clear out any state associated with the digital side of the
593 * chip, so that when it gets powered back up it won't think
594 * that it is already tuned
595 */
596 state->current_frequency = 0;
597
598 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H,
599 0x01);
Mauro Carvalho Chehabc9f5ccc2014-06-08 13:54:55 -0300600 msleep(10);
Mauro Carvalho Chehab38fe3512014-06-08 13:54:52 -0300601
602 au8522_video_set(state);
Mauro Carvalho Chehabd289cdf2014-06-08 13:54:53 -0300603 set_audio_input(state);
604
605 state->operational_mode = AU8522_ANALOG_MODE;
Mauro Carvalho Chehab38fe3512014-06-08 13:54:52 -0300606 } else {
607 /* This does not completely power down the device
608 (it only reduces it from around 140ma to 80ma) */
609 au8522_writereg(state, AU8522_SYSTEM_MODULE_CONTROL_0_REG0A4H,
610 1 << 5);
611 state->operational_mode = AU8522_SUSPEND_MODE;
612 }
613 return 0;
614}
615
Devin Heitmueller968cf782009-03-11 03:00:38 -0300616static int au8522_s_video_routing(struct v4l2_subdev *sd,
Hans Verkuil5325b422009-04-02 11:26:22 -0300617 u32 input, u32 output, u32 config)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300618{
619 struct au8522_state *state = to_state(sd);
620
Mauro Carvalho Chehab36469312014-06-08 13:54:51 -0300621 switch(input) {
622 case AU8522_COMPOSITE_CH1:
623 case AU8522_SVIDEO_CH13:
624 case AU8522_COMPOSITE_CH4_SIF:
625 state->vid_input = input;
626 break;
627 default:
Devin Heitmueller62899a22009-03-15 18:48:52 -0300628 printk(KERN_ERR "au8522 mode not currently supported\n");
Devin Heitmueller968cf782009-03-11 03:00:38 -0300629 return -EINVAL;
630 }
Mauro Carvalho Chehab38fe3512014-06-08 13:54:52 -0300631
632 if (state->operational_mode == AU8522_ANALOG_MODE)
633 au8522_video_set(state);
634
Devin Heitmueller968cf782009-03-11 03:00:38 -0300635 return 0;
636}
637
Mauro Carvalho Chehabf2fd7ce2014-06-08 13:54:56 -0300638static int au8522_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
639{
640 struct au8522_state *state = to_state(sd);
641
642 if ((std & (V4L2_STD_PAL_M | V4L2_STD_NTSC_M)) == 0)
643 return -EINVAL;
644
645 state->std = std;
646
647 if (state->operational_mode == AU8522_ANALOG_MODE)
648 au8522_video_set(state);
649
650 return 0;
651}
652
Devin Heitmueller968cf782009-03-11 03:00:38 -0300653static int au8522_s_audio_routing(struct v4l2_subdev *sd,
Hans Verkuil5325b422009-04-02 11:26:22 -0300654 u32 input, u32 output, u32 config)
Devin Heitmueller968cf782009-03-11 03:00:38 -0300655{
656 struct au8522_state *state = to_state(sd);
Mauro Carvalho Chehabd289cdf2014-06-08 13:54:53 -0300657
658 state->aud_input = input;
659
660 if (state->operational_mode == AU8522_ANALOG_MODE)
661 set_audio_input(state);
662
Devin Heitmueller968cf782009-03-11 03:00:38 -0300663 return 0;
664}
665
666static int au8522_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
667{
668 int val = 0;
669 struct au8522_state *state = to_state(sd);
670 u8 lock_status;
671
672 /* Interrogate the decoder to see if we are getting a real signal */
673 lock_status = au8522_readreg(state, 0x00);
674 if (lock_status == 0xa2)
Devin Heitmuellerd749fb62011-07-24 17:23:09 -0300675 vt->signal = 0xffff;
Devin Heitmueller968cf782009-03-11 03:00:38 -0300676 else
677 vt->signal = 0x00;
678
679 vt->capability |=
680 V4L2_TUNER_CAP_STEREO | V4L2_TUNER_CAP_LANG1 |
681 V4L2_TUNER_CAP_LANG2 | V4L2_TUNER_CAP_SAP;
682
683 val = V4L2_TUNER_SUB_MONO;
684 vt->rxsubchans = val;
685 vt->audmode = V4L2_TUNER_MODE_STEREO;
686 return 0;
687}
688
Devin Heitmueller968cf782009-03-11 03:00:38 -0300689/* ----------------------------------------------------------------------- */
690
691static const struct v4l2_subdev_core_ops au8522_core_ops = {
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300692 .log_status = v4l2_ctrl_subdev_log_status,
Devin Heitmueller968cf782009-03-11 03:00:38 -0300693#ifdef CONFIG_VIDEO_ADV_DEBUG
694 .g_register = au8522_g_register,
695 .s_register = au8522_s_register,
696#endif
697};
698
699static const struct v4l2_subdev_tuner_ops au8522_tuner_ops = {
700 .g_tuner = au8522_g_tuner,
701};
702
703static const struct v4l2_subdev_audio_ops au8522_audio_ops = {
704 .s_routing = au8522_s_audio_routing,
705};
706
707static const struct v4l2_subdev_video_ops au8522_video_ops = {
708 .s_routing = au8522_s_video_routing,
Devin Heitmueller968cf782009-03-11 03:00:38 -0300709 .s_stream = au8522_s_stream,
Mauro Carvalho Chehabf2fd7ce2014-06-08 13:54:56 -0300710 .s_std = au8522_s_std,
Devin Heitmueller968cf782009-03-11 03:00:38 -0300711};
712
713static const struct v4l2_subdev_ops au8522_ops = {
714 .core = &au8522_core_ops,
715 .tuner = &au8522_tuner_ops,
716 .audio = &au8522_audio_ops,
717 .video = &au8522_video_ops,
718};
719
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300720static const struct v4l2_ctrl_ops au8522_ctrl_ops = {
721 .s_ctrl = au8522_s_ctrl,
722};
723
Devin Heitmueller968cf782009-03-11 03:00:38 -0300724/* ----------------------------------------------------------------------- */
725
726static int au8522_probe(struct i2c_client *client,
727 const struct i2c_device_id *did)
728{
729 struct au8522_state *state;
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300730 struct v4l2_ctrl_handler *hdl;
Devin Heitmueller968cf782009-03-11 03:00:38 -0300731 struct v4l2_subdev *sd;
732 int instance;
Rafael Lourenço de Lima Chehabbed69192015-06-08 22:20:46 -0300733#ifdef CONFIG_MEDIA_CONTROLLER
734 int ret;
735#endif
Devin Heitmueller968cf782009-03-11 03:00:38 -0300736
737 /* Check if the adapter supports the needed features */
738 if (!i2c_check_functionality(client->adapter,
739 I2C_FUNC_SMBUS_BYTE_DATA)) {
740 return -EIO;
741 }
742
743 /* allocate memory for the internal state */
744 instance = au8522_get_state(&state, client->adapter, client->addr);
745 switch (instance) {
746 case 0:
Devin Heitmueller62899a22009-03-15 18:48:52 -0300747 printk(KERN_ERR "au8522_decoder allocation failed\n");
Devin Heitmueller968cf782009-03-11 03:00:38 -0300748 return -EIO;
749 case 1:
750 /* new demod instance */
Devin Heitmueller62899a22009-03-15 18:48:52 -0300751 printk(KERN_INFO "au8522_decoder creating new instance...\n");
Devin Heitmueller968cf782009-03-11 03:00:38 -0300752 break;
753 default:
754 /* existing demod instance */
Devin Heitmueller62899a22009-03-15 18:48:52 -0300755 printk(KERN_INFO "au8522_decoder attach existing instance.\n");
Devin Heitmueller968cf782009-03-11 03:00:38 -0300756 break;
757 }
758
Mauro Carvalho Chehabaa377632015-12-21 14:38:31 -0200759 state->config.demod_address = 0x8e >> 1;
Devin Heitmueller968cf782009-03-11 03:00:38 -0300760 state->i2c = client->adapter;
761
762 sd = &state->sd;
763 v4l2_i2c_subdev_init(sd, client, &au8522_ops);
Rafael Lourenço de Lima Chehabbed69192015-06-08 22:20:46 -0300764#if defined(CONFIG_MEDIA_CONTROLLER)
765
766 state->pads[AU8522_PAD_INPUT].flags = MEDIA_PAD_FL_SINK;
767 state->pads[AU8522_PAD_VID_OUT].flags = MEDIA_PAD_FL_SOURCE;
768 state->pads[AU8522_PAD_VBI_OUT].flags = MEDIA_PAD_FL_SOURCE;
Mauro Carvalho Chehab4ca72ef2015-12-10 17:25:41 -0200769 sd->entity.function = MEDIA_ENT_F_ATV_DECODER;
Rafael Lourenço de Lima Chehabbed69192015-06-08 22:20:46 -0300770
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -0200771 ret = media_entity_pads_init(&sd->entity, ARRAY_SIZE(state->pads),
Mauro Carvalho Chehab18095102015-08-06 09:25:57 -0300772 state->pads);
Rafael Lourenço de Lima Chehabbed69192015-06-08 22:20:46 -0300773 if (ret < 0) {
774 v4l_info(client, "failed to initialize media entity!\n");
775 return ret;
776 }
777#endif
Devin Heitmueller968cf782009-03-11 03:00:38 -0300778
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300779 hdl = &state->hdl;
780 v4l2_ctrl_handler_init(hdl, 4);
781 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops,
782 V4L2_CID_BRIGHTNESS, 0, 255, 1, 109);
783 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops,
784 V4L2_CID_CONTRAST, 0, 255, 1,
785 AU8522_TVDEC_CONTRAST_REG00BH_CVBS);
786 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops,
787 V4L2_CID_SATURATION, 0, 255, 1, 128);
788 v4l2_ctrl_new_std(hdl, &au8522_ctrl_ops,
789 V4L2_CID_HUE, -32768, 32767, 1, 0);
790 sd->ctrl_handler = hdl;
791 if (hdl->error) {
792 int err = hdl->error;
793
794 v4l2_ctrl_handler_free(hdl);
Mauro Carvalho Chehabaa377632015-12-21 14:38:31 -0200795 au8522_release_state(state);
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300796 return err;
797 }
798
Devin Heitmueller968cf782009-03-11 03:00:38 -0300799 state->c = client;
Mauro Carvalho Chehabf2fd7ce2014-06-08 13:54:56 -0300800 state->std = V4L2_STD_NTSC_M;
Devin Heitmueller968cf782009-03-11 03:00:38 -0300801 state->vid_input = AU8522_COMPOSITE_CH1;
802 state->aud_input = AU8522_AUDIO_NONE;
803 state->id = 8522;
804 state->rev = 0;
805
806 /* Jam open the i2c gate to the tuner */
807 au8522_writereg(state, 0x106, 1);
808
809 return 0;
810}
811
812static int au8522_remove(struct i2c_client *client)
813{
814 struct v4l2_subdev *sd = i2c_get_clientdata(client);
815 v4l2_device_unregister_subdev(sd);
Hans Verkuil5a4bdb42013-02-15 08:04:29 -0300816 v4l2_ctrl_handler_free(sd->ctrl_handler);
Devin Heitmueller968cf782009-03-11 03:00:38 -0300817 au8522_release_state(to_state(sd));
818 return 0;
819}
820
821static const struct i2c_device_id au8522_id[] = {
822 {"au8522", 0},
823 {}
824};
825
826MODULE_DEVICE_TABLE(i2c, au8522_id);
827
Hans Verkuil978cff62010-09-15 15:52:25 -0300828static struct i2c_driver au8522_driver = {
829 .driver = {
Hans Verkuil978cff62010-09-15 15:52:25 -0300830 .name = "au8522",
831 },
832 .probe = au8522_probe,
833 .remove = au8522_remove,
834 .id_table = au8522_id,
Devin Heitmueller968cf782009-03-11 03:00:38 -0300835};
Hans Verkuil978cff62010-09-15 15:52:25 -0300836
Axel Linc6e8d862012-02-12 06:56:32 -0300837module_i2c_driver(au8522_driver);