2 * descriptions + helper functions for simple dvb plls.
4 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
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.
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.
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.
21 #include <linux/module.h>
22 #include <linux/dvb/frontend.h>
23 #include <asm/types.h>
33 struct i2c_adapter
*i2c
;
35 /* the PLL descriptor */
36 struct dvb_pll_desc
*pll_desc
;
38 /* cached frequency/bandwidth */
43 #define DVB_PLL_MAX 64
45 static unsigned int dvb_pll_devcount
;
48 module_param(debug
, int, 0644);
49 MODULE_PARM_DESC(debug
, "enable verbose debug messages");
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)");
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)");
60 /* ----------------------------------------------------------- */
67 void (*set
)(struct dvb_frontend
*fe
, u8
*buf
,
68 const struct dvb_frontend_parameters
*params
);
80 /* ----------------------------------------------------------- */
83 /* Set AGC TOP value to 103 dBuV:
85 0x40 = 250 uA charge pump (irrelevant)
86 0x18 = Aux Byte to follow
87 0x06 = 64.5 kHz divider (irrelevant)
88 0x01 = Disable Vt (aka sleep)
90 0x00 = AGC Time constant 2s Iagc = 300 nA (vs 0x80 = 9 nA)
91 0x50 = AGC Take over point = 103 dBuV */
92 static u8 tua603x_agc103
[] = { 2, 0x80|0x40|0x18|0x06|0x01, 0x00|0x50 };
94 /* 0x04 = 166.67 kHz divider
96 0x80 = AGC Time constant 50ms Iagc = 9 uA
97 0x20 = AGC Take over point = 112 dBuV */
98 static u8 tua603x_agc112
[] = { 2, 0x80|0x40|0x18|0x04|0x01, 0x80|0x20 };
100 static struct dvb_pll_desc dvb_pll_thomson_dtt7579
= {
101 .name
= "Thomson dtt7579",
105 .sleepdata
= (u8
[]){ 2, 0xb4, 0x03 },
108 { 443250000, 166667, 0xb4, 0x02 },
109 { 542000000, 166667, 0xb4, 0x08 },
110 { 771000000, 166667, 0xbc, 0x08 },
111 { 999999999, 166667, 0xf4, 0x08 },
115 static struct dvb_pll_desc dvb_pll_thomson_dtt7610
= {
116 .name
= "Thomson dtt7610",
122 { 157250000, 62500, 0x8e, 0x39 },
123 { 454000000, 62500, 0x8e, 0x3a },
124 { 999999999, 62500, 0x8e, 0x3c },
128 static void thomson_dtt759x_bw(struct dvb_frontend
*fe
, u8
*buf
,
129 const struct dvb_frontend_parameters
*params
)
131 if (BANDWIDTH_7_MHZ
== params
->u
.ofdm
.bandwidth
)
135 static struct dvb_pll_desc dvb_pll_thomson_dtt759x
= {
136 .name
= "Thomson dtt759x",
139 .set
= thomson_dtt759x_bw
,
141 .sleepdata
= (u8
[]){ 2, 0x84, 0x03 },
144 { 264000000, 166667, 0xb4, 0x02 },
145 { 470000000, 166667, 0xbc, 0x02 },
146 { 735000000, 166667, 0xbc, 0x08 },
147 { 835000000, 166667, 0xf4, 0x08 },
148 { 999999999, 166667, 0xfc, 0x08 },
152 static struct dvb_pll_desc dvb_pll_lg_z201
= {
157 .sleepdata
= (u8
[]){ 2, 0xbc, 0x03 },
160 { 157500000, 166667, 0xbc, 0x01 },
161 { 443250000, 166667, 0xbc, 0x02 },
162 { 542000000, 166667, 0xbc, 0x04 },
163 { 830000000, 166667, 0xf4, 0x04 },
164 { 999999999, 166667, 0xfc, 0x04 },
168 static struct dvb_pll_desc dvb_pll_microtune_4042
= {
169 .name
= "Microtune 4042 FI5",
175 { 162000000, 62500, 0x8e, 0xa1 },
176 { 457000000, 62500, 0x8e, 0x91 },
177 { 999999999, 62500, 0x8e, 0x31 },
181 static struct dvb_pll_desc dvb_pll_thomson_dtt761x
= {
182 /* DTT 7611 7611A 7612 7613 7613A 7614 7615 7615A */
183 .name
= "Thomson dtt761x",
188 .initdata
= tua603x_agc103
,
190 { 147000000, 62500, 0x8e, 0x39 },
191 { 417000000, 62500, 0x8e, 0x3a },
192 { 999999999, 62500, 0x8e, 0x3c },
196 static struct dvb_pll_desc dvb_pll_unknown_1
= {
197 .name
= "unknown 1", /* used by dntv live dvb-t */
203 { 150000000, 166667, 0xb4, 0x01 },
204 { 173000000, 166667, 0xbc, 0x01 },
205 { 250000000, 166667, 0xb4, 0x02 },
206 { 400000000, 166667, 0xbc, 0x02 },
207 { 420000000, 166667, 0xf4, 0x02 },
208 { 470000000, 166667, 0xfc, 0x02 },
209 { 600000000, 166667, 0xbc, 0x08 },
210 { 730000000, 166667, 0xf4, 0x08 },
211 { 999999999, 166667, 0xfc, 0x08 },
215 /* Infineon TUA6010XS
216 * used in Thomson Cable Tuner
218 static struct dvb_pll_desc dvb_pll_tua6010xs
= {
219 .name
= "Infineon TUA6010XS",
225 { 115750000, 62500, 0x8e, 0x03 },
226 { 403250000, 62500, 0x8e, 0x06 },
227 { 999999999, 62500, 0x8e, 0x85 },
231 /* Panasonic env57h1xd5 (some Philips PLL ?) */
232 static struct dvb_pll_desc dvb_pll_env57h1xd5
= {
233 .name
= "Panasonic ENV57H1XD5",
239 { 153000000, 166667, 0xc2, 0x41 },
240 { 470000000, 166667, 0xc2, 0x42 },
241 { 526000000, 166667, 0xc2, 0x84 },
242 { 999999999, 166667, 0xc2, 0xa4 },
246 /* Philips TDA6650/TDA6651
247 * used in Panasonic ENV77H11D5
249 static void tda665x_bw(struct dvb_frontend
*fe
, u8
*buf
,
250 const struct dvb_frontend_parameters
*params
)
252 if (params
->u
.ofdm
.bandwidth
== BANDWIDTH_8_MHZ
)
256 static struct dvb_pll_desc dvb_pll_tda665x
= {
257 .name
= "Philips TDA6650/TDA6651",
262 .initdata
= (u8
[]){ 4, 0x0b, 0xf5, 0x85, 0xab },
265 { 93834000, 166667, 0xca, 0x61 /* 011 0 0 0 01 */ },
266 { 123834000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ },
267 { 161000000, 166667, 0xca, 0xa1 /* 101 0 0 0 01 */ },
268 { 163834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ },
269 { 253834000, 166667, 0xca, 0x62 /* 011 0 0 0 10 */ },
270 { 383834000, 166667, 0xca, 0xa2 /* 101 0 0 0 10 */ },
271 { 443834000, 166667, 0xca, 0xc2 /* 110 0 0 0 10 */ },
272 { 444000000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ },
273 { 583834000, 166667, 0xca, 0x64 /* 011 0 0 1 00 */ },
274 { 793834000, 166667, 0xca, 0xa4 /* 101 0 0 1 00 */ },
275 { 444834000, 166667, 0xca, 0xc4 /* 110 0 0 1 00 */ },
276 { 861000000, 166667, 0xca, 0xe4 /* 111 0 0 1 00 */ },
281 * used in LG TDTP E102P
283 static void tua6034_bw(struct dvb_frontend
*fe
, u8
*buf
,
284 const struct dvb_frontend_parameters
*params
)
286 if (BANDWIDTH_7_MHZ
!= params
->u
.ofdm
.bandwidth
)
290 static struct dvb_pll_desc dvb_pll_tua6034
= {
291 .name
= "Infineon TUA6034",
298 { 174500000, 62500, 0xce, 0x01 },
299 { 230000000, 62500, 0xce, 0x02 },
300 { 999999999, 62500, 0xce, 0x04 },
305 * used in LG TDVS-H061F, LG TDVS-H062F and LG TDVS-H064F
307 static struct dvb_pll_desc dvb_pll_lg_tdvs_h06xf
= {
308 .name
= "LG TDVS-H06xF",
312 .initdata
= tua603x_agc103
,
315 { 165000000, 62500, 0xce, 0x01 },
316 { 450000000, 62500, 0xce, 0x02 },
317 { 999999999, 62500, 0xce, 0x04 },
322 * used in Medion Hybrid PCMCIA card and USB Box
324 static void fmd1216me_bw(struct dvb_frontend
*fe
, u8
*buf
,
325 const struct dvb_frontend_parameters
*params
)
327 if (params
->u
.ofdm
.bandwidth
== BANDWIDTH_8_MHZ
&&
328 params
->frequency
>= 158870000)
332 static struct dvb_pll_desc dvb_pll_fmd1216me
= {
333 .name
= "Philips FMD1216ME",
338 .initdata
= tua603x_agc112
,
339 .sleepdata
= (u8
[]){ 4, 0x9c, 0x60, 0x85, 0x54 },
342 { 143870000, 166667, 0xbc, 0x41 },
343 { 158870000, 166667, 0xf4, 0x41 },
344 { 329870000, 166667, 0xbc, 0x42 },
345 { 441870000, 166667, 0xf4, 0x42 },
346 { 625870000, 166667, 0xbc, 0x44 },
347 { 803870000, 166667, 0xf4, 0x44 },
348 { 999999999, 166667, 0xfc, 0x44 },
353 * used in Nebula-Cards and USB boxes
355 static void tded4_bw(struct dvb_frontend
*fe
, u8
*buf
,
356 const struct dvb_frontend_parameters
*params
)
358 if (params
->u
.ofdm
.bandwidth
== BANDWIDTH_8_MHZ
)
362 static struct dvb_pll_desc dvb_pll_tded4
= {
363 .name
= "ALPS TDED4",
370 { 153000000, 166667, 0x85, 0x01 },
371 { 470000000, 166667, 0x85, 0x02 },
372 { 823000000, 166667, 0x85, 0x08 },
373 { 999999999, 166667, 0x85, 0x88 },
378 * used in AverTVHD MCE A180
380 static struct dvb_pll_desc dvb_pll_tdhu2
= {
381 .name
= "ALPS TDHU2",
387 { 162000000, 62500, 0x85, 0x01 },
388 { 426000000, 62500, 0x85, 0x02 },
389 { 782000000, 62500, 0x85, 0x08 },
390 { 999999999, 62500, 0x85, 0x88 },
395 * used in ATI HDTV Wonder
397 static void tuv1236d_rf(struct dvb_frontend
*fe
, u8
*buf
,
398 const struct dvb_frontend_parameters
*params
)
400 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
401 unsigned int new_rf
= input
[priv
->nr
];
403 if ((new_rf
== 0) || (new_rf
> 2)) {
404 switch (params
->u
.vsb
.modulation
) {
424 "%s: unhandled rf input selection: %d",
425 __FUNCTION__
, new_rf
);
429 static struct dvb_pll_desc dvb_pll_tuv1236d
= {
430 .name
= "Philips TUV1236D",
437 { 157250000, 62500, 0xc6, 0x41 },
438 { 454000000, 62500, 0xc6, 0x42 },
439 { 999999999, 62500, 0xc6, 0x44 },
443 /* Samsung TBMV30111IN / TBMV30712IN1
444 * used in Air2PC ATSC - 2nd generation (nxt2002)
446 static struct dvb_pll_desc dvb_pll_samsung_tbmv
= {
447 .name
= "Samsung TBMV30111IN / TBMV30712IN1",
453 { 172000000, 166667, 0xb4, 0x01 },
454 { 214000000, 166667, 0xb4, 0x02 },
455 { 467000000, 166667, 0xbc, 0x02 },
456 { 721000000, 166667, 0xbc, 0x08 },
457 { 841000000, 166667, 0xf4, 0x08 },
458 { 999999999, 166667, 0xfc, 0x02 },
463 * Philips SD1878 Tuner.
465 static struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261
= {
466 .name
= "Philips SD1878",
469 .iffreq
= 249, /* zero-IF, offset 249 is to round up */
472 { 1250000, 500, 0xc4, 0x00},
473 { 1550000, 500, 0xc4, 0x40},
474 { 2050000, 500, 0xc4, 0x80},
475 { 2150000, 500, 0xc4, 0xc0},
480 * Philips TD1316 Tuner.
482 static void td1316_bw(struct dvb_frontend
*fe
, u8
*buf
,
483 const struct dvb_frontend_parameters
*params
)
488 if (params
->frequency
< 161000000)
490 else if (params
->frequency
< 444000000)
497 /* setup PLL filter */
498 if (params
->u
.ofdm
.bandwidth
== BANDWIDTH_8_MHZ
)
502 static struct dvb_pll_desc dvb_pll_philips_td1316
= {
503 .name
= "Philips TD1316",
510 { 93834000, 166667, 0xca, 0x60},
511 { 123834000, 166667, 0xca, 0xa0},
512 { 163834000, 166667, 0xca, 0xc0},
513 { 253834000, 166667, 0xca, 0x60},
514 { 383834000, 166667, 0xca, 0xa0},
515 { 443834000, 166667, 0xca, 0xc0},
516 { 583834000, 166667, 0xca, 0x60},
517 { 793834000, 166667, 0xca, 0xa0},
518 { 858834000, 166667, 0xca, 0xe0},
522 /* FE6600 used on DViCO Hybrid */
523 static struct dvb_pll_desc dvb_pll_thomson_fe6600
= {
524 .name
= "Thomson FE6600",
530 { 250000000, 166667, 0xb4, 0x12 },
531 { 455000000, 166667, 0xfe, 0x11 },
532 { 775500000, 166667, 0xbc, 0x18 },
533 { 999999999, 166667, 0xf4, 0x18 },
537 static void opera1_bw(struct dvb_frontend
*fe
, u8
*buf
,
538 const struct dvb_frontend_parameters
*params
)
540 if (params
->u
.ofdm
.bandwidth
== BANDWIDTH_8_MHZ
)
544 static struct dvb_pll_desc dvb_pll_opera1
= {
545 .name
= "Opera Tuner",
552 { 1064000, 500, 0xe5, 0xc6 },
553 { 1169000, 500, 0xe5, 0xe6 },
554 { 1299000, 500, 0xe5, 0x24 },
555 { 1444000, 500, 0xe5, 0x44 },
556 { 1606000, 500, 0xe5, 0x64 },
557 { 1777000, 500, 0xe5, 0x84 },
558 { 1941000, 500, 0xe5, 0xa4 },
559 { 2250000, 500, 0xe5, 0xc4 },
565 static struct dvb_pll_desc dvb_pll_fcv1236d
= {
566 /* Bit_0: RF Input select
567 * Bit_1: 0=digital, 1=analog
569 .name
= "Philips FCV1236D",
575 { 159000000, 62500, 0x8e, 0xa0 },
576 { 453000000, 62500, 0x8e, 0x90 },
577 { 999999999, 62500, 0x8e, 0x30 },
581 /* ----------------------------------------------------------- */
583 static struct dvb_pll_desc
*pll_list
[] = {
584 [DVB_PLL_UNDEFINED
] = NULL
,
585 [DVB_PLL_THOMSON_DTT7579
] = &dvb_pll_thomson_dtt7579
,
586 [DVB_PLL_THOMSON_DTT759X
] = &dvb_pll_thomson_dtt759x
,
587 [DVB_PLL_THOMSON_DTT7610
] = &dvb_pll_thomson_dtt7610
,
588 [DVB_PLL_LG_Z201
] = &dvb_pll_lg_z201
,
589 [DVB_PLL_MICROTUNE_4042
] = &dvb_pll_microtune_4042
,
590 [DVB_PLL_THOMSON_DTT761X
] = &dvb_pll_thomson_dtt761x
,
591 [DVB_PLL_UNKNOWN_1
] = &dvb_pll_unknown_1
,
592 [DVB_PLL_TUA6010XS
] = &dvb_pll_tua6010xs
,
593 [DVB_PLL_ENV57H1XD5
] = &dvb_pll_env57h1xd5
,
594 [DVB_PLL_TUA6034
] = &dvb_pll_tua6034
,
595 [DVB_PLL_LG_TDVS_H06XF
] = &dvb_pll_lg_tdvs_h06xf
,
596 [DVB_PLL_TDA665X
] = &dvb_pll_tda665x
,
597 [DVB_PLL_FMD1216ME
] = &dvb_pll_fmd1216me
,
598 [DVB_PLL_TDED4
] = &dvb_pll_tded4
,
599 [DVB_PLL_TUV1236D
] = &dvb_pll_tuv1236d
,
600 [DVB_PLL_TDHU2
] = &dvb_pll_tdhu2
,
601 [DVB_PLL_SAMSUNG_TBMV
] = &dvb_pll_samsung_tbmv
,
602 [DVB_PLL_PHILIPS_SD1878_TDA8261
] = &dvb_pll_philips_sd1878_tda8261
,
603 [DVB_PLL_PHILIPS_TD1316
] = &dvb_pll_philips_td1316
,
604 [DVB_PLL_THOMSON_FE6600
] = &dvb_pll_thomson_fe6600
,
605 [DVB_PLL_OPERA1
] = &dvb_pll_opera1
,
606 [DVB_PLL_FCV1236D
] = &dvb_pll_fcv1236d
,
609 /* ----------------------------------------------------------- */
612 static int dvb_pll_configure(struct dvb_frontend
*fe
, u8
*buf
,
613 const struct dvb_frontend_parameters
*params
)
615 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
616 struct dvb_pll_desc
*desc
= priv
->pll_desc
;
620 if (params
->frequency
!= 0 && (params
->frequency
< desc
->min
||
621 params
->frequency
> desc
->max
))
624 for (i
= 0; i
< desc
->count
; i
++) {
625 if (params
->frequency
> desc
->entries
[i
].limit
)
631 printk("pll: %s: freq=%d | i=%d/%d\n", desc
->name
,
632 params
->frequency
, i
, desc
->count
);
633 if (i
== desc
->count
)
636 div
= (params
->frequency
+ desc
->iffreq
+
637 desc
->entries
[i
].stepsize
/2) / desc
->entries
[i
].stepsize
;
640 buf
[2] = desc
->entries
[i
].config
;
641 buf
[3] = desc
->entries
[i
].cb
;
644 desc
->set(fe
, buf
, params
);
647 printk("pll: %s: div=%d | buf=0x%02x,0x%02x,0x%02x,0x%02x\n",
648 desc
->name
, div
, buf
[0], buf
[1], buf
[2], buf
[3]);
650 // calculate the frequency we set it to
651 return (div
* desc
->entries
[i
].stepsize
) - desc
->iffreq
;
654 static int dvb_pll_release(struct dvb_frontend
*fe
)
656 kfree(fe
->tuner_priv
);
657 fe
->tuner_priv
= NULL
;
661 static int dvb_pll_sleep(struct dvb_frontend
*fe
)
663 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
665 if (priv
->i2c
== NULL
)
668 if (priv
->pll_desc
->sleepdata
) {
669 struct i2c_msg msg
= { .flags
= 0,
670 .addr
= priv
->pll_i2c_address
,
671 .buf
= priv
->pll_desc
->sleepdata
+ 1,
672 .len
= priv
->pll_desc
->sleepdata
[0] };
676 if (fe
->ops
.i2c_gate_ctrl
)
677 fe
->ops
.i2c_gate_ctrl(fe
, 1);
678 if ((result
= i2c_transfer(priv
->i2c
, &msg
, 1)) != 1) {
683 /* Shouldn't be called when initdata is NULL, maybe BUG()? */
687 static int dvb_pll_set_params(struct dvb_frontend
*fe
,
688 struct dvb_frontend_parameters
*params
)
690 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
693 { .addr
= priv
->pll_i2c_address
, .flags
= 0,
694 .buf
= buf
, .len
= sizeof(buf
) };
698 if (priv
->i2c
== NULL
)
701 if ((result
= dvb_pll_configure(fe
, buf
, params
)) < 0)
706 if (fe
->ops
.i2c_gate_ctrl
)
707 fe
->ops
.i2c_gate_ctrl(fe
, 1);
708 if ((result
= i2c_transfer(priv
->i2c
, &msg
, 1)) != 1) {
712 priv
->frequency
= frequency
;
713 priv
->bandwidth
= (fe
->ops
.info
.type
== FE_OFDM
) ? params
->u
.ofdm
.bandwidth
: 0;
718 static int dvb_pll_calc_regs(struct dvb_frontend
*fe
,
719 struct dvb_frontend_parameters
*params
,
720 u8
*buf
, int buf_len
)
722 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
729 if ((result
= dvb_pll_configure(fe
, buf
+1, params
)) < 0)
734 buf
[0] = priv
->pll_i2c_address
;
736 priv
->frequency
= frequency
;
737 priv
->bandwidth
= (fe
->ops
.info
.type
== FE_OFDM
) ? params
->u
.ofdm
.bandwidth
: 0;
742 static int dvb_pll_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
744 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
745 *frequency
= priv
->frequency
;
749 static int dvb_pll_get_bandwidth(struct dvb_frontend
*fe
, u32
*bandwidth
)
751 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
752 *bandwidth
= priv
->bandwidth
;
756 static int dvb_pll_init(struct dvb_frontend
*fe
)
758 struct dvb_pll_priv
*priv
= fe
->tuner_priv
;
760 if (priv
->i2c
== NULL
)
763 if (priv
->pll_desc
->initdata
) {
764 struct i2c_msg msg
= { .flags
= 0,
765 .addr
= priv
->pll_i2c_address
,
766 .buf
= priv
->pll_desc
->initdata
+ 1,
767 .len
= priv
->pll_desc
->initdata
[0] };
770 if (fe
->ops
.i2c_gate_ctrl
)
771 fe
->ops
.i2c_gate_ctrl(fe
, 1);
772 if ((result
= i2c_transfer(priv
->i2c
, &msg
, 1)) != 1) {
777 /* Shouldn't be called when initdata is NULL, maybe BUG()? */
781 static struct dvb_tuner_ops dvb_pll_tuner_ops
= {
782 .release
= dvb_pll_release
,
783 .sleep
= dvb_pll_sleep
,
784 .init
= dvb_pll_init
,
785 .set_params
= dvb_pll_set_params
,
786 .calc_regs
= dvb_pll_calc_regs
,
787 .get_frequency
= dvb_pll_get_frequency
,
788 .get_bandwidth
= dvb_pll_get_bandwidth
,
791 struct dvb_frontend
*dvb_pll_attach(struct dvb_frontend
*fe
, int pll_addr
,
792 struct i2c_adapter
*i2c
,
793 unsigned int pll_desc_id
)
796 struct i2c_msg msg
= { .addr
= pll_addr
, .flags
= I2C_M_RD
,
797 .buf
= b1
, .len
= 1 };
798 struct dvb_pll_priv
*priv
= NULL
;
800 struct dvb_pll_desc
*desc
;
802 if ((id
[dvb_pll_devcount
] > DVB_PLL_UNDEFINED
) &&
803 (id
[dvb_pll_devcount
] < ARRAY_SIZE(pll_list
)))
804 pll_desc_id
= id
[dvb_pll_devcount
];
806 BUG_ON(pll_desc_id
< 1 || pll_desc_id
>= ARRAY_SIZE(pll_list
));
808 desc
= pll_list
[pll_desc_id
];
811 if (fe
->ops
.i2c_gate_ctrl
)
812 fe
->ops
.i2c_gate_ctrl(fe
, 1);
814 ret
= i2c_transfer (i2c
, &msg
, 1);
817 if (fe
->ops
.i2c_gate_ctrl
)
818 fe
->ops
.i2c_gate_ctrl(fe
, 0);
821 priv
= kzalloc(sizeof(struct dvb_pll_priv
), GFP_KERNEL
);
825 priv
->pll_i2c_address
= pll_addr
;
827 priv
->pll_desc
= desc
;
828 priv
->nr
= dvb_pll_devcount
++;
830 memcpy(&fe
->ops
.tuner_ops
, &dvb_pll_tuner_ops
,
831 sizeof(struct dvb_tuner_ops
));
833 strncpy(fe
->ops
.tuner_ops
.info
.name
, desc
->name
,
834 sizeof(fe
->ops
.tuner_ops
.info
.name
));
835 fe
->ops
.tuner_ops
.info
.frequency_min
= desc
->min
;
836 fe
->ops
.tuner_ops
.info
.frequency_max
= desc
->max
;
838 fe
->ops
.tuner_ops
.init
= NULL
;
839 if (!desc
->sleepdata
)
840 fe
->ops
.tuner_ops
.sleep
= NULL
;
842 fe
->tuner_priv
= priv
;
844 if ((debug
) || (id
[priv
->nr
] == pll_desc_id
)) {
845 printk("dvb-pll[%d]", priv
->nr
);
847 printk(" %d-%04x", i2c_adapter_id(i2c
), pll_addr
);
848 printk(": id# %d (%s) attached, %s\n", pll_desc_id
, desc
->name
,
849 id
[priv
->nr
] == pll_desc_id
?
850 "insmod option" : "autodetected");
852 if ((debug
) || (input
[priv
->nr
] > 0)) {
853 printk("dvb-pll[%d]", priv
->nr
);
855 printk(" %d-%04x", i2c_adapter_id(i2c
), pll_addr
);
856 printk(": tuner rf input will be ");
857 switch (input
[priv
->nr
]) {
859 printk("autoselected\n");
862 printk("set to input %d (insmod option)\n",
869 EXPORT_SYMBOL(dvb_pll_attach
);
871 MODULE_DESCRIPTION("dvb pll library");
872 MODULE_AUTHOR("Gerd Knorr");
873 MODULE_LICENSE("GPL");