1 // SPDX-License-Identifier: GPL-2.0-or-later
3 cx24110 - Single Chip Satellite Channel Receiver driver module
5 Copyright (C) 2002 Peter Hettkamp <peter.hettkamp@htp-tel.de> based on
7 Copyright (C) 1999 Convergence Integrated Media GmbH <ralph@convergence.de>
12 #include <linux/slab.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
17 #include <media/dvb_frontend.h>
21 struct cx24110_state
{
23 struct i2c_adapter
* i2c
;
25 const struct cx24110_config
* config
;
27 struct dvb_frontend frontend
;
35 #define dprintk(args...) \
37 if (debug) printk(KERN_DEBUG "cx24110: " args); \
40 static struct {u8 reg
; u8 data
;} cx24110_regdata
[]=
41 /* Comments beginning with @ denote this value should
43 {{0x09,0x01}, /* SoftResetAll */
44 {0x09,0x00}, /* release reset */
45 {0x01,0xe8}, /* MSB of code rate 27.5MS/s */
46 {0x02,0x17}, /* middle byte " */
47 {0x03,0x29}, /* LSB " */
48 {0x05,0x03}, /* @ DVB mode, standard code rate 3/4 */
49 {0x06,0xa5}, /* @ PLL 60MHz */
50 {0x07,0x01}, /* @ Fclk, i.e. sampling clock, 60MHz */
51 {0x0a,0x00}, /* @ partial chip disables, do not set */
52 {0x0b,0x01}, /* set output clock in gapped mode, start signal low
53 active for first byte */
54 {0x0c,0x11}, /* no parity bytes, large hold time, serial data out */
55 {0x0d,0x6f}, /* @ RS Sync/Unsync thresholds */
56 {0x10,0x40}, /* chip doc is misleading here: write bit 6 as 1
57 to avoid starting the BER counter. Reset the
58 CRC test bit. Finite counting selected */
59 {0x15,0xff}, /* @ size of the limited time window for RS BER
60 estimation. It is <value>*256 RS blocks, this
61 gives approx. 2.6 sec at 27.5MS/s, rate 3/4 */
62 {0x16,0x00}, /* @ enable all RS output ports */
63 {0x17,0x04}, /* @ time window allowed for the RS to sync */
64 {0x18,0xae}, /* @ allow all standard DVB code rates to be scanned
66 /* leave the current code rate and normalization
67 registers as they are after reset... */
68 {0x21,0x10}, /* @ during AutoAcq, search each viterbi setting
70 {0x23,0x18}, /* @ size of the limited time window for Viterbi BER
71 estimation. It is <value>*65536 channel bits, i.e.
72 approx. 38ms at 27.5MS/s, rate 3/4 */
73 {0x24,0x24}, /* do not trigger Viterbi CRC test. Finite count window */
74 /* leave front-end AGC parameters at default values */
75 /* leave decimation AGC parameters at default values */
76 {0x35,0x40}, /* disable all interrupts. They are not connected anyway */
77 {0x36,0xff}, /* clear all interrupt pending flags */
78 {0x37,0x00}, /* @ fully enable AutoAcqq state machine */
79 {0x38,0x07}, /* @ enable fade recovery, but not autostart AutoAcq */
80 /* leave the equalizer parameters on their default values */
81 /* leave the final AGC parameters on their default values */
82 {0x41,0x00}, /* @ MSB of front-end derotator frequency */
83 {0x42,0x00}, /* @ middle bytes " */
84 {0x43,0x00}, /* @ LSB " */
85 /* leave the carrier tracking loop parameters on default */
86 /* leave the bit timing loop parameters at default */
87 {0x56,0x4d}, /* set the filtune voltage to 2.7V, as recommended by */
88 /* the cx24108 data sheet for symbol rates above 15MS/s */
89 {0x57,0x00}, /* @ Filter sigma delta enabled, positive */
90 {0x61,0x95}, /* GPIO pins 1-4 have special function */
91 {0x62,0x05}, /* GPIO pin 5 has special function, pin 6 is GPIO */
92 {0x63,0x00}, /* All GPIO pins use CMOS output characteristics */
93 {0x64,0x20}, /* GPIO 6 is input, all others are outputs */
94 {0x6d,0x30}, /* tuner auto mode clock freq 62kHz */
95 {0x70,0x15}, /* use auto mode, tuner word is 21 bits long */
96 {0x73,0x00}, /* @ disable several demod bypasses */
97 {0x74,0x00}, /* @ " */
99 /* the remaining registers are for SEC */
103 static int cx24110_writereg (struct cx24110_state
* state
, int reg
, int data
)
105 u8 buf
[] = { reg
, data
};
106 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= buf
, .len
= 2 };
109 if ((err
= i2c_transfer(state
->i2c
, &msg
, 1)) != 1) {
110 dprintk("%s: writereg error (err == %i, reg == 0x%02x, data == 0x%02x)\n",
111 __func__
, err
, reg
, data
);
118 static int cx24110_readreg (struct cx24110_state
* state
, u8 reg
)
123 struct i2c_msg msg
[] = { { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= b0
, .len
= 1 },
124 { .addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
, .buf
= b1
, .len
= 1 } };
126 ret
= i2c_transfer(state
->i2c
, msg
, 2);
128 if (ret
!= 2) return ret
;
133 static int cx24110_set_inversion(struct cx24110_state
*state
,
134 enum fe_spectral_inversion inversion
)
136 /* fixme (low): error handling */
140 cx24110_writereg(state
,0x37,cx24110_readreg(state
,0x37)|0x1);
141 /* AcqSpectrInvDis on. No idea why someone should want this */
142 cx24110_writereg(state
,0x5,cx24110_readreg(state
,0x5)&0xf7);
143 /* Initial value 0 at start of acq */
144 cx24110_writereg(state
,0x22,cx24110_readreg(state
,0x22)&0xef);
145 /* current value 0 */
146 /* The cx24110 manual tells us this reg is read-only.
147 But what the heck... set it ayways */
150 cx24110_writereg(state
,0x37,cx24110_readreg(state
,0x37)|0x1);
151 /* AcqSpectrInvDis on. No idea why someone should want this */
152 cx24110_writereg(state
,0x5,cx24110_readreg(state
,0x5)|0x08);
153 /* Initial value 1 at start of acq */
154 cx24110_writereg(state
,0x22,cx24110_readreg(state
,0x22)|0x10);
155 /* current value 1 */
158 cx24110_writereg(state
,0x37,cx24110_readreg(state
,0x37)&0xfe);
159 /* AcqSpectrInvDis off. Leave initial & current states as is */
168 static int cx24110_set_fec(struct cx24110_state
*state
, enum fe_code_rate fec
)
170 static const int rate
[FEC_AUTO
] = {-1, 1, 2, 3, 5, 7, -1};
171 static const int g1
[FEC_AUTO
] = {-1, 0x01, 0x02, 0x05, 0x15, 0x45, -1};
172 static const int g2
[FEC_AUTO
] = {-1, 0x01, 0x03, 0x06, 0x1a, 0x7a, -1};
174 /* Well, the AutoAcq engine of the cx24106 and 24110 automatically
175 searches all enabled viterbi rates, and can handle non-standard
181 if (fec
== FEC_AUTO
) { /* (re-)establish AutoAcq behaviour */
182 cx24110_writereg(state
, 0x37, cx24110_readreg(state
, 0x37) & 0xdf);
183 /* clear AcqVitDis bit */
184 cx24110_writereg(state
, 0x18, 0xae);
185 /* allow all DVB standard code rates */
186 cx24110_writereg(state
, 0x05, (cx24110_readreg(state
, 0x05) & 0xf0) | 0x3);
187 /* set nominal Viterbi rate 3/4 */
188 cx24110_writereg(state
, 0x22, (cx24110_readreg(state
, 0x22) & 0xf0) | 0x3);
189 /* set current Viterbi rate 3/4 */
190 cx24110_writereg(state
, 0x1a, 0x05);
191 cx24110_writereg(state
, 0x1b, 0x06);
192 /* set the puncture registers for code rate 3/4 */
195 cx24110_writereg(state
, 0x37, cx24110_readreg(state
, 0x37) | 0x20);
196 /* set AcqVitDis bit */
200 cx24110_writereg(state
, 0x05, (cx24110_readreg(state
, 0x05) & 0xf0) | rate
[fec
]);
201 /* set nominal Viterbi rate */
202 cx24110_writereg(state
, 0x22, (cx24110_readreg(state
, 0x22) & 0xf0) | rate
[fec
]);
203 /* set current Viterbi rate */
204 cx24110_writereg(state
, 0x1a, g1
[fec
]);
205 cx24110_writereg(state
, 0x1b, g2
[fec
]);
206 /* not sure if this is the right way: I always used AutoAcq mode */
211 static enum fe_code_rate
cx24110_get_fec(struct cx24110_state
*state
)
215 i
=cx24110_readreg(state
,0x22)&0x0f;
217 return FEC_1_2
+ i
- 1;
219 /* fixme (low): a special code rate has been selected. In theory, we need to
220 return a denominator value, a numerator value, and a pair of puncture
221 maps to correctly describe this mode. But this should never happen in
222 practice, because it cannot be set by cx24110_get_fec. */
227 static int cx24110_set_symbolrate (struct cx24110_state
* state
, u32 srate
)
229 /* fixme (low): add error handling */
233 static const u32 bands
[]={5000000UL,15000000UL,90999000UL/2};
236 dprintk("cx24110 debug: entering %s(%d)\n",__func__
,srate
);
237 if (srate
>90999000UL/2)
242 for(i
= 0; (i
< ARRAY_SIZE(bands
)) && (srate
>bands
[i
]); i
++)
244 /* first, check which sample rate is appropriate: 45, 60 80 or 90 MHz,
245 and set the PLL accordingly (R07[1:0] Fclk, R06[7:4] PLLmult,
246 R06[3:0] PLLphaseDetGain */
247 tmp
=cx24110_readreg(state
,0x07)&0xfc;
248 if(srate
<90999000UL/4) { /* sample rate 45MHz*/
249 cx24110_writereg(state
,0x07,tmp
);
250 cx24110_writereg(state
,0x06,0x78);
252 } else if(srate
<60666000UL/2) { /* sample rate 60MHz */
253 cx24110_writereg(state
,0x07,tmp
|0x1);
254 cx24110_writereg(state
,0x06,0xa5);
256 } else if(srate
<80888000UL/2) { /* sample rate 80MHz */
257 cx24110_writereg(state
,0x07,tmp
|0x2);
258 cx24110_writereg(state
,0x06,0x87);
260 } else { /* sample rate 90MHz */
261 cx24110_writereg(state
,0x07,tmp
|0x3);
262 cx24110_writereg(state
,0x06,0x78);
265 dprintk("cx24110 debug: fclk %d Hz\n",fclk
);
266 /* we need to divide two integers with approx. 27 bits in 32 bit
267 arithmetic giving a 25 bit result */
268 /* the maximum dividend is 90999000/2, 0x02b6446c, this number is
269 also the most complex divisor. Hence, the dividend has,
270 assuming 32bit unsigned arithmetic, 6 clear bits on top, the
271 divisor 2 unused bits at the bottom. Also, the quotient is
272 always less than 1/2. Borrowed from VES1893.c, of course */
279 ratio
=(ratio
<<8)+(tmp
/BDRI
);
282 ratio
=(ratio
<<8)+(tmp
/BDRI
);
285 ratio
=(ratio
<<1)+(tmp
/BDRI
);
287 dprintk("srate= %d (range %d, up to %d)\n", srate
,i
,bands
[i
]);
288 dprintk("fclk = %d\n", fclk
);
289 dprintk("ratio= %08x\n", ratio
);
291 cx24110_writereg(state
, 0x1, (ratio
>>16)&0xff);
292 cx24110_writereg(state
, 0x2, (ratio
>>8)&0xff);
293 cx24110_writereg(state
, 0x3, (ratio
)&0xff);
299 static int _cx24110_pll_write (struct dvb_frontend
* fe
, const u8 buf
[], int len
)
301 struct cx24110_state
*state
= fe
->demodulator_priv
;
306 /* tuner data is 21 bits long, must be left-aligned in data */
307 /* tuner cx24108 is written through a dedicated 3wire interface on the demod chip */
308 /* FIXME (low): add error handling, avoid infinite loops if HW fails... */
310 cx24110_writereg(state
,0x6d,0x30); /* auto mode at 62kHz */
311 cx24110_writereg(state
,0x70,0x15); /* auto mode 21 bits */
313 /* if the auto tuner writer is still busy, clear it out */
314 while (cx24110_readreg(state
,0x6d)&0x80)
315 cx24110_writereg(state
,0x72,0);
317 /* write the topmost 8 bits */
318 cx24110_writereg(state
,0x72,buf
[0]);
320 /* wait for the send to be completed */
321 while ((cx24110_readreg(state
,0x6d)&0xc0)==0x80)
324 /* send another 8 bytes */
325 cx24110_writereg(state
,0x72,buf
[1]);
326 while ((cx24110_readreg(state
,0x6d)&0xc0)==0x80)
329 /* and the topmost 5 bits of this byte */
330 cx24110_writereg(state
,0x72,buf
[2]);
331 while ((cx24110_readreg(state
,0x6d)&0xc0)==0x80)
334 /* now strobe the enable line once */
335 cx24110_writereg(state
,0x6d,0x32);
336 cx24110_writereg(state
,0x6d,0x30);
341 static int cx24110_initfe(struct dvb_frontend
* fe
)
343 struct cx24110_state
*state
= fe
->demodulator_priv
;
344 /* fixme (low): error handling */
347 dprintk("%s: init chip\n", __func__
);
349 for(i
= 0; i
< ARRAY_SIZE(cx24110_regdata
); i
++) {
350 cx24110_writereg(state
, cx24110_regdata
[i
].reg
, cx24110_regdata
[i
].data
);
356 static int cx24110_set_voltage(struct dvb_frontend
*fe
,
357 enum fe_sec_voltage voltage
)
359 struct cx24110_state
*state
= fe
->demodulator_priv
;
363 return cx24110_writereg(state
,0x76,(cx24110_readreg(state
,0x76)&0x3b)|0xc0);
365 return cx24110_writereg(state
,0x76,(cx24110_readreg(state
,0x76)&0x3b)|0x40);
371 static int cx24110_diseqc_send_burst(struct dvb_frontend
*fe
,
372 enum fe_sec_mini_cmd burst
)
375 struct cx24110_state
*state
= fe
->demodulator_priv
;
376 unsigned long timeout
;
378 if (burst
== SEC_MINI_A
)
380 else if (burst
== SEC_MINI_B
)
385 rv
= cx24110_readreg(state
, 0x77);
387 cx24110_writereg(state
, 0x77, rv
| 0x04);
389 rv
= cx24110_readreg(state
, 0x76);
390 cx24110_writereg(state
, 0x76, ((rv
& 0x90) | 0x40 | bit
));
391 timeout
= jiffies
+ msecs_to_jiffies(100);
392 while (!time_after(jiffies
, timeout
) && !(cx24110_readreg(state
, 0x76) & 0x40))
393 ; /* wait for LNB ready */
398 static int cx24110_send_diseqc_msg(struct dvb_frontend
* fe
,
399 struct dvb_diseqc_master_cmd
*cmd
)
402 struct cx24110_state
*state
= fe
->demodulator_priv
;
403 unsigned long timeout
;
405 if (cmd
->msg_len
< 3 || cmd
->msg_len
> 6)
406 return -EINVAL
; /* not implemented */
408 for (i
= 0; i
< cmd
->msg_len
; i
++)
409 cx24110_writereg(state
, 0x79 + i
, cmd
->msg
[i
]);
411 rv
= cx24110_readreg(state
, 0x77);
413 cx24110_writereg(state
, 0x77, rv
& ~0x04);
414 msleep(30); /* reportedly fixes switching problems */
417 rv
= cx24110_readreg(state
, 0x76);
419 cx24110_writereg(state
, 0x76, ((rv
& 0x90) | 0x40) | ((cmd
->msg_len
-3) & 3));
420 timeout
= jiffies
+ msecs_to_jiffies(100);
421 while (!time_after(jiffies
, timeout
) && !(cx24110_readreg(state
, 0x76) & 0x40))
422 ; /* wait for LNB ready */
427 static int cx24110_read_status(struct dvb_frontend
*fe
,
428 enum fe_status
*status
)
430 struct cx24110_state
*state
= fe
->demodulator_priv
;
432 int sync
= cx24110_readreg (state
, 0x55);
437 *status
|= FE_HAS_SIGNAL
;
440 *status
|= FE_HAS_CARRIER
;
442 sync
= cx24110_readreg (state
, 0x08);
445 *status
|= FE_HAS_VITERBI
;
448 *status
|= FE_HAS_SYNC
;
450 if ((sync
& 0x60) == 0x60)
451 *status
|= FE_HAS_LOCK
;
456 static int cx24110_read_ber(struct dvb_frontend
* fe
, u32
* ber
)
458 struct cx24110_state
*state
= fe
->demodulator_priv
;
460 /* fixme (maybe): value range is 16 bit. Scale? */
461 if(cx24110_readreg(state
,0x24)&0x10) {
462 /* the Viterbi error counter has finished one counting window */
463 cx24110_writereg(state
,0x24,0x04); /* select the ber reg */
464 state
->lastber
=cx24110_readreg(state
,0x25)|
465 (cx24110_readreg(state
,0x26)<<8);
466 cx24110_writereg(state
,0x24,0x04); /* start new count window */
467 cx24110_writereg(state
,0x24,0x14);
469 *ber
= state
->lastber
;
474 static int cx24110_read_signal_strength(struct dvb_frontend
* fe
, u16
* signal_strength
)
476 struct cx24110_state
*state
= fe
->demodulator_priv
;
478 /* no provision in hardware. Read the frontend AGC accumulator. No idea how to scale this, but I know it is 2s complement */
479 u8 signal
= cx24110_readreg (state
, 0x27)+128;
480 *signal_strength
= (signal
<< 8) | signal
;
485 static int cx24110_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
487 struct cx24110_state
*state
= fe
->demodulator_priv
;
489 /* no provision in hardware. Can be computed from the Es/N0 estimator, but I don't know how. */
490 if(cx24110_readreg(state
,0x6a)&0x80) {
491 /* the Es/N0 error counter has finished one counting window */
492 state
->lastesn0
=cx24110_readreg(state
,0x69)|
493 (cx24110_readreg(state
,0x68)<<8);
494 cx24110_writereg(state
,0x6a,0x84); /* start new count window */
496 *snr
= state
->lastesn0
;
501 static int cx24110_read_ucblocks(struct dvb_frontend
* fe
, u32
* ucblocks
)
503 struct cx24110_state
*state
= fe
->demodulator_priv
;
505 if(cx24110_readreg(state
,0x10)&0x40) {
506 /* the RS error counter has finished one counting window */
507 cx24110_writereg(state
,0x10,0x60); /* select the byer reg */
508 (void)(cx24110_readreg(state
, 0x12) |
509 (cx24110_readreg(state
, 0x13) << 8) |
510 (cx24110_readreg(state
, 0x14) << 16));
511 cx24110_writereg(state
,0x10,0x70); /* select the bler reg */
512 state
->lastbler
=cx24110_readreg(state
,0x12)|
513 (cx24110_readreg(state
,0x13)<<8)|
514 (cx24110_readreg(state
,0x14)<<16);
515 cx24110_writereg(state
,0x10,0x20); /* start new count window */
517 *ucblocks
= state
->lastbler
;
522 static int cx24110_set_frontend(struct dvb_frontend
*fe
)
524 struct cx24110_state
*state
= fe
->demodulator_priv
;
525 struct dtv_frontend_properties
*p
= &fe
->dtv_property_cache
;
527 if (fe
->ops
.tuner_ops
.set_params
) {
528 fe
->ops
.tuner_ops
.set_params(fe
);
529 if (fe
->ops
.i2c_gate_ctrl
) fe
->ops
.i2c_gate_ctrl(fe
, 0);
532 cx24110_set_inversion(state
, p
->inversion
);
533 cx24110_set_fec(state
, p
->fec_inner
);
534 cx24110_set_symbolrate(state
, p
->symbol_rate
);
535 cx24110_writereg(state
,0x04,0x05); /* start acquisition */
540 static int cx24110_get_frontend(struct dvb_frontend
*fe
,
541 struct dtv_frontend_properties
*p
)
543 struct cx24110_state
*state
= fe
->demodulator_priv
;
544 s32 afc
; unsigned sclk
;
546 /* cannot read back tuner settings (freq). Need to have some private storage */
548 sclk
= cx24110_readreg (state
, 0x07) & 0x03;
549 /* ok, real AFC (FEDR) freq. is afc/2^24*fsamp, fsamp=45/60/80/90MHz.
550 * Need 64 bit arithmetic. Is thiss possible in the kernel? */
551 if (sclk
==0) sclk
=90999000L/2L;
552 else if (sclk
==1) sclk
=60666000L;
553 else if (sclk
==2) sclk
=80888000L;
556 afc
= sclk
*(cx24110_readreg (state
, 0x44)&0x1f)+
557 ((sclk
*cx24110_readreg (state
, 0x45))>>8)+
558 ((sclk
*cx24110_readreg (state
, 0x46))>>16);
561 p
->inversion
= (cx24110_readreg (state
, 0x22) & 0x10) ?
562 INVERSION_ON
: INVERSION_OFF
;
563 p
->fec_inner
= cx24110_get_fec(state
);
568 static int cx24110_set_tone(struct dvb_frontend
*fe
,
569 enum fe_sec_tone_mode tone
)
571 struct cx24110_state
*state
= fe
->demodulator_priv
;
573 return cx24110_writereg(state
,0x76,(cx24110_readreg(state
,0x76)&~0x10)|(((tone
==SEC_TONE_ON
))?0x10:0));
576 static void cx24110_release(struct dvb_frontend
* fe
)
578 struct cx24110_state
* state
= fe
->demodulator_priv
;
582 static const struct dvb_frontend_ops cx24110_ops
;
584 struct dvb_frontend
* cx24110_attach(const struct cx24110_config
* config
,
585 struct i2c_adapter
* i2c
)
587 struct cx24110_state
* state
= NULL
;
590 /* allocate memory for the internal state */
591 state
= kzalloc(sizeof(struct cx24110_state
), GFP_KERNEL
);
592 if (state
== NULL
) goto error
;
594 /* setup the state */
595 state
->config
= config
;
601 /* check if the demod is there */
602 ret
= cx24110_readreg(state
, 0x00);
603 if ((ret
!= 0x5a) && (ret
!= 0x69)) goto error
;
605 /* create dvb_frontend */
606 memcpy(&state
->frontend
.ops
, &cx24110_ops
, sizeof(struct dvb_frontend_ops
));
607 state
->frontend
.demodulator_priv
= state
;
608 return &state
->frontend
;
615 static const struct dvb_frontend_ops cx24110_ops
= {
616 .delsys
= { SYS_DVBS
},
618 .name
= "Conexant CX24110 DVB-S",
619 .frequency_min_hz
= 950 * MHz
,
620 .frequency_max_hz
= 2150 * MHz
,
621 .frequency_stepsize_hz
= 1011 * kHz
,
622 .frequency_tolerance_hz
= 29500 * kHz
,
623 .symbol_rate_min
= 1000000,
624 .symbol_rate_max
= 45000000,
625 .caps
= FE_CAN_INVERSION_AUTO
|
626 FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
627 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
628 FE_CAN_QPSK
| FE_CAN_RECOVER
631 .release
= cx24110_release
,
633 .init
= cx24110_initfe
,
634 .write
= _cx24110_pll_write
,
635 .set_frontend
= cx24110_set_frontend
,
636 .get_frontend
= cx24110_get_frontend
,
637 .read_status
= cx24110_read_status
,
638 .read_ber
= cx24110_read_ber
,
639 .read_signal_strength
= cx24110_read_signal_strength
,
640 .read_snr
= cx24110_read_snr
,
641 .read_ucblocks
= cx24110_read_ucblocks
,
643 .diseqc_send_master_cmd
= cx24110_send_diseqc_msg
,
644 .set_tone
= cx24110_set_tone
,
645 .set_voltage
= cx24110_set_voltage
,
646 .diseqc_send_burst
= cx24110_diseqc_send_burst
,
649 module_param(debug
, int, 0644);
650 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
652 MODULE_DESCRIPTION("Conexant CX24110 DVB-S Demodulator driver");
653 MODULE_AUTHOR("Peter Hettkamp");
654 MODULE_LICENSE("GPL");
656 EXPORT_SYMBOL(cx24110_attach
);