V4L/DVB (8757): v4l-dvb: fix a bunch of sparse warnings
[deliverable/linux.git] / drivers / media / common / tuners / tuner-simple.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * i2c tv tuner chip device driver
3 * controls all those simple 4-control-bytes style tuners.
4adad287
MK
4 *
5 * This "tuner-simple" module was split apart from the original "tuner" module.
1da177e4
LT
6 */
7#include <linux/delay.h>
8#include <linux/i2c.h>
f894dfd7 9#include <linux/videodev2.h>
1da177e4 10#include <media/tuner.h>
ba8fc399 11#include <media/v4l2-common.h>
8218b0b2 12#include <media/tuner-types.h>
4adad287
MK
13#include "tuner-i2c.h"
14#include "tuner-simple.h"
15
9ba0a3c0 16static int debug;
4adad287
MK
17module_param(debug, int, 0644);
18MODULE_PARM_DESC(debug, "enable verbose debug messages");
19
65511611
MK
20#define TUNER_SIMPLE_MAX 64
21static unsigned int simple_devcount;
22
9ba0a3c0 23static int offset;
4d98816b 24module_param(offset, int, 0664);
9ba0a3c0 25MODULE_PARM_DESC(offset, "Allows to specify an offset for tuner");
5c07db0c 26
65511611
MK
27static 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
1da177e4
LT
36/* ---------------------------------------------------------------------- */
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
9ba0a3c0
MK
49#define TEMIC_SET_PAL_L 0x0a /* SECAM ? */
50#define TEMIC_SET_PAL_L2 0x0b /* change IF ! */
1da177e4
LT
51#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 */
c57032de
MCC
77#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' */
1da177e4 80
f7ce3cc6
MCC
81/* 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
1da177e4 102
62325497
MK
103static DEFINE_MUTEX(tuner_simple_list_mutex);
104static LIST_HEAD(hybrid_tuner_instance_list);
105
6b1dde90 106struct tuner_simple_priv {
65511611 107 unsigned int nr;
6b1dde90 108 u16 last_div;
62325497 109
db8a6956 110 struct tuner_i2c_props i2c_props;
62325497 111 struct list_head hybrid_tuner_instance_list;
4adad287
MK
112
113 unsigned int type;
114 struct tunertype *tun;
115
116 u32 frequency;
62325497 117 u32 bandwidth;
6b1dde90
MK
118};
119
1da177e4
LT
120/* ---------------------------------------------------------------------- */
121
735f0b9a 122static int tuner_read_status(struct dvb_frontend *fe)
1da177e4 123{
4adad287 124 struct tuner_simple_priv *priv = fe->tuner_priv;
1da177e4
LT
125 unsigned char byte;
126
9ba0a3c0 127 if (1 != tuner_i2c_xfer_recv(&priv->i2c_props, &byte, 1))
1da177e4 128 return 0;
56fc08ca 129
1da177e4
LT
130 return byte;
131}
132
735f0b9a 133static inline int tuner_signal(const int status)
1da177e4 134{
735f0b9a 135 return (status & TUNER_SIGNAL) << 13;
1da177e4
LT
136}
137
735f0b9a 138static inline int tuner_stereo(const int type, const int status)
1da177e4 139{
735f0b9a 140 switch (type) {
9ba0a3c0
MK
141 case TUNER_PHILIPS_FM1216ME_MK3:
142 case TUNER_PHILIPS_FM1236_MK3:
143 case TUNER_PHILIPS_FM1256_IH3:
144 case TUNER_LG_NTSC_TAPE:
145 return ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
146 default:
147 return status & TUNER_STEREO;
56fc08ca 148 }
735f0b9a 149}
56fc08ca 150
735f0b9a
MK
151static inline int tuner_islocked(const int status)
152{
153 return (status & TUNER_FL);
154}
155
156static inline int tuner_afcstatus(const int status)
157{
158 return (status & TUNER_AFC) - 2;
1da177e4
LT
159}
160
1da177e4 161
4adad287
MK
162static int simple_get_status(struct dvb_frontend *fe, u32 *status)
163{
164 struct tuner_simple_priv *priv = fe->tuner_priv;
a81df363
MK
165 int tuner_status;
166
167 if (priv->i2c_props.adap == NULL)
168 return -EINVAL;
169
170 tuner_status = tuner_read_status(fe);
4adad287
MK
171
172 *status = 0;
173
735f0b9a 174 if (tuner_islocked(tuner_status))
4adad287 175 *status = TUNER_STATUS_LOCKED;
735f0b9a 176 if (tuner_stereo(priv->type, tuner_status))
4adad287
MK
177 *status |= TUNER_STATUS_STEREO;
178
735f0b9a
MK
179 tuner_dbg("AFC Status: %d\n", tuner_afcstatus(tuner_status));
180
181 return 0;
182}
183
184static int simple_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
185{
186 struct tuner_simple_priv *priv = fe->tuner_priv;
a81df363
MK
187 int signal;
188
189 if (priv->i2c_props.adap == NULL)
190 return -EINVAL;
191
192 signal = tuner_signal(tuner_read_status(fe));
735f0b9a
MK
193
194 *strength = signal;
195
196 tuner_dbg("Signal strength: %d\n", signal);
4adad287
MK
197
198 return 0;
199}
200
1da177e4
LT
201/* ---------------------------------------------------------------------- */
202
be71f7dc
MK
203static inline char *tuner_param_name(enum param_type type)
204{
205 char *name;
206
207 switch (type) {
208 case TUNER_PARAM_TYPE_RADIO:
209 name = "radio";
210 break;
211 case TUNER_PARAM_TYPE_PAL:
212 name = "pal";
213 break;
214 case TUNER_PARAM_TYPE_SECAM:
215 name = "secam";
216 break;
217 case TUNER_PARAM_TYPE_NTSC:
218 name = "ntsc";
219 break;
62325497
MK
220 case TUNER_PARAM_TYPE_DIGITAL:
221 name = "digital";
222 break;
be71f7dc
MK
223 default:
224 name = "unknown";
225 break;
226 }
227 return name;
228}
229
230static struct tuner_params *simple_tuner_params(struct dvb_frontend *fe,
231 enum param_type desired_type)
232{
233 struct tuner_simple_priv *priv = fe->tuner_priv;
234 struct tunertype *tun = priv->tun;
235 int i;
236
237 for (i = 0; i < tun->count; i++)
238 if (desired_type == tun->params[i].type)
239 break;
240
241 /* use default tuner params if desired_type not available */
242 if (i == tun->count) {
243 tuner_dbg("desired params (%s) undefined for tuner %d\n",
244 tuner_param_name(desired_type), priv->type);
245 i = 0;
246 }
247
248 tuner_dbg("using tuner params #%d (%s)\n", i,
249 tuner_param_name(tun->params[i].type));
250
251 return &tun->params[i];
252}
253
254static int simple_config_lookup(struct dvb_frontend *fe,
255 struct tuner_params *t_params,
c6eb8eaf 256 unsigned *frequency, u8 *config, u8 *cb)
be71f7dc
MK
257{
258 struct tuner_simple_priv *priv = fe->tuner_priv;
259 int i;
260
261 for (i = 0; i < t_params->count; i++) {
262 if (*frequency > t_params->ranges[i].limit)
263 continue;
264 break;
265 }
266 if (i == t_params->count) {
267 tuner_dbg("frequency out of range (%d > %d)\n",
268 *frequency, t_params->ranges[i - 1].limit);
269 *frequency = t_params->ranges[--i].limit;
270 }
271 *config = t_params->ranges[i].config;
272 *cb = t_params->ranges[i].cb;
273
7f8447d1
MK
274 tuner_dbg("freq = %d.%02d (%d), range = %d, "
275 "config = 0x%02x, cb = 0x%02x\n",
276 *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
277 i, *config, *cb);
be71f7dc
MK
278
279 return i;
280}
281
282/* ---------------------------------------------------------------------- */
283
02f5f444
MK
284static void simple_set_rf_input(struct dvb_frontend *fe,
285 u8 *config, u8 *cb, unsigned int rf)
286{
287 struct tuner_simple_priv *priv = fe->tuner_priv;
288
289 switch (priv->type) {
290 case TUNER_PHILIPS_TUV1236D:
291 switch (rf) {
292 case 1:
293 *cb |= 0x08;
294 break;
295 default:
296 *cb &= ~0x08;
297 break;
298 }
299 break;
ab8b870e 300 case TUNER_PHILIPS_FCV1236D:
02f5f444
MK
301 switch (rf) {
302 case 1:
303 *cb |= 0x01;
304 break;
305 default:
306 *cb &= ~0x01;
307 break;
308 }
309 break;
310 default:
311 break;
312 }
313}
314
c7a9f3aa
MK
315static int simple_std_setup(struct dvb_frontend *fe,
316 struct analog_parameters *params,
f13613ac 317 u8 *config, u8 *cb)
1da177e4 318{
4adad287 319 struct tuner_simple_priv *priv = fe->tuner_priv;
c7a9f3aa
MK
320 u8 tuneraddr;
321 int rc;
5f594187 322
1da177e4 323 /* tv norm specific stuff for multi-norm tuners */
4adad287 324 switch (priv->type) {
9ba0a3c0 325 case TUNER_PHILIPS_SECAM: /* FI1216MF */
1da177e4
LT
326 /* 0x01 -> ??? no change ??? */
327 /* 0x02 -> PAL BDGHI / SECAM L */
328 /* 0x04 -> ??? PAL others / SECAM others ??? */
c7a9f3aa 329 *cb &= ~0x03;
9ba0a3c0
MK
330 if (params->std & V4L2_STD_SECAM_L)
331 /* also valid for V4L2_STD_SECAM */
c7a9f3aa 332 *cb |= PHILIPS_MF_SET_STD_L;
4adad287 333 else if (params->std & V4L2_STD_SECAM_LC)
c7a9f3aa 334 *cb |= PHILIPS_MF_SET_STD_LC;
82c01d3d 335 else /* V4L2_STD_B|V4L2_STD_GH */
c7a9f3aa 336 *cb |= PHILIPS_MF_SET_STD_BG;
1da177e4
LT
337 break;
338
339 case TUNER_TEMIC_4046FM5:
c7a9f3aa 340 *cb &= ~0x0f;
1da177e4 341
4adad287 342 if (params->std & V4L2_STD_PAL_BG) {
c7a9f3aa 343 *cb |= TEMIC_SET_PAL_BG;
1da177e4 344
4adad287 345 } else if (params->std & V4L2_STD_PAL_I) {
c7a9f3aa 346 *cb |= TEMIC_SET_PAL_I;
1da177e4 347
4adad287 348 } else if (params->std & V4L2_STD_PAL_DK) {
c7a9f3aa 349 *cb |= TEMIC_SET_PAL_DK;
1da177e4 350
4adad287 351 } else if (params->std & V4L2_STD_SECAM_L) {
c7a9f3aa 352 *cb |= TEMIC_SET_PAL_L;
1da177e4
LT
353
354 }
355 break;
356
357 case TUNER_PHILIPS_FQ1216ME:
c7a9f3aa 358 *cb &= ~0x0f;
1da177e4 359
4adad287 360 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
c7a9f3aa 361 *cb |= PHILIPS_SET_PAL_BGDK;
1da177e4 362
4adad287 363 } else if (params->std & V4L2_STD_PAL_I) {
c7a9f3aa 364 *cb |= PHILIPS_SET_PAL_I;
1da177e4 365
4adad287 366 } else if (params->std & V4L2_STD_SECAM_L) {
c7a9f3aa 367 *cb |= PHILIPS_SET_PAL_L;
1da177e4
LT
368
369 }
370 break;
371
ab8b870e 372 case TUNER_PHILIPS_FCV1236D:
1da177e4
LT
373 /* 0x00 -> ATSC antenna input 1 */
374 /* 0x01 -> ATSC antenna input 2 */
375 /* 0x02 -> NTSC antenna input 1 */
376 /* 0x03 -> NTSC antenna input 2 */
c7a9f3aa 377 *cb &= ~0x03;
4adad287 378 if (!(params->std & V4L2_STD_ATSC))
c7a9f3aa 379 *cb |= 2;
1da177e4
LT
380 break;
381
382 case TUNER_MICROTUNE_4042FI5:
383 /* Set the charge pump for fast tuning */
c7a9f3aa 384 *config |= TUNER_CHARGE_PUMP;
1da177e4 385 break;
e976f937
KL
386
387 case TUNER_PHILIPS_TUV1236D:
f13613ac 388 {
e976f937
KL
389 /* 0x40 -> ATSC antenna input 1 */
390 /* 0x48 -> ATSC antenna input 2 */
391 /* 0x00 -> NTSC antenna input 1 */
392 /* 0x08 -> NTSC antenna input 2 */
f13613ac 393 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
c7a9f3aa 394 *cb &= ~0x40;
4adad287 395 if (params->std & V4L2_STD_ATSC) {
c7a9f3aa 396 *cb |= 0x40;
fde6d31e
KL
397 buffer[1] = 0x04;
398 }
399 /* set to the correct mode (analog or digital) */
db8a6956
MK
400 tuneraddr = priv->i2c_props.addr;
401 priv->i2c_props.addr = 0x0a;
9ba0a3c0
MK
402 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[0], 2);
403 if (2 != rc)
404 tuner_warn("i2c i/o error: rc == %d "
405 "(should be 2)\n", rc);
406 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[2], 2);
407 if (2 != rc)
408 tuner_warn("i2c i/o error: rc == %d "
409 "(should be 2)\n", rc);
db8a6956 410 priv->i2c_props.addr = tuneraddr;
e976f937 411 break;
1da177e4 412 }
f13613ac 413 }
65511611
MK
414 if (atv_input[priv->nr])
415 simple_set_rf_input(fe, config, cb, atv_input[priv->nr]);
1da177e4 416
c7a9f3aa
MK
417 return 0;
418}
419
420static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
421 u16 div, u8 config, u8 cb)
422{
423 struct tuner_simple_priv *priv = fe->tuner_priv;
424 int rc;
425
426 switch (priv->type) {
427 case TUNER_LG_TDVS_H06XF:
428 /* Set the Auxiliary Byte. */
429 buffer[0] = buffer[2];
430 buffer[0] &= ~0x20;
431 buffer[0] |= 0x18;
432 buffer[1] = 0x20;
433 tuner_dbg("tv 0x%02x 0x%02x\n", buffer[0], buffer[1]);
434
435 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
436 if (2 != rc)
437 tuner_warn("i2c i/o error: rc == %d "
438 "(should be 2)\n", rc);
439 break;
440 case TUNER_MICROTUNE_4042FI5:
441 {
442 /* FIXME - this may also work for other tuners */
443 unsigned long timeout = jiffies + msecs_to_jiffies(1);
444 u8 status_byte = 0;
445
446 /* Wait until the PLL locks */
447 for (;;) {
448 if (time_after(jiffies, timeout))
449 return 0;
450 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
451 &status_byte, 1);
452 if (1 != rc) {
453 tuner_warn("i2c i/o read error: rc == %d "
454 "(should be 1)\n", rc);
455 break;
456 }
457 if (status_byte & TUNER_PLL_LOCKED)
458 break;
459 udelay(10);
460 }
461
462 /* Set the charge pump for optimized phase noise figure */
463 config &= ~TUNER_CHARGE_PUMP;
464 buffer[0] = (div>>8) & 0x7f;
465 buffer[1] = div & 0xff;
466 buffer[2] = config;
467 buffer[3] = cb;
468 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
469 buffer[0], buffer[1], buffer[2], buffer[3]);
470
471 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
472 if (4 != rc)
473 tuner_warn("i2c i/o error: rc == %d "
474 "(should be 4)\n", rc);
475 break;
476 }
477 }
478
479 return 0;
480}
481
482static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
483{
484 struct tuner_simple_priv *priv = fe->tuner_priv;
485
486 switch (priv->type) {
487 case TUNER_TENA_9533_DI:
488 case TUNER_YMEC_TVF_5533MF:
489 tuner_dbg("This tuner doesn't have FM. "
490 "Most cards have a TEA5767 for FM\n");
491 return 0;
492 case TUNER_PHILIPS_FM1216ME_MK3:
493 case TUNER_PHILIPS_FM1236_MK3:
494 case TUNER_PHILIPS_FMD1216ME_MK3:
495 case TUNER_LG_NTSC_TAPE:
496 case TUNER_PHILIPS_FM1256_IH3:
497 buffer[3] = 0x19;
498 break;
499 case TUNER_TNF_5335MF:
500 buffer[3] = 0x11;
501 break;
502 case TUNER_LG_PAL_FM:
503 buffer[3] = 0xa5;
504 break;
505 case TUNER_THOMSON_DTT761X:
506 buffer[3] = 0x39;
507 break;
508 case TUNER_MICROTUNE_4049FM5:
509 default:
510 buffer[3] = 0xa4;
511 break;
512 }
513
514 return 0;
515}
516
517/* ---------------------------------------------------------------------- */
518
519static int simple_set_tv_freq(struct dvb_frontend *fe,
520 struct analog_parameters *params)
521{
522 struct tuner_simple_priv *priv = fe->tuner_priv;
523 u8 config, cb;
524 u16 div;
525 struct tunertype *tun;
526 u8 buffer[4];
527 int rc, IFPCoff, i;
528 enum param_type desired_type;
529 struct tuner_params *t_params;
530
531 tun = priv->tun;
532
533 /* IFPCoff = Video Intermediate Frequency - Vif:
534 940 =16*58.75 NTSC/J (Japan)
535 732 =16*45.75 M/N STD
536 704 =16*44 ATSC (at DVB code)
537 632 =16*39.50 I U.K.
538 622.4=16*38.90 B/G D/K I, L STD
539 592 =16*37.00 D China
540 590 =16.36.875 B Australia
541 543.2=16*33.95 L' STD
542 171.2=16*10.70 FM Radio (at set_radio_freq)
543 */
544
545 if (params->std == V4L2_STD_NTSC_M_JP) {
546 IFPCoff = 940;
547 desired_type = TUNER_PARAM_TYPE_NTSC;
548 } else if ((params->std & V4L2_STD_MN) &&
549 !(params->std & ~V4L2_STD_MN)) {
550 IFPCoff = 732;
551 desired_type = TUNER_PARAM_TYPE_NTSC;
552 } else if (params->std == V4L2_STD_SECAM_LC) {
553 IFPCoff = 543;
554 desired_type = TUNER_PARAM_TYPE_SECAM;
555 } else {
556 IFPCoff = 623;
557 desired_type = TUNER_PARAM_TYPE_PAL;
558 }
559
560 t_params = simple_tuner_params(fe, desired_type);
561
562 i = simple_config_lookup(fe, t_params, &params->frequency,
563 &config, &cb);
564
565 div = params->frequency + IFPCoff + offset;
566
567 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, "
568 "Offset=%d.%02d MHz, div=%0d\n",
569 params->frequency / 16, params->frequency % 16 * 100 / 16,
570 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
571 offset / 16, offset % 16 * 100 / 16, div);
572
573 /* tv norm specific stuff for multi-norm tuners */
f13613ac 574 simple_std_setup(fe, params, &config, &cb);
c7a9f3aa 575
4adad287 576 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
3fc46d35 577 buffer[0] = config;
ab66b22f 578 buffer[1] = cb;
1da177e4
LT
579 buffer[2] = (div>>8) & 0x7f;
580 buffer[3] = div & 0xff;
581 } else {
582 buffer[0] = (div>>8) & 0x7f;
583 buffer[1] = div & 0xff;
3fc46d35 584 buffer[2] = config;
ab66b22f 585 buffer[3] = cb;
1da177e4 586 }
6b1dde90 587 priv->last_div = div;
4adad287 588 if (t_params->has_tda9887) {
7f171123 589 struct v4l2_priv_tun_config tda9887_cfg;
c6eb8eaf 590 int tda_config = 0;
9ba0a3c0
MK
591 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
592 V4L2_STD_SECAM_LC)) &&
593 !(params->std & ~(V4L2_STD_SECAM_L |
594 V4L2_STD_SECAM_LC));
ba8fc399 595
7f171123 596 tda9887_cfg.tuner = TUNER_TDA9887;
c6eb8eaf 597 tda9887_cfg.priv = &tda_config;
7f171123 598
4adad287
MK
599 if (params->std == V4L2_STD_SECAM_LC) {
600 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
c6eb8eaf 601 tda_config |= TDA9887_PORT1_ACTIVE;
4adad287 602 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
c6eb8eaf 603 tda_config |= TDA9887_PORT2_ACTIVE;
9ba0a3c0 604 } else {
4adad287 605 if (t_params->port1_active)
c6eb8eaf 606 tda_config |= TDA9887_PORT1_ACTIVE;
4adad287 607 if (t_params->port2_active)
c6eb8eaf 608 tda_config |= TDA9887_PORT2_ACTIVE;
ba8fc399 609 }
4adad287 610 if (t_params->intercarrier_mode)
c6eb8eaf 611 tda_config |= TDA9887_INTERCARRIER;
ba8fc399 612 if (is_secam_l) {
4adad287 613 if (i == 0 && t_params->default_top_secam_low)
c6eb8eaf 614 tda_config |= TDA9887_TOP(t_params->default_top_secam_low);
4adad287 615 else if (i == 1 && t_params->default_top_secam_mid)
c6eb8eaf 616 tda_config |= TDA9887_TOP(t_params->default_top_secam_mid);
4adad287 617 else if (t_params->default_top_secam_high)
c6eb8eaf 618 tda_config |= TDA9887_TOP(t_params->default_top_secam_high);
9ba0a3c0 619 } else {
4adad287 620 if (i == 0 && t_params->default_top_low)
c6eb8eaf 621 tda_config |= TDA9887_TOP(t_params->default_top_low);
4adad287 622 else if (i == 1 && t_params->default_top_mid)
c6eb8eaf 623 tda_config |= TDA9887_TOP(t_params->default_top_mid);
4adad287 624 else if (t_params->default_top_high)
c6eb8eaf 625 tda_config |= TDA9887_TOP(t_params->default_top_high);
ba8fc399 626 }
4adad287 627 if (t_params->default_pll_gating_18)
c6eb8eaf 628 tda_config |= TDA9887_GATING_18;
7f171123
MCC
629 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
630 &tda9887_cfg);
ba8fc399 631 }
1da177e4 632 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
9ba0a3c0 633 buffer[0], buffer[1], buffer[2], buffer[3]);
1da177e4 634
9ba0a3c0
MK
635 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
636 if (4 != rc)
637 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
1da177e4 638
c7a9f3aa 639 simple_post_tune(fe, &buffer[0], div, config, cb);
1da177e4 640
4adad287 641 return 0;
1da177e4
LT
642}
643
4adad287
MK
644static int simple_set_radio_freq(struct dvb_frontend *fe,
645 struct analog_parameters *params)
1da177e4
LT
646{
647 struct tunertype *tun;
4adad287 648 struct tuner_simple_priv *priv = fe->tuner_priv;
27487d44
HV
649 u8 buffer[4];
650 u16 div;
7b0ac9cd 651 int rc, j;
4adad287
MK
652 struct tuner_params *t_params;
653 unsigned int freq = params->frequency;
1da177e4 654
4adad287 655 tun = priv->tun;
476d63d0 656
5e082f15
TP
657 for (j = tun->count-1; j > 0; j--)
658 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
659 break;
4adad287
MK
660 /* default t_params (j=0) will be used if desired type wasn't found */
661 t_params = &tun->params[j];
5e082f15
TP
662
663 /* Select Radio 1st IF used */
4adad287 664 switch (t_params->radio_if) {
5e082f15
TP
665 case 0: /* 10.7 MHz */
666 freq += (unsigned int)(10.7*16000);
476d63d0 667 break;
5e082f15
TP
668 case 1: /* 33.3 MHz */
669 freq += (unsigned int)(33.3*16000);
670 break;
671 case 2: /* 41.3 MHz */
672 freq += (unsigned int)(41.3*16000);
673 break;
674 default:
9ba0a3c0
MK
675 tuner_warn("Unsupported radio_if value %d\n",
676 t_params->radio_if);
4adad287 677 return 0;
476d63d0 678 }
1da177e4 679
5e082f15 680 /* Bandswitch byte */
c7a9f3aa 681 simple_radio_bandswitch(fe, &buffer[0]);
5e082f15 682
4adad287 683 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
5e082f15
TP
684 TUNER_RATIO_SELECT_50; /* 50 kHz step */
685
686 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
687 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
688 freq * (1/800) */
689 div = (freq + 400) / 800;
690
4adad287 691 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
27487d44
HV
692 buffer[0] = buffer[2];
693 buffer[1] = buffer[3];
694 buffer[2] = (div>>8) & 0x7f;
695 buffer[3] = div & 0xff;
696 } else {
697 buffer[0] = (div>>8) & 0x7f;
698 buffer[1] = div & 0xff;
699 }
1da177e4
LT
700
701 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
9ba0a3c0 702 buffer[0], buffer[1], buffer[2], buffer[3]);
6b1dde90 703 priv->last_div = div;
1da177e4 704
4adad287 705 if (t_params->has_tda9887) {
ba8fc399 706 int config = 0;
7f171123
MCC
707 struct v4l2_priv_tun_config tda9887_cfg;
708
709 tda9887_cfg.tuner = TUNER_TDA9887;
710 tda9887_cfg.priv = &config;
711
9ba0a3c0
MK
712 if (t_params->port1_active &&
713 !t_params->port1_fm_high_sensitivity)
ba8fc399 714 config |= TDA9887_PORT1_ACTIVE;
9ba0a3c0
MK
715 if (t_params->port2_active &&
716 !t_params->port2_fm_high_sensitivity)
ba8fc399 717 config |= TDA9887_PORT2_ACTIVE;
4adad287 718 if (t_params->intercarrier_mode)
ba8fc399 719 config |= TDA9887_INTERCARRIER;
4adad287 720/* if (t_params->port1_set_for_fm_mono)
ba8fc399 721 config &= ~TDA9887_PORT1_ACTIVE;*/
4adad287 722 if (t_params->fm_gain_normal)
483deb0f 723 config |= TDA9887_GAIN_NORMAL;
4adad287 724 if (t_params->radio_if == 2)
5e082f15 725 config |= TDA9887_RIF_41_3;
7f171123 726 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
9ba0a3c0 727 &tda9887_cfg);
ba8fc399 728 }
9ba0a3c0
MK
729 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
730 if (4 != rc)
731 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
4adad287
MK
732
733 return 0;
1da177e4
LT
734}
735
4adad287
MK
736static int simple_set_params(struct dvb_frontend *fe,
737 struct analog_parameters *params)
6b1dde90 738{
4adad287
MK
739 struct tuner_simple_priv *priv = fe->tuner_priv;
740 int ret = -EINVAL;
741
a81df363
MK
742 if (priv->i2c_props.adap == NULL)
743 return -EINVAL;
744
4adad287
MK
745 switch (params->mode) {
746 case V4L2_TUNER_RADIO:
747 ret = simple_set_radio_freq(fe, params);
748 priv->frequency = params->frequency * 125 / 2;
749 break;
750 case V4L2_TUNER_ANALOG_TV:
751 case V4L2_TUNER_DIGITAL_TV:
752 ret = simple_set_tv_freq(fe, params);
753 priv->frequency = params->frequency * 62500;
754 break;
755 }
62325497 756 priv->bandwidth = 0;
4adad287
MK
757
758 return ret;
759}
760
23a88108
MK
761static void simple_set_dvb(struct dvb_frontend *fe, u8 *buf,
762 const struct dvb_frontend_parameters *params)
763{
764 struct tuner_simple_priv *priv = fe->tuner_priv;
765
766 switch (priv->type) {
767 case TUNER_PHILIPS_FMD1216ME_MK3:
768 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ &&
769 params->frequency >= 158870000)
770 buf[3] |= 0x08;
771 break;
0e5d383b
MK
772 case TUNER_PHILIPS_TD1316:
773 /* determine band */
774 buf[3] |= (params->frequency < 161000000) ? 1 :
775 (params->frequency < 444000000) ? 2 : 4;
776
777 /* setup PLL filter */
778 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
779 buf[3] |= 1 << 3;
780 break;
02f5f444 781 case TUNER_PHILIPS_TUV1236D:
ab8b870e 782 case TUNER_PHILIPS_FCV1236D:
02f5f444
MK
783 {
784 unsigned int new_rf;
785
65511611
MK
786 if (dtv_input[priv->nr])
787 new_rf = dtv_input[priv->nr];
788 else
789 switch (params->u.vsb.modulation) {
790 case QAM_64:
791 case QAM_256:
792 new_rf = 1;
793 break;
794 case VSB_8:
795 default:
796 new_rf = 0;
797 break;
798 }
02f5f444
MK
799 simple_set_rf_input(fe, &buf[2], &buf[3], new_rf);
800 break;
801 }
23a88108
MK
802 default:
803 break;
804 }
805}
806
a2a7f84b 807static u32 simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
62325497
MK
808 const struct dvb_frontend_parameters *params)
809{
a2a7f84b 810 /* This function returns the tuned frequency on success, 0 on error */
62325497
MK
811 struct tuner_simple_priv *priv = fe->tuner_priv;
812 struct tunertype *tun = priv->tun;
813 static struct tuner_params *t_params;
814 u8 config, cb;
815 u32 div;
c6eb8eaf
HV
816 int ret;
817 unsigned frequency = params->frequency / 62500;
62325497
MK
818
819 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
820 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
821 if (ret < 0)
a2a7f84b 822 return 0; /* failure */
62325497
MK
823
824 div = ((frequency + t_params->iffreq) * 62500 + offset +
825 tun->stepsize/2) / tun->stepsize;
826
827 buf[0] = div >> 8;
828 buf[1] = div & 0xff;
829 buf[2] = config;
830 buf[3] = cb;
831
23a88108
MK
832 simple_set_dvb(fe, buf, params);
833
62325497
MK
834 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
835 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
836
837 /* calculate the frequency we set it to */
838 return (div * tun->stepsize) - t_params->iffreq;
839}
840
841static int simple_dvb_calc_regs(struct dvb_frontend *fe,
842 struct dvb_frontend_parameters *params,
843 u8 *buf, int buf_len)
844{
845 struct tuner_simple_priv *priv = fe->tuner_priv;
62325497
MK
846 u32 frequency;
847
848 if (buf_len < 5)
849 return -EINVAL;
850
a2a7f84b
MK
851 frequency = simple_dvb_configure(fe, buf+1, params);
852 if (frequency == 0)
853 return -EINVAL;
62325497
MK
854
855 buf[0] = priv->i2c_props.addr;
856
857 priv->frequency = frequency;
858 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
859 params->u.ofdm.bandwidth : 0;
860
861 return 5;
862}
863
864static int simple_dvb_set_params(struct dvb_frontend *fe,
865 struct dvb_frontend_parameters *params)
866{
867 struct tuner_simple_priv *priv = fe->tuner_priv;
868 u32 prev_freq, prev_bw;
869 int ret;
870 u8 buf[5];
871
872 if (priv->i2c_props.adap == NULL)
873 return -EINVAL;
874
875 prev_freq = priv->frequency;
876 prev_bw = priv->bandwidth;
877
878 ret = simple_dvb_calc_regs(fe, params, buf, 5);
879 if (ret != 5)
880 goto fail;
881
882 /* put analog demod in standby when tuning digital */
883 if (fe->ops.analog_ops.standby)
884 fe->ops.analog_ops.standby(fe);
885
886 if (fe->ops.i2c_gate_ctrl)
887 fe->ops.i2c_gate_ctrl(fe, 1);
888
889 /* buf[0] contains the i2c address, but *
890 * we already have it in i2c_props.addr */
891 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
892 if (ret != 4)
893 goto fail;
894
895 return 0;
896fail:
897 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
898 priv->frequency = prev_freq;
899 priv->bandwidth = prev_bw;
900
901 return ret;
902}
4adad287 903
6f4a5729
MK
904static int simple_init(struct dvb_frontend *fe)
905{
906 struct tuner_simple_priv *priv = fe->tuner_priv;
907
908 if (priv->i2c_props.adap == NULL)
909 return -EINVAL;
910
911 if (priv->tun->initdata) {
912 int ret;
913
914 if (fe->ops.i2c_gate_ctrl)
915 fe->ops.i2c_gate_ctrl(fe, 1);
916
917 ret = tuner_i2c_xfer_send(&priv->i2c_props,
918 priv->tun->initdata + 1,
919 priv->tun->initdata[0]);
920 if (ret != priv->tun->initdata[0])
921 return ret;
922 }
923
924 return 0;
925}
926
927static int simple_sleep(struct dvb_frontend *fe)
928{
929 struct tuner_simple_priv *priv = fe->tuner_priv;
930
931 if (priv->i2c_props.adap == NULL)
932 return -EINVAL;
933
934 if (priv->tun->sleepdata) {
935 int ret;
936
937 if (fe->ops.i2c_gate_ctrl)
938 fe->ops.i2c_gate_ctrl(fe, 1);
939
940 ret = tuner_i2c_xfer_send(&priv->i2c_props,
941 priv->tun->sleepdata + 1,
942 priv->tun->sleepdata[0]);
943 if (ret != priv->tun->sleepdata[0])
944 return ret;
945 }
946
947 return 0;
948}
949
4adad287
MK
950static int simple_release(struct dvb_frontend *fe)
951{
62325497
MK
952 struct tuner_simple_priv *priv = fe->tuner_priv;
953
954 mutex_lock(&tuner_simple_list_mutex);
955
956 if (priv)
957 hybrid_tuner_release_state(priv);
958
959 mutex_unlock(&tuner_simple_list_mutex);
960
4adad287
MK
961 fe->tuner_priv = NULL;
962
963 return 0;
964}
965
966static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
967{
968 struct tuner_simple_priv *priv = fe->tuner_priv;
969 *frequency = priv->frequency;
970 return 0;
6b1dde90
MK
971}
972
62325497
MK
973static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
974{
975 struct tuner_simple_priv *priv = fe->tuner_priv;
976 *bandwidth = priv->bandwidth;
977 return 0;
978}
979
4adad287 980static struct dvb_tuner_ops simple_tuner_ops = {
6f4a5729
MK
981 .init = simple_init,
982 .sleep = simple_sleep,
4adad287 983 .set_analog_params = simple_set_params,
62325497
MK
984 .set_params = simple_dvb_set_params,
985 .calc_regs = simple_dvb_calc_regs,
735f0b9a
MK
986 .release = simple_release,
987 .get_frequency = simple_get_frequency,
62325497 988 .get_bandwidth = simple_get_bandwidth,
735f0b9a
MK
989 .get_status = simple_get_status,
990 .get_rf_strength = simple_get_rf_strength,
5d807c9f
MK
991};
992
4adad287
MK
993struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
994 struct i2c_adapter *i2c_adap,
995 u8 i2c_addr,
060a5bd7 996 unsigned int type)
1da177e4 997{
6b1dde90 998 struct tuner_simple_priv *priv = NULL;
62325497 999 int instance;
6b1dde90 1000
65e8d29f
MK
1001 if (type >= tuner_count) {
1002 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
7e28adb2 1003 __func__, type, tuner_count-1);
65e8d29f
MK
1004 return NULL;
1005 }
1006
e827931e
MK
1007 /* If i2c_adap is set, check that the tuner is at the correct address.
1008 * Otherwise, if i2c_adap is NULL, the tuner will be programmed directly
1009 * by the digital demod via calc_regs.
1010 */
1011 if (i2c_adap != NULL) {
1012 u8 b[1];
1013 struct i2c_msg msg = {
1014 .addr = i2c_addr, .flags = I2C_M_RD,
1015 .buf = b, .len = 1,
1016 };
1017
1018 if (fe->ops.i2c_gate_ctrl)
1019 fe->ops.i2c_gate_ctrl(fe, 1);
1020
1021 if (1 != i2c_transfer(i2c_adap, &msg, 1))
3b4a9714
AW
1022 printk(KERN_WARNING "tuner-simple %d-%04x: "
1023 "unable to probe %s, proceeding anyway.",
1024 i2c_adapter_id(i2c_adap), i2c_addr,
1025 tuners[type].name);
e827931e
MK
1026
1027 if (fe->ops.i2c_gate_ctrl)
1028 fe->ops.i2c_gate_ctrl(fe, 0);
1029 }
1030
62325497
MK
1031 mutex_lock(&tuner_simple_list_mutex);
1032
1033 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
1034 hybrid_tuner_instance_list,
1035 i2c_adap, i2c_addr,
1036 "tuner-simple");
1037 switch (instance) {
1038 case 0:
1039 mutex_unlock(&tuner_simple_list_mutex);
4adad287 1040 return NULL;
62325497
MK
1041 break;
1042 case 1:
1043 fe->tuner_priv = priv;
1da177e4 1044
62325497
MK
1045 priv->type = type;
1046 priv->tun = &tuners[type];
65511611 1047 priv->nr = simple_devcount++;
62325497
MK
1048 break;
1049 default:
1050 fe->tuner_priv = priv;
1051 break;
1052 }
2756665c 1053
62325497 1054 mutex_unlock(&tuner_simple_list_mutex);
db8a6956 1055
9ba0a3c0
MK
1056 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
1057 sizeof(struct dvb_tuner_ops));
1da177e4 1058
62325497 1059 tuner_info("type set to %d (%s)\n", type, priv->tun->name);
586b0cab 1060
65511611
MK
1061 if ((debug) || ((atv_input[priv->nr] > 0) ||
1062 (dtv_input[priv->nr] > 0))) {
1063 if (0 == atv_input[priv->nr])
1064 tuner_info("tuner %d atv rf input will be "
1065 "autoselected\n", priv->nr);
1066 else
1067 tuner_info("tuner %d atv rf input will be "
1068 "set to input %d (insmod option)\n",
1069 priv->nr, atv_input[priv->nr]);
1070 if (0 == dtv_input[priv->nr])
1071 tuner_info("tuner %d dtv rf input will be "
1072 "autoselected\n", priv->nr);
1073 else
1074 tuner_info("tuner %d dtv rf input will be "
1075 "set to input %d (insmod option)\n",
1076 priv->nr, dtv_input[priv->nr]);
1077 }
1078
060a5bd7 1079 strlcpy(fe->ops.tuner_ops.info.name, priv->tun->name,
9ba0a3c0 1080 sizeof(fe->ops.tuner_ops.info.name));
4adad287
MK
1081
1082 return fe;
1da177e4 1083}
4adad287
MK
1084EXPORT_SYMBOL_GPL(simple_tuner_attach);
1085
1086MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
1087MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1088MODULE_LICENSE("GPL");
1089
1da177e4
LT
1090/*
1091 * Overrides for Emacs so that we follow Linus's tabbing style.
1092 * ---------------------------------------------------------------------------
1093 * Local variables:
1094 * c-basic-offset: 8
1095 * End:
1096 */
This page took 0.660609 seconds and 5 git commands to generate.