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