blob: 56be6c29399b86c13a4a1a4541a17c9b08de0caa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/kernel.h>
3#include <linux/i2c.h>
4#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/init.h>
6#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/delay.h>
Hans Verkuilf894dfd2008-07-25 07:39:54 -03008#include <linux/videodev2.h>
Michael Krufky5e453dc2006-01-09 15:32:31 -02009#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <media/tuner.h>
Michael Krufkyab166052007-12-09 02:26:48 -030011#include "tuner-i2c.h"
Michael Krufky31c95842007-10-21 20:48:48 -030012#include "tda9887.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -080014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015/* Chips:
16 TDA9885 (PAL, NTSC)
17 TDA9886 (PAL, SECAM, NTSC)
18 TDA9887 (PAL, SECAM, NTSC, FM Radio)
19
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -030020 Used as part of several tuners
Linus Torvalds1da177e2005-04-16 15:20:36 -070021*/
22
Michael Krufky790ba182007-12-16 21:20:21 -030023static int debug;
24module_param(debug, int, 0644);
25MODULE_PARM_DESC(debug, "enable verbose debug messages");
Michael Krufky31c95842007-10-21 20:48:48 -030026
Michael Krufkyac8b63b2008-04-22 14:45:51 -030027static DEFINE_MUTEX(tda9887_list_mutex);
28static LIST_HEAD(hybrid_tuner_instance_list);
29
Michael Krufkyb2083192007-05-29 22:54:06 -030030struct tda9887_priv {
Michael Krufkydb8a6952007-08-21 01:24:42 -030031 struct tuner_i2c_props i2c_props;
Michael Krufkyac8b63b2008-04-22 14:45:51 -030032 struct list_head hybrid_tuner_instance_list;
Michael Krufkydb8a6952007-08-21 01:24:42 -030033
Michael Krufkyb2083192007-05-29 22:54:06 -030034 unsigned char data[4];
Michael Krufky710401b2007-12-16 19:53:32 -030035 unsigned int config;
Michael Krufky91c9d4a2007-12-16 20:05:00 -030036 unsigned int mode;
37 unsigned int audmode;
38 v4l2_std_id std;
Mauro Carvalho Chehab2d351df2011-02-14 18:53:12 -020039
40 bool standby;
Michael Krufkyb2083192007-05-29 22:54:06 -030041};
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* ---------------------------------------------------------------------- */
44
45#define UNSET (-1U)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47struct tvnorm {
48 v4l2_std_id std;
49 char *name;
50 unsigned char b;
51 unsigned char c;
52 unsigned char e;
53};
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/* ---------------------------------------------------------------------- */
56
57//
58// TDA defines
59//
60
61//// first reg (b)
62#define cVideoTrapBypassOFF 0x00 // bit b0
63#define cVideoTrapBypassON 0x01 // bit b0
64
65#define cAutoMuteFmInactive 0x00 // bit b1
66#define cAutoMuteFmActive 0x02 // bit b1
67
68#define cIntercarrier 0x00 // bit b2
69#define cQSS 0x04 // bit b2
70
71#define cPositiveAmTV 0x00 // bit b3:4
72#define cFmRadio 0x08 // bit b3:4
73#define cNegativeFmTV 0x10 // bit b3:4
74
75
76#define cForcedMuteAudioON 0x20 // bit b5
77#define cForcedMuteAudioOFF 0x00 // bit b5
78
79#define cOutputPort1Active 0x00 // bit b6
80#define cOutputPort1Inactive 0x40 // bit b6
81
82#define cOutputPort2Active 0x00 // bit b7
83#define cOutputPort2Inactive 0x80 // bit b7
84
85
86//// second reg (c)
87#define cDeemphasisOFF 0x00 // bit c5
88#define cDeemphasisON 0x20 // bit c5
89
90#define cDeemphasis75 0x00 // bit c6
91#define cDeemphasis50 0x40 // bit c6
92
93#define cAudioGain0 0x00 // bit c7
94#define cAudioGain6 0x80 // bit c7
95
Hans Verkuilf98c55e2006-01-09 15:25:18 -020096#define cTopMask 0x1f // bit c0:4
Hans Verkuilf5b01422006-06-25 15:37:29 -030097#define cTopDefault 0x10 // bit c0:4
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99//// third reg (e)
100#define cAudioIF_4_5 0x00 // bit e0:1
101#define cAudioIF_5_5 0x01 // bit e0:1
102#define cAudioIF_6_0 0x02 // bit e0:1
103#define cAudioIF_6_5 0x03 // bit e0:1
104
105
Trent Piepho5e082f12007-08-03 18:32:38 -0300106#define cVideoIFMask 0x1c // bit e2:4
107/* Video IF selection in TV Mode (bit B3=0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define cVideoIF_58_75 0x00 // bit e2:4
109#define cVideoIF_45_75 0x04 // bit e2:4
110#define cVideoIF_38_90 0x08 // bit e2:4
111#define cVideoIF_38_00 0x0C // bit e2:4
112#define cVideoIF_33_90 0x10 // bit e2:4
113#define cVideoIF_33_40 0x14 // bit e2:4
114#define cRadioIF_45_75 0x18 // bit e2:4
115#define cRadioIF_38_90 0x1C // bit e2:4
116
Trent Piepho5e082f12007-08-03 18:32:38 -0300117/* IF1 selection in Radio Mode (bit B3=1) */
118#define cRadioIF_33_30 0x00 // bit e2,4 (also 0x10,0x14)
119#define cRadioIF_41_30 0x04 // bit e2,4
120
121/* Output of AFC pin in radio mode when bit E7=1 */
122#define cRadioAGC_SIF 0x00 // bit e3
123#define cRadioAGC_FM 0x08 // bit e3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125#define cTunerGainNormal 0x00 // bit e5
126#define cTunerGainLow 0x20 // bit e5
127
128#define cGating_18 0x00 // bit e6
129#define cGating_36 0x40 // bit e6
130
131#define cAgcOutON 0x80 // bit e7
132#define cAgcOutOFF 0x00 // bit e7
133
134/* ---------------------------------------------------------------------- */
135
136static struct tvnorm tvnorms[] = {
137 {
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200138 .std = V4L2_STD_PAL_BG | V4L2_STD_PAL_H | V4L2_STD_PAL_N,
139 .name = "PAL-BGHN",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .b = ( cNegativeFmTV |
141 cQSS ),
142 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200143 cDeemphasis50 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300144 cTopDefault),
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200145 .e = ( cGating_36 |
146 cAudioIF_5_5 |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 cVideoIF_38_90 ),
148 },{
149 .std = V4L2_STD_PAL_I,
150 .name = "PAL-I",
151 .b = ( cNegativeFmTV |
152 cQSS ),
153 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200154 cDeemphasis50 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300155 cTopDefault),
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200156 .e = ( cGating_36 |
157 cAudioIF_6_0 |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 cVideoIF_38_90 ),
159 },{
160 .std = V4L2_STD_PAL_DK,
161 .name = "PAL-DK",
162 .b = ( cNegativeFmTV |
163 cQSS ),
164 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200165 cDeemphasis50 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300166 cTopDefault),
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200167 .e = ( cGating_36 |
168 cAudioIF_6_5 |
169 cVideoIF_38_90 ),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 },{
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200171 .std = V4L2_STD_PAL_M | V4L2_STD_PAL_Nc,
172 .name = "PAL-M/Nc",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .b = ( cNegativeFmTV |
174 cQSS ),
175 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200176 cDeemphasis75 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300177 cTopDefault),
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200178 .e = ( cGating_36 |
179 cAudioIF_4_5 |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 cVideoIF_45_75 ),
181 },{
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200182 .std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H,
183 .name = "SECAM-BGH",
Frederic CANDb84ca9f2008-10-30 04:53:07 -0300184 .b = ( cNegativeFmTV |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200185 cQSS ),
Hans Verkuilf5b01422006-06-25 15:37:29 -0300186 .c = ( cTopDefault),
Frederic CANDb84ca9f2008-10-30 04:53:07 -0300187 .e = ( cAudioIF_5_5 |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200188 cVideoIF_38_90 ),
189 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .std = V4L2_STD_SECAM_L,
191 .name = "SECAM-L",
192 .b = ( cPositiveAmTV |
193 cQSS ),
Hans Verkuilf5b01422006-06-25 15:37:29 -0300194 .c = ( cTopDefault),
Nickolay V. Shmyrev3375c392005-11-08 21:37:05 -0800195 .e = ( cGating_36 |
Nickolay V. Shmyrev5f7591c2005-11-08 21:37:04 -0800196 cAudioIF_6_5 |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 cVideoIF_38_90 ),
198 },{
Mauro Carvalho Chehabf3c59872006-01-09 15:25:00 -0200199 .std = V4L2_STD_SECAM_LC,
200 .name = "SECAM-L'",
201 .b = ( cOutputPort2Inactive |
202 cPositiveAmTV |
203 cQSS ),
Hans Verkuilf5b01422006-06-25 15:37:29 -0300204 .c = ( cTopDefault),
Mauro Carvalho Chehabf3c59872006-01-09 15:25:00 -0200205 .e = ( cGating_36 |
206 cAudioIF_6_5 |
207 cVideoIF_33_90 ),
208 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .std = V4L2_STD_SECAM_DK,
210 .name = "SECAM-DK",
211 .b = ( cNegativeFmTV |
212 cQSS ),
213 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200214 cDeemphasis50 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300215 cTopDefault),
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200216 .e = ( cGating_36 |
217 cAudioIF_6_5 |
218 cVideoIF_38_90 ),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 },{
Hans Verkuil0dfd8122006-02-07 06:45:34 -0200220 .std = V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_KR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .name = "NTSC-M",
222 .b = ( cNegativeFmTV |
223 cQSS ),
224 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200225 cDeemphasis75 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300226 cTopDefault),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .e = ( cGating_36 |
228 cAudioIF_4_5 |
229 cVideoIF_45_75 ),
230 },{
231 .std = V4L2_STD_NTSC_M_JP,
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200232 .name = "NTSC-M-JP",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 .b = ( cNegativeFmTV |
234 cQSS ),
235 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200236 cDeemphasis50 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300237 cTopDefault),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .e = ( cGating_36 |
239 cAudioIF_4_5 |
240 cVideoIF_58_75 ),
241 }
242};
243
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700244static struct tvnorm radio_stereo = {
245 .name = "Radio Stereo",
246 .b = ( cFmRadio |
247 cQSS ),
248 .c = ( cDeemphasisOFF |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200249 cAudioGain6 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300250 cTopDefault),
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200251 .e = ( cTunerGainLow |
252 cAudioIF_5_5 |
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700253 cRadioIF_38_90 ),
254};
255
256static struct tvnorm radio_mono = {
257 .name = "Radio Mono",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .b = ( cFmRadio |
259 cQSS ),
260 .c = ( cDeemphasisON |
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200261 cDeemphasis75 |
Hans Verkuilf5b01422006-06-25 15:37:29 -0300262 cTopDefault),
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200263 .e = ( cTunerGainLow |
264 cAudioIF_5_5 |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 cRadioIF_38_90 ),
266};
267
268/* ---------------------------------------------------------------------- */
269
Michael Krufky4e9154b2007-10-21 19:39:50 -0300270static void dump_read_message(struct dvb_frontend *fe, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300272 struct tda9887_priv *priv = fe->analog_demod_priv;
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 static char *afc[16] = {
275 "- 12.5 kHz",
276 "- 37.5 kHz",
277 "- 62.5 kHz",
278 "- 87.5 kHz",
279 "-112.5 kHz",
280 "-137.5 kHz",
281 "-162.5 kHz",
282 "-187.5 kHz [min]",
283 "+187.5 kHz [max]",
284 "+162.5 kHz",
285 "+137.5 kHz",
286 "+112.5 kHz",
287 "+ 87.5 kHz",
288 "+ 62.5 kHz",
289 "+ 37.5 kHz",
290 "+ 12.5 kHz",
291 };
Michael Krufky790ba182007-12-16 21:20:21 -0300292 tuner_info("read: 0x%2x\n", buf[0]);
293 tuner_info(" after power on : %s\n", (buf[0] & 0x01) ? "yes" : "no");
294 tuner_info(" afc : %s\n", afc[(buf[0] >> 1) & 0x0f]);
295 tuner_info(" fmif level : %s\n", (buf[0] & 0x20) ? "high" : "low");
296 tuner_info(" afc window : %s\n", (buf[0] & 0x40) ? "in" : "out");
297 tuner_info(" vfi level : %s\n", (buf[0] & 0x80) ? "high" : "low");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Michael Krufky4e9154b2007-10-21 19:39:50 -0300300static void dump_write_message(struct dvb_frontend *fe, unsigned char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300302 struct tda9887_priv *priv = fe->analog_demod_priv;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 static char *sound[4] = {
305 "AM/TV",
306 "FM/radio",
307 "FM/TV",
308 "FM/radio"
309 };
310 static char *adjust[32] = {
311 "-16", "-15", "-14", "-13", "-12", "-11", "-10", "-9",
312 "-8", "-7", "-6", "-5", "-4", "-3", "-2", "-1",
313 "0", "+1", "+2", "+3", "+4", "+5", "+6", "+7",
314 "+8", "+9", "+10", "+11", "+12", "+13", "+14", "+15"
315 };
316 static char *deemph[4] = {
317 "no", "no", "75", "50"
318 };
319 static char *carrier[4] = {
320 "4.5 MHz",
321 "5.5 MHz",
322 "6.0 MHz",
323 "6.5 MHz / AM"
324 };
325 static char *vif[8] = {
326 "58.75 MHz",
327 "45.75 MHz",
328 "38.9 MHz",
329 "38.0 MHz",
330 "33.9 MHz",
331 "33.4 MHz",
332 "45.75 MHz + pin13",
333 "38.9 MHz + pin13",
334 };
335 static char *rif[4] = {
336 "44 MHz",
337 "52 MHz",
338 "52 MHz",
339 "44 MHz",
340 };
341
Michael Krufky790ba182007-12-16 21:20:21 -0300342 tuner_info("write: byte B 0x%02x\n", buf[1]);
343 tuner_info(" B0 video mode : %s\n",
344 (buf[1] & 0x01) ? "video trap" : "sound trap");
345 tuner_info(" B1 auto mute fm : %s\n",
346 (buf[1] & 0x02) ? "yes" : "no");
347 tuner_info(" B2 carrier mode : %s\n",
348 (buf[1] & 0x04) ? "QSS" : "Intercarrier");
349 tuner_info(" B3-4 tv sound/radio : %s\n",
350 sound[(buf[1] & 0x18) >> 3]);
351 tuner_info(" B5 force mute audio: %s\n",
352 (buf[1] & 0x20) ? "yes" : "no");
353 tuner_info(" B6 output port 1 : %s\n",
354 (buf[1] & 0x40) ? "high (inactive)" : "low (active)");
355 tuner_info(" B7 output port 2 : %s\n",
356 (buf[1] & 0x80) ? "high (inactive)" : "low (active)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Michael Krufky790ba182007-12-16 21:20:21 -0300358 tuner_info("write: byte C 0x%02x\n", buf[2]);
359 tuner_info(" C0-4 top adjustment : %s dB\n",
360 adjust[buf[2] & 0x1f]);
361 tuner_info(" C5-6 de-emphasis : %s\n",
362 deemph[(buf[2] & 0x60) >> 5]);
363 tuner_info(" C7 audio gain : %s\n",
364 (buf[2] & 0x80) ? "-6" : "0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Michael Krufky790ba182007-12-16 21:20:21 -0300366 tuner_info("write: byte E 0x%02x\n", buf[3]);
367 tuner_info(" E0-1 sound carrier : %s\n",
368 carrier[(buf[3] & 0x03)]);
369 tuner_info(" E6 l pll gating : %s\n",
370 (buf[3] & 0x40) ? "36" : "13");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 if (buf[1] & 0x08) {
373 /* radio */
Michael Krufky790ba182007-12-16 21:20:21 -0300374 tuner_info(" E2-4 video if : %s\n",
375 rif[(buf[3] & 0x0c) >> 2]);
376 tuner_info(" E7 vif agc output : %s\n",
377 (buf[3] & 0x80)
378 ? ((buf[3] & 0x10) ? "fm-agc radio" :
379 "sif-agc radio")
380 : "fm radio carrier afc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 } else {
382 /* video */
Michael Krufky790ba182007-12-16 21:20:21 -0300383 tuner_info(" E2-4 video if : %s\n",
384 vif[(buf[3] & 0x1c) >> 2]);
385 tuner_info(" E5 tuner gain : %s\n",
386 (buf[3] & 0x80)
387 ? ((buf[3] & 0x20) ? "external" : "normal")
388 : ((buf[3] & 0x20) ? "minimum" : "normal"));
389 tuner_info(" E7 vif agc output : %s\n",
390 (buf[3] & 0x80) ? ((buf[3] & 0x20)
391 ? "pin3 port, pin22 vif agc out"
392 : "pin22 port, pin3 vif acg ext in")
393 : "pin3+pin22 port");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Michael Krufky790ba182007-12-16 21:20:21 -0300395 tuner_info("--\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398/* ---------------------------------------------------------------------- */
399
Michael Krufky4e9154b2007-10-21 19:39:50 -0300400static int tda9887_set_tvnorm(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300402 struct tda9887_priv *priv = fe->analog_demod_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct tvnorm *norm = NULL;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300404 char *buf = priv->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 int i;
406
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300407 if (priv->mode == V4L2_TUNER_RADIO) {
408 if (priv->audmode == V4L2_TUNER_MODE_MONO)
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700409 norm = &radio_mono;
410 else
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700411 norm = &radio_stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 } else {
413 for (i = 0; i < ARRAY_SIZE(tvnorms); i++) {
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300414 if (tvnorms[i].std & priv->std) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 norm = tvnorms+i;
416 break;
417 }
418 }
419 }
420 if (NULL == norm) {
Michael Krufky790ba182007-12-16 21:20:21 -0300421 tuner_dbg("Unsupported tvnorm entry - audio muted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return -1;
423 }
424
Michael Krufky790ba182007-12-16 21:20:21 -0300425 tuner_dbg("configure for: %s\n", norm->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 buf[1] = norm->b;
427 buf[2] = norm->c;
428 buf[3] = norm->e;
429 return 0;
430}
431
432static unsigned int port1 = UNSET;
433static unsigned int port2 = UNSET;
434static unsigned int qss = UNSET;
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200435static unsigned int adjust = UNSET;
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437module_param(port1, int, 0644);
438module_param(port2, int, 0644);
439module_param(qss, int, 0644);
440module_param(adjust, int, 0644);
441
Michael Krufky4e9154b2007-10-21 19:39:50 -0300442static int tda9887_set_insmod(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300444 struct tda9887_priv *priv = fe->analog_demod_priv;
445 char *buf = priv->data;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (UNSET != port1) {
448 if (port1)
449 buf[1] |= cOutputPort1Inactive;
450 else
451 buf[1] &= ~cOutputPort1Inactive;
452 }
453 if (UNSET != port2) {
454 if (port2)
455 buf[1] |= cOutputPort2Inactive;
456 else
457 buf[1] &= ~cOutputPort2Inactive;
458 }
459
460 if (UNSET != qss) {
461 if (qss)
462 buf[1] |= cQSS;
463 else
464 buf[1] &= ~cQSS;
465 }
466
Roel Kluinf14a2972009-10-23 07:59:42 -0300467 if (adjust < 0x20) {
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200468 buf[2] &= ~cTopMask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 buf[2] |= adjust;
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return 0;
472}
473
Michael Krufky710401b2007-12-16 19:53:32 -0300474static int tda9887_do_config(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300476 struct tda9887_priv *priv = fe->analog_demod_priv;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300477 char *buf = priv->data;
478
Michael Krufky710401b2007-12-16 19:53:32 -0300479 if (priv->config & TDA9887_PORT1_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 buf[1] &= ~cOutputPort1Inactive;
Michael Krufky710401b2007-12-16 19:53:32 -0300481 if (priv->config & TDA9887_PORT1_INACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 buf[1] |= cOutputPort1Inactive;
Michael Krufky710401b2007-12-16 19:53:32 -0300483 if (priv->config & TDA9887_PORT2_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 buf[1] &= ~cOutputPort2Inactive;
Michael Krufky710401b2007-12-16 19:53:32 -0300485 if (priv->config & TDA9887_PORT2_INACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 buf[1] |= cOutputPort2Inactive;
487
Michael Krufky710401b2007-12-16 19:53:32 -0300488 if (priv->config & TDA9887_QSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 buf[1] |= cQSS;
Michael Krufky710401b2007-12-16 19:53:32 -0300490 if (priv->config & TDA9887_INTERCARRIER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 buf[1] &= ~cQSS;
492
Michael Krufky710401b2007-12-16 19:53:32 -0300493 if (priv->config & TDA9887_AUTOMUTE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 buf[1] |= cAutoMuteFmActive;
Michael Krufky710401b2007-12-16 19:53:32 -0300495 if (priv->config & TDA9887_DEEMPHASIS_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 buf[2] &= ~0x60;
Michael Krufky710401b2007-12-16 19:53:32 -0300497 switch (priv->config & TDA9887_DEEMPHASIS_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 case TDA9887_DEEMPHASIS_NONE:
499 buf[2] |= cDeemphasisOFF;
500 break;
501 case TDA9887_DEEMPHASIS_50:
502 buf[2] |= cDeemphasisON | cDeemphasis50;
503 break;
504 case TDA9887_DEEMPHASIS_75:
505 buf[2] |= cDeemphasisON | cDeemphasis75;
506 break;
507 }
508 }
Michael Krufky710401b2007-12-16 19:53:32 -0300509 if (priv->config & TDA9887_TOP_SET) {
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200510 buf[2] &= ~cTopMask;
Michael Krufky710401b2007-12-16 19:53:32 -0300511 buf[2] |= (priv->config >> 8) & cTopMask;
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200512 }
Michael Krufky710401b2007-12-16 19:53:32 -0300513 if ((priv->config & TDA9887_INTERCARRIER_NTSC) &&
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300514 (priv->std & V4L2_STD_NTSC))
Nickolay V. Shmyrev3ae1adc2005-11-08 21:37:39 -0800515 buf[1] &= ~cQSS;
Michael Krufky710401b2007-12-16 19:53:32 -0300516 if (priv->config & TDA9887_GATING_18)
Trent Piephod7304de2006-08-24 22:43:45 -0300517 buf[3] &= ~cGating_36;
Mauro Carvalho Chehabcefccc82006-12-04 08:31:35 -0300518
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300519 if (priv->mode == V4L2_TUNER_RADIO) {
Michael Krufky710401b2007-12-16 19:53:32 -0300520 if (priv->config & TDA9887_RIF_41_3) {
Trent Piepho5e082f12007-08-03 18:32:38 -0300521 buf[3] &= ~cVideoIFMask;
522 buf[3] |= cRadioIF_41_30;
523 }
Michael Krufky710401b2007-12-16 19:53:32 -0300524 if (priv->config & TDA9887_GAIN_NORMAL)
Trent Piepho5e082f12007-08-03 18:32:38 -0300525 buf[3] &= ~cTunerGainLow;
Mauro Carvalho Chehabcefccc82006-12-04 08:31:35 -0300526 }
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return 0;
529}
530
531/* ---------------------------------------------------------------------- */
532
Michael Krufky4e9154b2007-10-21 19:39:50 -0300533static int tda9887_status(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300535 struct tda9887_priv *priv = fe->analog_demod_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned char buf[1];
537 int rc;
538
Mauro Carvalho Chehab408679c2013-11-01 12:40:40 -0300539 rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, 1);
540 if (rc != 1)
Michael Krufky790ba182007-12-16 21:20:21 -0300541 tuner_info("i2c i/o error: rc == %d (should be 1)\n", rc);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300542 dump_read_message(fe, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return 0;
544}
545
Michael Krufky4e9154b2007-10-21 19:39:50 -0300546static void tda9887_configure(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300548 struct tda9887_priv *priv = fe->analog_demod_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int rc;
550
Michael Krufkyb2083192007-05-29 22:54:06 -0300551 memset(priv->data,0,sizeof(priv->data));
Michael Krufky4e9154b2007-10-21 19:39:50 -0300552 tda9887_set_tvnorm(fe);
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700553
Hans Verkuilf98c55e2006-01-09 15:25:18 -0200554 /* A note on the port settings:
555 These settings tend to depend on the specifics of the board.
556 By default they are set to inactive (bit value 1) by this driver,
557 overwriting any changes made by the tvnorm. This means that it
558 is the responsibility of the module using the tda9887 to set
559 these values in case of changes in the tvnorm.
560 In many cases port 2 should be made active (0) when selecting
561 SECAM-L, and port 2 should remain inactive (1) for SECAM-L'.
562
563 For the other standards the tda9887 application note says that
564 the ports should be set to active (0), but, again, that may
565 differ depending on the precise hardware configuration.
566 */
Michael Krufkyb2083192007-05-29 22:54:06 -0300567 priv->data[1] |= cOutputPort1Inactive;
568 priv->data[1] |= cOutputPort2Inactive;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700569
Michael Krufky710401b2007-12-16 19:53:32 -0300570 tda9887_do_config(fe);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300571 tda9887_set_insmod(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Mauro Carvalho Chehab2d351df2011-02-14 18:53:12 -0200573 if (priv->standby)
Michael Krufkyb2083192007-05-29 22:54:06 -0300574 priv->data[1] |= cForcedMuteAudioON;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700575
Michael Krufky790ba182007-12-16 21:20:21 -0300576 tuner_dbg("writing: b=0x%02x c=0x%02x e=0x%02x\n",
577 priv->data[1], priv->data[2], priv->data[3]);
578 if (debug > 1)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300579 dump_write_message(fe, priv->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Michael Krufkydb8a6952007-08-21 01:24:42 -0300581 if (4 != (rc = tuner_i2c_xfer_send(&priv->i2c_props,priv->data,4)))
Michael Krufky790ba182007-12-16 21:20:21 -0300582 tuner_info("i2c i/o error: rc == %d (should be 4)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Michael Krufky790ba182007-12-16 21:20:21 -0300584 if (debug > 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 msleep_interruptible(1000);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300586 tda9887_status(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590/* ---------------------------------------------------------------------- */
591
Michael Krufky4e9154b2007-10-21 19:39:50 -0300592static void tda9887_tuner_status(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300594 struct tda9887_priv *priv = fe->analog_demod_priv;
Michael Krufky790ba182007-12-16 21:20:21 -0300595 tuner_info("Data bytes: b=0x%02x c=0x%02x e=0x%02x\n",
596 priv->data[1], priv->data[2], priv->data[3]);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Hans Verkuila2192cf2013-04-06 04:35:27 -0300599static int tda9887_get_afc(struct dvb_frontend *fe, s32 *afc)
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300600{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300601 struct tda9887_priv *priv = fe->analog_demod_priv;
Hans Verkuila2192cf2013-04-06 04:35:27 -0300602 static const int AFC_BITS_2_kHz[] = {
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300603 -12500, -37500, -62500, -97500,
604 -112500, -137500, -162500, -187500,
605 187500, 162500, 137500, 112500,
606 97500 , 62500, 37500 , 12500
607 };
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300608 __u8 reg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Hans Verkuila2192cf2013-04-06 04:35:27 -0300610 if (priv->mode != V4L2_TUNER_RADIO)
611 return 0;
612 if (1 == tuner_i2c_xfer_recv(&priv->i2c_props, &reg, 1))
613 *afc = AFC_BITS_2_kHz[(reg >> 1) & 0x0f];
614 return 0;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300615}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700616
Michael Krufky4e9154b2007-10-21 19:39:50 -0300617static void tda9887_standby(struct dvb_frontend *fe)
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300618{
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300619 struct tda9887_priv *priv = fe->analog_demod_priv;
620
Mauro Carvalho Chehab2d351df2011-02-14 18:53:12 -0200621 priv->standby = true;
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300622
Michael Krufky4e9154b2007-10-21 19:39:50 -0300623 tda9887_configure(fe);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300624}
Hans Verkuil4eb0c142005-11-08 21:37:18 -0800625
Michael Krufkyc7919d52007-12-08 17:06:30 -0300626static void tda9887_set_params(struct dvb_frontend *fe,
627 struct analog_parameters *params)
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300628{
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300629 struct tda9887_priv *priv = fe->analog_demod_priv;
630
Mauro Carvalho Chehab2d351df2011-02-14 18:53:12 -0200631 priv->standby = false;
Michael Krufky91c9d4a2007-12-16 20:05:00 -0300632 priv->mode = params->mode;
633 priv->audmode = params->audmode;
634 priv->std = params->std;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300635 tda9887_configure(fe);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300636}
637
Michael Krufky710401b2007-12-16 19:53:32 -0300638static int tda9887_set_config(struct dvb_frontend *fe, void *priv_cfg)
639{
640 struct tda9887_priv *priv = fe->analog_demod_priv;
641
642 priv->config = *(unsigned int *)priv_cfg;
643 tda9887_configure(fe);
644
645 return 0;
646}
647
Michael Krufky4e9154b2007-10-21 19:39:50 -0300648static void tda9887_release(struct dvb_frontend *fe)
Michael Krufky024cf532007-06-04 15:20:11 -0300649{
Michael Krufkyac8b63b2008-04-22 14:45:51 -0300650 struct tda9887_priv *priv = fe->analog_demod_priv;
651
652 mutex_lock(&tda9887_list_mutex);
653
654 if (priv)
655 hybrid_tuner_release_state(priv);
656
657 mutex_unlock(&tda9887_list_mutex);
658
Michael Krufky4e9154b2007-10-21 19:39:50 -0300659 fe->analog_demod_priv = NULL;
Michael Krufky024cf532007-06-04 15:20:11 -0300660}
661
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300662static struct analog_demod_ops tda9887_ops = {
Michael Krufkya55db8c2007-12-09 13:52:51 -0300663 .info = {
Michael Krufky0f2ce982008-01-21 10:55:37 -0300664 .name = "tda9887",
Michael Krufkya55db8c2007-12-09 13:52:51 -0300665 },
Michael Krufkyc7919d52007-12-08 17:06:30 -0300666 .set_params = tda9887_set_params,
Michael Krufky9af596e2007-06-06 16:15:48 -0300667 .standby = tda9887_standby,
668 .tuner_status = tda9887_tuner_status,
669 .get_afc = tda9887_get_afc,
670 .release = tda9887_release,
Michael Krufky710401b2007-12-16 19:53:32 -0300671 .set_config = tda9887_set_config,
Michael Krufky9af596e2007-06-06 16:15:48 -0300672};
673
Michael Krufky8ca40832007-12-16 20:11:46 -0300674struct dvb_frontend *tda9887_attach(struct dvb_frontend *fe,
675 struct i2c_adapter *i2c_adap,
676 u8 i2c_addr)
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300677{
Michael Krufkyb2083192007-05-29 22:54:06 -0300678 struct tda9887_priv *priv = NULL;
Michael Krufkyac8b63b2008-04-22 14:45:51 -0300679 int instance;
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300680
Michael Krufkyac8b63b2008-04-22 14:45:51 -0300681 mutex_lock(&tda9887_list_mutex);
682
683 instance = hybrid_tuner_request_state(struct tda9887_priv, priv,
684 hybrid_tuner_instance_list,
685 i2c_adap, i2c_addr, "tda9887");
686 switch (instance) {
687 case 0:
688 mutex_unlock(&tda9887_list_mutex);
Michael Krufky8ca40832007-12-16 20:11:46 -0300689 return NULL;
Michael Krufkyac8b63b2008-04-22 14:45:51 -0300690 case 1:
691 fe->analog_demod_priv = priv;
Mauro Carvalho Chehab2d351df2011-02-14 18:53:12 -0200692 priv->standby = true;
Michael Krufkyac8b63b2008-04-22 14:45:51 -0300693 tuner_info("tda988[5/6/7] found\n");
694 break;
695 default:
696 fe->analog_demod_priv = priv;
697 break;
698 }
Michael Krufkyb2083192007-05-29 22:54:06 -0300699
Michael Krufkyac8b63b2008-04-22 14:45:51 -0300700 mutex_unlock(&tda9887_list_mutex);
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300701
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300702 memcpy(&fe->ops.analog_ops, &tda9887_ops,
703 sizeof(struct analog_demod_ops));
Mauro Carvalho Chehab15396232006-06-23 16:13:56 -0300704
Michael Krufky8ca40832007-12-16 20:11:46 -0300705 return fe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
Michael Krufky31c95842007-10-21 20:48:48 -0300707EXPORT_SYMBOL_GPL(tda9887_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Michael Krufky5ef47302007-10-27 02:17:19 -0300709MODULE_LICENSE("GPL");