1 #include <linux/module.h>
2 #include <linux/kernel.h>
4 #include <linux/types.h>
5 #include <linux/init.h>
6 #include <linux/errno.h>
7 #include <linux/slab.h>
8 #include <linux/delay.h>
9 #include <linux/videodev.h>
10 #include <media/v4l2-common.h>
11 #include <media/tuner.h>
17 TDA9886 (PAL, SECAM, NTSC)
18 TDA9887 (PAL, SECAM, NTSC, FM Radio)
20 Used as part of several tuners
23 static int tda9887_debug
;
24 module_param_named(debug
, tda9887_debug
, int, 0644);
26 #define tda9887_info(fmt, arg...) do {\
27 printk(KERN_INFO "%s %d-%04x: " fmt, priv->t->i2c->name, \
28 i2c_adapter_id(priv->t->i2c->adapter), \
29 priv->t->i2c->addr, ##arg); } while (0)
30 #define tda9887_dbg(fmt, arg...) do {\
32 printk(KERN_INFO "%s %d-%04x: " fmt, priv->t->i2c->name, \
33 i2c_adapter_id(priv->t->i2c->adapter), \
34 priv->t->i2c->addr, ##arg); } while (0)
37 struct tuner_i2c_props i2c_props
;
39 unsigned char data
[4];
44 /* ---------------------------------------------------------------------- */
56 /* ---------------------------------------------------------------------- */
63 #define cVideoTrapBypassOFF 0x00 // bit b0
64 #define cVideoTrapBypassON 0x01 // bit b0
66 #define cAutoMuteFmInactive 0x00 // bit b1
67 #define cAutoMuteFmActive 0x02 // bit b1
69 #define cIntercarrier 0x00 // bit b2
70 #define cQSS 0x04 // bit b2
72 #define cPositiveAmTV 0x00 // bit b3:4
73 #define cFmRadio 0x08 // bit b3:4
74 #define cNegativeFmTV 0x10 // bit b3:4
77 #define cForcedMuteAudioON 0x20 // bit b5
78 #define cForcedMuteAudioOFF 0x00 // bit b5
80 #define cOutputPort1Active 0x00 // bit b6
81 #define cOutputPort1Inactive 0x40 // bit b6
83 #define cOutputPort2Active 0x00 // bit b7
84 #define cOutputPort2Inactive 0x80 // bit b7
88 #define cDeemphasisOFF 0x00 // bit c5
89 #define cDeemphasisON 0x20 // bit c5
91 #define cDeemphasis75 0x00 // bit c6
92 #define cDeemphasis50 0x40 // bit c6
94 #define cAudioGain0 0x00 // bit c7
95 #define cAudioGain6 0x80 // bit c7
97 #define cTopMask 0x1f // bit c0:4
98 #define cTopDefault 0x10 // bit c0:4
101 #define cAudioIF_4_5 0x00 // bit e0:1
102 #define cAudioIF_5_5 0x01 // bit e0:1
103 #define cAudioIF_6_0 0x02 // bit e0:1
104 #define cAudioIF_6_5 0x03 // bit e0:1
107 #define cVideoIFMask 0x1c // bit e2:4
108 /* Video IF selection in TV Mode (bit B3=0) */
109 #define cVideoIF_58_75 0x00 // bit e2:4
110 #define cVideoIF_45_75 0x04 // bit e2:4
111 #define cVideoIF_38_90 0x08 // bit e2:4
112 #define cVideoIF_38_00 0x0C // bit e2:4
113 #define cVideoIF_33_90 0x10 // bit e2:4
114 #define cVideoIF_33_40 0x14 // bit e2:4
115 #define cRadioIF_45_75 0x18 // bit e2:4
116 #define cRadioIF_38_90 0x1C // bit e2:4
118 /* IF1 selection in Radio Mode (bit B3=1) */
119 #define cRadioIF_33_30 0x00 // bit e2,4 (also 0x10,0x14)
120 #define cRadioIF_41_30 0x04 // bit e2,4
122 /* Output of AFC pin in radio mode when bit E7=1 */
123 #define cRadioAGC_SIF 0x00 // bit e3
124 #define cRadioAGC_FM 0x08 // bit e3
126 #define cTunerGainNormal 0x00 // bit e5
127 #define cTunerGainLow 0x20 // bit e5
129 #define cGating_18 0x00 // bit e6
130 #define cGating_36 0x40 // bit e6
132 #define cAgcOutON 0x80 // bit e7
133 #define cAgcOutOFF 0x00 // bit e7
135 /* ---------------------------------------------------------------------- */
137 static struct tvnorm tvnorms
[] = {
139 .std
= V4L2_STD_PAL_BG
| V4L2_STD_PAL_H
| V4L2_STD_PAL_N
,
141 .b
= ( cNegativeFmTV
|
143 .c
= ( cDeemphasisON
|
150 .std
= V4L2_STD_PAL_I
,
152 .b
= ( cNegativeFmTV
|
154 .c
= ( cDeemphasisON
|
161 .std
= V4L2_STD_PAL_DK
,
163 .b
= ( cNegativeFmTV
|
165 .c
= ( cDeemphasisON
|
172 .std
= V4L2_STD_PAL_M
| V4L2_STD_PAL_Nc
,
174 .b
= ( cNegativeFmTV
|
176 .c
= ( cDeemphasisON
|
183 .std
= V4L2_STD_SECAM_B
| V4L2_STD_SECAM_G
| V4L2_STD_SECAM_H
,
185 .b
= ( cPositiveAmTV
|
192 .std
= V4L2_STD_SECAM_L
,
194 .b
= ( cPositiveAmTV
|
201 .std
= V4L2_STD_SECAM_LC
,
203 .b
= ( cOutputPort2Inactive
|
211 .std
= V4L2_STD_SECAM_DK
,
213 .b
= ( cNegativeFmTV
|
215 .c
= ( cDeemphasisON
|
222 .std
= V4L2_STD_NTSC_M
| V4L2_STD_NTSC_M_KR
,
224 .b
= ( cNegativeFmTV
|
226 .c
= ( cDeemphasisON
|
233 .std
= V4L2_STD_NTSC_M_JP
,
235 .b
= ( cNegativeFmTV
|
237 .c
= ( cDeemphasisON
|
246 static struct tvnorm radio_stereo
= {
247 .name
= "Radio Stereo",
250 .c
= ( cDeemphasisOFF
|
253 .e
= ( cTunerGainLow
|
258 static struct tvnorm radio_mono
= {
259 .name
= "Radio Mono",
262 .c
= ( cDeemphasisON
|
265 .e
= ( cTunerGainLow
|
270 /* ---------------------------------------------------------------------- */
272 static void dump_read_message(struct dvb_frontend
*fe
, unsigned char *buf
)
274 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
276 static char *afc
[16] = {
294 tda9887_info("read: 0x%2x\n", buf
[0]);
295 tda9887_info(" after power on : %s\n", (buf
[0] & 0x01) ? "yes" : "no");
296 tda9887_info(" afc : %s\n", afc
[(buf
[0] >> 1) & 0x0f]);
297 tda9887_info(" fmif level : %s\n", (buf
[0] & 0x20) ? "high" : "low");
298 tda9887_info(" afc window : %s\n", (buf
[0] & 0x40) ? "in" : "out");
299 tda9887_info(" vfi level : %s\n", (buf
[0] & 0x80) ? "high" : "low");
302 static void dump_write_message(struct dvb_frontend
*fe
, unsigned char *buf
)
304 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
306 static char *sound
[4] = {
312 static char *adjust
[32] = {
313 "-16", "-15", "-14", "-13", "-12", "-11", "-10", "-9",
314 "-8", "-7", "-6", "-5", "-4", "-3", "-2", "-1",
315 "0", "+1", "+2", "+3", "+4", "+5", "+6", "+7",
316 "+8", "+9", "+10", "+11", "+12", "+13", "+14", "+15"
318 static char *deemph
[4] = {
319 "no", "no", "75", "50"
321 static char *carrier
[4] = {
327 static char *vif
[8] = {
337 static char *rif
[4] = {
344 tda9887_info("write: byte B 0x%02x\n",buf
[1]);
345 tda9887_info(" B0 video mode : %s\n",
346 (buf
[1] & 0x01) ? "video trap" : "sound trap");
347 tda9887_info(" B1 auto mute fm : %s\n",
348 (buf
[1] & 0x02) ? "yes" : "no");
349 tda9887_info(" B2 carrier mode : %s\n",
350 (buf
[1] & 0x04) ? "QSS" : "Intercarrier");
351 tda9887_info(" B3-4 tv sound/radio : %s\n",
352 sound
[(buf
[1] & 0x18) >> 3]);
353 tda9887_info(" B5 force mute audio: %s\n",
354 (buf
[1] & 0x20) ? "yes" : "no");
355 tda9887_info(" B6 output port 1 : %s\n",
356 (buf
[1] & 0x40) ? "high (inactive)" : "low (active)");
357 tda9887_info(" B7 output port 2 : %s\n",
358 (buf
[1] & 0x80) ? "high (inactive)" : "low (active)");
360 tda9887_info("write: byte C 0x%02x\n",buf
[2]);
361 tda9887_info(" C0-4 top adjustment : %s dB\n", adjust
[buf
[2] & 0x1f]);
362 tda9887_info(" C5-6 de-emphasis : %s\n", deemph
[(buf
[2] & 0x60) >> 5]);
363 tda9887_info(" C7 audio gain : %s\n",
364 (buf
[2] & 0x80) ? "-6" : "0");
366 tda9887_info("write: byte E 0x%02x\n",buf
[3]);
367 tda9887_info(" E0-1 sound carrier : %s\n",
368 carrier
[(buf
[3] & 0x03)]);
369 tda9887_info(" E6 l pll gating : %s\n",
370 (buf
[3] & 0x40) ? "36" : "13");
374 tda9887_info(" E2-4 video if : %s\n",
375 rif
[(buf
[3] & 0x0c) >> 2]);
376 tda9887_info(" E7 vif agc output : %s\n",
378 ? ((buf
[3] & 0x10) ? "fm-agc radio" : "sif-agc radio")
379 : "fm radio carrier afc");
382 tda9887_info(" E2-4 video if : %s\n",
383 vif
[(buf
[3] & 0x1c) >> 2]);
384 tda9887_info(" E5 tuner gain : %s\n",
386 ? ((buf
[3] & 0x20) ? "external" : "normal")
387 : ((buf
[3] & 0x20) ? "minimum" : "normal"));
388 tda9887_info(" E7 vif agc output : %s\n",
391 ? "pin3 port, pin22 vif agc out"
392 : "pin22 port, pin3 vif acg ext in")
393 : "pin3+pin22 port");
395 tda9887_info("--\n");
398 /* ---------------------------------------------------------------------- */
400 static int tda9887_set_tvnorm(struct dvb_frontend
*fe
)
402 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
403 struct tuner
*t
= priv
->t
;
404 struct tvnorm
*norm
= NULL
;
405 char *buf
= priv
->data
;
408 if (t
->mode
== V4L2_TUNER_RADIO
) {
409 if (t
->audmode
== V4L2_TUNER_MODE_MONO
)
412 norm
= &radio_stereo
;
414 for (i
= 0; i
< ARRAY_SIZE(tvnorms
); i
++) {
415 if (tvnorms
[i
].std
& t
->std
) {
422 tda9887_dbg("Unsupported tvnorm entry - audio muted\n");
426 tda9887_dbg("configure for: %s\n",norm
->name
);
433 static unsigned int port1
= UNSET
;
434 static unsigned int port2
= UNSET
;
435 static unsigned int qss
= UNSET
;
436 static unsigned int adjust
= UNSET
;
438 module_param(port1
, int, 0644);
439 module_param(port2
, int, 0644);
440 module_param(qss
, int, 0644);
441 module_param(adjust
, int, 0644);
443 static int tda9887_set_insmod(struct dvb_frontend
*fe
)
445 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
446 char *buf
= priv
->data
;
448 if (UNSET
!= port1
) {
450 buf
[1] |= cOutputPort1Inactive
;
452 buf
[1] &= ~cOutputPort1Inactive
;
454 if (UNSET
!= port2
) {
456 buf
[1] |= cOutputPort2Inactive
;
458 buf
[1] &= ~cOutputPort2Inactive
;
468 if (adjust
>= 0x00 && adjust
< 0x20) {
475 static int tda9887_set_config(struct dvb_frontend
*fe
)
477 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
478 struct tuner
*t
= priv
->t
;
479 char *buf
= priv
->data
;
481 if (t
->tda9887_config
& TDA9887_PORT1_ACTIVE
)
482 buf
[1] &= ~cOutputPort1Inactive
;
483 if (t
->tda9887_config
& TDA9887_PORT1_INACTIVE
)
484 buf
[1] |= cOutputPort1Inactive
;
485 if (t
->tda9887_config
& TDA9887_PORT2_ACTIVE
)
486 buf
[1] &= ~cOutputPort2Inactive
;
487 if (t
->tda9887_config
& TDA9887_PORT2_INACTIVE
)
488 buf
[1] |= cOutputPort2Inactive
;
490 if (t
->tda9887_config
& TDA9887_QSS
)
492 if (t
->tda9887_config
& TDA9887_INTERCARRIER
)
495 if (t
->tda9887_config
& TDA9887_AUTOMUTE
)
496 buf
[1] |= cAutoMuteFmActive
;
497 if (t
->tda9887_config
& TDA9887_DEEMPHASIS_MASK
) {
499 switch (t
->tda9887_config
& TDA9887_DEEMPHASIS_MASK
) {
500 case TDA9887_DEEMPHASIS_NONE
:
501 buf
[2] |= cDeemphasisOFF
;
503 case TDA9887_DEEMPHASIS_50
:
504 buf
[2] |= cDeemphasisON
| cDeemphasis50
;
506 case TDA9887_DEEMPHASIS_75
:
507 buf
[2] |= cDeemphasisON
| cDeemphasis75
;
511 if (t
->tda9887_config
& TDA9887_TOP_SET
) {
513 buf
[2] |= (t
->tda9887_config
>> 8) & cTopMask
;
515 if ((t
->tda9887_config
& TDA9887_INTERCARRIER_NTSC
) && (t
->std
& V4L2_STD_NTSC
))
517 if (t
->tda9887_config
& TDA9887_GATING_18
)
518 buf
[3] &= ~cGating_36
;
520 if (t
->mode
== V4L2_TUNER_RADIO
) {
521 if (t
->tda9887_config
& TDA9887_RIF_41_3
) {
522 buf
[3] &= ~cVideoIFMask
;
523 buf
[3] |= cRadioIF_41_30
;
525 if (t
->tda9887_config
& TDA9887_GAIN_NORMAL
)
526 buf
[3] &= ~cTunerGainLow
;
532 /* ---------------------------------------------------------------------- */
534 static int tda9887_status(struct dvb_frontend
*fe
)
536 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
537 unsigned char buf
[1];
540 memset(buf
,0,sizeof(buf
));
541 if (1 != (rc
= tuner_i2c_xfer_recv(&priv
->i2c_props
,buf
,1)))
542 tda9887_info("i2c i/o error: rc == %d (should be 1)\n",rc
);
543 dump_read_message(fe
, buf
);
547 static void tda9887_configure(struct dvb_frontend
*fe
)
549 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
550 struct tuner
*t
= priv
->t
;
553 memset(priv
->data
,0,sizeof(priv
->data
));
554 tda9887_set_tvnorm(fe
);
556 /* A note on the port settings:
557 These settings tend to depend on the specifics of the board.
558 By default they are set to inactive (bit value 1) by this driver,
559 overwriting any changes made by the tvnorm. This means that it
560 is the responsibility of the module using the tda9887 to set
561 these values in case of changes in the tvnorm.
562 In many cases port 2 should be made active (0) when selecting
563 SECAM-L, and port 2 should remain inactive (1) for SECAM-L'.
565 For the other standards the tda9887 application note says that
566 the ports should be set to active (0), but, again, that may
567 differ depending on the precise hardware configuration.
569 priv
->data
[1] |= cOutputPort1Inactive
;
570 priv
->data
[1] |= cOutputPort2Inactive
;
572 tda9887_set_config(fe
);
573 tda9887_set_insmod(fe
);
575 if (t
->mode
== T_STANDBY
) {
576 priv
->data
[1] |= cForcedMuteAudioON
;
579 tda9887_dbg("writing: b=0x%02x c=0x%02x e=0x%02x\n",
580 priv
->data
[1],priv
->data
[2],priv
->data
[3]);
581 if (tda9887_debug
> 1)
582 dump_write_message(fe
, priv
->data
);
584 if (4 != (rc
= tuner_i2c_xfer_send(&priv
->i2c_props
,priv
->data
,4)))
585 tda9887_info("i2c i/o error: rc == %d (should be 4)\n",rc
);
587 if (tda9887_debug
> 2) {
588 msleep_interruptible(1000);
593 /* ---------------------------------------------------------------------- */
595 static void tda9887_tuner_status(struct dvb_frontend
*fe
)
597 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
598 tda9887_info("Data bytes: b=0x%02x c=0x%02x e=0x%02x\n",
599 priv
->data
[1], priv
->data
[2], priv
->data
[3]);
602 static int tda9887_get_afc(struct dvb_frontend
*fe
)
604 struct tda9887_priv
*priv
= fe
->analog_demod_priv
;
605 static int AFC_BITS_2_kHz
[] = {
606 -12500, -37500, -62500, -97500,
607 -112500, -137500, -162500, -187500,
608 187500, 162500, 137500, 112500,
609 97500 , 62500, 37500 , 12500
614 if (1 == tuner_i2c_xfer_recv(&priv
->i2c_props
,®
,1))
615 afc
= AFC_BITS_2_kHz
[(reg
>>1)&0x0f];
620 static void tda9887_standby(struct dvb_frontend
*fe
)
622 tda9887_configure(fe
);
625 static void tda9887_set_freq(struct dvb_frontend
*fe
, unsigned int freq
)
627 tda9887_configure(fe
);
630 static void tda9887_release(struct dvb_frontend
*fe
)
632 kfree(fe
->analog_demod_priv
);
633 fe
->analog_demod_priv
= NULL
;
636 static struct analog_tuner_ops tda9887_tuner_ops
= {
637 .set_tv_freq
= tda9887_set_freq
,
638 .set_radio_freq
= tda9887_set_freq
,
639 .standby
= tda9887_standby
,
640 .tuner_status
= tda9887_tuner_status
,
641 .get_afc
= tda9887_get_afc
,
642 .release
= tda9887_release
,
645 int tda9887_attach(struct tuner
*t
)
647 struct tda9887_priv
*priv
= NULL
;
649 priv
= kzalloc(sizeof(struct tda9887_priv
), GFP_KERNEL
);
652 t
->fe
.analog_demod_priv
= priv
;
654 priv
->i2c_props
.addr
= t
->i2c
->addr
;
655 priv
->i2c_props
.adap
= t
->i2c
->adapter
;
658 strlcpy(t
->i2c
->name
, "tda9887", sizeof(t
->i2c
->name
));
660 tda9887_info("tda988[5/6/7] found @ 0x%x (%s)\n", t
->i2c
->addr
,
661 t
->i2c
->driver
->driver
.name
);
663 t
->fe
.ops
.analog_demod_ops
= &tda9887_tuner_ops
;
667 EXPORT_SYMBOL_GPL(tda9887_attach
);
669 MODULE_LICENSE("GPL");
672 * Overrides for Emacs so that we follow Linus's tabbing style.
673 * ---------------------------------------------------------------------------