V4L/DVB (7423): dvb-pll: remove support for Philips TD1316
[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 /* Philips TUV1236D
293  * used in ATI HDTV Wonder
294  */
295 static void tuv1236d_rf(struct dvb_frontend *fe, u8 *buf,
296                         const struct dvb_frontend_parameters *params)
297 {
298         struct dvb_pll_priv *priv = fe->tuner_priv;
299         unsigned int new_rf = input[priv->nr];
300
301         if ((new_rf == 0) || (new_rf > 2)) {
302                 switch (params->u.vsb.modulation) {
303                         case QAM_64:
304                         case QAM_256:
305                                 new_rf = 1;
306                                 break;
307                         case VSB_8:
308                         default:
309                                 new_rf = 2;
310                 }
311         }
312
313         switch (new_rf) {
314                 case 1:
315                         buf[3] |= 0x08;
316                         break;
317                 case 2:
318                         buf[3] &= ~0x08;
319                         break;
320                 default:
321                         printk(KERN_WARNING
322                                "%s: unhandled rf input selection: %d",
323                                __FUNCTION__, new_rf);
324         }
325 }
326
327 static struct dvb_pll_desc dvb_pll_tuv1236d = {
328         .name  = "Philips TUV1236D",
329         .min   =  54000000,
330         .max   = 864000000,
331         .iffreq= 44000000,
332         .set   = tuv1236d_rf,
333         .count = 3,
334         .entries = {
335                 { 157250000, 62500, 0xc6, 0x41 },
336                 { 454000000, 62500, 0xc6, 0x42 },
337                 { 999999999, 62500, 0xc6, 0x44 },
338         },
339 };
340
341 /* Samsung TBMV30111IN / TBMV30712IN1
342  * used in Air2PC ATSC - 2nd generation (nxt2002)
343  */
344 static struct dvb_pll_desc dvb_pll_samsung_tbmv = {
345         .name = "Samsung TBMV30111IN / TBMV30712IN1",
346         .min = 54000000,
347         .max = 860000000,
348         .iffreq= 44000000,
349         .count = 6,
350         .entries = {
351                 { 172000000, 166667, 0xb4, 0x01 },
352                 { 214000000, 166667, 0xb4, 0x02 },
353                 { 467000000, 166667, 0xbc, 0x02 },
354                 { 721000000, 166667, 0xbc, 0x08 },
355                 { 841000000, 166667, 0xf4, 0x08 },
356                 { 999999999, 166667, 0xfc, 0x02 },
357         }
358 };
359
360 /*
361  * Philips SD1878 Tuner.
362  */
363 static struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261 = {
364         .name  = "Philips SD1878",
365         .min   =  950000,
366         .max   = 2150000,
367         .iffreq= 249, /* zero-IF, offset 249 is to round up */
368         .count = 4,
369         .entries = {
370                 { 1250000, 500, 0xc4, 0x00},
371                 { 1550000, 500, 0xc4, 0x40},
372                 { 2050000, 500, 0xc4, 0x80},
373                 { 2150000, 500, 0xc4, 0xc0},
374         },
375 };
376
377
378
379 static void opera1_bw(struct dvb_frontend *fe, u8 *buf,
380                       const struct dvb_frontend_parameters *params)
381 {
382         if (params->u.ofdm.bandwidth == BANDWIDTH_8_MHZ)
383                 buf[2] |= 0x08;
384 }
385
386 static struct dvb_pll_desc dvb_pll_opera1 = {
387         .name  = "Opera Tuner",
388         .min   =  900000,
389         .max   = 2250000,
390         .iffreq= 0,
391         .set   = opera1_bw,
392         .count = 8,
393         .entries = {
394                 { 1064000, 500, 0xe5, 0xc6 },
395                 { 1169000, 500, 0xe5, 0xe6 },
396                 { 1299000, 500, 0xe5, 0x24 },
397                 { 1444000, 500, 0xe5, 0x44 },
398                 { 1606000, 500, 0xe5, 0x64 },
399                 { 1777000, 500, 0xe5, 0x84 },
400                 { 1941000, 500, 0xe5, 0xa4 },
401                 { 2250000, 500, 0xe5, 0xc4 },
402         }
403 };
404
405
406 /* ----------------------------------------------------------- */
407
408 static struct dvb_pll_desc *pll_list[] = {
409         [DVB_PLL_UNDEFINED]              = NULL,
410         [DVB_PLL_THOMSON_DTT7579]        = &dvb_pll_thomson_dtt7579,
411         [DVB_PLL_THOMSON_DTT759X]        = &dvb_pll_thomson_dtt759x,
412         [DVB_PLL_LG_Z201]                = &dvb_pll_lg_z201,
413         [DVB_PLL_UNKNOWN_1]              = &dvb_pll_unknown_1,
414         [DVB_PLL_TUA6010XS]              = &dvb_pll_tua6010xs,
415         [DVB_PLL_ENV57H1XD5]             = &dvb_pll_env57h1xd5,
416         [DVB_PLL_TUA6034]                = &dvb_pll_tua6034,
417         [DVB_PLL_TDA665X]                = &dvb_pll_tda665x,
418         [DVB_PLL_TDED4]                  = &dvb_pll_tded4,
419         [DVB_PLL_TUV1236D]               = &dvb_pll_tuv1236d,
420         [DVB_PLL_TDHU2]                  = &dvb_pll_tdhu2,
421         [DVB_PLL_SAMSUNG_TBMV]           = &dvb_pll_samsung_tbmv,
422         [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261,
423         [DVB_PLL_OPERA1]                 = &dvb_pll_opera1,
424 };
425
426 /* ----------------------------------------------------------- */
427 /* code                                                        */
428
429 static int dvb_pll_configure(struct dvb_frontend *fe, u8 *buf,
430                              const struct dvb_frontend_parameters *params)
431 {
432         struct dvb_pll_priv *priv = fe->tuner_priv;
433         struct dvb_pll_desc *desc = priv->pll_desc;
434         u32 div;
435         int i;
436
437         if (params->frequency != 0 && (params->frequency < desc->min ||
438                                        params->frequency > desc->max))
439                 return -EINVAL;
440
441         for (i = 0; i < desc->count; i++) {
442                 if (params->frequency > desc->entries[i].limit)
443                         continue;
444                 break;
445         }
446
447         if (debug)
448                 printk("pll: %s: freq=%d | i=%d/%d\n", desc->name,
449                        params->frequency, i, desc->count);
450         if (i == desc->count)
451                 return -EINVAL;
452
453         div = (params->frequency + desc->iffreq +
454                desc->entries[i].stepsize/2) / desc->entries[i].stepsize;
455         buf[0] = div >> 8;
456         buf[1] = div & 0xff;
457         buf[2] = desc->entries[i].config;
458         buf[3] = desc->entries[i].cb;
459
460         if (desc->set)
461                 desc->set(fe, buf, params);
462
463         if (debug)
464                 printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
465                        desc->name, div, buf[0], buf[1], buf[2], buf[3]);
466
467         // calculate the frequency we set it to
468         return (div * desc->entries[i].stepsize) - desc->iffreq;
469 }
470
471 static int dvb_pll_release(struct dvb_frontend *fe)
472 {
473         kfree(fe->tuner_priv);
474         fe->tuner_priv = NULL;
475         return 0;
476 }
477
478 static int dvb_pll_sleep(struct dvb_frontend *fe)
479 {
480         struct dvb_pll_priv *priv = fe->tuner_priv;
481
482         if (priv->i2c == NULL)
483                 return -EINVAL;
484
485         if (priv->pll_desc->sleepdata) {
486                 struct i2c_msg msg = { .flags = 0,
487                         .addr = priv->pll_i2c_address,
488                         .buf = priv->pll_desc->sleepdata + 1,
489                         .len = priv->pll_desc->sleepdata[0] };
490
491                 int result;
492
493                 if (fe->ops.i2c_gate_ctrl)
494                         fe->ops.i2c_gate_ctrl(fe, 1);
495                 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
496                         return result;
497                 }
498                 return 0;
499         }
500         /* Shouldn't be called when initdata is NULL, maybe BUG()? */
501         return -EINVAL;
502 }
503
504 static int dvb_pll_set_params(struct dvb_frontend *fe,
505                               struct dvb_frontend_parameters *params)
506 {
507         struct dvb_pll_priv *priv = fe->tuner_priv;
508         u8 buf[4];
509         struct i2c_msg msg =
510                 { .addr = priv->pll_i2c_address, .flags = 0,
511                   .buf = buf, .len = sizeof(buf) };
512         int result;
513         u32 frequency = 0;
514
515         if (priv->i2c == NULL)
516                 return -EINVAL;
517
518         if ((result = dvb_pll_configure(fe, buf, params)) < 0)
519                 return result;
520         else
521                 frequency = result;
522
523         if (fe->ops.i2c_gate_ctrl)
524                 fe->ops.i2c_gate_ctrl(fe, 1);
525         if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
526                 return result;
527         }
528
529         priv->frequency = frequency;
530         priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0;
531
532         return 0;
533 }
534
535 static int dvb_pll_calc_regs(struct dvb_frontend *fe,
536                              struct dvb_frontend_parameters *params,
537                              u8 *buf, int buf_len)
538 {
539         struct dvb_pll_priv *priv = fe->tuner_priv;
540         int result;
541         u32 frequency = 0;
542
543         if (buf_len < 5)
544                 return -EINVAL;
545
546         if ((result = dvb_pll_configure(fe, buf+1, params)) < 0)
547                 return result;
548         else
549                 frequency = result;
550
551         buf[0] = priv->pll_i2c_address;
552
553         priv->frequency = frequency;
554         priv->bandwidth = (fe->ops.info.type == FE_OFDM) ? params->u.ofdm.bandwidth : 0;
555
556         return 5;
557 }
558
559 static int dvb_pll_get_frequency(struct dvb_frontend *fe, u32 *frequency)
560 {
561         struct dvb_pll_priv *priv = fe->tuner_priv;
562         *frequency = priv->frequency;
563         return 0;
564 }
565
566 static int dvb_pll_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth)
567 {
568         struct dvb_pll_priv *priv = fe->tuner_priv;
569         *bandwidth = priv->bandwidth;
570         return 0;
571 }
572
573 static int dvb_pll_init(struct dvb_frontend *fe)
574 {
575         struct dvb_pll_priv *priv = fe->tuner_priv;
576
577         if (priv->i2c == NULL)
578                 return -EINVAL;
579
580         if (priv->pll_desc->initdata) {
581                 struct i2c_msg msg = { .flags = 0,
582                         .addr = priv->pll_i2c_address,
583                         .buf = priv->pll_desc->initdata + 1,
584                         .len = priv->pll_desc->initdata[0] };
585
586                 int result;
587                 if (fe->ops.i2c_gate_ctrl)
588                         fe->ops.i2c_gate_ctrl(fe, 1);
589                 if ((result = i2c_transfer(priv->i2c, &msg, 1)) != 1) {
590                         return result;
591                 }
592                 return 0;
593         }
594         /* Shouldn't be called when initdata is NULL, maybe BUG()? */
595         return -EINVAL;
596 }
597
598 static struct dvb_tuner_ops dvb_pll_tuner_ops = {
599         .release = dvb_pll_release,
600         .sleep = dvb_pll_sleep,
601         .init = dvb_pll_init,
602         .set_params = dvb_pll_set_params,
603         .calc_regs = dvb_pll_calc_regs,
604         .get_frequency = dvb_pll_get_frequency,
605         .get_bandwidth = dvb_pll_get_bandwidth,
606 };
607
608 struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr,
609                                     struct i2c_adapter *i2c,
610                                     unsigned int pll_desc_id)
611 {
612         u8 b1 [] = { 0 };
613         struct i2c_msg msg = { .addr = pll_addr, .flags = I2C_M_RD,
614                                .buf = b1, .len = 1 };
615         struct dvb_pll_priv *priv = NULL;
616         int ret;
617         struct dvb_pll_desc *desc;
618
619         if ((id[dvb_pll_devcount] > DVB_PLL_UNDEFINED) &&
620             (id[dvb_pll_devcount] < ARRAY_SIZE(pll_list)))
621                 pll_desc_id = id[dvb_pll_devcount];
622
623         BUG_ON(pll_desc_id < 1 || pll_desc_id >= ARRAY_SIZE(pll_list));
624
625         desc = pll_list[pll_desc_id];
626
627         if (i2c != NULL) {
628                 if (fe->ops.i2c_gate_ctrl)
629                         fe->ops.i2c_gate_ctrl(fe, 1);
630
631                 ret = i2c_transfer (i2c, &msg, 1);
632                 if (ret != 1)
633                         return NULL;
634                 if (fe->ops.i2c_gate_ctrl)
635                              fe->ops.i2c_gate_ctrl(fe, 0);
636         }
637
638         priv = kzalloc(sizeof(struct dvb_pll_priv), GFP_KERNEL);
639         if (priv == NULL)
640                 return NULL;
641
642         priv->pll_i2c_address = pll_addr;
643         priv->i2c = i2c;
644         priv->pll_desc = desc;
645         priv->nr = dvb_pll_devcount++;
646
647         memcpy(&fe->ops.tuner_ops, &dvb_pll_tuner_ops,
648                sizeof(struct dvb_tuner_ops));
649
650         strncpy(fe->ops.tuner_ops.info.name, desc->name,
651                 sizeof(fe->ops.tuner_ops.info.name));
652         fe->ops.tuner_ops.info.frequency_min = desc->min;
653         fe->ops.tuner_ops.info.frequency_max = desc->max;
654         if (!desc->initdata)
655                 fe->ops.tuner_ops.init = NULL;
656         if (!desc->sleepdata)
657                 fe->ops.tuner_ops.sleep = NULL;
658
659         fe->tuner_priv = priv;
660
661         if ((debug) || (id[priv->nr] == pll_desc_id)) {
662                 printk("dvb-pll[%d]", priv->nr);
663                 if (i2c != NULL)
664                         printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr);
665                 printk(": id# %d (%s) attached, %s\n", pll_desc_id, desc->name,
666                        id[priv->nr] == pll_desc_id ?
667                                 "insmod option" : "autodetected");
668         }
669         if ((debug) || (input[priv->nr] > 0)) {
670                 printk("dvb-pll[%d]", priv->nr);
671                 if (i2c != NULL)
672                         printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr);
673                 printk(": tuner rf input will be ");
674                 switch (input[priv->nr]) {
675                 case 0:
676                         printk("autoselected\n");
677                         break;
678                 default:
679                         printk("set to input %d (insmod option)\n",
680                                input[priv->nr]);
681                 }
682         }
683
684         return fe;
685 }
686 EXPORT_SYMBOL(dvb_pll_attach);
687
688 MODULE_DESCRIPTION("dvb pll library");
689 MODULE_AUTHOR("Gerd Knorr");
690 MODULE_LICENSE("GPL");