blob: cf44d3657f5550299987fb122d754c8cf081769e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * i2c tv tuner chip device driver
3 * controls all those simple 4-control-bytes style tuners.
Michael Krufky4adad282007-08-27 21:59:08 -03004 *
5 * This "tuner-simple" module was split apart from the original "tuner" module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include <linux/delay.h>
8#include <linux/i2c.h>
Hans Verkuilf894dfd2008-07-25 07:39:54 -03009#include <linux/videodev2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <media/tuner.h>
Hans Verkuilba8fc392006-06-25 15:34:39 -030011#include <media/v4l2-common.h>
Michael Krufky8218b0b2007-06-26 13:12:08 -030012#include <media/tuner-types.h>
Michael Krufky4adad282007-08-27 21:59:08 -030013#include "tuner-i2c.h"
14#include "tuner-simple.h"
15
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030016static int debug;
Michael Krufky4adad282007-08-27 21:59:08 -030017module_param(debug, int, 0644);
18MODULE_PARM_DESC(debug, "enable verbose debug messages");
19
Michael Krufky65511612008-04-22 14:46:12 -030020#define TUNER_SIMPLE_MAX 64
21static unsigned int simple_devcount;
22
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030023static int offset;
Mauro Carvalho Chehab4d988162006-08-12 21:59:19 -030024module_param(offset, int, 0664);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030025MODULE_PARM_DESC(offset, "Allows to specify an offset for tuner");
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020026
Michael Krufky65511612008-04-22 14:46:12 -030027static unsigned int atv_input[TUNER_SIMPLE_MAX] = \
28 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
29static unsigned int dtv_input[TUNER_SIMPLE_MAX] = \
30 { [0 ... (TUNER_SIMPLE_MAX-1)] = 0 };
31module_param_array(atv_input, int, NULL, 0644);
32module_param_array(dtv_input, int, NULL, 0644);
33MODULE_PARM_DESC(atv_input, "specify atv rf input, 0 for autoselect");
34MODULE_PARM_DESC(dtv_input, "specify dtv rf input, 0 for autoselect");
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* ---------------------------------------------------------------------- */
37
38/* tv standard selection for Temic 4046 FM5
39 this value takes the low bits of control byte 2
40 from datasheet Rev.01, Feb.00
41 standard BG I L L2 D
42 picture IF 38.9 38.9 38.9 33.95 38.9
43 sound 1 33.4 32.9 32.4 40.45 32.4
44 sound 2 33.16
45 NICAM 33.05 32.348 33.05 33.05
46 */
47#define TEMIC_SET_PAL_I 0x05
48#define TEMIC_SET_PAL_DK 0x09
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030049#define TEMIC_SET_PAL_L 0x0a /* SECAM ? */
50#define TEMIC_SET_PAL_L2 0x0b /* change IF ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define TEMIC_SET_PAL_BG 0x0c
52
53/* tv tuner system standard selection for Philips FQ1216ME
54 this value takes the low bits of control byte 2
55 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
56 standard BG DK I L L`
57 picture carrier 38.90 38.90 38.90 38.90 33.95
58 colour 34.47 34.47 34.47 34.47 38.38
59 sound 1 33.40 32.40 32.90 32.40 40.45
60 sound 2 33.16 - - - -
61 NICAM 33.05 33.05 32.35 33.05 39.80
62 */
63#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
64#define PHILIPS_SET_PAL_BGDK 0x09
65#define PHILIPS_SET_PAL_L2 0x0a
66#define PHILIPS_SET_PAL_L 0x0b
67
68/* system switching for Philips FI1216MF MK2
69 from datasheet "1996 Jul 09",
70 standard BG L L'
71 picture carrier 38.90 38.90 33.95
72 colour 34.47 34.37 38.38
73 sound 1 33.40 32.40 40.45
74 sound 2 33.16 - -
75 NICAM 33.05 33.05 39.80
76 */
Mauro Carvalho Chehabc57032d2007-05-21 11:39:21 -030077#define PHILIPS_MF_SET_STD_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
78#define PHILIPS_MF_SET_STD_L 0x03 /* Used on Secam France */
79#define PHILIPS_MF_SET_STD_LC 0x02 /* Used on SECAM L' */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070081/* Control byte */
82
83#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
84#define TUNER_RATIO_SELECT_50 0x00
85#define TUNER_RATIO_SELECT_32 0x02
86#define TUNER_RATIO_SELECT_166 0x04
87#define TUNER_RATIO_SELECT_62 0x06
88
89#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
90
91/* Status byte */
92
93#define TUNER_POR 0x80
94#define TUNER_FL 0x40
95#define TUNER_MODE 0x38
96#define TUNER_AFC 0x07
97#define TUNER_SIGNAL 0x07
98#define TUNER_STEREO 0x10
99
100#define TUNER_PLL_LOCKED 0x40
101#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Michael Krufky62325492008-04-22 14:45:52 -0300103static DEFINE_MUTEX(tuner_simple_list_mutex);
104static LIST_HEAD(hybrid_tuner_instance_list);
105
Michael Krufky6b1dde92007-08-11 15:42:12 -0300106struct tuner_simple_priv {
Michael Krufky65511612008-04-22 14:46:12 -0300107 unsigned int nr;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300108 u16 last_div;
Michael Krufky62325492008-04-22 14:45:52 -0300109
Michael Krufkydb8a6952007-08-21 01:24:42 -0300110 struct tuner_i2c_props i2c_props;
Michael Krufky62325492008-04-22 14:45:52 -0300111 struct list_head hybrid_tuner_instance_list;
Michael Krufky4adad282007-08-27 21:59:08 -0300112
113 unsigned int type;
114 struct tunertype *tun;
115
116 u32 frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300117 u32 bandwidth;
Hans Verkuildfc2e122013-04-06 04:41:29 -0300118 bool radio_mode;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300119};
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* ---------------------------------------------------------------------- */
122
Michael Krufky735f0b92007-08-31 16:39:39 -0300123static int tuner_read_status(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Michael Krufky4adad282007-08-27 21:59:08 -0300125 struct tuner_simple_priv *priv = fe->tuner_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 unsigned char byte;
127
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300128 if (1 != tuner_i2c_xfer_recv(&priv->i2c_props, &byte, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return byte;
132}
133
Michael Krufky735f0b92007-08-31 16:39:39 -0300134static inline int tuner_signal(const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Michael Krufky735f0b92007-08-31 16:39:39 -0300136 return (status & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Michael Krufky735f0b92007-08-31 16:39:39 -0300139static inline int tuner_stereo(const int type, const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Michael Krufky735f0b92007-08-31 16:39:39 -0300141 switch (type) {
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300142 case TUNER_PHILIPS_FM1216ME_MK3:
143 case TUNER_PHILIPS_FM1236_MK3:
144 case TUNER_PHILIPS_FM1256_IH3:
145 case TUNER_LG_NTSC_TAPE:
Mauro Carvalho Chehab8f2b7b72008-08-05 10:11:25 -0300146 case TUNER_TCL_MF02GIP_5N:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300147 return ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
Dmitri Belimov5bc53a92009-08-26 22:06:28 -0300148 case TUNER_PHILIPS_FM1216MK5:
149 return status | TUNER_STEREO;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300150 default:
151 return status & TUNER_STEREO;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700152 }
Michael Krufky735f0b92007-08-31 16:39:39 -0300153}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700154
Michael Krufky735f0b92007-08-31 16:39:39 -0300155static inline int tuner_islocked(const int status)
156{
157 return (status & TUNER_FL);
158}
159
160static inline int tuner_afcstatus(const int status)
161{
162 return (status & TUNER_AFC) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Michael Krufky4adad282007-08-27 21:59:08 -0300166static int simple_get_status(struct dvb_frontend *fe, u32 *status)
167{
168 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300169 int tuner_status;
170
171 if (priv->i2c_props.adap == NULL)
172 return -EINVAL;
173
174 tuner_status = tuner_read_status(fe);
Michael Krufky4adad282007-08-27 21:59:08 -0300175
176 *status = 0;
177
Michael Krufky735f0b92007-08-31 16:39:39 -0300178 if (tuner_islocked(tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300179 *status = TUNER_STATUS_LOCKED;
Michael Krufky735f0b92007-08-31 16:39:39 -0300180 if (tuner_stereo(priv->type, tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300181 *status |= TUNER_STATUS_STEREO;
182
Michael Krufky735f0b92007-08-31 16:39:39 -0300183 tuner_dbg("AFC Status: %d\n", tuner_afcstatus(tuner_status));
184
185 return 0;
186}
187
188static int simple_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
189{
190 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300191 int signal;
192
Hans Verkuildfc2e122013-04-06 04:41:29 -0300193 if (priv->i2c_props.adap == NULL || !priv->radio_mode)
Michael Krufkya81df362008-04-22 14:45:52 -0300194 return -EINVAL;
195
196 signal = tuner_signal(tuner_read_status(fe));
Michael Krufky735f0b92007-08-31 16:39:39 -0300197
198 *strength = signal;
199
200 tuner_dbg("Signal strength: %d\n", signal);
Michael Krufky4adad282007-08-27 21:59:08 -0300201
202 return 0;
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/* ---------------------------------------------------------------------- */
206
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300207static inline char *tuner_param_name(enum param_type type)
208{
209 char *name;
210
211 switch (type) {
212 case TUNER_PARAM_TYPE_RADIO:
213 name = "radio";
214 break;
215 case TUNER_PARAM_TYPE_PAL:
216 name = "pal";
217 break;
218 case TUNER_PARAM_TYPE_SECAM:
219 name = "secam";
220 break;
221 case TUNER_PARAM_TYPE_NTSC:
222 name = "ntsc";
223 break;
Michael Krufky62325492008-04-22 14:45:52 -0300224 case TUNER_PARAM_TYPE_DIGITAL:
225 name = "digital";
226 break;
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300227 default:
228 name = "unknown";
229 break;
230 }
231 return name;
232}
233
234static struct tuner_params *simple_tuner_params(struct dvb_frontend *fe,
235 enum param_type desired_type)
236{
237 struct tuner_simple_priv *priv = fe->tuner_priv;
238 struct tunertype *tun = priv->tun;
239 int i;
240
241 for (i = 0; i < tun->count; i++)
242 if (desired_type == tun->params[i].type)
243 break;
244
245 /* use default tuner params if desired_type not available */
246 if (i == tun->count) {
247 tuner_dbg("desired params (%s) undefined for tuner %d\n",
248 tuner_param_name(desired_type), priv->type);
249 i = 0;
250 }
251
252 tuner_dbg("using tuner params #%d (%s)\n", i,
253 tuner_param_name(tun->params[i].type));
254
255 return &tun->params[i];
256}
257
258static int simple_config_lookup(struct dvb_frontend *fe,
259 struct tuner_params *t_params,
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300260 unsigned *frequency, u8 *config, u8 *cb)
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300261{
262 struct tuner_simple_priv *priv = fe->tuner_priv;
263 int i;
264
265 for (i = 0; i < t_params->count; i++) {
266 if (*frequency > t_params->ranges[i].limit)
267 continue;
268 break;
269 }
270 if (i == t_params->count) {
271 tuner_dbg("frequency out of range (%d > %d)\n",
272 *frequency, t_params->ranges[i - 1].limit);
273 *frequency = t_params->ranges[--i].limit;
274 }
275 *config = t_params->ranges[i].config;
276 *cb = t_params->ranges[i].cb;
277
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200278 tuner_dbg("freq = %d.%02d (%d), range = %d, config = 0x%02x, cb = 0x%02x\n",
Michael Krufky7f8447d2008-04-22 14:41:49 -0300279 *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
280 i, *config, *cb);
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300281
282 return i;
283}
284
285/* ---------------------------------------------------------------------- */
286
Michael Krufky02f5f442008-04-22 14:45:55 -0300287static void simple_set_rf_input(struct dvb_frontend *fe,
288 u8 *config, u8 *cb, unsigned int rf)
289{
290 struct tuner_simple_priv *priv = fe->tuner_priv;
291
292 switch (priv->type) {
293 case TUNER_PHILIPS_TUV1236D:
294 switch (rf) {
295 case 1:
296 *cb |= 0x08;
297 break;
298 default:
299 *cb &= ~0x08;
300 break;
301 }
302 break;
Michael Krufkyab8b8702008-04-22 14:46:05 -0300303 case TUNER_PHILIPS_FCV1236D:
Michael Krufky02f5f442008-04-22 14:45:55 -0300304 switch (rf) {
305 case 1:
306 *cb |= 0x01;
307 break;
308 default:
309 *cb &= ~0x01;
310 break;
311 }
312 break;
313 default:
314 break;
315 }
316}
317
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300318static int simple_std_setup(struct dvb_frontend *fe,
319 struct analog_parameters *params,
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300320 u8 *config, u8 *cb)
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300321{
322 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300323 int rc;
324
325 /* tv norm specific stuff for multi-norm tuners */
326 switch (priv->type) {
327 case TUNER_PHILIPS_SECAM: /* FI1216MF */
328 /* 0x01 -> ??? no change ??? */
329 /* 0x02 -> PAL BDGHI / SECAM L */
330 /* 0x04 -> ??? PAL others / SECAM others ??? */
331 *cb &= ~0x03;
332 if (params->std & V4L2_STD_SECAM_L)
333 /* also valid for V4L2_STD_SECAM */
334 *cb |= PHILIPS_MF_SET_STD_L;
335 else if (params->std & V4L2_STD_SECAM_LC)
336 *cb |= PHILIPS_MF_SET_STD_LC;
337 else /* V4L2_STD_B|V4L2_STD_GH */
338 *cb |= PHILIPS_MF_SET_STD_BG;
339 break;
340
341 case TUNER_TEMIC_4046FM5:
342 *cb &= ~0x0f;
343
344 if (params->std & V4L2_STD_PAL_BG) {
345 *cb |= TEMIC_SET_PAL_BG;
346
347 } else if (params->std & V4L2_STD_PAL_I) {
348 *cb |= TEMIC_SET_PAL_I;
349
350 } else if (params->std & V4L2_STD_PAL_DK) {
351 *cb |= TEMIC_SET_PAL_DK;
352
353 } else if (params->std & V4L2_STD_SECAM_L) {
354 *cb |= TEMIC_SET_PAL_L;
355
356 }
357 break;
358
359 case TUNER_PHILIPS_FQ1216ME:
360 *cb &= ~0x0f;
361
362 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
363 *cb |= PHILIPS_SET_PAL_BGDK;
364
365 } else if (params->std & V4L2_STD_PAL_I) {
366 *cb |= PHILIPS_SET_PAL_I;
367
368 } else if (params->std & V4L2_STD_SECAM_L) {
369 *cb |= PHILIPS_SET_PAL_L;
370
371 }
372 break;
373
Michael Krufkyab8b8702008-04-22 14:46:05 -0300374 case TUNER_PHILIPS_FCV1236D:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300375 /* 0x00 -> ATSC antenna input 1 */
376 /* 0x01 -> ATSC antenna input 2 */
377 /* 0x02 -> NTSC antenna input 1 */
378 /* 0x03 -> NTSC antenna input 2 */
379 *cb &= ~0x03;
380 if (!(params->std & V4L2_STD_ATSC))
381 *cb |= 2;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300382 break;
383
384 case TUNER_MICROTUNE_4042FI5:
385 /* Set the charge pump for fast tuning */
386 *config |= TUNER_CHARGE_PUMP;
387 break;
388
389 case TUNER_PHILIPS_TUV1236D:
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300390 {
Mauro Carvalho Chehabef88f2b2009-02-13 08:24:34 -0300391 struct tuner_i2c_props i2c = priv->i2c_props;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300392 /* 0x40 -> ATSC antenna input 1 */
393 /* 0x48 -> ATSC antenna input 2 */
394 /* 0x00 -> NTSC antenna input 1 */
395 /* 0x08 -> NTSC antenna input 2 */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300396 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300397 *cb &= ~0x40;
398 if (params->std & V4L2_STD_ATSC) {
399 *cb |= 0x40;
400 buffer[1] = 0x04;
401 }
402 /* set to the correct mode (analog or digital) */
Mauro Carvalho Chehabef88f2b2009-02-13 08:24:34 -0300403 i2c.addr = 0x0a;
404 rc = tuner_i2c_xfer_send(&i2c, &buffer[0], 2);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300405 if (2 != rc)
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200406 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",
407 rc);
Mauro Carvalho Chehabef88f2b2009-02-13 08:24:34 -0300408 rc = tuner_i2c_xfer_send(&i2c, &buffer[2], 2);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300409 if (2 != rc)
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200410 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",
411 rc);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300412 break;
413 }
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300414 }
Michael Krufky65511612008-04-22 14:46:12 -0300415 if (atv_input[priv->nr])
416 simple_set_rf_input(fe, config, cb, atv_input[priv->nr]);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300417
418 return 0;
419}
420
Andy Walls5ddc9b12009-06-07 21:39:03 -0300421static int simple_set_aux_byte(struct dvb_frontend *fe, u8 config, u8 aux)
422{
423 struct tuner_simple_priv *priv = fe->tuner_priv;
424 int rc;
425 u8 buffer[2];
426
427 buffer[0] = (config & ~0x38) | 0x18;
428 buffer[1] = aux;
429
430 tuner_dbg("setting aux byte: 0x%02x 0x%02x\n", buffer[0], buffer[1]);
431
432 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
433 if (2 != rc)
434 tuner_warn("i2c i/o error: rc == %d (should be 2)\n", rc);
435
436 return rc == 2 ? 0 : rc;
437}
438
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300439static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
440 u16 div, u8 config, u8 cb)
441{
442 struct tuner_simple_priv *priv = fe->tuner_priv;
443 int rc;
444
445 switch (priv->type) {
446 case TUNER_LG_TDVS_H06XF:
Andy Walls5ddc9b12009-06-07 21:39:03 -0300447 simple_set_aux_byte(fe, config, 0x20);
448 break;
449 case TUNER_PHILIPS_FQ1216LME_MK3:
450 simple_set_aux_byte(fe, config, 0x60); /* External AGC */
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300451 break;
452 case TUNER_MICROTUNE_4042FI5:
453 {
454 /* FIXME - this may also work for other tuners */
455 unsigned long timeout = jiffies + msecs_to_jiffies(1);
456 u8 status_byte = 0;
457
458 /* Wait until the PLL locks */
459 for (;;) {
460 if (time_after(jiffies, timeout))
461 return 0;
462 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
463 &status_byte, 1);
464 if (1 != rc) {
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200465 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",
466 rc);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300467 break;
468 }
469 if (status_byte & TUNER_PLL_LOCKED)
470 break;
471 udelay(10);
472 }
473
474 /* Set the charge pump for optimized phase noise figure */
475 config &= ~TUNER_CHARGE_PUMP;
476 buffer[0] = (div>>8) & 0x7f;
477 buffer[1] = div & 0xff;
478 buffer[2] = config;
479 buffer[3] = cb;
480 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
481 buffer[0], buffer[1], buffer[2], buffer[3]);
482
483 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
484 if (4 != rc)
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200485 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",
486 rc);
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300487 break;
488 }
489 }
490
491 return 0;
492}
493
494static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
495{
496 struct tuner_simple_priv *priv = fe->tuner_priv;
497
498 switch (priv->type) {
499 case TUNER_TENA_9533_DI:
500 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200501 tuner_dbg("This tuner doesn't have FM. Most cards have a TEA5767 for FM\n");
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300502 return 0;
503 case TUNER_PHILIPS_FM1216ME_MK3:
504 case TUNER_PHILIPS_FM1236_MK3:
505 case TUNER_PHILIPS_FMD1216ME_MK3:
Darron Broad953cafc2008-10-15 14:14:30 -0300506 case TUNER_PHILIPS_FMD1216MEX_MK3:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300507 case TUNER_LG_NTSC_TAPE:
508 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehab8f2b7b72008-08-05 10:11:25 -0300509 case TUNER_TCL_MF02GIP_5N:
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300510 buffer[3] = 0x19;
511 break;
Dmitri Belimov5bc53a92009-08-26 22:06:28 -0300512 case TUNER_PHILIPS_FM1216MK5:
513 buffer[2] = 0x88;
514 buffer[3] = 0x09;
515 break;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300516 case TUNER_TNF_5335MF:
517 buffer[3] = 0x11;
518 break;
519 case TUNER_LG_PAL_FM:
520 buffer[3] = 0xa5;
521 break;
522 case TUNER_THOMSON_DTT761X:
523 buffer[3] = 0x39;
524 break;
Andy Walls5ddc9b12009-06-07 21:39:03 -0300525 case TUNER_PHILIPS_FQ1216LME_MK3:
Andy Walls095c2472010-06-12 20:20:36 -0300526 case TUNER_PHILIPS_FQ1236_MK5:
Andy Walls5ddc9b12009-06-07 21:39:03 -0300527 tuner_err("This tuner doesn't have FM\n");
528 /* Set the low band for sanity, since it covers 88-108 MHz */
529 buffer[3] = 0x01;
530 break;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300531 case TUNER_MICROTUNE_4049FM5:
532 default:
533 buffer[3] = 0xa4;
534 break;
535 }
536
537 return 0;
538}
539
540/* ---------------------------------------------------------------------- */
541
Michael Krufky4adad282007-08-27 21:59:08 -0300542static int simple_set_tv_freq(struct dvb_frontend *fe,
543 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Michael Krufky4adad282007-08-27 21:59:08 -0300545 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300546 u8 config, cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 u16 div;
Hans Verkuil27487d42006-01-15 15:04:52 -0200548 u8 buffer[4];
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300549 int rc, IFPCoff, i;
Michael Krufky476d63d2006-02-07 06:25:34 -0200550 enum param_type desired_type;
Michael Krufky4adad282007-08-27 21:59:08 -0300551 struct tuner_params *t_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Michael Krufky5f594182006-02-07 06:25:33 -0200553 /* IFPCoff = Video Intermediate Frequency - Vif:
554 940 =16*58.75 NTSC/J (Japan)
555 732 =16*45.75 M/N STD
556 704 =16*44 ATSC (at DVB code)
557 632 =16*39.50 I U.K.
558 622.4=16*38.90 B/G D/K I, L STD
559 592 =16*37.00 D China
560 590 =16.36.875 B Australia
561 543.2=16*33.95 L' STD
562 171.2=16*10.70 FM Radio (at set_radio_freq)
563 */
564
Michael Krufky4adad282007-08-27 21:59:08 -0300565 if (params->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200566 IFPCoff = 940;
567 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300568 } else if ((params->std & V4L2_STD_MN) &&
569 !(params->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200570 IFPCoff = 732;
571 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300572 } else if (params->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200573 IFPCoff = 543;
574 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200575 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200576 IFPCoff = 623;
577 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200578 }
579
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300580 t_params = simple_tuner_params(fe, desired_type);
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200581
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300582 i = simple_config_lookup(fe, t_params, &params->frequency,
583 &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300585 div = params->frequency + IFPCoff + offset;
Michael Krufky5f594182006-02-07 06:25:33 -0200586
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200587 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, Offset=%d.%02d MHz, div=%0d\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300588 params->frequency / 16, params->frequency % 16 * 100 / 16,
589 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
590 offset / 16, offset % 16 * 100 / 16, div);
Michael Krufky5f594182006-02-07 06:25:33 -0200591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* tv norm specific stuff for multi-norm tuners */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300593 simple_std_setup(fe, params, &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Michael Krufky4adad282007-08-27 21:59:08 -0300595 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200596 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200597 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 buffer[2] = (div>>8) & 0x7f;
599 buffer[3] = div & 0xff;
600 } else {
601 buffer[0] = (div>>8) & 0x7f;
602 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200603 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200604 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Michael Krufky6b1dde92007-08-11 15:42:12 -0300606 priv->last_div = div;
Michael Krufky4adad282007-08-27 21:59:08 -0300607 if (t_params->has_tda9887) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300608 struct v4l2_priv_tun_config tda9887_cfg;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300609 int tda_config = 0;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300610 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
611 V4L2_STD_SECAM_LC)) &&
612 !(params->std & ~(V4L2_STD_SECAM_L |
613 V4L2_STD_SECAM_LC));
Hans Verkuilba8fc392006-06-25 15:34:39 -0300614
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300615 tda9887_cfg.tuner = TUNER_TDA9887;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300616 tda9887_cfg.priv = &tda_config;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300617
Michael Krufky4adad282007-08-27 21:59:08 -0300618 if (params->std == V4L2_STD_SECAM_LC) {
619 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300620 tda_config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300621 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300622 tda_config |= TDA9887_PORT2_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300623 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300624 if (t_params->port1_active)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300625 tda_config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300626 if (t_params->port2_active)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300627 tda_config |= TDA9887_PORT2_ACTIVE;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300628 }
Michael Krufky4adad282007-08-27 21:59:08 -0300629 if (t_params->intercarrier_mode)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300630 tda_config |= TDA9887_INTERCARRIER;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300631 if (is_secam_l) {
Michael Krufky4adad282007-08-27 21:59:08 -0300632 if (i == 0 && t_params->default_top_secam_low)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300633 tda_config |= TDA9887_TOP(t_params->default_top_secam_low);
Michael Krufky4adad282007-08-27 21:59:08 -0300634 else if (i == 1 && t_params->default_top_secam_mid)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300635 tda_config |= TDA9887_TOP(t_params->default_top_secam_mid);
Michael Krufky4adad282007-08-27 21:59:08 -0300636 else if (t_params->default_top_secam_high)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300637 tda_config |= TDA9887_TOP(t_params->default_top_secam_high);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300638 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300639 if (i == 0 && t_params->default_top_low)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300640 tda_config |= TDA9887_TOP(t_params->default_top_low);
Michael Krufky4adad282007-08-27 21:59:08 -0300641 else if (i == 1 && t_params->default_top_mid)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300642 tda_config |= TDA9887_TOP(t_params->default_top_mid);
Michael Krufky4adad282007-08-27 21:59:08 -0300643 else if (t_params->default_top_high)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300644 tda_config |= TDA9887_TOP(t_params->default_top_high);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300645 }
Michael Krufky4adad282007-08-27 21:59:08 -0300646 if (t_params->default_pll_gating_18)
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300647 tda_config |= TDA9887_GATING_18;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300648 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
649 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300652 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300654 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
655 if (4 != rc)
656 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300658 simple_post_tune(fe, &buffer[0], div, config, cb);
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300659
Michael Krufky4adad282007-08-27 21:59:08 -0300660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Michael Krufky4adad282007-08-27 21:59:08 -0300663static int simple_set_radio_freq(struct dvb_frontend *fe,
664 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 struct tunertype *tun;
Michael Krufky4adad282007-08-27 21:59:08 -0300667 struct tuner_simple_priv *priv = fe->tuner_priv;
Hans Verkuil27487d42006-01-15 15:04:52 -0200668 u8 buffer[4];
669 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200670 int rc, j;
Michael Krufky4adad282007-08-27 21:59:08 -0300671 struct tuner_params *t_params;
672 unsigned int freq = params->frequency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Michael Krufky4adad282007-08-27 21:59:08 -0300674 tun = priv->tun;
Michael Krufky476d63d2006-02-07 06:25:34 -0200675
Trent Piepho5e082f12007-08-03 18:32:38 -0300676 for (j = tun->count-1; j > 0; j--)
677 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
678 break;
Michael Krufky4adad282007-08-27 21:59:08 -0300679 /* default t_params (j=0) will be used if desired type wasn't found */
680 t_params = &tun->params[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Trent Piepho5e082f12007-08-03 18:32:38 -0300682 /* Select Radio 1st IF used */
Michael Krufky4adad282007-08-27 21:59:08 -0300683 switch (t_params->radio_if) {
Trent Piepho5e082f12007-08-03 18:32:38 -0300684 case 0: /* 10.7 MHz */
685 freq += (unsigned int)(10.7*16000);
686 break;
687 case 1: /* 33.3 MHz */
688 freq += (unsigned int)(33.3*16000);
689 break;
690 case 2: /* 41.3 MHz */
691 freq += (unsigned int)(41.3*16000);
692 break;
693 default:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300694 tuner_warn("Unsupported radio_if value %d\n",
695 t_params->radio_if);
Michael Krufky4adad282007-08-27 21:59:08 -0300696 return 0;
Trent Piepho5e082f12007-08-03 18:32:38 -0300697 }
698
Michael Krufky4adad282007-08-27 21:59:08 -0300699 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
Trent Piepho5e082f12007-08-03 18:32:38 -0300700 TUNER_RATIO_SELECT_50; /* 50 kHz step */
701
Dmitri Belimov436ae132009-05-24 22:22:41 -0300702 /* Bandswitch byte */
703 simple_radio_bandswitch(fe, &buffer[0]);
704
Trent Piepho5e082f12007-08-03 18:32:38 -0300705 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
706 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
707 freq * (1/800) */
708 div = (freq + 400) / 800;
709
Michael Krufky4adad282007-08-27 21:59:08 -0300710 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200711 buffer[0] = buffer[2];
712 buffer[1] = buffer[3];
713 buffer[2] = (div>>8) & 0x7f;
714 buffer[3] = div & 0xff;
715 } else {
716 buffer[0] = (div>>8) & 0x7f;
717 buffer[1] = div & 0xff;
718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300721 buffer[0], buffer[1], buffer[2], buffer[3]);
Michael Krufky6b1dde92007-08-11 15:42:12 -0300722 priv->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Michael Krufky4adad282007-08-27 21:59:08 -0300724 if (t_params->has_tda9887) {
Hans Verkuilba8fc392006-06-25 15:34:39 -0300725 int config = 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300726 struct v4l2_priv_tun_config tda9887_cfg;
727
728 tda9887_cfg.tuner = TUNER_TDA9887;
729 tda9887_cfg.priv = &config;
730
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300731 if (t_params->port1_active &&
732 !t_params->port1_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300733 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300734 if (t_params->port2_active &&
735 !t_params->port2_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300736 config |= TDA9887_PORT2_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300737 if (t_params->intercarrier_mode)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300738 config |= TDA9887_INTERCARRIER;
Michael Krufky4adad282007-08-27 21:59:08 -0300739/* if (t_params->port1_set_for_fm_mono)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300740 config &= ~TDA9887_PORT1_ACTIVE;*/
Michael Krufky4adad282007-08-27 21:59:08 -0300741 if (t_params->fm_gain_normal)
Mauro Carvalho Chehab483deb02006-12-04 08:31:38 -0300742 config |= TDA9887_GAIN_NORMAL;
Michael Krufky4adad282007-08-27 21:59:08 -0300743 if (t_params->radio_if == 2)
Trent Piepho5e082f12007-08-03 18:32:38 -0300744 config |= TDA9887_RIF_41_3;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300745 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300746 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300747 }
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300748 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
749 if (4 != rc)
750 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Michael Krufky4adad282007-08-27 21:59:08 -0300751
Dmitri Belimovfabade52009-04-23 01:40:46 -0300752 /* Write AUX byte */
753 switch (priv->type) {
754 case TUNER_PHILIPS_FM1216ME_MK3:
755 buffer[2] = 0x98;
756 buffer[3] = 0x20; /* set TOP AGC */
757 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
758 if (4 != rc)
759 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
760 break;
761 }
762
Michael Krufky4adad282007-08-27 21:59:08 -0300763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Michael Krufky4adad282007-08-27 21:59:08 -0300766static int simple_set_params(struct dvb_frontend *fe,
767 struct analog_parameters *params)
Michael Krufky6b1dde92007-08-11 15:42:12 -0300768{
Michael Krufky4adad282007-08-27 21:59:08 -0300769 struct tuner_simple_priv *priv = fe->tuner_priv;
770 int ret = -EINVAL;
771
Michael Krufkya81df362008-04-22 14:45:52 -0300772 if (priv->i2c_props.adap == NULL)
773 return -EINVAL;
774
Michael Krufky4adad282007-08-27 21:59:08 -0300775 switch (params->mode) {
776 case V4L2_TUNER_RADIO:
Hans Verkuildfc2e122013-04-06 04:41:29 -0300777 priv->radio_mode = true;
Michael Krufky4adad282007-08-27 21:59:08 -0300778 ret = simple_set_radio_freq(fe, params);
779 priv->frequency = params->frequency * 125 / 2;
780 break;
781 case V4L2_TUNER_ANALOG_TV:
782 case V4L2_TUNER_DIGITAL_TV:
Hans Verkuildfc2e122013-04-06 04:41:29 -0300783 priv->radio_mode = false;
Michael Krufky4adad282007-08-27 21:59:08 -0300784 ret = simple_set_tv_freq(fe, params);
785 priv->frequency = params->frequency * 62500;
786 break;
787 }
Michael Krufky62325492008-04-22 14:45:52 -0300788 priv->bandwidth = 0;
Michael Krufky4adad282007-08-27 21:59:08 -0300789
790 return ret;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300791}
792
Michael Krufky23a88102008-04-22 14:45:53 -0300793static void simple_set_dvb(struct dvb_frontend *fe, u8 *buf,
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300794 const u32 delsys,
795 const u32 frequency,
796 const u32 bandwidth)
Michael Krufky23a88102008-04-22 14:45:53 -0300797{
798 struct tuner_simple_priv *priv = fe->tuner_priv;
799
800 switch (priv->type) {
801 case TUNER_PHILIPS_FMD1216ME_MK3:
Darron Broad953cafc2008-10-15 14:14:30 -0300802 case TUNER_PHILIPS_FMD1216MEX_MK3:
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300803 if (bandwidth == 8000000 &&
804 frequency >= 158870000)
Michael Krufky23a88102008-04-22 14:45:53 -0300805 buf[3] |= 0x08;
806 break;
Michael Krufky0e5d3832008-04-22 14:45:56 -0300807 case TUNER_PHILIPS_TD1316:
808 /* determine band */
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300809 buf[3] |= (frequency < 161000000) ? 1 :
810 (frequency < 444000000) ? 2 : 4;
Michael Krufky0e5d3832008-04-22 14:45:56 -0300811
812 /* setup PLL filter */
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300813 if (bandwidth == 8000000)
Michael Krufky0e5d3832008-04-22 14:45:56 -0300814 buf[3] |= 1 << 3;
815 break;
Michael Krufky02f5f442008-04-22 14:45:55 -0300816 case TUNER_PHILIPS_TUV1236D:
Michael Krufkyab8b8702008-04-22 14:46:05 -0300817 case TUNER_PHILIPS_FCV1236D:
Michael Krufky02f5f442008-04-22 14:45:55 -0300818 {
819 unsigned int new_rf;
820
Michael Krufky65511612008-04-22 14:46:12 -0300821 if (dtv_input[priv->nr])
822 new_rf = dtv_input[priv->nr];
823 else
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300824 switch (delsys) {
825 case SYS_DVBC_ANNEX_B:
Michael Krufky65511612008-04-22 14:46:12 -0300826 new_rf = 1;
827 break;
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300828 case SYS_ATSC:
Michael Krufky65511612008-04-22 14:46:12 -0300829 default:
830 new_rf = 0;
831 break;
832 }
Michael Krufky02f5f442008-04-22 14:45:55 -0300833 simple_set_rf_input(fe, &buf[2], &buf[3], new_rf);
834 break;
835 }
Michael Krufky23a88102008-04-22 14:45:53 -0300836 default:
837 break;
838 }
839}
840
Michael Krufkya2a7f842008-04-22 14:45:56 -0300841static u32 simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300842 const u32 delsys,
843 const u32 freq,
844 const u32 bw)
Michael Krufky62325492008-04-22 14:45:52 -0300845{
Michael Krufkya2a7f842008-04-22 14:45:56 -0300846 /* This function returns the tuned frequency on success, 0 on error */
Michael Krufky62325492008-04-22 14:45:52 -0300847 struct tuner_simple_priv *priv = fe->tuner_priv;
848 struct tunertype *tun = priv->tun;
Gustavo A. R. Silva6ad33de2017-07-05 14:23:55 -0400849 struct tuner_params *t_params;
Michael Krufky62325492008-04-22 14:45:52 -0300850 u8 config, cb;
851 u32 div;
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300852 int ret;
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300853 u32 frequency = freq / 62500;
Michael Krufky62325492008-04-22 14:45:52 -0300854
Michael Krufky6b550092009-01-02 15:55:29 -0300855 if (!tun->stepsize) {
856 /* tuner-core was loaded before the digital tuner was
857 * configured and somehow picked the wrong tuner type */
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -0200858 tuner_err("attempt to treat tuner %d (%s) as digital tuner without stepsize defined.\n",
Michael Krufky6b550092009-01-02 15:55:29 -0300859 priv->type, priv->tun->name);
860 return 0; /* failure */
861 }
862
Michael Krufky62325492008-04-22 14:45:52 -0300863 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
864 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
865 if (ret < 0)
Michael Krufkya2a7f842008-04-22 14:45:56 -0300866 return 0; /* failure */
Michael Krufky62325492008-04-22 14:45:52 -0300867
868 div = ((frequency + t_params->iffreq) * 62500 + offset +
869 tun->stepsize/2) / tun->stepsize;
870
871 buf[0] = div >> 8;
872 buf[1] = div & 0xff;
873 buf[2] = config;
874 buf[3] = cb;
875
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300876 simple_set_dvb(fe, buf, delsys, freq, bw);
Michael Krufky23a88102008-04-22 14:45:53 -0300877
Michael Krufky62325492008-04-22 14:45:52 -0300878 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
879 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
880
881 /* calculate the frequency we set it to */
882 return (div * tun->stepsize) - t_params->iffreq;
883}
884
885static int simple_dvb_calc_regs(struct dvb_frontend *fe,
Michael Krufky62325492008-04-22 14:45:52 -0300886 u8 *buf, int buf_len)
887{
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300888 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
889 u32 delsys = c->delivery_system;
890 u32 bw = c->bandwidth_hz;
Michael Krufky62325492008-04-22 14:45:52 -0300891 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufky62325492008-04-22 14:45:52 -0300892 u32 frequency;
893
894 if (buf_len < 5)
895 return -EINVAL;
896
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300897 frequency = simple_dvb_configure(fe, buf+1, delsys, c->frequency, bw);
Michael Krufkya2a7f842008-04-22 14:45:56 -0300898 if (frequency == 0)
899 return -EINVAL;
Michael Krufky62325492008-04-22 14:45:52 -0300900
901 buf[0] = priv->i2c_props.addr;
902
903 priv->frequency = frequency;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300904 priv->bandwidth = c->bandwidth_hz;
Michael Krufky62325492008-04-22 14:45:52 -0300905
906 return 5;
907}
908
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300909static int simple_dvb_set_params(struct dvb_frontend *fe)
Michael Krufky62325492008-04-22 14:45:52 -0300910{
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300911 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
912 u32 delsys = c->delivery_system;
913 u32 bw = c->bandwidth_hz;
914 u32 freq = c->frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300915 struct tuner_simple_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300916 u32 frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300917 u32 prev_freq, prev_bw;
918 int ret;
919 u8 buf[5];
920
921 if (priv->i2c_props.adap == NULL)
922 return -EINVAL;
923
924 prev_freq = priv->frequency;
925 prev_bw = priv->bandwidth;
926
Mauro Carvalho Chehab9481f402011-12-21 09:38:52 -0300927 frequency = simple_dvb_configure(fe, buf+1, delsys, freq, bw);
928 if (frequency == 0)
929 return -EINVAL;
930
931 buf[0] = priv->i2c_props.addr;
932
933 priv->frequency = frequency;
934 priv->bandwidth = bw;
Michael Krufky62325492008-04-22 14:45:52 -0300935
936 /* put analog demod in standby when tuning digital */
937 if (fe->ops.analog_ops.standby)
938 fe->ops.analog_ops.standby(fe);
939
940 if (fe->ops.i2c_gate_ctrl)
941 fe->ops.i2c_gate_ctrl(fe, 1);
942
943 /* buf[0] contains the i2c address, but *
944 * we already have it in i2c_props.addr */
945 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
946 if (ret != 4)
947 goto fail;
948
949 return 0;
950fail:
951 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
952 priv->frequency = prev_freq;
953 priv->bandwidth = prev_bw;
954
955 return ret;
956}
Michael Krufky4adad282007-08-27 21:59:08 -0300957
Michael Krufky6f4a5722008-04-22 14:45:53 -0300958static int simple_init(struct dvb_frontend *fe)
959{
960 struct tuner_simple_priv *priv = fe->tuner_priv;
961
962 if (priv->i2c_props.adap == NULL)
963 return -EINVAL;
964
965 if (priv->tun->initdata) {
966 int ret;
967
968 if (fe->ops.i2c_gate_ctrl)
969 fe->ops.i2c_gate_ctrl(fe, 1);
970
971 ret = tuner_i2c_xfer_send(&priv->i2c_props,
972 priv->tun->initdata + 1,
973 priv->tun->initdata[0]);
974 if (ret != priv->tun->initdata[0])
975 return ret;
976 }
977
978 return 0;
979}
980
981static int simple_sleep(struct dvb_frontend *fe)
982{
983 struct tuner_simple_priv *priv = fe->tuner_priv;
984
985 if (priv->i2c_props.adap == NULL)
986 return -EINVAL;
987
988 if (priv->tun->sleepdata) {
989 int ret;
990
991 if (fe->ops.i2c_gate_ctrl)
992 fe->ops.i2c_gate_ctrl(fe, 1);
993
994 ret = tuner_i2c_xfer_send(&priv->i2c_props,
995 priv->tun->sleepdata + 1,
996 priv->tun->sleepdata[0]);
997 if (ret != priv->tun->sleepdata[0])
998 return ret;
999 }
1000
1001 return 0;
1002}
1003
Max Kellermann194ced72016-08-09 18:32:31 -03001004static void simple_release(struct dvb_frontend *fe)
Michael Krufky4adad282007-08-27 21:59:08 -03001005{
Michael Krufky62325492008-04-22 14:45:52 -03001006 struct tuner_simple_priv *priv = fe->tuner_priv;
1007
1008 mutex_lock(&tuner_simple_list_mutex);
1009
1010 if (priv)
1011 hybrid_tuner_release_state(priv);
1012
1013 mutex_unlock(&tuner_simple_list_mutex);
1014
Michael Krufky4adad282007-08-27 21:59:08 -03001015 fe->tuner_priv = NULL;
Michael Krufky4adad282007-08-27 21:59:08 -03001016}
1017
1018static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
1019{
1020 struct tuner_simple_priv *priv = fe->tuner_priv;
1021 *frequency = priv->frequency;
1022 return 0;
1023}
1024
Michael Krufky62325492008-04-22 14:45:52 -03001025static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
1026{
1027 struct tuner_simple_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehabc6f56e72011-12-26 20:02:28 -03001028 *bandwidth = priv->bandwidth;
Michael Krufky62325492008-04-22 14:45:52 -03001029 return 0;
1030}
1031
Julia Lawall96105142016-09-11 11:44:13 -03001032static const struct dvb_tuner_ops simple_tuner_ops = {
Michael Krufky6f4a5722008-04-22 14:45:53 -03001033 .init = simple_init,
1034 .sleep = simple_sleep,
Michael Krufky4adad282007-08-27 21:59:08 -03001035 .set_analog_params = simple_set_params,
Michael Krufky62325492008-04-22 14:45:52 -03001036 .set_params = simple_dvb_set_params,
1037 .calc_regs = simple_dvb_calc_regs,
Michael Krufky735f0b92007-08-31 16:39:39 -03001038 .release = simple_release,
1039 .get_frequency = simple_get_frequency,
Michael Krufky62325492008-04-22 14:45:52 -03001040 .get_bandwidth = simple_get_bandwidth,
Michael Krufky735f0b92007-08-31 16:39:39 -03001041 .get_status = simple_get_status,
1042 .get_rf_strength = simple_get_rf_strength,
Michael Krufky5d807c92007-06-06 16:17:57 -03001043};
1044
Michael Krufky4adad282007-08-27 21:59:08 -03001045struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
1046 struct i2c_adapter *i2c_adap,
1047 u8 i2c_addr,
Michael Krufky060a5bd2008-04-22 14:41:51 -03001048 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
Michael Krufky6b1dde92007-08-11 15:42:12 -03001050 struct tuner_simple_priv *priv = NULL;
Michael Krufky62325492008-04-22 14:45:52 -03001051 int instance;
Michael Krufky6b1dde92007-08-11 15:42:12 -03001052
Michael Krufky65e8d292008-04-22 14:41:50 -03001053 if (type >= tuner_count) {
1054 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001055 __func__, type, tuner_count-1);
Michael Krufky65e8d292008-04-22 14:41:50 -03001056 return NULL;
1057 }
1058
Michael Krufkye8279312008-04-22 14:46:05 -03001059 /* If i2c_adap is set, check that the tuner is at the correct address.
1060 * Otherwise, if i2c_adap is NULL, the tuner will be programmed directly
1061 * by the digital demod via calc_regs.
1062 */
1063 if (i2c_adap != NULL) {
1064 u8 b[1];
1065 struct i2c_msg msg = {
1066 .addr = i2c_addr, .flags = I2C_M_RD,
1067 .buf = b, .len = 1,
1068 };
1069
1070 if (fe->ops.i2c_gate_ctrl)
1071 fe->ops.i2c_gate_ctrl(fe, 1);
1072
1073 if (1 != i2c_transfer(i2c_adap, &msg, 1))
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001074 printk(KERN_WARNING "tuner-simple %d-%04x: unable to probe %s, proceeding anyway.",
Andy Walls3b4a9712008-05-26 01:31:17 -03001075 i2c_adapter_id(i2c_adap), i2c_addr,
1076 tuners[type].name);
Michael Krufkye8279312008-04-22 14:46:05 -03001077
1078 if (fe->ops.i2c_gate_ctrl)
1079 fe->ops.i2c_gate_ctrl(fe, 0);
1080 }
1081
Michael Krufky62325492008-04-22 14:45:52 -03001082 mutex_lock(&tuner_simple_list_mutex);
1083
1084 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
1085 hybrid_tuner_instance_list,
1086 i2c_adap, i2c_addr,
1087 "tuner-simple");
1088 switch (instance) {
1089 case 0:
1090 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufky4adad282007-08-27 21:59:08 -03001091 return NULL;
Michael Krufky62325492008-04-22 14:45:52 -03001092 case 1:
1093 fe->tuner_priv = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Michael Krufky62325492008-04-22 14:45:52 -03001095 priv->type = type;
1096 priv->tun = &tuners[type];
Michael Krufky65511612008-04-22 14:46:12 -03001097 priv->nr = simple_devcount++;
Michael Krufky62325492008-04-22 14:45:52 -03001098 break;
1099 default:
1100 fe->tuner_priv = priv;
1101 break;
1102 }
Michael Krufky27566652008-04-22 14:41:53 -03001103
Michael Krufky62325492008-04-22 14:45:52 -03001104 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufkydb8a6952007-08-21 01:24:42 -03001105
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001106 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
1107 sizeof(struct dvb_tuner_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Mauro Carvalho Chehab0b82c5d2008-12-31 09:34:18 -03001109 if (type != priv->type)
1110 tuner_warn("couldn't set type to %d. Using %d (%s) instead\n",
1111 type, priv->type, priv->tun->name);
1112 else
1113 tuner_info("type set to %d (%s)\n",
1114 priv->type, priv->tun->name);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001115
Michael Krufky65511612008-04-22 14:46:12 -03001116 if ((debug) || ((atv_input[priv->nr] > 0) ||
1117 (dtv_input[priv->nr] > 0))) {
1118 if (0 == atv_input[priv->nr])
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001119 tuner_info("tuner %d atv rf input will be autoselected\n",
1120 priv->nr);
Michael Krufky65511612008-04-22 14:46:12 -03001121 else
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001122 tuner_info("tuner %d atv rf input will be set to input %d (insmod option)\n",
Michael Krufky65511612008-04-22 14:46:12 -03001123 priv->nr, atv_input[priv->nr]);
1124 if (0 == dtv_input[priv->nr])
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001125 tuner_info("tuner %d dtv rf input will be autoselected\n",
1126 priv->nr);
Michael Krufky65511612008-04-22 14:46:12 -03001127 else
Mauro Carvalho Chehab8ca2e922016-10-18 17:44:26 -02001128 tuner_info("tuner %d dtv rf input will be set to input %d (insmod option)\n",
Michael Krufky65511612008-04-22 14:46:12 -03001129 priv->nr, dtv_input[priv->nr]);
1130 }
1131
Michael Krufky060a5bd2008-04-22 14:41:51 -03001132 strlcpy(fe->ops.tuner_ops.info.name, priv->tun->name,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001133 sizeof(fe->ops.tuner_ops.info.name));
Michael Krufky4adad282007-08-27 21:59:08 -03001134
1135 return fe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
Michael Krufky4adad282007-08-27 21:59:08 -03001137EXPORT_SYMBOL_GPL(simple_tuner_attach);
1138
1139MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
1140MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1141MODULE_LICENSE("GPL");