Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #include <linux/kernel.h> |
| 3 | #include <linux/i2c.h> |
| 4 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/init.h> |
| 6 | #include <linux/errno.h> |
| 7 | #include <linux/slab.h> |
| 8 | #include <linux/delay.h> |
Michael Krufky | ffbb807 | 2007-08-21 01:14:12 -0300 | [diff] [blame] | 9 | #include <linux/videodev.h> |
Michael Krufky | 5e453dc | 2006-01-09 15:32:31 -0200 | [diff] [blame] | 10 | #include <media/v4l2-common.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <media/tuner.h> |
Michael Krufky | ab16605 | 2007-12-09 02:26:48 -0300 | [diff] [blame] | 12 | #include "tuner-i2c.h" |
Michael Krufky | 31c9584 | 2007-10-21 20:48:48 -0300 | [diff] [blame] | 13 | #include "tda9887.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Mauro Carvalho Chehab | 674434c | 2005-12-12 00:37:28 -0800 | [diff] [blame] | 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | /* Chips: |
| 17 | TDA9885 (PAL, NTSC) |
| 18 | TDA9886 (PAL, SECAM, NTSC) |
| 19 | TDA9887 (PAL, SECAM, NTSC, FM Radio) |
| 20 | |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 21 | Used as part of several tuners |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | */ |
| 23 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 24 | static int debug; |
| 25 | module_param(debug, int, 0644); |
| 26 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); |
Michael Krufky | 31c9584 | 2007-10-21 20:48:48 -0300 | [diff] [blame] | 27 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 28 | #define PREFIX "tda9887" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 30 | struct tda9887_priv { |
Michael Krufky | db8a695 | 2007-08-21 01:24:42 -0300 | [diff] [blame] | 31 | struct tuner_i2c_props i2c_props; |
| 32 | |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 33 | unsigned char data[4]; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 34 | unsigned int config; |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 35 | unsigned int mode; |
| 36 | unsigned int audmode; |
| 37 | v4l2_std_id std; |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 38 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | /* ---------------------------------------------------------------------- */ |
| 41 | |
| 42 | #define UNSET (-1U) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | struct tvnorm { |
| 45 | v4l2_std_id std; |
| 46 | char *name; |
| 47 | unsigned char b; |
| 48 | unsigned char c; |
| 49 | unsigned char e; |
| 50 | }; |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* ---------------------------------------------------------------------- */ |
| 53 | |
| 54 | // |
| 55 | // TDA defines |
| 56 | // |
| 57 | |
| 58 | //// first reg (b) |
| 59 | #define cVideoTrapBypassOFF 0x00 // bit b0 |
| 60 | #define cVideoTrapBypassON 0x01 // bit b0 |
| 61 | |
| 62 | #define cAutoMuteFmInactive 0x00 // bit b1 |
| 63 | #define cAutoMuteFmActive 0x02 // bit b1 |
| 64 | |
| 65 | #define cIntercarrier 0x00 // bit b2 |
| 66 | #define cQSS 0x04 // bit b2 |
| 67 | |
| 68 | #define cPositiveAmTV 0x00 // bit b3:4 |
| 69 | #define cFmRadio 0x08 // bit b3:4 |
| 70 | #define cNegativeFmTV 0x10 // bit b3:4 |
| 71 | |
| 72 | |
| 73 | #define cForcedMuteAudioON 0x20 // bit b5 |
| 74 | #define cForcedMuteAudioOFF 0x00 // bit b5 |
| 75 | |
| 76 | #define cOutputPort1Active 0x00 // bit b6 |
| 77 | #define cOutputPort1Inactive 0x40 // bit b6 |
| 78 | |
| 79 | #define cOutputPort2Active 0x00 // bit b7 |
| 80 | #define cOutputPort2Inactive 0x80 // bit b7 |
| 81 | |
| 82 | |
| 83 | //// second reg (c) |
| 84 | #define cDeemphasisOFF 0x00 // bit c5 |
| 85 | #define cDeemphasisON 0x20 // bit c5 |
| 86 | |
| 87 | #define cDeemphasis75 0x00 // bit c6 |
| 88 | #define cDeemphasis50 0x40 // bit c6 |
| 89 | |
| 90 | #define cAudioGain0 0x00 // bit c7 |
| 91 | #define cAudioGain6 0x80 // bit c7 |
| 92 | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 93 | #define cTopMask 0x1f // bit c0:4 |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 94 | #define cTopDefault 0x10 // bit c0:4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | //// third reg (e) |
| 97 | #define cAudioIF_4_5 0x00 // bit e0:1 |
| 98 | #define cAudioIF_5_5 0x01 // bit e0:1 |
| 99 | #define cAudioIF_6_0 0x02 // bit e0:1 |
| 100 | #define cAudioIF_6_5 0x03 // bit e0:1 |
| 101 | |
| 102 | |
Trent Piepho | 5e082f1 | 2007-08-03 18:32:38 -0300 | [diff] [blame] | 103 | #define cVideoIFMask 0x1c // bit e2:4 |
| 104 | /* Video IF selection in TV Mode (bit B3=0) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | #define cVideoIF_58_75 0x00 // bit e2:4 |
| 106 | #define cVideoIF_45_75 0x04 // bit e2:4 |
| 107 | #define cVideoIF_38_90 0x08 // bit e2:4 |
| 108 | #define cVideoIF_38_00 0x0C // bit e2:4 |
| 109 | #define cVideoIF_33_90 0x10 // bit e2:4 |
| 110 | #define cVideoIF_33_40 0x14 // bit e2:4 |
| 111 | #define cRadioIF_45_75 0x18 // bit e2:4 |
| 112 | #define cRadioIF_38_90 0x1C // bit e2:4 |
| 113 | |
Trent Piepho | 5e082f1 | 2007-08-03 18:32:38 -0300 | [diff] [blame] | 114 | /* IF1 selection in Radio Mode (bit B3=1) */ |
| 115 | #define cRadioIF_33_30 0x00 // bit e2,4 (also 0x10,0x14) |
| 116 | #define cRadioIF_41_30 0x04 // bit e2,4 |
| 117 | |
| 118 | /* Output of AFC pin in radio mode when bit E7=1 */ |
| 119 | #define cRadioAGC_SIF 0x00 // bit e3 |
| 120 | #define cRadioAGC_FM 0x08 // bit e3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | #define cTunerGainNormal 0x00 // bit e5 |
| 123 | #define cTunerGainLow 0x20 // bit e5 |
| 124 | |
| 125 | #define cGating_18 0x00 // bit e6 |
| 126 | #define cGating_36 0x40 // bit e6 |
| 127 | |
| 128 | #define cAgcOutON 0x80 // bit e7 |
| 129 | #define cAgcOutOFF 0x00 // bit e7 |
| 130 | |
| 131 | /* ---------------------------------------------------------------------- */ |
| 132 | |
| 133 | static struct tvnorm tvnorms[] = { |
| 134 | { |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 135 | .std = V4L2_STD_PAL_BG | V4L2_STD_PAL_H | V4L2_STD_PAL_N, |
| 136 | .name = "PAL-BGHN", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | .b = ( cNegativeFmTV | |
| 138 | cQSS ), |
| 139 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 140 | cDeemphasis50 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 141 | cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 142 | .e = ( cGating_36 | |
| 143 | cAudioIF_5_5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | cVideoIF_38_90 ), |
| 145 | },{ |
| 146 | .std = V4L2_STD_PAL_I, |
| 147 | .name = "PAL-I", |
| 148 | .b = ( cNegativeFmTV | |
| 149 | cQSS ), |
| 150 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 151 | cDeemphasis50 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 152 | cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 153 | .e = ( cGating_36 | |
| 154 | cAudioIF_6_0 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | cVideoIF_38_90 ), |
| 156 | },{ |
| 157 | .std = V4L2_STD_PAL_DK, |
| 158 | .name = "PAL-DK", |
| 159 | .b = ( cNegativeFmTV | |
| 160 | cQSS ), |
| 161 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 162 | cDeemphasis50 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 163 | cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 164 | .e = ( cGating_36 | |
| 165 | cAudioIF_6_5 | |
| 166 | cVideoIF_38_90 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | },{ |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 168 | .std = V4L2_STD_PAL_M | V4L2_STD_PAL_Nc, |
| 169 | .name = "PAL-M/Nc", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | .b = ( cNegativeFmTV | |
| 171 | cQSS ), |
| 172 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 173 | cDeemphasis75 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 174 | cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 175 | .e = ( cGating_36 | |
| 176 | cAudioIF_4_5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | cVideoIF_45_75 ), |
| 178 | },{ |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 179 | .std = V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H, |
| 180 | .name = "SECAM-BGH", |
| 181 | .b = ( cPositiveAmTV | |
| 182 | cQSS ), |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 183 | .c = ( cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 184 | .e = ( cGating_36 | |
| 185 | cAudioIF_5_5 | |
| 186 | cVideoIF_38_90 ), |
| 187 | },{ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | .std = V4L2_STD_SECAM_L, |
| 189 | .name = "SECAM-L", |
| 190 | .b = ( cPositiveAmTV | |
| 191 | cQSS ), |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 192 | .c = ( cTopDefault), |
Nickolay V. Shmyrev | 3375c39 | 2005-11-08 21:37:05 -0800 | [diff] [blame] | 193 | .e = ( cGating_36 | |
Nickolay V. Shmyrev | 5f7591c | 2005-11-08 21:37:04 -0800 | [diff] [blame] | 194 | cAudioIF_6_5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | cVideoIF_38_90 ), |
| 196 | },{ |
Mauro Carvalho Chehab | f3c5987 | 2006-01-09 15:25:00 -0200 | [diff] [blame] | 197 | .std = V4L2_STD_SECAM_LC, |
| 198 | .name = "SECAM-L'", |
| 199 | .b = ( cOutputPort2Inactive | |
| 200 | cPositiveAmTV | |
| 201 | cQSS ), |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 202 | .c = ( cTopDefault), |
Mauro Carvalho Chehab | f3c5987 | 2006-01-09 15:25:00 -0200 | [diff] [blame] | 203 | .e = ( cGating_36 | |
| 204 | cAudioIF_6_5 | |
| 205 | cVideoIF_33_90 ), |
| 206 | },{ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | .std = V4L2_STD_SECAM_DK, |
| 208 | .name = "SECAM-DK", |
| 209 | .b = ( cNegativeFmTV | |
| 210 | cQSS ), |
| 211 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 212 | cDeemphasis50 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 213 | cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 214 | .e = ( cGating_36 | |
| 215 | cAudioIF_6_5 | |
| 216 | cVideoIF_38_90 ), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | },{ |
Hans Verkuil | 0dfd812 | 2006-02-07 06:45:34 -0200 | [diff] [blame] | 218 | .std = V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_KR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | .name = "NTSC-M", |
| 220 | .b = ( cNegativeFmTV | |
| 221 | cQSS ), |
| 222 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 223 | cDeemphasis75 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 224 | cTopDefault), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | .e = ( cGating_36 | |
| 226 | cAudioIF_4_5 | |
| 227 | cVideoIF_45_75 ), |
| 228 | },{ |
| 229 | .std = V4L2_STD_NTSC_M_JP, |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 230 | .name = "NTSC-M-JP", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | .b = ( cNegativeFmTV | |
| 232 | cQSS ), |
| 233 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 234 | cDeemphasis50 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 235 | cTopDefault), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | .e = ( cGating_36 | |
| 237 | cAudioIF_4_5 | |
| 238 | cVideoIF_58_75 ), |
| 239 | } |
| 240 | }; |
| 241 | |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 242 | static struct tvnorm radio_stereo = { |
| 243 | .name = "Radio Stereo", |
| 244 | .b = ( cFmRadio | |
| 245 | cQSS ), |
| 246 | .c = ( cDeemphasisOFF | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 247 | cAudioGain6 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 248 | cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 249 | .e = ( cTunerGainLow | |
| 250 | cAudioIF_5_5 | |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 251 | cRadioIF_38_90 ), |
| 252 | }; |
| 253 | |
| 254 | static struct tvnorm radio_mono = { |
| 255 | .name = "Radio Mono", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | .b = ( cFmRadio | |
| 257 | cQSS ), |
| 258 | .c = ( cDeemphasisON | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 259 | cDeemphasis75 | |
Hans Verkuil | f5b0142 | 2006-06-25 15:37:29 -0300 | [diff] [blame] | 260 | cTopDefault), |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 261 | .e = ( cTunerGainLow | |
| 262 | cAudioIF_5_5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | cRadioIF_38_90 ), |
| 264 | }; |
| 265 | |
| 266 | /* ---------------------------------------------------------------------- */ |
| 267 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 268 | static void dump_read_message(struct dvb_frontend *fe, unsigned char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 270 | struct tda9887_priv *priv = fe->analog_demod_priv; |
| 271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | static char *afc[16] = { |
| 273 | "- 12.5 kHz", |
| 274 | "- 37.5 kHz", |
| 275 | "- 62.5 kHz", |
| 276 | "- 87.5 kHz", |
| 277 | "-112.5 kHz", |
| 278 | "-137.5 kHz", |
| 279 | "-162.5 kHz", |
| 280 | "-187.5 kHz [min]", |
| 281 | "+187.5 kHz [max]", |
| 282 | "+162.5 kHz", |
| 283 | "+137.5 kHz", |
| 284 | "+112.5 kHz", |
| 285 | "+ 87.5 kHz", |
| 286 | "+ 62.5 kHz", |
| 287 | "+ 37.5 kHz", |
| 288 | "+ 12.5 kHz", |
| 289 | }; |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 290 | tuner_info("read: 0x%2x\n", buf[0]); |
| 291 | tuner_info(" after power on : %s\n", (buf[0] & 0x01) ? "yes" : "no"); |
| 292 | tuner_info(" afc : %s\n", afc[(buf[0] >> 1) & 0x0f]); |
| 293 | tuner_info(" fmif level : %s\n", (buf[0] & 0x20) ? "high" : "low"); |
| 294 | tuner_info(" afc window : %s\n", (buf[0] & 0x40) ? "in" : "out"); |
| 295 | tuner_info(" vfi level : %s\n", (buf[0] & 0x80) ? "high" : "low"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |
| 297 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 298 | static void dump_write_message(struct dvb_frontend *fe, unsigned char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 300 | struct tda9887_priv *priv = fe->analog_demod_priv; |
| 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | static char *sound[4] = { |
| 303 | "AM/TV", |
| 304 | "FM/radio", |
| 305 | "FM/TV", |
| 306 | "FM/radio" |
| 307 | }; |
| 308 | static char *adjust[32] = { |
| 309 | "-16", "-15", "-14", "-13", "-12", "-11", "-10", "-9", |
| 310 | "-8", "-7", "-6", "-5", "-4", "-3", "-2", "-1", |
| 311 | "0", "+1", "+2", "+3", "+4", "+5", "+6", "+7", |
| 312 | "+8", "+9", "+10", "+11", "+12", "+13", "+14", "+15" |
| 313 | }; |
| 314 | static char *deemph[4] = { |
| 315 | "no", "no", "75", "50" |
| 316 | }; |
| 317 | static char *carrier[4] = { |
| 318 | "4.5 MHz", |
| 319 | "5.5 MHz", |
| 320 | "6.0 MHz", |
| 321 | "6.5 MHz / AM" |
| 322 | }; |
| 323 | static char *vif[8] = { |
| 324 | "58.75 MHz", |
| 325 | "45.75 MHz", |
| 326 | "38.9 MHz", |
| 327 | "38.0 MHz", |
| 328 | "33.9 MHz", |
| 329 | "33.4 MHz", |
| 330 | "45.75 MHz + pin13", |
| 331 | "38.9 MHz + pin13", |
| 332 | }; |
| 333 | static char *rif[4] = { |
| 334 | "44 MHz", |
| 335 | "52 MHz", |
| 336 | "52 MHz", |
| 337 | "44 MHz", |
| 338 | }; |
| 339 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 340 | tuner_info("write: byte B 0x%02x\n", buf[1]); |
| 341 | tuner_info(" B0 video mode : %s\n", |
| 342 | (buf[1] & 0x01) ? "video trap" : "sound trap"); |
| 343 | tuner_info(" B1 auto mute fm : %s\n", |
| 344 | (buf[1] & 0x02) ? "yes" : "no"); |
| 345 | tuner_info(" B2 carrier mode : %s\n", |
| 346 | (buf[1] & 0x04) ? "QSS" : "Intercarrier"); |
| 347 | tuner_info(" B3-4 tv sound/radio : %s\n", |
| 348 | sound[(buf[1] & 0x18) >> 3]); |
| 349 | tuner_info(" B5 force mute audio: %s\n", |
| 350 | (buf[1] & 0x20) ? "yes" : "no"); |
| 351 | tuner_info(" B6 output port 1 : %s\n", |
| 352 | (buf[1] & 0x40) ? "high (inactive)" : "low (active)"); |
| 353 | tuner_info(" B7 output port 2 : %s\n", |
| 354 | (buf[1] & 0x80) ? "high (inactive)" : "low (active)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 356 | tuner_info("write: byte C 0x%02x\n", buf[2]); |
| 357 | tuner_info(" C0-4 top adjustment : %s dB\n", |
| 358 | adjust[buf[2] & 0x1f]); |
| 359 | tuner_info(" C5-6 de-emphasis : %s\n", |
| 360 | deemph[(buf[2] & 0x60) >> 5]); |
| 361 | tuner_info(" C7 audio gain : %s\n", |
| 362 | (buf[2] & 0x80) ? "-6" : "0"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 364 | tuner_info("write: byte E 0x%02x\n", buf[3]); |
| 365 | tuner_info(" E0-1 sound carrier : %s\n", |
| 366 | carrier[(buf[3] & 0x03)]); |
| 367 | tuner_info(" E6 l pll gating : %s\n", |
| 368 | (buf[3] & 0x40) ? "36" : "13"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
| 370 | if (buf[1] & 0x08) { |
| 371 | /* radio */ |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 372 | tuner_info(" E2-4 video if : %s\n", |
| 373 | rif[(buf[3] & 0x0c) >> 2]); |
| 374 | tuner_info(" E7 vif agc output : %s\n", |
| 375 | (buf[3] & 0x80) |
| 376 | ? ((buf[3] & 0x10) ? "fm-agc radio" : |
| 377 | "sif-agc radio") |
| 378 | : "fm radio carrier afc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } else { |
| 380 | /* video */ |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 381 | tuner_info(" E2-4 video if : %s\n", |
| 382 | vif[(buf[3] & 0x1c) >> 2]); |
| 383 | tuner_info(" E5 tuner gain : %s\n", |
| 384 | (buf[3] & 0x80) |
| 385 | ? ((buf[3] & 0x20) ? "external" : "normal") |
| 386 | : ((buf[3] & 0x20) ? "minimum" : "normal")); |
| 387 | tuner_info(" E7 vif agc output : %s\n", |
| 388 | (buf[3] & 0x80) ? ((buf[3] & 0x20) |
| 389 | ? "pin3 port, pin22 vif agc out" |
| 390 | : "pin22 port, pin3 vif acg ext in") |
| 391 | : "pin3+pin22 port"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 393 | tuner_info("--\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | /* ---------------------------------------------------------------------- */ |
| 397 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 398 | static int tda9887_set_tvnorm(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 400 | struct tda9887_priv *priv = fe->analog_demod_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | struct tvnorm *norm = NULL; |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 402 | char *buf = priv->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | int i; |
| 404 | |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 405 | if (priv->mode == V4L2_TUNER_RADIO) { |
| 406 | if (priv->audmode == V4L2_TUNER_MODE_MONO) |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 407 | norm = &radio_mono; |
| 408 | else |
Mauro Carvalho Chehab | 586b0ca | 2005-06-28 20:45:21 -0700 | [diff] [blame] | 409 | norm = &radio_stereo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | } else { |
| 411 | for (i = 0; i < ARRAY_SIZE(tvnorms); i++) { |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 412 | if (tvnorms[i].std & priv->std) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | norm = tvnorms+i; |
| 414 | break; |
| 415 | } |
| 416 | } |
| 417 | } |
| 418 | if (NULL == norm) { |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 419 | tuner_dbg("Unsupported tvnorm entry - audio muted\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | return -1; |
| 421 | } |
| 422 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 423 | tuner_dbg("configure for: %s\n", norm->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | buf[1] = norm->b; |
| 425 | buf[2] = norm->c; |
| 426 | buf[3] = norm->e; |
| 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | static unsigned int port1 = UNSET; |
| 431 | static unsigned int port2 = UNSET; |
| 432 | static unsigned int qss = UNSET; |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 433 | static unsigned int adjust = UNSET; |
| 434 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | module_param(port1, int, 0644); |
| 436 | module_param(port2, int, 0644); |
| 437 | module_param(qss, int, 0644); |
| 438 | module_param(adjust, int, 0644); |
| 439 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 440 | static int tda9887_set_insmod(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 442 | struct tda9887_priv *priv = fe->analog_demod_priv; |
| 443 | char *buf = priv->data; |
| 444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | if (UNSET != port1) { |
| 446 | if (port1) |
| 447 | buf[1] |= cOutputPort1Inactive; |
| 448 | else |
| 449 | buf[1] &= ~cOutputPort1Inactive; |
| 450 | } |
| 451 | if (UNSET != port2) { |
| 452 | if (port2) |
| 453 | buf[1] |= cOutputPort2Inactive; |
| 454 | else |
| 455 | buf[1] &= ~cOutputPort2Inactive; |
| 456 | } |
| 457 | |
| 458 | if (UNSET != qss) { |
| 459 | if (qss) |
| 460 | buf[1] |= cQSS; |
| 461 | else |
| 462 | buf[1] &= ~cQSS; |
| 463 | } |
| 464 | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 465 | if (adjust >= 0x00 && adjust < 0x20) { |
| 466 | buf[2] &= ~cTopMask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | buf[2] |= adjust; |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 468 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | return 0; |
| 470 | } |
| 471 | |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 472 | static int tda9887_do_config(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 474 | struct tda9887_priv *priv = fe->analog_demod_priv; |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 475 | char *buf = priv->data; |
| 476 | |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 477 | if (priv->config & TDA9887_PORT1_ACTIVE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | buf[1] &= ~cOutputPort1Inactive; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 479 | if (priv->config & TDA9887_PORT1_INACTIVE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | buf[1] |= cOutputPort1Inactive; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 481 | if (priv->config & TDA9887_PORT2_ACTIVE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | buf[1] &= ~cOutputPort2Inactive; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 483 | if (priv->config & TDA9887_PORT2_INACTIVE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | buf[1] |= cOutputPort2Inactive; |
| 485 | |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 486 | if (priv->config & TDA9887_QSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | buf[1] |= cQSS; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 488 | if (priv->config & TDA9887_INTERCARRIER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | buf[1] &= ~cQSS; |
| 490 | |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 491 | if (priv->config & TDA9887_AUTOMUTE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | buf[1] |= cAutoMuteFmActive; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 493 | if (priv->config & TDA9887_DEEMPHASIS_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | buf[2] &= ~0x60; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 495 | switch (priv->config & TDA9887_DEEMPHASIS_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | case TDA9887_DEEMPHASIS_NONE: |
| 497 | buf[2] |= cDeemphasisOFF; |
| 498 | break; |
| 499 | case TDA9887_DEEMPHASIS_50: |
| 500 | buf[2] |= cDeemphasisON | cDeemphasis50; |
| 501 | break; |
| 502 | case TDA9887_DEEMPHASIS_75: |
| 503 | buf[2] |= cDeemphasisON | cDeemphasis75; |
| 504 | break; |
| 505 | } |
| 506 | } |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 507 | if (priv->config & TDA9887_TOP_SET) { |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 508 | buf[2] &= ~cTopMask; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 509 | buf[2] |= (priv->config >> 8) & cTopMask; |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 510 | } |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 511 | if ((priv->config & TDA9887_INTERCARRIER_NTSC) && |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 512 | (priv->std & V4L2_STD_NTSC)) |
Nickolay V. Shmyrev | 3ae1adc | 2005-11-08 21:37:39 -0800 | [diff] [blame] | 513 | buf[1] &= ~cQSS; |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 514 | if (priv->config & TDA9887_GATING_18) |
Trent Piepho | d7304de | 2006-08-24 22:43:45 -0300 | [diff] [blame] | 515 | buf[3] &= ~cGating_36; |
Mauro Carvalho Chehab | cefccc8 | 2006-12-04 08:31:35 -0300 | [diff] [blame] | 516 | |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 517 | if (priv->mode == V4L2_TUNER_RADIO) { |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 518 | if (priv->config & TDA9887_RIF_41_3) { |
Trent Piepho | 5e082f1 | 2007-08-03 18:32:38 -0300 | [diff] [blame] | 519 | buf[3] &= ~cVideoIFMask; |
| 520 | buf[3] |= cRadioIF_41_30; |
| 521 | } |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 522 | if (priv->config & TDA9887_GAIN_NORMAL) |
Trent Piepho | 5e082f1 | 2007-08-03 18:32:38 -0300 | [diff] [blame] | 523 | buf[3] &= ~cTunerGainLow; |
Mauro Carvalho Chehab | cefccc8 | 2006-12-04 08:31:35 -0300 | [diff] [blame] | 524 | } |
| 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | return 0; |
| 527 | } |
| 528 | |
| 529 | /* ---------------------------------------------------------------------- */ |
| 530 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 531 | static int tda9887_status(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 533 | struct tda9887_priv *priv = fe->analog_demod_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | unsigned char buf[1]; |
| 535 | int rc; |
| 536 | |
| 537 | memset(buf,0,sizeof(buf)); |
Michael Krufky | db8a695 | 2007-08-21 01:24:42 -0300 | [diff] [blame] | 538 | if (1 != (rc = tuner_i2c_xfer_recv(&priv->i2c_props,buf,1))) |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 539 | tuner_info("i2c i/o error: rc == %d (should be 1)\n", rc); |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 540 | dump_read_message(fe, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | return 0; |
| 542 | } |
| 543 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 544 | static void tda9887_configure(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 546 | struct tda9887_priv *priv = fe->analog_demod_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | int rc; |
| 548 | |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 549 | memset(priv->data,0,sizeof(priv->data)); |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 550 | tda9887_set_tvnorm(fe); |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 551 | |
Hans Verkuil | f98c55e | 2006-01-09 15:25:18 -0200 | [diff] [blame] | 552 | /* A note on the port settings: |
| 553 | These settings tend to depend on the specifics of the board. |
| 554 | By default they are set to inactive (bit value 1) by this driver, |
| 555 | overwriting any changes made by the tvnorm. This means that it |
| 556 | is the responsibility of the module using the tda9887 to set |
| 557 | these values in case of changes in the tvnorm. |
| 558 | In many cases port 2 should be made active (0) when selecting |
| 559 | SECAM-L, and port 2 should remain inactive (1) for SECAM-L'. |
| 560 | |
| 561 | For the other standards the tda9887 application note says that |
| 562 | the ports should be set to active (0), but, again, that may |
| 563 | differ depending on the precise hardware configuration. |
| 564 | */ |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 565 | priv->data[1] |= cOutputPort1Inactive; |
| 566 | priv->data[1] |= cOutputPort2Inactive; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 567 | |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 568 | tda9887_do_config(fe); |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 569 | tda9887_set_insmod(fe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 571 | if (priv->mode == T_STANDBY) |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 572 | priv->data[1] |= cForcedMuteAudioON; |
Mauro Carvalho Chehab | 793cf9e | 2005-09-09 13:03:37 -0700 | [diff] [blame] | 573 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 574 | tuner_dbg("writing: b=0x%02x c=0x%02x e=0x%02x\n", |
| 575 | priv->data[1], priv->data[2], priv->data[3]); |
| 576 | if (debug > 1) |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 577 | dump_write_message(fe, priv->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
Michael Krufky | db8a695 | 2007-08-21 01:24:42 -0300 | [diff] [blame] | 579 | if (4 != (rc = tuner_i2c_xfer_send(&priv->i2c_props,priv->data,4))) |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 580 | tuner_info("i2c i/o error: rc == %d (should be 4)\n", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 582 | if (debug > 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | msleep_interruptible(1000); |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 584 | tda9887_status(fe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | /* ---------------------------------------------------------------------- */ |
| 589 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 590 | static void tda9887_tuner_status(struct dvb_frontend *fe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 592 | struct tda9887_priv *priv = fe->analog_demod_priv; |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 593 | tuner_info("Data bytes: b=0x%02x c=0x%02x e=0x%02x\n", |
| 594 | priv->data[1], priv->data[2], priv->data[3]); |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 595 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 597 | static int tda9887_get_afc(struct dvb_frontend *fe) |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 598 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 599 | struct tda9887_priv *priv = fe->analog_demod_priv; |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 600 | static int AFC_BITS_2_kHz[] = { |
| 601 | -12500, -37500, -62500, -97500, |
| 602 | -112500, -137500, -162500, -187500, |
| 603 | 187500, 162500, 137500, 112500, |
| 604 | 97500 , 62500, 37500 , 12500 |
| 605 | }; |
| 606 | int afc=0; |
| 607 | __u8 reg = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Michael Krufky | db8a695 | 2007-08-21 01:24:42 -0300 | [diff] [blame] | 609 | if (1 == tuner_i2c_xfer_recv(&priv->i2c_props,®,1)) |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 610 | afc = AFC_BITS_2_kHz[(reg>>1)&0x0f]; |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 611 | |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 612 | return afc; |
| 613 | } |
Mauro Carvalho Chehab | 56fc08c | 2005-06-23 22:05:07 -0700 | [diff] [blame] | 614 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 615 | static void tda9887_standby(struct dvb_frontend *fe) |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 616 | { |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 617 | struct tda9887_priv *priv = fe->analog_demod_priv; |
| 618 | |
| 619 | priv->mode = T_STANDBY; |
| 620 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 621 | tda9887_configure(fe); |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 622 | } |
Hans Verkuil | 4eb0c14 | 2005-11-08 21:37:18 -0800 | [diff] [blame] | 623 | |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 624 | static void tda9887_set_params(struct dvb_frontend *fe, |
| 625 | struct analog_parameters *params) |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 626 | { |
Michael Krufky | 91c9d4a | 2007-12-16 20:05:00 -0300 | [diff] [blame] | 627 | struct tda9887_priv *priv = fe->analog_demod_priv; |
| 628 | |
| 629 | priv->mode = params->mode; |
| 630 | priv->audmode = params->audmode; |
| 631 | priv->std = params->std; |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 632 | tda9887_configure(fe); |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 633 | } |
| 634 | |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 635 | static int tda9887_set_config(struct dvb_frontend *fe, void *priv_cfg) |
| 636 | { |
| 637 | struct tda9887_priv *priv = fe->analog_demod_priv; |
| 638 | |
| 639 | priv->config = *(unsigned int *)priv_cfg; |
| 640 | tda9887_configure(fe); |
| 641 | |
| 642 | return 0; |
| 643 | } |
| 644 | |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 645 | static void tda9887_release(struct dvb_frontend *fe) |
Michael Krufky | 024cf53 | 2007-06-04 15:20:11 -0300 | [diff] [blame] | 646 | { |
Michael Krufky | 4e9154b | 2007-10-21 19:39:50 -0300 | [diff] [blame] | 647 | kfree(fe->analog_demod_priv); |
| 648 | fe->analog_demod_priv = NULL; |
Michael Krufky | 024cf53 | 2007-06-04 15:20:11 -0300 | [diff] [blame] | 649 | } |
| 650 | |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 651 | static struct analog_demod_ops tda9887_ops = { |
Michael Krufky | a55db8c | 2007-12-09 13:52:51 -0300 | [diff] [blame] | 652 | .info = { |
Michael Krufky | 0f2ce98 | 2008-01-21 10:55:37 -0300 | [diff] [blame^] | 653 | .name = "tda9887", |
Michael Krufky | a55db8c | 2007-12-09 13:52:51 -0300 | [diff] [blame] | 654 | }, |
Michael Krufky | c7919d5 | 2007-12-08 17:06:30 -0300 | [diff] [blame] | 655 | .set_params = tda9887_set_params, |
Michael Krufky | 9af596e | 2007-06-06 16:15:48 -0300 | [diff] [blame] | 656 | .standby = tda9887_standby, |
| 657 | .tuner_status = tda9887_tuner_status, |
| 658 | .get_afc = tda9887_get_afc, |
| 659 | .release = tda9887_release, |
Michael Krufky | 710401b | 2007-12-16 19:53:32 -0300 | [diff] [blame] | 660 | .set_config = tda9887_set_config, |
Michael Krufky | 9af596e | 2007-06-06 16:15:48 -0300 | [diff] [blame] | 661 | }; |
| 662 | |
Michael Krufky | 8ca4083 | 2007-12-16 20:11:46 -0300 | [diff] [blame] | 663 | struct dvb_frontend *tda9887_attach(struct dvb_frontend *fe, |
| 664 | struct i2c_adapter *i2c_adap, |
| 665 | u8 i2c_addr) |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 666 | { |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 667 | struct tda9887_priv *priv = NULL; |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 668 | |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 669 | priv = kzalloc(sizeof(struct tda9887_priv), GFP_KERNEL); |
| 670 | if (priv == NULL) |
Michael Krufky | 8ca4083 | 2007-12-16 20:11:46 -0300 | [diff] [blame] | 671 | return NULL; |
| 672 | fe->analog_demod_priv = priv; |
Michael Krufky | b208319 | 2007-05-29 22:54:06 -0300 | [diff] [blame] | 673 | |
Michael Krufky | 8ca4083 | 2007-12-16 20:11:46 -0300 | [diff] [blame] | 674 | priv->i2c_props.addr = i2c_addr; |
| 675 | priv->i2c_props.adap = i2c_adap; |
Michael Krufky | 71021d2 | 2007-12-17 09:49:33 -0300 | [diff] [blame] | 676 | priv->mode = T_STANDBY; |
Michael Krufky | db8a695 | 2007-08-21 01:24:42 -0300 | [diff] [blame] | 677 | |
Michael Krufky | 790ba18 | 2007-12-16 21:20:21 -0300 | [diff] [blame] | 678 | tuner_info("tda988[5/6/7] found\n"); |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 679 | |
Michael Krufky | bc3e5c7 | 2007-12-21 11:18:32 -0300 | [diff] [blame] | 680 | memcpy(&fe->ops.analog_ops, &tda9887_ops, |
| 681 | sizeof(struct analog_demod_ops)); |
Mauro Carvalho Chehab | 1539623 | 2006-06-23 16:13:56 -0300 | [diff] [blame] | 682 | |
Michael Krufky | 8ca4083 | 2007-12-16 20:11:46 -0300 | [diff] [blame] | 683 | return fe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | } |
Michael Krufky | 31c9584 | 2007-10-21 20:48:48 -0300 | [diff] [blame] | 685 | EXPORT_SYMBOL_GPL(tda9887_attach); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
Michael Krufky | 5ef4730 | 2007-10-27 02:17:19 -0300 | [diff] [blame] | 687 | MODULE_LICENSE("GPL"); |
| 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | /* |
| 690 | * Overrides for Emacs so that we follow Linus's tabbing style. |
| 691 | * --------------------------------------------------------------------------- |
| 692 | * Local variables: |
| 693 | * c-basic-offset: 8 |
| 694 | * End: |
| 695 | */ |