blob: 3a27d4a8ce385ecaea2bf892e4d496c82c6eca7c [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 Krufky735f0b92007-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 Krufky735f0b92007-08-31 16:39:39 -0300120static inline int tuner_signal(const int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Michael Krufky735f0b92007-08-31 16:39:39 -0300122 return (status & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Michael Krufky735f0b92007-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 Krufky735f0b92007-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 Krufky735f0b92007-08-31 16:39:39 -0300136}
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700137
Michael Krufky735f0b92007-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 Krufky735f0b92007-08-31 16:39:39 -0300161 if (tuner_islocked(tuner_status))
Michael Krufky4adad282007-08-27 21:59:08 -0300162 *status = TUNER_STATUS_LOCKED;
Michael Krufky735f0b92007-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 Krufky735f0b92007-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 Krufky735f0b92007-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 Krufkyc7a9f3a2008-04-22 14:41:51 -0300271static int simple_std_setup(struct dvb_frontend *fe,
272 struct analog_parameters *params,
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300273 u8 *config, u8 *cb)
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300274{
275 struct tuner_simple_priv *priv = fe->tuner_priv;
276 u8 tuneraddr;
277 int rc;
278
279 /* tv norm specific stuff for multi-norm tuners */
280 switch (priv->type) {
281 case TUNER_PHILIPS_SECAM: /* FI1216MF */
282 /* 0x01 -> ??? no change ??? */
283 /* 0x02 -> PAL BDGHI / SECAM L */
284 /* 0x04 -> ??? PAL others / SECAM others ??? */
285 *cb &= ~0x03;
286 if (params->std & V4L2_STD_SECAM_L)
287 /* also valid for V4L2_STD_SECAM */
288 *cb |= PHILIPS_MF_SET_STD_L;
289 else if (params->std & V4L2_STD_SECAM_LC)
290 *cb |= PHILIPS_MF_SET_STD_LC;
291 else /* V4L2_STD_B|V4L2_STD_GH */
292 *cb |= PHILIPS_MF_SET_STD_BG;
293 break;
294
295 case TUNER_TEMIC_4046FM5:
296 *cb &= ~0x0f;
297
298 if (params->std & V4L2_STD_PAL_BG) {
299 *cb |= TEMIC_SET_PAL_BG;
300
301 } else if (params->std & V4L2_STD_PAL_I) {
302 *cb |= TEMIC_SET_PAL_I;
303
304 } else if (params->std & V4L2_STD_PAL_DK) {
305 *cb |= TEMIC_SET_PAL_DK;
306
307 } else if (params->std & V4L2_STD_SECAM_L) {
308 *cb |= TEMIC_SET_PAL_L;
309
310 }
311 break;
312
313 case TUNER_PHILIPS_FQ1216ME:
314 *cb &= ~0x0f;
315
316 if (params->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
317 *cb |= PHILIPS_SET_PAL_BGDK;
318
319 } else if (params->std & V4L2_STD_PAL_I) {
320 *cb |= PHILIPS_SET_PAL_I;
321
322 } else if (params->std & V4L2_STD_SECAM_L) {
323 *cb |= PHILIPS_SET_PAL_L;
324
325 }
326 break;
327
328 case TUNER_PHILIPS_ATSC:
329 /* 0x00 -> ATSC antenna input 1 */
330 /* 0x01 -> ATSC antenna input 2 */
331 /* 0x02 -> NTSC antenna input 1 */
332 /* 0x03 -> NTSC antenna input 2 */
333 *cb &= ~0x03;
334 if (!(params->std & V4L2_STD_ATSC))
335 *cb |= 2;
336 /* FIXME: input */
337 break;
338
339 case TUNER_MICROTUNE_4042FI5:
340 /* Set the charge pump for fast tuning */
341 *config |= TUNER_CHARGE_PUMP;
342 break;
343
344 case TUNER_PHILIPS_TUV1236D:
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300345 {
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300346 /* 0x40 -> ATSC antenna input 1 */
347 /* 0x48 -> ATSC antenna input 2 */
348 /* 0x00 -> NTSC antenna input 1 */
349 /* 0x08 -> NTSC antenna input 2 */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300350 u8 buffer[4] = { 0x14, 0x00, 0x17, 0x00};
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300351 *cb &= ~0x40;
352 if (params->std & V4L2_STD_ATSC) {
353 *cb |= 0x40;
354 buffer[1] = 0x04;
355 }
356 /* set to the correct mode (analog or digital) */
357 tuneraddr = priv->i2c_props.addr;
358 priv->i2c_props.addr = 0x0a;
359 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[0], 2);
360 if (2 != rc)
361 tuner_warn("i2c i/o error: rc == %d "
362 "(should be 2)\n", rc);
363 rc = tuner_i2c_xfer_send(&priv->i2c_props, &buffer[2], 2);
364 if (2 != rc)
365 tuner_warn("i2c i/o error: rc == %d "
366 "(should be 2)\n", rc);
367 priv->i2c_props.addr = tuneraddr;
368 /* FIXME: input */
369 break;
370 }
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300371 }
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300372
373 return 0;
374}
375
376static int simple_post_tune(struct dvb_frontend *fe, u8 *buffer,
377 u16 div, u8 config, u8 cb)
378{
379 struct tuner_simple_priv *priv = fe->tuner_priv;
380 int rc;
381
382 switch (priv->type) {
383 case TUNER_LG_TDVS_H06XF:
384 /* Set the Auxiliary Byte. */
385 buffer[0] = buffer[2];
386 buffer[0] &= ~0x20;
387 buffer[0] |= 0x18;
388 buffer[1] = 0x20;
389 tuner_dbg("tv 0x%02x 0x%02x\n", buffer[0], buffer[1]);
390
391 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 2);
392 if (2 != rc)
393 tuner_warn("i2c i/o error: rc == %d "
394 "(should be 2)\n", rc);
395 break;
396 case TUNER_MICROTUNE_4042FI5:
397 {
398 /* FIXME - this may also work for other tuners */
399 unsigned long timeout = jiffies + msecs_to_jiffies(1);
400 u8 status_byte = 0;
401
402 /* Wait until the PLL locks */
403 for (;;) {
404 if (time_after(jiffies, timeout))
405 return 0;
406 rc = tuner_i2c_xfer_recv(&priv->i2c_props,
407 &status_byte, 1);
408 if (1 != rc) {
409 tuner_warn("i2c i/o read error: rc == %d "
410 "(should be 1)\n", rc);
411 break;
412 }
413 if (status_byte & TUNER_PLL_LOCKED)
414 break;
415 udelay(10);
416 }
417
418 /* Set the charge pump for optimized phase noise figure */
419 config &= ~TUNER_CHARGE_PUMP;
420 buffer[0] = (div>>8) & 0x7f;
421 buffer[1] = div & 0xff;
422 buffer[2] = config;
423 buffer[3] = cb;
424 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
425 buffer[0], buffer[1], buffer[2], buffer[3]);
426
427 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
428 if (4 != rc)
429 tuner_warn("i2c i/o error: rc == %d "
430 "(should be 4)\n", rc);
431 break;
432 }
433 }
434
435 return 0;
436}
437
438static int simple_radio_bandswitch(struct dvb_frontend *fe, u8 *buffer)
439{
440 struct tuner_simple_priv *priv = fe->tuner_priv;
441
442 switch (priv->type) {
443 case TUNER_TENA_9533_DI:
444 case TUNER_YMEC_TVF_5533MF:
445 tuner_dbg("This tuner doesn't have FM. "
446 "Most cards have a TEA5767 for FM\n");
447 return 0;
448 case TUNER_PHILIPS_FM1216ME_MK3:
449 case TUNER_PHILIPS_FM1236_MK3:
450 case TUNER_PHILIPS_FMD1216ME_MK3:
451 case TUNER_LG_NTSC_TAPE:
452 case TUNER_PHILIPS_FM1256_IH3:
453 buffer[3] = 0x19;
454 break;
455 case TUNER_TNF_5335MF:
456 buffer[3] = 0x11;
457 break;
458 case TUNER_LG_PAL_FM:
459 buffer[3] = 0xa5;
460 break;
461 case TUNER_THOMSON_DTT761X:
462 buffer[3] = 0x39;
463 break;
464 case TUNER_MICROTUNE_4049FM5:
465 default:
466 buffer[3] = 0xa4;
467 break;
468 }
469
470 return 0;
471}
472
473/* ---------------------------------------------------------------------- */
474
Michael Krufky4adad282007-08-27 21:59:08 -0300475static int simple_set_tv_freq(struct dvb_frontend *fe,
476 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Michael Krufky4adad282007-08-27 21:59:08 -0300478 struct tuner_simple_priv *priv = fe->tuner_priv;
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300479 u8 config, cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 u16 div;
481 struct tunertype *tun;
Hans Verkuil27487d42006-01-15 15:04:52 -0200482 u8 buffer[4];
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300483 int rc, IFPCoff, i;
Michael Krufky476d63d2006-02-07 06:25:34 -0200484 enum param_type desired_type;
Michael Krufky4adad282007-08-27 21:59:08 -0300485 struct tuner_params *t_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Michael Krufky4adad282007-08-27 21:59:08 -0300487 tun = priv->tun;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200488
Michael Krufky5f594182006-02-07 06:25:33 -0200489 /* IFPCoff = Video Intermediate Frequency - Vif:
490 940 =16*58.75 NTSC/J (Japan)
491 732 =16*45.75 M/N STD
492 704 =16*44 ATSC (at DVB code)
493 632 =16*39.50 I U.K.
494 622.4=16*38.90 B/G D/K I, L STD
495 592 =16*37.00 D China
496 590 =16.36.875 B Australia
497 543.2=16*33.95 L' STD
498 171.2=16*10.70 FM Radio (at set_radio_freq)
499 */
500
Michael Krufky4adad282007-08-27 21:59:08 -0300501 if (params->std == V4L2_STD_NTSC_M_JP) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200502 IFPCoff = 940;
503 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300504 } else if ((params->std & V4L2_STD_MN) &&
505 !(params->std & ~V4L2_STD_MN)) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200506 IFPCoff = 732;
507 desired_type = TUNER_PARAM_TYPE_NTSC;
Michael Krufky4adad282007-08-27 21:59:08 -0300508 } else if (params->std == V4L2_STD_SECAM_LC) {
Michael Krufky476d63d2006-02-07 06:25:34 -0200509 IFPCoff = 543;
510 desired_type = TUNER_PARAM_TYPE_SECAM;
Michael Krufky5f594182006-02-07 06:25:33 -0200511 } else {
Michael Krufky476d63d2006-02-07 06:25:34 -0200512 IFPCoff = 623;
513 desired_type = TUNER_PARAM_TYPE_PAL;
Michael Krufky5f594182006-02-07 06:25:33 -0200514 }
515
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300516 t_params = simple_tuner_params(fe, desired_type);
Michael Krufky8f1a58d2006-02-07 06:25:39 -0200517
Michael Krufkybe71f7d2008-04-22 14:41:48 -0300518 i = simple_config_lookup(fe, t_params, &params->frequency,
519 &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300521 div = params->frequency + IFPCoff + offset;
Michael Krufky5f594182006-02-07 06:25:33 -0200522
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300523 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, "
524 "Offset=%d.%02d MHz, div=%0d\n",
525 params->frequency / 16, params->frequency % 16 * 100 / 16,
526 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
527 offset / 16, offset % 16 * 100 / 16, div);
Michael Krufky5f594182006-02-07 06:25:33 -0200528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* tv norm specific stuff for multi-norm tuners */
Mauro Carvalho Chehabf13613a2008-04-22 14:42:13 -0300530 simple_std_setup(fe, params, &config, &cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Michael Krufky4adad282007-08-27 21:59:08 -0300532 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200533 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200534 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 buffer[2] = (div>>8) & 0x7f;
536 buffer[3] = div & 0xff;
537 } else {
538 buffer[0] = (div>>8) & 0x7f;
539 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200540 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200541 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Michael Krufky6b1dde92007-08-11 15:42:12 -0300543 priv->last_div = div;
Michael Krufky4adad282007-08-27 21:59:08 -0300544 if (t_params->has_tda9887) {
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300545 struct v4l2_priv_tun_config tda9887_cfg;
Hans Verkuilba8fc392006-06-25 15:34:39 -0300546 int config = 0;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300547 int is_secam_l = (params->std & (V4L2_STD_SECAM_L |
548 V4L2_STD_SECAM_LC)) &&
549 !(params->std & ~(V4L2_STD_SECAM_L |
550 V4L2_STD_SECAM_LC));
Hans Verkuilba8fc392006-06-25 15:34:39 -0300551
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300552 tda9887_cfg.tuner = TUNER_TDA9887;
553 tda9887_cfg.priv = &config;
554
Michael Krufky4adad282007-08-27 21:59:08 -0300555 if (params->std == V4L2_STD_SECAM_LC) {
556 if (t_params->port1_active ^ t_params->port1_invert_for_secam_lc)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300557 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300558 if (t_params->port2_active ^ t_params->port2_invert_for_secam_lc)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300559 config |= TDA9887_PORT2_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300560 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300561 if (t_params->port1_active)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300562 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300563 if (t_params->port2_active)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300564 config |= TDA9887_PORT2_ACTIVE;
565 }
Michael Krufky4adad282007-08-27 21:59:08 -0300566 if (t_params->intercarrier_mode)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300567 config |= TDA9887_INTERCARRIER;
568 if (is_secam_l) {
Michael Krufky4adad282007-08-27 21:59:08 -0300569 if (i == 0 && t_params->default_top_secam_low)
570 config |= TDA9887_TOP(t_params->default_top_secam_low);
571 else if (i == 1 && t_params->default_top_secam_mid)
572 config |= TDA9887_TOP(t_params->default_top_secam_mid);
573 else if (t_params->default_top_secam_high)
574 config |= TDA9887_TOP(t_params->default_top_secam_high);
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300575 } else {
Michael Krufky4adad282007-08-27 21:59:08 -0300576 if (i == 0 && t_params->default_top_low)
577 config |= TDA9887_TOP(t_params->default_top_low);
578 else if (i == 1 && t_params->default_top_mid)
579 config |= TDA9887_TOP(t_params->default_top_mid);
580 else if (t_params->default_top_high)
581 config |= TDA9887_TOP(t_params->default_top_high);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300582 }
Michael Krufky4adad282007-08-27 21:59:08 -0300583 if (t_params->default_pll_gating_18)
Trent Piephod7304de2006-08-24 22:43:45 -0300584 config |= TDA9887_GATING_18;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300585 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
586 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300589 buffer[0], buffer[1], buffer[2], buffer[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300591 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
592 if (4 != rc)
593 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300595 simple_post_tune(fe, &buffer[0], div, config, cb);
Michael Krufkyd9cd2d92006-07-17 17:15:26 -0300596
Michael Krufky4adad282007-08-27 21:59:08 -0300597 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Michael Krufky4adad282007-08-27 21:59:08 -0300600static int simple_set_radio_freq(struct dvb_frontend *fe,
601 struct analog_parameters *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 struct tunertype *tun;
Michael Krufky4adad282007-08-27 21:59:08 -0300604 struct tuner_simple_priv *priv = fe->tuner_priv;
Hans Verkuil27487d42006-01-15 15:04:52 -0200605 u8 buffer[4];
606 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200607 int rc, j;
Michael Krufky4adad282007-08-27 21:59:08 -0300608 struct tuner_params *t_params;
609 unsigned int freq = params->frequency;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Michael Krufky4adad282007-08-27 21:59:08 -0300611 tun = priv->tun;
Michael Krufky476d63d2006-02-07 06:25:34 -0200612
Trent Piepho5e082f12007-08-03 18:32:38 -0300613 for (j = tun->count-1; j > 0; j--)
614 if (tun->params[j].type == TUNER_PARAM_TYPE_RADIO)
615 break;
Michael Krufky4adad282007-08-27 21:59:08 -0300616 /* default t_params (j=0) will be used if desired type wasn't found */
617 t_params = &tun->params[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Trent Piepho5e082f12007-08-03 18:32:38 -0300619 /* Select Radio 1st IF used */
Michael Krufky4adad282007-08-27 21:59:08 -0300620 switch (t_params->radio_if) {
Trent Piepho5e082f12007-08-03 18:32:38 -0300621 case 0: /* 10.7 MHz */
622 freq += (unsigned int)(10.7*16000);
623 break;
624 case 1: /* 33.3 MHz */
625 freq += (unsigned int)(33.3*16000);
626 break;
627 case 2: /* 41.3 MHz */
628 freq += (unsigned int)(41.3*16000);
629 break;
630 default:
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300631 tuner_warn("Unsupported radio_if value %d\n",
632 t_params->radio_if);
Michael Krufky4adad282007-08-27 21:59:08 -0300633 return 0;
Trent Piepho5e082f12007-08-03 18:32:38 -0300634 }
635
636 /* Bandswitch byte */
Michael Krufkyc7a9f3a2008-04-22 14:41:51 -0300637 simple_radio_bandswitch(fe, &buffer[0]);
Trent Piepho5e082f12007-08-03 18:32:38 -0300638
Michael Krufky4adad282007-08-27 21:59:08 -0300639 buffer[2] = (t_params->ranges[0].config & ~TUNER_RATIO_MASK) |
Trent Piepho5e082f12007-08-03 18:32:38 -0300640 TUNER_RATIO_SELECT_50; /* 50 kHz step */
641
642 /* Convert from 1/16 kHz V4L steps to 1/20 MHz (=50 kHz) PLL steps
643 freq * (1 Mhz / 16000 V4L steps) * (20 PLL steps / 1 MHz) =
644 freq * (1/800) */
645 div = (freq + 400) / 800;
646
Michael Krufky4adad282007-08-27 21:59:08 -0300647 if (t_params->cb_first_if_lower_freq && div < priv->last_div) {
Hans Verkuil27487d42006-01-15 15:04:52 -0200648 buffer[0] = buffer[2];
649 buffer[1] = buffer[3];
650 buffer[2] = (div>>8) & 0x7f;
651 buffer[3] = div & 0xff;
652 } else {
653 buffer[0] = (div>>8) & 0x7f;
654 buffer[1] = div & 0xff;
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300658 buffer[0], buffer[1], buffer[2], buffer[3]);
Michael Krufky6b1dde92007-08-11 15:42:12 -0300659 priv->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Michael Krufky4adad282007-08-27 21:59:08 -0300661 if (t_params->has_tda9887) {
Hans Verkuilba8fc392006-06-25 15:34:39 -0300662 int config = 0;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300663 struct v4l2_priv_tun_config tda9887_cfg;
664
665 tda9887_cfg.tuner = TUNER_TDA9887;
666 tda9887_cfg.priv = &config;
667
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300668 if (t_params->port1_active &&
669 !t_params->port1_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300670 config |= TDA9887_PORT1_ACTIVE;
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300671 if (t_params->port2_active &&
672 !t_params->port2_fm_high_sensitivity)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300673 config |= TDA9887_PORT2_ACTIVE;
Michael Krufky4adad282007-08-27 21:59:08 -0300674 if (t_params->intercarrier_mode)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300675 config |= TDA9887_INTERCARRIER;
Michael Krufky4adad282007-08-27 21:59:08 -0300676/* if (t_params->port1_set_for_fm_mono)
Hans Verkuilba8fc392006-06-25 15:34:39 -0300677 config &= ~TDA9887_PORT1_ACTIVE;*/
Michael Krufky4adad282007-08-27 21:59:08 -0300678 if (t_params->fm_gain_normal)
Mauro Carvalho Chehab483deb02006-12-04 08:31:38 -0300679 config |= TDA9887_GAIN_NORMAL;
Michael Krufky4adad282007-08-27 21:59:08 -0300680 if (t_params->radio_if == 2)
Trent Piepho5e082f12007-08-03 18:32:38 -0300681 config |= TDA9887_RIF_41_3;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -0300682 i2c_clients_command(priv->i2c_props.adap, TUNER_SET_CONFIG,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300683 &tda9887_cfg);
Hans Verkuilba8fc392006-06-25 15:34:39 -0300684 }
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300685 rc = tuner_i2c_xfer_send(&priv->i2c_props, buffer, 4);
686 if (4 != rc)
687 tuner_warn("i2c i/o error: rc == %d (should be 4)\n", rc);
Michael Krufky4adad282007-08-27 21:59:08 -0300688
689 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Michael Krufky4adad282007-08-27 21:59:08 -0300692static int simple_set_params(struct dvb_frontend *fe,
693 struct analog_parameters *params)
Michael Krufky6b1dde92007-08-11 15:42:12 -0300694{
Michael Krufky4adad282007-08-27 21:59:08 -0300695 struct tuner_simple_priv *priv = fe->tuner_priv;
696 int ret = -EINVAL;
697
Michael Krufkya81df362008-04-22 14:45:52 -0300698 if (priv->i2c_props.adap == NULL)
699 return -EINVAL;
700
Michael Krufky4adad282007-08-27 21:59:08 -0300701 switch (params->mode) {
702 case V4L2_TUNER_RADIO:
703 ret = simple_set_radio_freq(fe, params);
704 priv->frequency = params->frequency * 125 / 2;
705 break;
706 case V4L2_TUNER_ANALOG_TV:
707 case V4L2_TUNER_DIGITAL_TV:
708 ret = simple_set_tv_freq(fe, params);
709 priv->frequency = params->frequency * 62500;
710 break;
711 }
Michael Krufky62325492008-04-22 14:45:52 -0300712 priv->bandwidth = 0;
Michael Krufky4adad282007-08-27 21:59:08 -0300713
714 return ret;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300715}
716
Michael Krufky62325492008-04-22 14:45:52 -0300717static int simple_dvb_configure(struct dvb_frontend *fe, u8 *buf,
718 const struct dvb_frontend_parameters *params)
719{
720 struct tuner_simple_priv *priv = fe->tuner_priv;
721 struct tunertype *tun = priv->tun;
722 static struct tuner_params *t_params;
723 u8 config, cb;
724 u32 div;
725 int ret, frequency = params->frequency / 62500;
726
727 t_params = simple_tuner_params(fe, TUNER_PARAM_TYPE_DIGITAL);
728 ret = simple_config_lookup(fe, t_params, &frequency, &config, &cb);
729 if (ret < 0)
730 return ret;
731
732 div = ((frequency + t_params->iffreq) * 62500 + offset +
733 tun->stepsize/2) / tun->stepsize;
734
735 buf[0] = div >> 8;
736 buf[1] = div & 0xff;
737 buf[2] = config;
738 buf[3] = cb;
739
740 tuner_dbg("%s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
741 tun->name, div, buf[0], buf[1], buf[2], buf[3]);
742
743 /* calculate the frequency we set it to */
744 return (div * tun->stepsize) - t_params->iffreq;
745}
746
747static int simple_dvb_calc_regs(struct dvb_frontend *fe,
748 struct dvb_frontend_parameters *params,
749 u8 *buf, int buf_len)
750{
751 struct tuner_simple_priv *priv = fe->tuner_priv;
752 int ret;
753 u32 frequency;
754
755 if (buf_len < 5)
756 return -EINVAL;
757
758 ret = simple_dvb_configure(fe, buf+1, params);
759 if (ret < 0)
760 return ret;
761 else
762 frequency = ret;
763
764 buf[0] = priv->i2c_props.addr;
765
766 priv->frequency = frequency;
767 priv->bandwidth = (fe->ops.info.type == FE_OFDM) ?
768 params->u.ofdm.bandwidth : 0;
769
770 return 5;
771}
772
773static int simple_dvb_set_params(struct dvb_frontend *fe,
774 struct dvb_frontend_parameters *params)
775{
776 struct tuner_simple_priv *priv = fe->tuner_priv;
777 u32 prev_freq, prev_bw;
778 int ret;
779 u8 buf[5];
780
781 if (priv->i2c_props.adap == NULL)
782 return -EINVAL;
783
784 prev_freq = priv->frequency;
785 prev_bw = priv->bandwidth;
786
787 ret = simple_dvb_calc_regs(fe, params, buf, 5);
788 if (ret != 5)
789 goto fail;
790
791 /* put analog demod in standby when tuning digital */
792 if (fe->ops.analog_ops.standby)
793 fe->ops.analog_ops.standby(fe);
794
795 if (fe->ops.i2c_gate_ctrl)
796 fe->ops.i2c_gate_ctrl(fe, 1);
797
798 /* buf[0] contains the i2c address, but *
799 * we already have it in i2c_props.addr */
800 ret = tuner_i2c_xfer_send(&priv->i2c_props, buf+1, 4);
801 if (ret != 4)
802 goto fail;
803
804 return 0;
805fail:
806 /* calc_regs sets frequency and bandwidth. if we failed, unset them */
807 priv->frequency = prev_freq;
808 priv->bandwidth = prev_bw;
809
810 return ret;
811}
Michael Krufky4adad282007-08-27 21:59:08 -0300812
Michael Krufky6f4a5722008-04-22 14:45:53 -0300813static int simple_init(struct dvb_frontend *fe)
814{
815 struct tuner_simple_priv *priv = fe->tuner_priv;
816
817 if (priv->i2c_props.adap == NULL)
818 return -EINVAL;
819
820 if (priv->tun->initdata) {
821 int ret;
822
823 if (fe->ops.i2c_gate_ctrl)
824 fe->ops.i2c_gate_ctrl(fe, 1);
825
826 ret = tuner_i2c_xfer_send(&priv->i2c_props,
827 priv->tun->initdata + 1,
828 priv->tun->initdata[0]);
829 if (ret != priv->tun->initdata[0])
830 return ret;
831 }
832
833 return 0;
834}
835
836static int simple_sleep(struct dvb_frontend *fe)
837{
838 struct tuner_simple_priv *priv = fe->tuner_priv;
839
840 if (priv->i2c_props.adap == NULL)
841 return -EINVAL;
842
843 if (priv->tun->sleepdata) {
844 int ret;
845
846 if (fe->ops.i2c_gate_ctrl)
847 fe->ops.i2c_gate_ctrl(fe, 1);
848
849 ret = tuner_i2c_xfer_send(&priv->i2c_props,
850 priv->tun->sleepdata + 1,
851 priv->tun->sleepdata[0]);
852 if (ret != priv->tun->sleepdata[0])
853 return ret;
854 }
855
856 return 0;
857}
858
Michael Krufky4adad282007-08-27 21:59:08 -0300859static int simple_release(struct dvb_frontend *fe)
860{
Michael Krufky62325492008-04-22 14:45:52 -0300861 struct tuner_simple_priv *priv = fe->tuner_priv;
862
863 mutex_lock(&tuner_simple_list_mutex);
864
865 if (priv)
866 hybrid_tuner_release_state(priv);
867
868 mutex_unlock(&tuner_simple_list_mutex);
869
Michael Krufky4adad282007-08-27 21:59:08 -0300870 fe->tuner_priv = NULL;
871
872 return 0;
873}
874
875static int simple_get_frequency(struct dvb_frontend *fe, u32 *frequency)
876{
877 struct tuner_simple_priv *priv = fe->tuner_priv;
878 *frequency = priv->frequency;
879 return 0;
880}
881
Michael Krufky62325492008-04-22 14:45:52 -0300882static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
883{
884 struct tuner_simple_priv *priv = fe->tuner_priv;
885 *bandwidth = priv->bandwidth;
886 return 0;
887}
888
Michael Krufky4adad282007-08-27 21:59:08 -0300889static struct dvb_tuner_ops simple_tuner_ops = {
Michael Krufky6f4a5722008-04-22 14:45:53 -0300890 .init = simple_init,
891 .sleep = simple_sleep,
Michael Krufky4adad282007-08-27 21:59:08 -0300892 .set_analog_params = simple_set_params,
Michael Krufky62325492008-04-22 14:45:52 -0300893 .set_params = simple_dvb_set_params,
894 .calc_regs = simple_dvb_calc_regs,
Michael Krufky735f0b92007-08-31 16:39:39 -0300895 .release = simple_release,
896 .get_frequency = simple_get_frequency,
Michael Krufky62325492008-04-22 14:45:52 -0300897 .get_bandwidth = simple_get_bandwidth,
Michael Krufky735f0b92007-08-31 16:39:39 -0300898 .get_status = simple_get_status,
899 .get_rf_strength = simple_get_rf_strength,
Michael Krufky5d807c92007-06-06 16:17:57 -0300900};
901
Michael Krufky4adad282007-08-27 21:59:08 -0300902struct dvb_frontend *simple_tuner_attach(struct dvb_frontend *fe,
903 struct i2c_adapter *i2c_adap,
904 u8 i2c_addr,
Michael Krufky060a5bd2008-04-22 14:41:51 -0300905 unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Michael Krufky6b1dde92007-08-11 15:42:12 -0300907 struct tuner_simple_priv *priv = NULL;
Michael Krufky62325492008-04-22 14:45:52 -0300908 int instance;
Michael Krufky6b1dde92007-08-11 15:42:12 -0300909
Michael Krufky65e8d292008-04-22 14:41:50 -0300910 if (type >= tuner_count) {
911 printk(KERN_WARNING "%s: invalid tuner type: %d (max: %d)\n",
912 __FUNCTION__, type, tuner_count-1);
913 return NULL;
914 }
915
Michael Krufky62325492008-04-22 14:45:52 -0300916 mutex_lock(&tuner_simple_list_mutex);
917
918 instance = hybrid_tuner_request_state(struct tuner_simple_priv, priv,
919 hybrid_tuner_instance_list,
920 i2c_adap, i2c_addr,
921 "tuner-simple");
922 switch (instance) {
923 case 0:
924 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufky4adad282007-08-27 21:59:08 -0300925 return NULL;
Michael Krufky62325492008-04-22 14:45:52 -0300926 break;
927 case 1:
928 fe->tuner_priv = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Michael Krufky62325492008-04-22 14:45:52 -0300930 priv->type = type;
931 priv->tun = &tuners[type];
932 break;
933 default:
934 fe->tuner_priv = priv;
935 break;
936 }
Michael Krufky27566652008-04-22 14:41:53 -0300937
Michael Krufky62325492008-04-22 14:45:52 -0300938 mutex_unlock(&tuner_simple_list_mutex);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300939
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300940 memcpy(&fe->ops.tuner_ops, &simple_tuner_ops,
941 sizeof(struct dvb_tuner_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Michael Krufky62325492008-04-22 14:45:52 -0300943 tuner_info("type set to %d (%s)\n", type, priv->tun->name);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700944
Michael Krufky060a5bd2008-04-22 14:41:51 -0300945 strlcpy(fe->ops.tuner_ops.info.name, priv->tun->name,
Michael Krufky9ba0a3c02008-04-22 14:41:44 -0300946 sizeof(fe->ops.tuner_ops.info.name));
Michael Krufky4adad282007-08-27 21:59:08 -0300947
948 return fe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
Michael Krufky4adad282007-08-27 21:59:08 -0300950EXPORT_SYMBOL_GPL(simple_tuner_attach);
951
952MODULE_DESCRIPTION("Simple 4-control-bytes style tuner driver");
953MODULE_AUTHOR("Ralph Metzler, Gerd Knorr, Gunther Mayer");
954MODULE_LICENSE("GPL");
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956/*
957 * Overrides for Emacs so that we follow Linus's tabbing style.
958 * ---------------------------------------------------------------------------
959 * Local variables:
960 * c-basic-offset: 8
961 * End:
962 */