V4L/DVB (7424): dvb-pll: remove support for Philips TUV1236D
[safe/jmp/linux-2.6] / drivers / media / dvb / frontends / dvb-pll.c
1 /*
2  * descriptions + helper functions for simple dvb plls.
3  *
4  * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 #include <linux/module.h>
22 #include <linux/dvb/frontend.h>
23 #include <asm/types.h>
24
25 #include "dvb-pll.h"
26
27 struct dvb_pll_priv {
28         /* pll number */
29         int nr;
30
31         /* i2c details */
32         int pll_i2c_address;
33         struct i2c_adapter *i2c;
34
35         /* the PLL descriptor */
36         struct dvb_pll_desc *pll_desc;
37
38         /* cached frequency/bandwidth */
39         u32 frequency;
40         u32 bandwidth;
41 };
42
43 #define DVB_PLL_MAX 64
44
45 static unsigned int dvb_pll_devcount;
46
47 static int debug;
48 module_param(debug, int, 0644);
49 MODULE_PARM_DESC(debug, "enable verbose debug messages");
50
51 static unsigned int input[DVB_PLL_MAX] = { [ 0 ... (DVB_PLL_MAX-1) ] = 0 };
52 module_param_array(input, int, NULL, 0644);
53 MODULE_PARM_DESC(input,"specify rf input choice, 0 for autoselect (default)");
54
55 static unsigned int id[DVB_PLL_MAX] =
56         { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED };
57 module_param_array(id, int, NULL, 0644);
58 MODULE_PARM_DESC(id, "force pll id to use (DEBUG ONLY)");
59
60 /* ----------------------------------------------------------- */
61
62 struct dvb_pll_desc {
63         char *name;
64         u32  min;
65         u32  max;
66         u32  iffreq;
67         void (*set)(struct dvb_frontend *fe, u8 *buf,
68                     const struct dvb_frontend_parameters *params);
69         u8   *initdata;
70         u8   *sleepdata;
71         int  count;
72         struct {
73                 u32 limit;
74                 u32 stepsize;
75                 u8  config;
76                 u8  cb;
77         } entries[12];
78 };
79
80 /* ----------------------------------------------------------- */
81 /* descriptions                                                */
82
83
84 static struct dvb_pll_desc dvb_pll_thomson_dtt7579 = {
85         .name  = "Thomson dtt7579",
86         .min   = 177000000,
87         .max   = 858000000,
88         .iffreq= 36166667,
89         .sleepdata = (u8[]){ 2, 0xb4, 0x03 },
90         .count = 4,
91         .entries = {
92                 {  443250000, 166667, 0xb4, 0x02 },
93                 {  542000000, 166667, 0xb4, 0x08 },
94                 {  771000000, 166667, 0xbc, 0x08 },
95                 {  999999999, 166667, 0xf4, 0x08 },
96         },
97 };
98
99
100 static void thomson_dtt759x_bw(struct dvb_frontend *fe, u8 *buf,
101                                const struct dvb_frontend_parameters *params)
102 {
103         if (BANDWIDTH_7_MHZ == params->u.ofdm.bandwidth)
104                 buf[3] |= 0x10;
105 }
106
107 static struct dvb_pll_desc dvb_pll_thomson_dtt759x = {
108         .name  = "Thomson dtt759x",
109         .min   = 177000000,
110         .max   = 896000000,
111         .set   = thomson_dtt759x_bw,
112         .iffreq= 36166667,
113         .sleepdata = (u8[]){ 2, 0x84, 0x03 },
114         .count = 5,
115         .entries = {
116                 {  264000000, 166667, 0xb4, 0x02 },
117                 {  470000000, 166667, 0xbc, 0x02 },
118                 {  735000000, 166667, 0xbc, 0x08 },
119                 {  835000000, 166667, 0xf4, 0x08 },
120                 {  999999999, 166667, 0xfc, 0x08 },
121         },
122 };
123
124 static struct dvb_pll_desc dvb_pll_lg_z201 = {
125         .name  = "LG z201",
126         .min   = 174000000,
127         .max   = 862000000,
128         .iffreq= 36166667,
129         .sleepdata = (u8[]){ 2, 0xbc, 0x03 },
130         .count = 5,
131         .entries = {
132                 {  157500000, 166667, 0xbc, 0x01 },
133                 {  443250000, 166667, 0xbc, 0x02 },
134                 {  542000000, 166667, 0xbc, 0x04 },
135                 {  830000000, 166667, 0xf4, 0x04 },
136                 {  999999999, 166667, 0xfc, 0x04 },
137         },
138 };
139
140
141 static struct dvb_pll_desc dvb_pll_unknown_1 = {
142         .name  = "unknown 1", /* used by dntv live dvb-t */
143         .min   = 174000000,
144         .max   = 862000000,
145         .iffreq= 36166667,
146         .count = 9,
147         .entries = {
148                 {  150000000, 166667, 0xb4, 0x01 },
149                 {  173000000, 166667, 0xbc, 0x01 },
150                 {  250000000, 166667, 0xb4, 0x02 },
151                 {  400000000, 166667, 0xbc, 0x02 },
152                 {  420000000, 166667, 0xf4, 0x02 },
153                 {  470000000, 166667, 0xfc, 0x02 },
154                 {  600000000, 166667, 0xbc, 0x08 },
155                 {  730000000, 166667, 0xf4, 0x08 },
156                 {  999999999, 166667, 0xfc, 0x08 },
157         },
158 };
159
160 /* Infineon TUA6010XS
161  * used in Thomson Cable Tuner
162  */
163 static struct dvb_pll_desc dvb_pll_tua6010xs = {
164         .name  = "Infineon TUA6010XS",
165         .min   =  44250000,
166         .max   = 858000000,
167         .iffreq= 36125000,
168         .count = 3,
169         .entries = {
170                 {  115750000, 62500, 0x8e, 0x03 },
171                 {  403250000, 62500, 0x8e, 0x06 },
172                 {  999999999, 62500, 0x8e, 0x85 },
173         },
174 };
175
176 /* Panasonic env57h1xd5 (some Philips PLL ?) */
177 static struct dvb_pll_desc dvb_pll_env57h1xd5 = {
178         .name  = "Panasonic ENV57H1XD5",
179         .min   =  44250000,
180         .max   = 858000000,
181         .iffreq= 36125000,
182         .count = 4,
183         .entries = {
184                 {  153000000, 166667, 0xc2, 0x41 },
185                 {  470000000, 166667, 0xc2, 0x42 },
186                 {  526000000, 166667, 0xc2, 0x84 },
187                 {  999999999, 166667, 0xc2, 0xa4 },
188         },
189 };
190
191 /* Philips TDA6650/TDA6651
192  * used in Panasonic ENV77H11D5
193  */
194 static void tda665x_bw(struct dvb_frontend *fe, u8 *buf,
195                        const struct dvb_frontend_parameters *params)
196 {
197         if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
198                 buf[3] |= 0x08;
199 }
200
201 static struct dvb_pll_desc dvb_pll_tda665x = {
202         .name  = "Philips TDA6650/TDA6651",
203         .min   =  44250000,
204         .max   = 858000000,
205         .set   = tda665x_bw,
206         .iffreq= 36166667,
207         .initdata = (u8[]){ 4, 0x0b, 0xf5, 0x85, 0xab },
208         .count = 12,
209         .entries = {
210                 {   93834000, 166667, 0xca, 0x61 /* 011 0 0 0  01 */ },
211                 {  123834000, 166667, 0xca, 0xa1 /* 101 0 0 0  01 */ },
212                 {  161000000, 166667, 0xca, 0xa1 /* 101 0 0 0  01 */ },
213                 {  163834000, 166667, 0xca, 0xc2 /* 110 0 0 0  10 */ },
214                 {  253834000, 166667, 0xca, 0x62 /* 011 0 0 0  10 */ },
215                 {  383834000, 166667, 0xca, 0xa2 /* 101 0 0 0  10 */ },
216                 {  443834000, 166667, 0xca, 0xc2 /* 110 0 0 0  10 */ },
217                 {  444000000, 166667, 0xca, 0xc4 /* 110 0 0 1  00 */ },
218                 {  583834000, 166667, 0xca, 0x64 /* 011 0 0 1  00 */ },
219                 {  793834000, 166667, 0xca, 0xa4 /* 101 0 0 1  00 */ },
220                 {  444834000, 166667, 0xca, 0xc4 /* 110 0 0 1  00 */ },
221                 {  861000000, 166667, 0xca, 0xe4 /* 111 0 0 1  00 */ },
222         }
223 };
224
225 /* Infineon TUA6034
226  * used in LG TDTP E102P
227  */
228 static void tua6034_bw(struct dvb_frontend *fe, u8 *buf,
229                        const struct dvb_frontend_parameters *params)
230 {
231         if (BANDWIDTH_7_MHZ != params->u.ofdm.bandwidth)
232                 buf[3] |= 0x08;
233 }
234
235 static struct dvb_pll_desc dvb_pll_tua6034 = {
236         .name  = "Infineon TUA6034",
237         .min   =  44250000,
238         .max   = 858000000,
239         .iffreq= 36166667,
240         .count = 3,
241         .set   = tua6034_bw,
242         .entries = {
243                 {  174500000, 62500, 0xce, 0x01 },
244                 {  230000000, 62500, 0xce, 0x02 },
245                 {  999999999, 62500, 0xce, 0x04 },
246         },
247 };
248
249
250 /* ALPS TDED4
251  * used in Nebula-Cards and USB boxes
252  */
253 static void tded4_bw(struct dvb_frontend *fe, u8 *buf,
254                      const struct dvb_frontend_parameters *params)
255 {
256         if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
257                 buf[3] |= 0x04;
258 }
259
260 static struct dvb_pll_desc dvb_pll_tded4 = {
261         .name = "ALPS TDED4",
262         .min = 47000000,
263         .max = 863000000,
264         .iffreq= 36166667,
265         .set   = tded4_bw,
266         .count = 4,
267         .entries = {
268                 { 153000000, 166667, 0x85, 0x01 },
269                 { 470000000, 166667, 0x85, 0x02 },
270                 { 823000000, 166667, 0x85, 0x08 },
271                 { 999999999, 166667, 0x85, 0x88 },
272         }
273 };
274
275 /* ALPS TDHU2
276  * used in AverTVHD MCE A180
277  */
278 static struct dvb_pll_desc dvb_pll_tdhu2 = {
279         .name = "ALPS TDHU2",
280         .min = 54000000,
281         .max = 864000000,
282         .iffreq= 44000000,
283         .count = 4,
284         .entries = {
285                 { 162000000, 62500, 0x85, 0x01 },
286                 { 426000000, 62500, 0x85, 0x02 },
287                 { 782000000, 62500, 0x85, 0x08 },
288                 { 999999999, 62500, 0x85, 0x88 },
289         }
290 };
291
292
293 /* Samsung TBMV30111IN / TBMV30712IN1
294  * used in Air2PC ATSC - 2nd generation (nxt2002)
295  */
296 static struct dvb_pll_desc dvb_pll_samsung_tbmv = {
297         .name = "Samsung TBMV30111IN / TBMV30712IN1",
298         .min = 54000000,
299         .max = 860000000,
300         .iffreq= 44000000,
301         .count = 6,
302         .entries = {
303                 { 172000000, 166667, 0xb4, 0x01 },
304                 { 214000000, 166667, 0xb4, 0x02 },
305                 { 467000000, 166667, 0xbc, 0x02 },
306                 { 721000000, 166667, 0xbc, 0x08 },
307                 { 841000000, 166667, 0xf4, 0x08 },
308                 { 999999999, 166667, 0xfc, 0x02 },
309         }
310 };
311
312 /*
313  * Philips SD1878 Tuner.
314  */
315 static struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261 = {
316         .name  = "Philips SD1878",
317         .min   =  950000,
318         .max   = 2150000,
319         .iffreq= 249, /* zero-IF, offset 249 is to round up */
320         .count = 4,
321         .entries = {
322                 { 1250000, 500, 0xc4, 0x00},
323                 { 1550000, 500, 0xc4, 0x40},
324                 { 2050000, 500, 0xc4, 0x80},
325                 { 2150000, 500, 0xc4, 0xc0},
326         },
327 };
328
329
330
331 static void opera1_bw(struct dvb_frontend *fe, u8 *buf,
332                       const struct dvb_frontend_parameters *params)
333 {
334         if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
335                 buf[2] |= 0x08;
336 }
337
338 static struct dvb_pll_desc dvb_pll_opera1 = {
339         .name  = "Opera Tuner",
340         .min   =  900000,
341         .max   = 2250000,
342         .iffreq= 0,
343         .set   = opera1_bw,
344         .count = 8,
345         .entries = {
346                 { 1064000, 500, 0xe5, 0xc6 },
347                 { 1169000, 500, 0xe5, 0xe6 },
348                 { 1299000, 500, 0xe5, 0x24 },
349                 { 1444000, 500, 0xe5, 0x44 },
350                 { 1606000, 500, 0xe5, 0x64 },
351                 { 1777000, 500, 0xe5, 0x84 },
352                 { 1941000, 500, 0xe5, 0xa4 },
353                 { 2250000, 500, 0xe5, 0xc4 },
354         }
355 };
356
357
358 /* ----------------------------------------------------------- */
359
360 static struct dvb_pll_desc *pll_list[] = {
361         [DVB_PLL_UNDEFINED]              = NULL,
362         [DVB_PLL_THOMSON_DTT7579]        = &dvb_pll_thomson_dtt7579,
363         [DVB_PLL_THOMSON_DTT759X]        = &dvb_pll_thomson_dtt759x,
364         [DVB_PLL_LG_Z201]                = &dvb_pll_lg_z201,
365         [DVB_PLL_UNKNOWN_1]              = &dvb_pll_unknown_1,
366         [DVB_PLL_TUA6010XS]              = &dvb_pll_tua6010xs,
367         [DVB_PLL_ENV57H1XD5]             = &dvb_pll_env57h1xd5,
368         [DVB_PLL_TUA6034]                = &dvb_pll_tua6034,
369         [DVB_PLL_TDA665X]                = &dvb_pll_tda665x,
370         [DVB_PLL_TDED4]                  = &dvb_pll_tded4,
371         [DVB_PLL_TDHU2]                  = &dvb_pll_tdhu2,
372         [DVB_PLL_SAMSUNG_TBMV]           = &dvb_pll_samsung_tbmv,
373         [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261,
374         [DVB_PLL_OPERA1]                 = &dvb_pll_opera1,
375 };
376
377 /* ----------------------------------------------------------- */
378 /* code                                                        */
379
380 static int dvb_pll_configure(struct dvb_frontend *fe, u8 *buf,
381                              const struct dvb_frontend_parameters *params)
382 {
383         struct dvb_pll_priv *priv = fe->tuner_priv;
384         struct dvb_pll_desc *desc = priv->pll_desc;
385         u32 div;
386         int i;
387
388         if (params->frequency != 0 && (params->frequency < desc->min ||
389                                        params->frequency > desc->max))
390                 return -EINVAL;
391
392         for (i = 0; i < desc->count; i++) {
393                 if (params->frequency > desc->entries[i].limit)
394                         continue;
395                 break;
396         }
397
398         if (debug)
399                 printk("pll: %s: freq=%d | i=%d/%d\n", desc->name,
400                        params->frequency, i, desc->count);
401         if (i == desc->count)
402                 return -EINVAL;
403
404         div = (params->frequency + desc->iffreq +
405                desc->entries[i].stepsize/2) / desc->entries[i].stepsize;
406         buf[0] = div >> 8;
407         buf[1] = div & 0xff;
408         buf[2] = desc->entries[i].config;
409         buf[3] = desc->entries[i].cb;
410
411         if (desc->set)
412                 desc->set(fe, buf, params);
413
414         if (debug)
415                 printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
416                        desc->name, div, buf[0], buf[1], buf[2], buf[3]);
417
418         // calculate the frequency we set it to
419         return (div * desc->entries[i].stepsize) - desc->iffreq;
420 }
421
422 static int dvb_pll_release(struct dvb_frontend *fe)
423 {
424         kfree(fe->tuner_priv);
425         fe->tuner_priv = NULL;
426         return 0;
427 }
428
429 static int dvb_pll_sleep(struct dvb_frontend *fe)
430 {
431         struct dvb_pll_priv *priv = fe->tuner_priv;
432
433         if (priv->i2c == NULL)
434                 return -EINVAL;
435
436         if (priv->pll_desc->sleepdata) {
437                 struct i2c_msg msg = { .flags = 0,
438                         .addr = priv->pll_i2c_address,
439                         .buf = priv->pll_desc->sleepdata + 1,
440                         .len = priv->pll_desc->sleepdata[0] };
441
442                 int result;
443
444                 if (fe->ops.i2c_gate_ctrl)
445                         fe->ops.i2c_gate_ctrl(fe, 1);
446                 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
447                         return result;
448                 }
449                 return 0;
450         }
451         /* Shouldn't be called when initdata is NULL, maybe BUG()? */
452         return -EINVAL;
453 }
454
455 static int dvb_pll_set_params(struct dvb_frontend *fe,
456                               struct dvb_frontend_parameters *params)
457 {
458         struct dvb_pll_priv *priv = fe->tuner_priv;
459         u8 buf[4];
460         struct i2c_msg msg =
461                 { .addr = priv->pll_i2c_address, .flags = 0,
462                   .buf = buf, .len = sizeof(buf) };
463         int result;
464         u32 frequency = 0;
465
466         if (priv->i2c == NULL)
467                 return -EINVAL;
468
469         if ((result = dvb_pll_configure(fe, buf, params)) < 0)
470                 return result;
471         else
472                 frequency = result;
473
474         if (fe->ops.i2c_gate_ctrl)
475                 fe->ops.i2c_gate_ctrl(fe, 1);
476         if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
477                 return result;
478         }
479
480         priv->frequency = frequency;
481         priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0;
482
483         return 0;
484 }
485
486 static int dvb_pll_calc_regs(struct dvb_frontend *fe,
487                              struct dvb_frontend_parameters *params,
488                              u8 *buf, int buf_len)
489 {
490         struct dvb_pll_priv *priv = fe->tuner_priv;
491         int result;
492         u32 frequency = 0;
493
494         if (buf_len < 5)
495                 return -EINVAL;
496
497         if ((result = dvb_pll_configure(fe, buf+1, params)) < 0)
498                 return result;
499         else
500                 frequency = result;
501
502         buf[0] = priv->pll_i2c_address;
503
504         priv->frequency = frequency;
505         priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0;
506
507         return 5;
508 }
509
510 static int dvb_pll_get_frequency(struct dvb_frontend *fe, u32 *frequency)
511 {
512         struct dvb_pll_priv *priv = fe->tuner_priv;
513         *frequency = priv->frequency;
514         return 0;
515 }
516
517 static int dvb_pll_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
518 {
519         struct dvb_pll_priv *priv = fe->tuner_priv;
520         *bandwidth = priv->bandwidth;
521         return 0;
522 }
523
524 static int dvb_pll_init(struct dvb_frontend *fe)
525 {
526         struct dvb_pll_priv *priv = fe->tuner_priv;
527
528         if (priv->i2c == NULL)
529                 return -EINVAL;
530
531         if (priv->pll_desc->initdata) {
532                 struct i2c_msg msg = { .flags = 0,
533                         .addr = priv->pll_i2c_address,
534                         .buf = priv->pll_desc->initdata + 1,
535                         .len = priv->pll_desc->initdata[0] };
536
537                 int result;
538                 if (fe->ops.i2c_gate_ctrl)
539                         fe->ops.i2c_gate_ctrl(fe, 1);
540                 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
541                         return result;
542                 }
543                 return 0;
544         }
545         /* Shouldn't be called when initdata is NULL, maybe BUG()? */
546         return -EINVAL;
547 }
548
549 static struct dvb_tuner_ops dvb_pll_tuner_ops = {
550         .release = dvb_pll_release,
551         .sleep = dvb_pll_sleep,
552         .init = dvb_pll_init,
553         .set_params = dvb_pll_set_params,
554         .calc_regs = dvb_pll_calc_regs,
555         .get_frequency = dvb_pll_get_frequency,
556         .get_bandwidth = dvb_pll_get_bandwidth,
557 };
558
559 struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr,
560                                     struct i2c_adapter *i2c,
561                                     unsigned int pll_desc_id)
562 {
563         u8 b1 [] = { 0 };
564         struct i2c_msg msg = { .addr = pll_addr, .flags = I2C_M_RD,
565                                .buf = b1, .len = 1 };
566         struct dvb_pll_priv *priv = NULL;
567         int ret;
568         struct dvb_pll_desc *desc;
569
570         if ((id[dvb_pll_devcount] > DVB_PLL_UNDEFINED) &&
571             (id[dvb_pll_devcount] < ARRAY_SIZE(pll_list)))
572                 pll_desc_id = id[dvb_pll_devcount];
573
574         BUG_ON(pll_desc_id < 1 || pll_desc_id >= ARRAY_SIZE(pll_list));
575
576         desc = pll_list[pll_desc_id];
577
578         if (i2c != NULL) {
579                 if (fe->ops.i2c_gate_ctrl)
580                         fe->ops.i2c_gate_ctrl(fe, 1);
581
582                 ret = i2c_transfer (i2c, &msg, 1);
583                 if (ret != 1)
584                         return NULL;
585                 if (fe->ops.i2c_gate_ctrl)
586                              fe->ops.i2c_gate_ctrl(fe, 0);
587         }
588
589         priv = kzalloc(sizeof(struct dvb_pll_priv), GFP_KERNEL);
590         if (priv == NULL)
591                 return NULL;
592
593         priv->pll_i2c_address = pll_addr;
594         priv->i2c = i2c;
595         priv->pll_desc = desc;
596         priv->nr = dvb_pll_devcount++;
597
598         memcpy(&fe->ops.tuner_ops, &dvb_pll_tuner_ops,
599                sizeof(struct dvb_tuner_ops));
600
601         strncpy(fe->ops.tuner_ops.info.name, desc->name,
602                 sizeof(fe->ops.tuner_ops.info.name));
603         fe->ops.tuner_ops.info.frequency_min = desc->min;
604         fe->ops.tuner_ops.info.frequency_max = desc->max;
605         if (!desc->initdata)
606                 fe->ops.tuner_ops.init = NULL;
607         if (!desc->sleepdata)
608                 fe->ops.tuner_ops.sleep = NULL;
609
610         fe->tuner_priv = priv;
611
612         if ((debug) || (id[priv->nr] == pll_desc_id)) {
613                 printk("dvb-pll[%d]", priv->nr);
614                 if (i2c != NULL)
615                         printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr);
616                 printk(": id# %d (%s) attached, %s\n", pll_desc_id, desc->name,
617                        id[priv->nr] == pll_desc_id ?
618                                 "insmod option" : "autodetected");
619         }
620         if ((debug) || (input[priv->nr] > 0)) {
621                 printk("dvb-pll[%d]", priv->nr);
622                 if (i2c != NULL)
623                         printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr);
624                 printk(": tuner rf input will be ");
625                 switch (input[priv->nr]) {
626                 case 0:
627                         printk("autoselected\n");
628                         break;
629                 default:
630                         printk("set to input %d (insmod option)\n",
631                                input[priv->nr]);
632                 }
633         }
634
635         return fe;
636 }
637 EXPORT_SYMBOL(dvb_pll_attach);
638
639 MODULE_DESCRIPTION("dvb pll library");
640 MODULE_AUTHOR("Gerd Knorr");
641 MODULE_LICENSE("GPL");