blob: 5356c8a92413ee4bc1984588167ffa267937614a [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>
9#include <linux/videodev.h>
10#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 Krufky9ba0a3c02008-04-22 14:41:44 -030020static int offset;
Mauro Carvalho Chehab4d988162006-08-12 21:59:19 -030021module_param(offset, int, 0664);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030022MODULE_PARM_DESC(offset, "Allows to specify an offset for tuner");
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/* ---------------------------------------------------------------------- */
25
26/* tv standard selection for Temic 4046 FM5
27 this value takes the low bits of control byte 2
28 from datasheet Rev.01, Feb.00
29 standard BG I L L2 D
30 picture IF 38.9 38.9 38.9 33.95 38.9
31 sound 1 33.4 32.9 32.4 40.45 32.4
32 sound 2 33.16
33 NICAM 33.05 32.348 33.05 33.05
34 */
35#define TEMIC_SET_PAL_I 0x05
36#define TEMIC_SET_PAL_DK 0x09
Michael Krufky9ba0a3c02008-04-22 14:41:44 -030037#define TEMIC_SET_PAL_L 0x0a /* SECAM ? */
38#define TEMIC_SET_PAL_L2 0x0b /* change IF ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define TEMIC_SET_PAL_BG 0x0c
40
41/* tv tuner system standard selection for Philips FQ1216ME
42 this value takes the low bits of control byte 2
43 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
44 standard BG DK I L L`
45 picture carrier 38.90 38.90 38.90 38.90 33.95
46 colour 34.47 34.47 34.47 34.47 38.38
47 sound 1 33.40 32.40 32.90 32.40 40.45
48 sound 2 33.16 - - - -
49 NICAM 33.05 33.05 32.35 33.05 39.80
50 */
51#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
52#define PHILIPS_SET_PAL_BGDK 0x09
53#define PHILIPS_SET_PAL_L2 0x0a
54#define PHILIPS_SET_PAL_L 0x0b
55
56/* system switching for Philips FI1216MF MK2
57 from datasheet "1996 Jul 09",
58 standard BG L L'
59 picture carrier 38.90 38.90 33.95
60 colour 34.47 34.37 38.38
61 sound 1 33.40 32.40 40.45
62 sound 2 33.16 - -
63 NICAM 33.05 33.05 39.80
64 */
Mauro Carvalho Chehabc57032d2007-05-21 11:39:21 -030065#define PHILIPS_MF_SET_STD_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
66#define PHILIPS_MF_SET_STD_L 0x03 /* Used on Secam France */
67#define PHILIPS_MF_SET_STD_LC 0x02 /* Used on SECAM L' */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070069/* Control byte */
70
71#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
72#define TUNER_RATIO_SELECT_50 0x00
73#define TUNER_RATIO_SELECT_32 0x02
74#define TUNER_RATIO_SELECT_166 0x04
75#define TUNER_RATIO_SELECT_62 0x06
76
77#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
78
79/* Status byte */
80
81#define TUNER_POR 0x80
82#define TUNER_FL 0x40
83#define TUNER_MODE 0x38
84#define TUNER_AFC 0x07
85#define TUNER_SIGNAL 0x07
86#define TUNER_STEREO 0x10
87
88#define TUNER_PLL_LOCKED 0x40
89#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Michael Krufky62325492008-04-22 14:45:52 -030091static DEFINE_MUTEX(tuner_simple_list_mutex);
92static LIST_HEAD(hybrid_tuner_instance_list);
93
Michael Krufky6b1dde92007-08-11 15:42:12 -030094struct tuner_simple_priv {
95 u16 last_div;
Michael Krufky62325492008-04-22 14:45:52 -030096
Michael Krufkydb8a6952007-08-21 01:24:42 -030097 struct tuner_i2c_props i2c_props;
Michael Krufky62325492008-04-22 14:45:52 -030098 struct list_head hybrid_tuner_instance_list;
Michael Krufky4adad282007-08-27 21:59:08 -030099
100 unsigned int type;
101 struct tunertype *tun;
102
103 u32 frequency;
Michael Krufky62325492008-04-22 14:45:52 -0300104 u32 bandwidth;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300105};
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* ---------------------------------------------------------------------- */
108
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300109static int tuner_read_status(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Michael Krufky4adad282007-08-27 21:59:08 -0300111 struct tuner_simple_priv *priv = fe->tuner_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 unsigned char byte;
113
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300114 if (1 != tuner_i2c_xfer_recv(&priv->i2c_props, &byte, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return byte;
118}
119
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300120static inline int tuner_signal(const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300122 return (status & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300125static inline int tuner_stereo(const int type, const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300127 switch (type) {
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300128 case TUNER_PHILIPS_FM1216ME_MK3:
129 case TUNER_PHILIPS_FM1236_MK3:
130 case TUNER_PHILIPS_FM1256_IH3:
131 case TUNER_LG_NTSC_TAPE:
132 return ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
133 default:
134 return status & TUNER_STEREO;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700135 }
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300136}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700137
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300138static inline int tuner_islocked(const int status)
139{
140 return (status & TUNER_FL);
141}
142
143static inline int tuner_afcstatus(const int status)
144{
145 return (status & TUNER_AFC) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Michael Krufky4adad282007-08-27 21:59:08 -0300149static int simple_get_status(struct dvb_frontend *fe, u32 *status)
150{
151 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300152 int tuner_status;
153
154 if (priv->i2c_props.adap == NULL)
155 return -EINVAL;
156
157 tuner_status = tuner_read_status(fe);
Michael Krufky4adad282007-08-27 21:59:08 -0300158
159 *status = 0;
160
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300161 if (tuner_islocked(tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300162 *status = TUNER_STATUS_LOCKED;
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300163 if (tuner_stereo(priv->type, tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300164 *status |= TUNER_STATUS_STEREO;
165
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300166 tuner_dbg("AFC Status: %d\n", tuner_afcstatus(tuner_status));
167
168 return 0;
169}
170
171static int simple_get_rf_strength(struct dvb_frontend *fe, u16 *strength)
172{
173 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkya81df362008-04-22 14:45:52 -0300174 int signal;
175
176 if (priv->i2c_props.adap == NULL)
177 return -EINVAL;
178
179 signal = tuner_signal(tuner_read_status(fe));
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300180
181 *strength = signal;
182
183 tuner_dbg("Signal strength: %d\n", signal);
Michael Krufky4adad282007-08-27 21:59:08 -0300184
185 return 0;
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* ---------------------------------------------------------------------- */
189
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300190static inline char *tuner_param_name(enum param_type type)
191{
192 char *name;
193
194 switch (type) {
195 case TUNER_PARAM_TYPE_RADIO:
196 name = "radio";
197 break;
198 case TUNER_PARAM_TYPE_PAL:
199 name = "pal";
200 break;
201 case TUNER_PARAM_TYPE_SECAM:
202 name = "secam";
203 break;
204 case TUNER_PARAM_TYPE_NTSC:
205 name = "ntsc";
206 break;
Michael Krufky62325492008-04-22 14:45:52 -0300207 case TUNER_PARAM_TYPE_DIGITAL:
208 name = "digital";
209 break;
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300210 default:
211 name = "unknown";
212 break;
213 }
214 return name;
215}
216
217static struct tuner_params *simple_tuner_params(struct dvb_frontend *fe,
218 enum param_type desired_type)
219{
220 struct tuner_simple_priv *priv = fe->tuner_priv;
221 struct tunertype *tun = priv->tun;
222 int i;
223
224 for (i = 0; i < tun->count; i++)
225 if (desired_type == tun->params[i].type)
226 break;
227
228 /* use default tuner params if desired_type not available */
229 if (i == tun->count) {
230 tuner_dbg("desired params (%s) undefined for tuner %d\n",
231 tuner_param_name(desired_type), priv->type);
232 i = 0;
233 }
234
235 tuner_dbg("using tuner params #%d (%s)\n", i,
236 tuner_param_name(tun->params[i].type));
237
238 return &tun->params[i];
239}
240
241static int simple_config_lookup(struct dvb_frontend *fe,
242 struct tuner_params *t_params,
243 int *frequency, u8 *config, u8 *cb)
244{
245 struct tuner_simple_priv *priv = fe->tuner_priv;
246 int i;
247
248 for (i = 0; i < t_params->count; i++) {
249 if (*frequency > t_params->ranges[i].limit)
250 continue;
251 break;
252 }
253 if (i == t_params->count) {
254 tuner_dbg("frequency out of range (%d > %d)\n",
255 *frequency, t_params->ranges[i - 1].limit);
256 *frequency = t_params->ranges[--i].limit;
257 }
258 *config = t_params->ranges[i].config;
259 *cb = t_params->ranges[i].cb;
260
Michael Krufky7f8447d2008-04-22 14:41:49 -0300261 tuner_dbg("freq = %d.%02d (%d), range = %d, "
262 "config = 0x%02x, cb = 0x%02x\n",
263 *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
264 i, *config, *cb);
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300265
266 return i;
267}
268
269/* ---------------------------------------------------------------------- */
270
Michael Krufky02f5f442008-04-22 14:45:55 -0300271static void simple_set_rf_input(struct dvb_frontend *fe,
272 u8 *config, u8 *cb, unsigned int rf)
273{
274 struct tuner_simple_priv *priv = fe->tuner_priv;
275
276 switch (priv->type) {
277 case TUNER_PHILIPS_TUV1236D:
278 switch (rf) {
279 case 1:
280 *cb |= 0x08;
281 break;
282 default:
283 *cb &= ~0x08;
284 break;
285 }
286 break;
287 case TUNER_PHILIPS_ATSC:
288 switch (rf) {
289 case 1:
290 *cb |= 0x01;
291 break;
292 default:
293 *cb &= ~0x01;
294 break;
295 }
296 break;
297 default:
298 break;
299 }
300}
301
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300302static int simple_std_setup(struct dvb_frontend *fe,
303 struct analog_parameters *params,
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300304 u8 *config, u8 *cb)
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300305{
306 struct tuner_simple_priv *priv = fe->tuner_priv;
307 u8 tuneraddr;
308 int rc;
309
310 /* tv norm specific stuff for multi-norm tuners */
311 switch (priv->type) {
312 case TUNER_PHILIPS_SECAM: /* FI1216MF */
313 /* 0x01 -> ??? no change ??? */
314 /* 0x02 -> PAL BDGHI / SECAM L */
315 /* 0x04 -> ??? PAL others / SECAM others ??? */
316 *cb &= ~0x03;
317 if (params->std & V4L2_STD_SECAM_L)
318 /* also valid for V4L2_STD_SECAM */
319 *cb |= PHILIPS_MF_SET_STD_L;
320 else if (params->std & V4L2_STD_SECAM_LC)
321 *cb |= PHILIPS_MF_SET_STD_LC;
322 else /* V4L2_STD_B|V4L2_STD_GH */
323 *cb |= PHILIPS_MF_SET_STD_BG;
324 break;
325
326 case TUNER_TEMIC_4046FM5:
327 *cb &= ~0x0f;
328
329 if (params->std & V4L2_STD_PAL_BG) {
330 *cb |= TEMIC_SET_PAL_BG;
331
332 } else if (params->std & V4L2_STD_PAL_I) {
333 *cb |= TEMIC_SET_PAL_I;
334
335 } else if (params->std & V4L2_STD_PAL_DK) {
336 *cb |= TEMIC_SET_PAL_DK;
337
338 } else if (params->std & V4L2_STD_SECAM_L) {
339 *cb |= TEMIC_SET_PAL_L;
340
341 }
342 break;
343
344 case TUNER_PHILIPS_FQ1216ME:
345 *cb &= ~0x0f;
346
347 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
348 *cb |= PHILIPS_SET_PAL_BGDK;
349
350 } else if (params->std & V4L2_STD_PAL_I) {
351 *cb |= PHILIPS_SET_PAL_I;
352
353 } else if (params->std & V4L2_STD_SECAM_L) {
354 *cb |= PHILIPS_SET_PAL_L;
355
356 }
357 break;
358
359 case TUNER_PHILIPS_ATSC:
360 /* 0x00 -> ATSC antenna input 1 */
361 /* 0x01 -> ATSC antenna input 2 */
362 /* 0x02 -> NTSC antenna input 1 */
363 /* 0x03 -> NTSC antenna input 2 */
364 *cb &= ~0x03;
365 if (!(params->std & V4L2_STD_ATSC))
366 *cb |= 2;
367 /* FIXME: input */
368 break;
369
370 case TUNER_MICROTUNE_4042FI5:
371 /* Set the charge pump for fast tuning */
372 *config |= TUNER_CHARGE_PUMP;
373 break;
374
375 case TUNER_PHILIPS_TUV1236D:
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300376 {
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300377 /* 0x40 -> ATSC antenna input 1 */
378 /* 0x48 -> ATSC antenna input 2 */
379 /* 0x00 -> NTSC antenna input 1 */
380 /* 0x08 -> NTSC antenna input 2 */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300381 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300382 *cb &= ~0x40;
383 if (params->std & V4L2_STD_ATSC) {
384 *cb |= 0x40;
385 buffer[1] = 0x04;
386 }
387 /* set to the correct mode (analog or digital) */
388 tuneraddr = priv->i2c_props.addr;
389 priv->i2c_props.addr = 0x0a;
390 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[0], 2);
391 if (2 != rc)
392 tuner_warn("i2c i/o error: rc == %d "
393 "(should be 2)\n", rc);
394 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[2], 2);
395 if (2 != rc)
396 tuner_warn("i2c i/o error: rc == %d "
397 "(should be 2)\n", rc);
398 priv->i2c_props.addr = tuneraddr;
399 /* FIXME: input */
400 break;
401 }
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300402 }
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300403
404 return 0;
405}
406
407static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
408 u16 div, u8 config, u8 cb)
409{
410 struct tuner_simple_priv *priv = fe->tuner_priv;
411 int rc;
412
413 switch (priv->type) {
414 case TUNER_LG_TDVS_H06XF:
415 /* Set the Auxiliary Byte. */
416 buffer[0] = buffer[2];
417 buffer[0] &= ~0x20;
418 buffer[0] |= 0x18;
419 buffer[1] = 0x20;
420 tuner_dbg("tv 0x%02x 0x%02x\n", buffer[0], buffer[1]);
421
422 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
423 if (2 != rc)
424 tuner_warn("i2c i/o error: rc == %d "
425 "(should be 2)\n", rc);
426 break;
427 case TUNER_MICROTUNE_4042FI5:
428 {
429 /* FIXME - this may also work for other tuners */
430 unsigned long timeout = jiffies + msecs_to_jiffies(1);
431 u8 status_byte = 0;
432
433 /* Wait until the PLL locks */
434 for (;;) {
435 if (time_after(jiffies, timeout))
436 return 0;
437 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
438 &status_byte, 1);
439 if (1 != rc) {
440 tuner_warn("i2c i/o read error: rc == %d "
441 "(should be 1)\n", rc);
442 break;
443 }
444 if (status_byte & TUNER_PLL_LOCKED)
445 break;
446 udelay(10);
447 }
448
449 /* Set the charge pump for optimized phase noise figure */
450 config &= ~TUNER_CHARGE_PUMP;
451 buffer[0] = (div>>8) & 0x7f;
452 buffer[1] = div & 0xff;
453 buffer[2] = config;
454 buffer[3] = cb;
455 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
456 buffer[0], buffer[1], buffer[2], buffer[3]);
457
458 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
459 if (4 != rc)
460 tuner_warn("i2c i/o error: rc == %d "
461 "(should be 4)\n", rc);
462 break;
463 }
464 }
465
466 return 0;
467}
468
469static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
470{
471 struct tuner_simple_priv *priv = fe->tuner_priv;
472
473 switch (priv->type) {
474 case TUNER_TENA_9533_DI:
475 case TUNER_YMEC_TVF_5533MF:
476 tuner_dbg("This tuner doesn't have FM. "
477 "Most cards have a TEA5767 for FM\n");
478 return 0;
479 case TUNER_PHILIPS_FM1216ME_MK3:
480 case TUNER_PHILIPS_FM1236_MK3:
481 case TUNER_PHILIPS_FMD1216ME_MK3:
482 case TUNER_LG_NTSC_TAPE:
483 case TUNER_PHILIPS_FM1256_IH3:
484 buffer[3] = 0x19;
485 break;
486 case TUNER_TNF_5335MF:
487 buffer[3] = 0x11;
488 break;
489 case TUNER_LG_PAL_FM:
490 buffer[3] = 0xa5;
491 break;
492 case TUNER_THOMSON_DTT761X:
493 buffer[3] = 0x39;
494 break;
495 case TUNER_MICROTUNE_4049FM5:
496 default:
497 buffer[3] = 0xa4;
498 break;
499 }
500
501 return 0;
502}
503
504/* ---------------------------------------------------------------------- */
505
Michael Krufky4adad282007-08-27 21:59:08 -0300506static int simple_set_tv_freq(struct dvb_frontend *fe,
507 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Michael Krufky4adad282007-08-27 21:59:08 -0300509 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300510 u8 config, cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 u16 div;
512 struct tunertype *tun;
Hans Verkuil27487d42006-01-15 15:04:52 -0200513 u8 buffer[4];
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300514 int rc, IFPCoff, i;
Michael Krufky476d63d2006-02-07 06:25:34 -0200515 enum param_type desired_type;
Michael Krufky4adad282007-08-27 21:59:08 -0300516 struct tuner_params *t_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Michael Krufky4adad282007-08-27 21:59:08 -0300518 tun = priv->tun;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200519
Michael Krufky5f594182006-02-07 06:25:33 -0200520 /* IFPCoff = Video Intermediate Frequency - Vif:
521 940 =16*58.75 NTSC/J (Japan)
522 732 =16*45.75 M/N STD
523 704 =16*44 ATSC (at DVB code)
524 632 =16*39.50 I U.K.
525 622.4=16*38.90 B/G D/K I, L STD
526 592 =16*37.00 D China
527 590 =16.36.875 B Australia
528 543.2=16*33.95 L' STD
529 171.2=16*10.70 FM Radio (at set_radio_freq)
530 */
531
Michael Krufky4adad282007-08-27 21:59:08 -0300532 if (params->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200533 IFPCoff = 940;
534 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300535 } else if ((params->std & V4L2_STD_MN) &&
536 !(params->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200537 IFPCoff = 732;
538 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300539 } else if (params->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200540 IFPCoff = 543;
541 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200542 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200543 IFPCoff = 623;
544 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200545 }
546
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300547 t_params = simple_tuner_params(fe, desired_type);
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200548
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300549 i = simple_config_lookup(fe, t_params, &params->frequency,
550 &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300552 div = params->frequency + IFPCoff + offset;
Michael Krufky5f594182006-02-07 06:25:33 -0200553
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300554 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, "
555 "Offset=%d.%02d MHz, div=%0d\n",
556 params->frequency / 16, params->frequency % 16 * 100 / 16,
557 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
558 offset / 16, offset % 16 * 100 / 16, div);
Michael Krufky5f594182006-02-07 06:25:33 -0200559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 /* tv norm specific stuff for multi-norm tuners */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300561 simple_std_setup(fe, params, &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Michael Krufky4adad282007-08-27 21:59:08 -0300563 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200564 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200565 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 buffer[2] = (div>>8) & 0x7f;
567 buffer[3] = div & 0xff;
568 } else {
569 buffer[0] = (div>>8) & 0x7f;
570 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200571 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200572 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
Michael Krufky6b1dde92007-08-11 15:42:12 -0300574 priv->last_div = div;
Michael Krufky4adad282007-08-27 21:59:08 -0300575 if (t_params->has_tda9887) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300576 struct v4l2_priv_tun_config tda9887_cfg;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300577 int config = 0;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300578 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
579 V4L2_STD_SECAM_LC)) &&
580 !(params->std & ~(V4L2_STD_SECAM_L |
581 V4L2_STD_SECAM_LC));
Hans Verkuilba8fc392006-06-25 15:34:39 -0300582
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300583 tda9887_cfg.tuner = TUNER_TDA9887;
584 tda9887_cfg.priv = &config;
585
Michael Krufky4adad282007-08-27 21:59:08 -0300586 if (params->std == V4L2_STD_SECAM_LC) {
587 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300588 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300589 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300590 config |= TDA9887_PORT2_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300591 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300592 if (t_params->port1_active)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300593 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300594 if (t_params->port2_active)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300595 config |= TDA9887_PORT2_ACTIVE;
596 }
Michael Krufky4adad282007-08-27 21:59:08 -0300597 if (t_params->intercarrier_mode)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300598 config |= TDA9887_INTERCARRIER;
599 if (is_secam_l) {
Michael Krufky4adad282007-08-27 21:59:08 -0300600 if (i == 0 && t_params->default_top_secam_low)
601 config |= TDA9887_TOP(t_params->default_top_secam_low);
602 else if (i == 1 && t_params->default_top_secam_mid)
603 config |= TDA9887_TOP(t_params->default_top_secam_mid);
604 else if (t_params->default_top_secam_high)
605 config |= TDA9887_TOP(t_params->default_top_secam_high);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300606 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300607 if (i == 0 && t_params->default_top_low)
608 config |= TDA9887_TOP(t_params->default_top_low);
609 else if (i == 1 && t_params->default_top_mid)
610 config |= TDA9887_TOP(t_params->default_top_mid);
611 else if (t_params->default_top_high)
612 config |= TDA9887_TOP(t_params->default_top_high);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300613 }
Michael Krufky4adad282007-08-27 21:59:08 -0300614 if (t_params->default_pll_gating_18)
Trent Piephod7304de2006-08-24 22:43:45 -0300615 config |= TDA9887_GATING_18;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300616 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
617 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300620 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300622 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
623 if (4 != rc)
624 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300626 simple_post_tune(fe, &buffer[0], div, config, cb);
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300627
Michael Krufky4adad282007-08-27 21:59:08 -0300628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Michael Krufky4adad282007-08-27 21:59:08 -0300631static int simple_set_radio_freq(struct dvb_frontend *fe,
632 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 struct tunertype *tun;
Michael Krufky4adad282007-08-27 21:59:08 -0300635 struct tuner_simple_priv *priv = fe->tuner_priv;
Hans Verkuil27487d42006-01-15 15:04:52 -0200636 u8 buffer[4];
637 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200638 int rc, j;
Michael Krufky4adad282007-08-27 21:59:08 -0300639 struct tuner_params *t_params;
640 unsigned int freq = params->frequency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Michael Krufky4adad282007-08-27 21:59:08 -0300642 tun = priv->tun;
Michael Krufky476d63d2006-02-07 06:25:34 -0200643
Trent Piepho5e082f12007-08-03 18:32:38 -0300644 for (j = tun->count-1; j > 0; j--)
645 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
646 break;
Michael Krufky4adad282007-08-27 21:59:08 -0300647 /* default t_params (j=0) will be used if desired type wasn't found */
648 t_params = &tun->params[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Trent Piepho5e082f12007-08-03 18:32:38 -0300650 /* Select Radio 1st IF used */
Michael Krufky4adad282007-08-27 21:59:08 -0300651 switch (t_params->radio_if) {
Trent Piepho5e082f12007-08-03 18:32:38 -0300652 case 0: /* 10.7 MHz */
653 freq += (unsigned int)(10.7*16000);
654 break;
655 case 1: /* 33.3 MHz */
656 freq += (unsigned int)(33.3*16000);
657 break;
658 case 2: /* 41.3 MHz */
659 freq += (unsigned int)(41.3*16000);
660 break;
661 default:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300662 tuner_warn("Unsupported radio_if value %d\n",
663 t_params->radio_if);
Michael Krufky4adad282007-08-27 21:59:08 -0300664 return 0;
Trent Piepho5e082f12007-08-03 18:32:38 -0300665 }
666
667 /* Bandswitch byte */
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300668 simple_radio_bandswitch(fe, &buffer[0]);
Trent Piepho5e082f12007-08-03 18:32:38 -0300669
Michael Krufky4adad282007-08-27 21:59:08 -0300670 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
Trent Piepho5e082f12007-08-03 18:32:38 -0300671 TUNER_RATIO_SELECT_50; /* 50 kHz step */
672
673 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
674 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
675 freq * (1/800) */
676 div = (freq + 400) / 800;
677
Michael Krufky4adad282007-08-27 21:59:08 -0300678 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200679 buffer[0] = buffer[2];
680 buffer[1] = buffer[3];
681 buffer[2] = (div>>8) & 0x7f;
682 buffer[3] = div & 0xff;
683 } else {
684 buffer[0] = (div>>8) & 0x7f;
685 buffer[1] = div & 0xff;
686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300689 buffer[0], buffer[1], buffer[2], buffer[3]);
Michael Krufky6b1dde92007-08-11 15:42:12 -0300690 priv->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Michael Krufky4adad282007-08-27 21:59:08 -0300692 if (t_params->has_tda9887) {
Hans Verkuilba8fc392006-06-25 15:34:39 -0300693 int config = 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300694 struct v4l2_priv_tun_config tda9887_cfg;
695
696 tda9887_cfg.tuner = TUNER_TDA9887;
697 tda9887_cfg.priv = &config;
698
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300699 if (t_params->port1_active &&
700 !t_params->port1_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300701 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300702 if (t_params->port2_active &&
703 !t_params->port2_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300704 config |= TDA9887_PORT2_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300705 if (t_params->intercarrier_mode)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300706 config |= TDA9887_INTERCARRIER;
Michael Krufky4adad282007-08-27 21:59:08 -0300707/* if (t_params->port1_set_for_fm_mono)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300708 config &= ~TDA9887_PORT1_ACTIVE;*/
Michael Krufky4adad282007-08-27 21:59:08 -0300709 if (t_params->fm_gain_normal)
Mauro Carvalho Chehab483deb02006-12-04 08:31:38 -0300710 config |= TDA9887_GAIN_NORMAL;
Michael Krufky4adad282007-08-27 21:59:08 -0300711 if (t_params->radio_if == 2)
Trent Piepho5e082f12007-08-03 18:32:38 -0300712 config |= TDA9887_RIF_41_3;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300713 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300714 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300715 }
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300716 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
717 if (4 != rc)
718 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Michael Krufky4adad282007-08-27 21:59:08 -0300719
720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Michael Krufky4adad282007-08-27 21:59:08 -0300723static int simple_set_params(struct dvb_frontend *fe,
724 struct analog_parameters *params)
Michael Krufky6b1dde92007-08-11 15:42:12 -0300725{
Michael Krufky4adad282007-08-27 21:59:08 -0300726 struct tuner_simple_priv *priv = fe->tuner_priv;
727 int ret = -EINVAL;
728
Michael Krufkya81df362008-04-22 14:45:52 -0300729 if (priv->i2c_props.adap == NULL)
730 return -EINVAL;
731
Michael Krufky4adad282007-08-27 21:59:08 -0300732 switch (params->mode) {
733 case V4L2_TUNER_RADIO:
734 ret = simple_set_radio_freq(fe, params);
735 priv->frequency = params->frequency * 125 / 2;
736 break;
737 case V4L2_TUNER_ANALOG_TV:
738 case V4L2_TUNER_DIGITAL_TV:
739 ret = simple_set_tv_freq(fe, params);
740 priv->frequency = params->frequency * 62500;
741 break;
742 }
Michael Krufky62325492008-04-22 14:45:52 -0300743 priv->bandwidth = 0;
Michael Krufky4adad282007-08-27 21:59:08 -0300744
745 return ret;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300746}
747
Michael Krufky23a88102008-04-22 14:45:53 -0300748static void simple_set_dvb(struct dvb_frontend *fe, u8 *buf,
749 const struct dvb_frontend_parameters *params)
750{
751 struct tuner_simple_priv *priv = fe->tuner_priv;
752
753 switch (priv->type) {
754 case TUNER_PHILIPS_FMD1216ME_MK3:
755 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ &&
756 params->frequency >= 158870000)
757 buf[3] |= 0x08;
758 break;
Michael Krufky0e5d3832008-04-22 14:45:56 -0300759 case TUNER_PHILIPS_TD1316:
760 /* determine band */
761 buf[3] |= (params->frequency < 161000000) ? 1 :
762 (params->frequency < 444000000) ? 2 : 4;
763
764 /* setup PLL filter */
765 if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
766 buf[3] |= 1 << 3;
767 break;
Michael Krufky02f5f442008-04-22 14:45:55 -0300768 case TUNER_PHILIPS_TUV1236D:
769 case TUNER_PHILIPS_ATSC:
770 {
771 unsigned int new_rf;
772
773 switch (params->u.vsb.modulation) {
774 case QAM_64:
775 case QAM_256:
776 new_rf = 1;
777 break;
778 case VSB_8:
779 default:
780 new_rf = 0;
781 break;
782 }
783 simple_set_rf_input(fe, &buf[2], &buf[3], new_rf);
784 break;
785 }
Michael Krufky23a88102008-04-22 14:45:53 -0300786 default:
787 break;
788 }
789}
790
Michael Krufky62325492008-04-22 14:45:52 -0300791static int simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
792 const struct dvb_frontend_parameters *params)
793{
794 struct tuner_simple_priv *priv = fe->tuner_priv;
795 struct tunertype *tun = priv->tun;
796 static struct tuner_params *t_params;
797 u8 config, cb;
798 u32 div;
799 int ret, frequency = params->frequency / 62500;
800
801 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
802 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
803 if (ret < 0)
804 return ret;
805
806 div = ((frequency + t_params->iffreq) * 62500 + offset +
807 tun->stepsize/2) / tun->stepsize;
808
809 buf[0] = div >> 8;
810 buf[1] = div & 0xff;
811 buf[2] = config;
812 buf[3] = cb;
813
Michael Krufky23a88102008-04-22 14:45:53 -0300814 simple_set_dvb(fe, buf, params);
815
Michael Krufky62325492008-04-22 14:45:52 -0300816 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
817 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
818
819 /* calculate the frequency we set it to */
820 return (div * tun->stepsize) - t_params->iffreq;
821}
822
823static int simple_dvb_calc_regs(struct dvb_frontend *fe,
824 struct dvb_frontend_parameters *params,
825 u8 *buf, int buf_len)
826{
827 struct tuner_simple_priv *priv = fe->tuner_priv;
828 int ret;
829 u32 frequency;
830
831 if (buf_len < 5)
832 return -EINVAL;
833
834 ret = simple_dvb_configure(fe, buf+1, params);
835 if (ret < 0)
836 return ret;
837 else
838 frequency = ret;
839
840 buf[0] = priv->i2c_props.addr;
841
842 priv->frequency = frequency;
843 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
844 params->u.ofdm.bandwidth : 0;
845
846 return 5;
847}
848
849static int simple_dvb_set_params(struct dvb_frontend *fe,
850 struct dvb_frontend_parameters *params)
851{
852 struct tuner_simple_priv *priv = fe->tuner_priv;
853 u32 prev_freq, prev_bw;
854 int ret;
855 u8 buf[5];
856
857 if (priv->i2c_props.adap == NULL)
858 return -EINVAL;
859
860 prev_freq = priv->frequency;
861 prev_bw = priv->bandwidth;
862
863 ret = simple_dvb_calc_regs(fe, params, buf, 5);
864 if (ret != 5)
865 goto fail;
866
867 /* put analog demod in standby when tuning digital */
868 if (fe->ops.analog_ops.standby)
869 fe->ops.analog_ops.standby(fe);
870
871 if (fe->ops.i2c_gate_ctrl)
872 fe->ops.i2c_gate_ctrl(fe, 1);
873
874 /* buf[0] contains the i2c address, but *
875 * we already have it in i2c_props.addr */
876 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
877 if (ret != 4)
878 goto fail;
879
880 return 0;
881fail:
882 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
883 priv->frequency = prev_freq;
884 priv->bandwidth = prev_bw;
885
886 return ret;
887}
Michael Krufky4adad282007-08-27 21:59:08 -0300888
Michael Krufky6f4a5722008-04-22 14:45:53 -0300889static int simple_init(struct dvb_frontend *fe)
890{
891 struct tuner_simple_priv *priv = fe->tuner_priv;
892
893 if (priv->i2c_props.adap == NULL)
894 return -EINVAL;
895
896 if (priv->tun->initdata) {
897 int ret;
898
899 if (fe->ops.i2c_gate_ctrl)
900 fe->ops.i2c_gate_ctrl(fe, 1);
901
902 ret = tuner_i2c_xfer_send(&priv->i2c_props,
903 priv->tun->initdata + 1,
904 priv->tun->initdata[0]);
905 if (ret != priv->tun->initdata[0])
906 return ret;
907 }
908
909 return 0;
910}
911
912static int simple_sleep(struct dvb_frontend *fe)
913{
914 struct tuner_simple_priv *priv = fe->tuner_priv;
915
916 if (priv->i2c_props.adap == NULL)
917 return -EINVAL;
918
919 if (priv->tun->sleepdata) {
920 int ret;
921
922 if (fe->ops.i2c_gate_ctrl)
923 fe->ops.i2c_gate_ctrl(fe, 1);
924
925 ret = tuner_i2c_xfer_send(&priv->i2c_props,
926 priv->tun->sleepdata + 1,
927 priv->tun->sleepdata[0]);
928 if (ret != priv->tun->sleepdata[0])
929 return ret;
930 }
931
932 return 0;
933}
934
Michael Krufky4adad282007-08-27 21:59:08 -0300935static int simple_release(struct dvb_frontend *fe)
936{
Michael Krufky62325492008-04-22 14:45:52 -0300937 struct tuner_simple_priv *priv = fe->tuner_priv;
938
939 mutex_lock(&tuner_simple_list_mutex);
940
941 if (priv)
942 hybrid_tuner_release_state(priv);
943
944 mutex_unlock(&tuner_simple_list_mutex);
945
Michael Krufky4adad282007-08-27 21:59:08 -0300946 fe->tuner_priv = NULL;
947
948 return 0;
949}
950
951static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
952{
953 struct tuner_simple_priv *priv = fe->tuner_priv;
954 *frequency = priv->frequency;
955 return 0;
956}
957
Michael Krufky62325492008-04-22 14:45:52 -0300958static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
959{
960 struct tuner_simple_priv *priv = fe->tuner_priv;
961 *bandwidth = priv->bandwidth;
962 return 0;
963}
964
Michael Krufky4adad282007-08-27 21:59:08 -0300965static struct dvb_tuner_ops simple_tuner_ops = {
Michael Krufky6f4a5722008-04-22 14:45:53 -0300966 .init = simple_init,
967 .sleep = simple_sleep,
Michael Krufky4adad282007-08-27 21:59:08 -0300968 .set_analog_params = simple_set_params,
Michael Krufky62325492008-04-22 14:45:52 -0300969 .set_params = simple_dvb_set_params,
970 .calc_regs = simple_dvb_calc_regs,
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300971 .release = simple_release,
972 .get_frequency = simple_get_frequency,
Michael Krufky62325492008-04-22 14:45:52 -0300973 .get_bandwidth = simple_get_bandwidth,
Michael Krufky735f0b9a2007-08-31 16:39:39 -0300974 .get_status = simple_get_status,
975 .get_rf_strength = simple_get_rf_strength,
Michael Krufky5d807c92007-06-06 16:17:57 -0300976};
977
Michael Krufky4adad282007-08-27 21:59:08 -0300978struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
979 struct i2c_adapter *i2c_adap,
980 u8 i2c_addr,
Michael Krufky060a5bd2008-04-22 14:41:51 -0300981 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Michael Krufky6b1dde92007-08-11 15:42:12 -0300983 struct tuner_simple_priv *priv = NULL;
Michael Krufky62325492008-04-22 14:45:52 -0300984 int instance;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300985
Michael Krufky65e8d292008-04-22 14:41:50 -0300986 if (type >= tuner_count) {
987 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
988 __FUNCTION__, type, tuner_count-1);
989 return NULL;
990 }
991
Michael Krufky62325492008-04-22 14:45:52 -0300992 mutex_lock(&tuner_simple_list_mutex);
993
994 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
995 hybrid_tuner_instance_list,
996 i2c_adap, i2c_addr,
997 "tuner-simple");
998 switch (instance) {
999 case 0:
1000 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufky4adad282007-08-27 21:59:08 -03001001 return NULL;
Michael Krufky62325492008-04-22 14:45:52 -03001002 break;
1003 case 1:
1004 fe->tuner_priv = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Michael Krufky62325492008-04-22 14:45:52 -03001006 priv->type = type;
1007 priv->tun = &tuners[type];
1008 break;
1009 default:
1010 fe->tuner_priv = priv;
1011 break;
1012 }
Michael Krufky27566652008-04-22 14:41:53 -03001013
Michael Krufky62325492008-04-22 14:45:52 -03001014 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufkydb8a6952007-08-21 01:24:42 -03001015
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001016 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
1017 sizeof(struct dvb_tuner_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Michael Krufky62325492008-04-22 14:45:52 -03001019 tuner_info("type set to %d (%s)\n", type, priv->tun->name);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07001020
Michael Krufky060a5bd2008-04-22 14:41:51 -03001021 strlcpy(fe->ops.tuner_ops.info.name, priv->tun->name,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -03001022 sizeof(fe->ops.tuner_ops.info.name));
Michael Krufky4adad282007-08-27 21:59:08 -03001023
1024 return fe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
Michael Krufky4adad282007-08-27 21:59:08 -03001026EXPORT_SYMBOL_GPL(simple_tuner_attach);
1027
1028MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
1029MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
1030MODULE_LICENSE("GPL");
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032/*
1033 * Overrides for Emacs so that we follow Linus's tabbing style.
1034 * ---------------------------------------------------------------------------
1035 * Local variables:
1036 * c-basic-offset: 8
1037 * End:
1038 */