V4L/DVB (8555): au8522: add mechanism to configure IF frequency for vsb and qam
[linux-2.6] / drivers / media / dvb / frontends / au8522.c
1 /*
2     Auvitek AU8522 QAM/8VSB demodulator driver
3
4     Copyright (C) 2008 Steven Toth <stoth@hauppauge.com>
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
22 #include <linux/kernel.h>
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/string.h>
26 #include <linux/slab.h>
27 #include <linux/delay.h>
28 #include "dvb_frontend.h"
29 #include "au8522.h"
30
31 struct au8522_state {
32
33         struct i2c_adapter *i2c;
34
35         /* configuration settings */
36         const struct au8522_config *config;
37
38         struct dvb_frontend frontend;
39
40         u32 current_frequency;
41         fe_modulation_t current_modulation;
42
43 };
44
45 static int debug;
46
47 #define dprintk(arg...) do {            \
48         if (debug)                      \
49                  printk(arg);           \
50         } while (0)
51
52 /* 16 bit registers, 8 bit values */
53 static int au8522_writereg(struct au8522_state *state, u16 reg, u8 data)
54 {
55         int ret;
56         u8 buf [] = { reg >> 8, reg & 0xff, data };
57
58         struct i2c_msg msg = { .addr = state->config->demod_address,
59                                .flags = 0, .buf = buf, .len = 3 };
60
61         ret = i2c_transfer(state->i2c, &msg, 1);
62
63         if (ret != 1)
64                 printk("%s: writereg error (reg == 0x%02x, val == 0x%04x, "
65                        "ret == %i)\n", __func__, reg, data, ret);
66
67         return (ret != 1) ? -1 : 0;
68 }
69
70 static u8 au8522_readreg(struct au8522_state *state, u16 reg)
71 {
72         int ret;
73         u8 b0 [] = { reg >> 8, reg & 0xff };
74         u8 b1 [] = { 0 };
75
76         struct i2c_msg msg [] = {
77                 { .addr = state->config->demod_address, .flags = 0,
78                   .buf = b0, .len = 2 },
79                 { .addr = state->config->demod_address, .flags = I2C_M_RD,
80                   .buf = b1, .len = 1 } };
81
82         ret = i2c_transfer(state->i2c, msg, 2);
83
84         if (ret != 2)
85                 printk(KERN_ERR "%s: readreg error (ret == %i)\n",
86                        __func__, ret);
87         return b1[0];
88 }
89
90 static int au8522_i2c_gate_ctrl(struct dvb_frontend *fe, int enable)
91 {
92         struct au8522_state *state = fe->demodulator_priv;
93
94         dprintk("%s(%d)\n", __func__, enable);
95
96         if (enable)
97                 return au8522_writereg(state, 0x106, 1);
98         else
99                 return au8522_writereg(state, 0x106, 0);
100 }
101
102 struct mse2snr_tab {
103         u16 val;
104         u16 data;
105 };
106
107 /* VSB SNR lookup table */
108 static struct mse2snr_tab vsb_mse2snr_tab[] = {
109         {   0, 270 },
110         {   2, 250 },
111         {   3, 240 },
112         {   5, 230 },
113         {   7, 220 },
114         {   9, 210 },
115         {  12, 200 },
116         {  13, 195 },
117         {  15, 190 },
118         {  17, 185 },
119         {  19, 180 },
120         {  21, 175 },
121         {  24, 170 },
122         {  27, 165 },
123         {  31, 160 },
124         {  32, 158 },
125         {  33, 156 },
126         {  36, 152 },
127         {  37, 150 },
128         {  39, 148 },
129         {  40, 146 },
130         {  41, 144 },
131         {  43, 142 },
132         {  44, 140 },
133         {  48, 135 },
134         {  50, 130 },
135         {  43, 142 },
136         {  53, 125 },
137         {  56, 120 },
138         { 256, 115 },
139 };
140
141 /* QAM64 SNR lookup table */
142 static struct mse2snr_tab qam64_mse2snr_tab[] = {
143         {  15,   0 },
144         {  16, 290 },
145         {  17, 288 },
146         {  18, 286 },
147         {  19, 284 },
148         {  20, 282 },
149         {  21, 281 },
150         {  22, 279 },
151         {  23, 277 },
152         {  24, 275 },
153         {  25, 273 },
154         {  26, 271 },
155         {  27, 269 },
156         {  28, 268 },
157         {  29, 266 },
158         {  30, 264 },
159         {  31, 262 },
160         {  32, 260 },
161         {  33, 259 },
162         {  34, 258 },
163         {  35, 256 },
164         {  36, 255 },
165         {  37, 254 },
166         {  38, 252 },
167         {  39, 251 },
168         {  40, 250 },
169         {  41, 249 },
170         {  42, 248 },
171         {  43, 246 },
172         {  44, 245 },
173         {  45, 244 },
174         {  46, 242 },
175         {  47, 241 },
176         {  48, 240 },
177         {  50, 239 },
178         {  51, 238 },
179         {  53, 237 },
180         {  54, 236 },
181         {  56, 235 },
182         {  57, 234 },
183         {  59, 233 },
184         {  60, 232 },
185         {  62, 231 },
186         {  63, 230 },
187         {  65, 229 },
188         {  67, 228 },
189         {  68, 227 },
190         {  70, 226 },
191         {  71, 225 },
192         {  73, 224 },
193         {  74, 223 },
194         {  76, 222 },
195         {  78, 221 },
196         {  80, 220 },
197         {  82, 219 },
198         {  85, 218 },
199         {  88, 217 },
200         {  90, 216 },
201         {  92, 215 },
202         {  93, 214 },
203         {  94, 212 },
204         {  95, 211 },
205         {  97, 210 },
206         {  99, 209 },
207         { 101, 208 },
208         { 102, 207 },
209         { 104, 206 },
210         { 107, 205 },
211         { 111, 204 },
212         { 114, 203 },
213         { 118, 202 },
214         { 122, 201 },
215         { 125, 200 },
216         { 128, 199 },
217         { 130, 198 },
218         { 132, 197 },
219         { 256, 190 },
220 };
221
222 /* QAM256 SNR lookup table */
223 static struct mse2snr_tab qam256_mse2snr_tab[] = {
224         {  16,   0 },
225         {  17, 400 },
226         {  18, 398 },
227         {  19, 396 },
228         {  20, 394 },
229         {  21, 392 },
230         {  22, 390 },
231         {  23, 388 },
232         {  24, 386 },
233         {  25, 384 },
234         {  26, 382 },
235         {  27, 380 },
236         {  28, 379 },
237         {  29, 378 },
238         {  30, 377 },
239         {  31, 376 },
240         {  32, 375 },
241         {  33, 374 },
242         {  34, 373 },
243         {  35, 372 },
244         {  36, 371 },
245         {  37, 370 },
246         {  38, 362 },
247         {  39, 354 },
248         {  40, 346 },
249         {  41, 338 },
250         {  42, 330 },
251         {  43, 328 },
252         {  44, 326 },
253         {  45, 324 },
254         {  46, 322 },
255         {  47, 320 },
256         {  48, 319 },
257         {  49, 318 },
258         {  50, 317 },
259         {  51, 316 },
260         {  52, 315 },
261         {  53, 314 },
262         {  54, 313 },
263         {  55, 312 },
264         {  56, 311 },
265         {  57, 310 },
266         {  58, 308 },
267         {  59, 306 },
268         {  60, 304 },
269         {  61, 302 },
270         {  62, 300 },
271         {  63, 298 },
272         {  65, 295 },
273         {  68, 294 },
274         {  70, 293 },
275         {  73, 292 },
276         {  76, 291 },
277         {  78, 290 },
278         {  79, 289 },
279         {  81, 288 },
280         {  82, 287 },
281         {  83, 286 },
282         {  84, 285 },
283         {  85, 284 },
284         {  86, 283 },
285         {  88, 282 },
286         {  89, 281 },
287         { 256, 280 },
288 };
289
290 static int au8522_mse2snr_lookup(struct mse2snr_tab *tab, int sz, int mse,
291                                  u16 *snr)
292 {
293         int i, ret = -EINVAL;
294         dprintk("%s()\n", __func__);
295
296         for (i = 0; i < sz; i++) {
297                 if (mse < tab[i].val) {
298                         *snr = tab[i].data;
299                         ret = 0;
300                         break;
301                 }
302         }
303         dprintk("%s() snr=%d\n", __func__, *snr);
304         return ret;
305 }
306
307 /* 3.25 MHz IF Frequency table */
308 static struct {
309         u16 reg;
310         u16 data;
311 } if_3_25_mhz_tab[] = {
312         { 0x80b5, 0x00 },
313         { 0x80b6, 0x3d },
314         { 0x80b7, 0xa0 },
315 };
316
317 /* 4.00 MHz IF Frequency table */
318 static struct {
319         u16 reg;
320         u16 data;
321 } if_4_mhz_tab[] = {
322         { 0x80b5, 0x00 },
323         { 0x80b6, 0x4b },
324         { 0x80b7, 0xd9 },
325 };
326
327 /* 6.00 MHz IF Frequency table */
328 static struct {
329         u16 reg;
330         u16 data;
331 } if_6_mhz_tab[] = {
332         { 0x80b5, 0xfb },
333         { 0x80b6, 0x8e },
334         { 0x80b7, 0x39 },
335 };
336
337 static int au8522_set_if(struct dvb_frontend *fe, enum au8522_if_freq if_freq)
338 {
339         struct au8522_state *state = fe->demodulator_priv;
340         int i;
341
342         switch (if_freq) {
343         case AU8522_IF_3_25MHZ:
344                 dprintk("%s() 3.25 MHz\n", __func__);
345                 for (i = 0; i < ARRAY_SIZE(if_3_25_mhz_tab); i++)
346                         au8522_writereg(state,
347                                         if_3_25_mhz_tab[i].reg,
348                                         if_3_25_mhz_tab[i].data);
349                 break;
350         case AU8522_IF_4MHZ:
351                 dprintk("%s() 4.00 MHz\n", __func__);
352                 for (i = 0; i < ARRAY_SIZE(if_4_mhz_tab); i++)
353                         au8522_writereg(state,
354                                         if_4_mhz_tab[i].reg,
355                                         if_4_mhz_tab[i].data);
356                 break;
357         case AU8522_IF_6MHZ:
358                 dprintk("%s() 6.00 MHz\n", __func__);
359                 for (i = 0; i < ARRAY_SIZE(if_6_mhz_tab); i++)
360                         au8522_writereg(state,
361                                         if_6_mhz_tab[i].reg,
362                                         if_6_mhz_tab[i].data);
363                 break;
364         default:
365                 dprintk("%s() IF Frequency not supported\n", __func__);
366                 return -EINVAL;
367         }
368         return 0;
369 }
370
371 /* VSB Modulation table */
372 static struct {
373         u16 reg;
374         u16 data;
375 } VSB_mod_tab[] = {
376         { 0x8090, 0x84 },
377         { 0x4092, 0x11 },
378         { 0x2005, 0x00 },
379         { 0x8091, 0x80 },
380         { 0x80a3, 0x0c },
381         { 0x80a4, 0xe8 },
382         { 0x8081, 0xc4 },
383         { 0x80a5, 0x40 },
384         { 0x80a7, 0x40 },
385         { 0x80a6, 0x67 },
386         { 0x8262, 0x20 },
387         { 0x821c, 0x30 },
388         { 0x80d8, 0x1a },
389         { 0x8227, 0xa0 },
390         { 0x8121, 0xff },
391         { 0x80a8, 0xf0 },
392         { 0x80a9, 0x05 },
393         { 0x80aa, 0x77 },
394         { 0x80ab, 0xf0 },
395         { 0x80ac, 0x05 },
396         { 0x80ad, 0x77 },
397         { 0x80ae, 0x41 },
398         { 0x80af, 0x66 },
399         { 0x821b, 0xcc },
400         { 0x821d, 0x80 },
401         { 0x80b5, 0xfb },
402         { 0x80b6, 0x8e },
403         { 0x80b7, 0x39 },
404         { 0x80a4, 0xe8 },
405         { 0x8231, 0x13 },
406 };
407
408 /* QAM Modulation table */
409 static struct {
410         u16 reg;
411         u16 data;
412 } QAM_mod_tab[] = {
413         { 0x80a3, 0x09 },
414         { 0x80a4, 0x00 },
415         { 0x8081, 0xc4 },
416         { 0x80a5, 0x40 },
417         { 0x80b5, 0xfb },
418         { 0x80b6, 0x8e },
419         { 0x80b7, 0x39 },
420         { 0x80aa, 0x77 },
421         { 0x80ad, 0x77 },
422         { 0x80a6, 0x67 },
423         { 0x8262, 0x20 },
424         { 0x821c, 0x30 },
425         { 0x80b8, 0x3e },
426         { 0x80b9, 0xf0 },
427         { 0x80ba, 0x01 },
428         { 0x80bb, 0x18 },
429         { 0x80bc, 0x50 },
430         { 0x80bd, 0x00 },
431         { 0x80be, 0xea },
432         { 0x80bf, 0xef },
433         { 0x80c0, 0xfc },
434         { 0x80c1, 0xbd },
435         { 0x80c2, 0x1f },
436         { 0x80c3, 0xfc },
437         { 0x80c4, 0xdd },
438         { 0x80c5, 0xaf },
439         { 0x80c6, 0x00 },
440         { 0x80c7, 0x38 },
441         { 0x80c8, 0x30 },
442         { 0x80c9, 0x05 },
443         { 0x80ca, 0x4a },
444         { 0x80cb, 0xd0 },
445         { 0x80cc, 0x01 },
446         { 0x80cd, 0xd9 },
447         { 0x80ce, 0x6f },
448         { 0x80cf, 0xf9 },
449         { 0x80d0, 0x70 },
450         { 0x80d1, 0xdf },
451         { 0x80d2, 0xf7 },
452         { 0x80d3, 0xc2 },
453         { 0x80d4, 0xdf },
454         { 0x80d5, 0x02 },
455         { 0x80d6, 0x9a },
456         { 0x80d7, 0xd0 },
457         { 0x8250, 0x0d },
458         { 0x8251, 0xcd },
459         { 0x8252, 0xe0 },
460         { 0x8253, 0x05 },
461         { 0x8254, 0xa7 },
462         { 0x8255, 0xff },
463         { 0x8256, 0xed },
464         { 0x8257, 0x5b },
465         { 0x8258, 0xae },
466         { 0x8259, 0xe6 },
467         { 0x825a, 0x3d },
468         { 0x825b, 0x0f },
469         { 0x825c, 0x0d },
470         { 0x825d, 0xea },
471         { 0x825e, 0xf2 },
472         { 0x825f, 0x51 },
473         { 0x8260, 0xf5 },
474         { 0x8261, 0x06 },
475         { 0x821a, 0x00 },
476         { 0x8546, 0x40 },
477         { 0x8210, 0x26 },
478         { 0x8211, 0xf6 },
479         { 0x8212, 0x84 },
480         { 0x8213, 0x02 },
481         { 0x8502, 0x01 },
482         { 0x8121, 0x04 },
483         { 0x8122, 0x04 },
484         { 0x852e, 0x10 },
485         { 0x80a4, 0xca },
486         { 0x80a7, 0x40 },
487         { 0x8526, 0x01 },
488 };
489
490 static int au8522_enable_modulation(struct dvb_frontend *fe,
491                                     fe_modulation_t m)
492 {
493         struct au8522_state *state = fe->demodulator_priv;
494         int i;
495
496         dprintk("%s(0x%08x)\n", __func__, m);
497
498         switch (m) {
499         case VSB_8:
500                 dprintk("%s() VSB_8\n", __func__);
501                 for (i = 0; i < ARRAY_SIZE(VSB_mod_tab); i++)
502                         au8522_writereg(state,
503                                 VSB_mod_tab[i].reg,
504                                 VSB_mod_tab[i].data);
505                 au8522_set_if(fe, state->config->vsb_if);
506                 break;
507         case QAM_64:
508         case QAM_256:
509                 dprintk("%s() QAM 64/256\n", __func__);
510                 for (i = 0; i < ARRAY_SIZE(QAM_mod_tab); i++)
511                         au8522_writereg(state,
512                                 QAM_mod_tab[i].reg,
513                                 QAM_mod_tab[i].data);
514                 au8522_set_if(fe, state->config->qam_if);
515                 break;
516         default:
517                 dprintk("%s() Invalid modulation\n", __func__);
518                 return -EINVAL;
519         }
520
521         state->current_modulation = m;
522
523         return 0;
524 }
525
526 /* Talk to the demod, set the FEC, GUARD, QAM settings etc */
527 static int au8522_set_frontend(struct dvb_frontend *fe,
528                                struct dvb_frontend_parameters *p)
529 {
530         struct au8522_state *state = fe->demodulator_priv;
531         int ret = -EINVAL;
532
533         dprintk("%s(frequency=%d)\n", __func__, p->frequency);
534
535         if ((state->current_frequency == p->frequency) &&
536             (state->current_modulation == p->u.vsb.modulation))
537                 return 0;
538
539         au8522_enable_modulation(fe, p->u.vsb.modulation);
540
541         /* Allow the demod to settle */
542         msleep(100);
543
544         if (fe->ops.tuner_ops.set_params) {
545                 if (fe->ops.i2c_gate_ctrl)
546                         fe->ops.i2c_gate_ctrl(fe, 1);
547                 ret = fe->ops.tuner_ops.set_params(fe, p);
548                 if (fe->ops.i2c_gate_ctrl)
549                         fe->ops.i2c_gate_ctrl(fe, 0);
550         }
551
552         if (ret < 0)
553                 return ret;
554
555         state->current_frequency = p->frequency;
556
557         return 0;
558 }
559
560 /* Reset the demod hardware and reset all of the configuration registers
561    to a default state. */
562 static int au8522_init(struct dvb_frontend *fe)
563 {
564         struct au8522_state *state = fe->demodulator_priv;
565         dprintk("%s()\n", __func__);
566
567         au8522_writereg(state, 0xa4, 1 << 5);
568
569         au8522_i2c_gate_ctrl(fe, 1);
570
571         return 0;
572 }
573
574 static int au8522_sleep(struct dvb_frontend *fe)
575 {
576         struct au8522_state *state = fe->demodulator_priv;
577         dprintk("%s()\n", __func__);
578
579         state->current_frequency = 0;
580
581         return 0;
582 }
583
584 static int au8522_read_status(struct dvb_frontend *fe, fe_status_t *status)
585 {
586         struct au8522_state *state = fe->demodulator_priv;
587         u8 reg;
588         u32 tuner_status = 0;
589
590         *status = 0;
591
592         if (state->current_modulation == VSB_8) {
593                 dprintk("%s() Checking VSB_8\n", __func__);
594                 reg = au8522_readreg(state, 0x4088);
595                 if ((reg & 0x03) == 0x03)
596                         *status |= FE_HAS_LOCK | FE_HAS_SYNC | FE_HAS_VITERBI;
597         } else {
598                 dprintk("%s() Checking QAM\n", __func__);
599                 reg = au8522_readreg(state, 0x4541);
600                 if (reg & 0x80)
601                         *status |= FE_HAS_VITERBI;
602                 if (reg & 0x20)
603                         *status |= FE_HAS_LOCK | FE_HAS_SYNC;
604         }
605
606         switch (state->config->status_mode) {
607         case AU8522_DEMODLOCKING:
608                 dprintk("%s() DEMODLOCKING\n", __func__);
609                 if (*status & FE_HAS_VITERBI)
610                         *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
611                 break;
612         case AU8522_TUNERLOCKING:
613                 /* Get the tuner status */
614                 dprintk("%s() TUNERLOCKING\n", __func__);
615                 if (fe->ops.tuner_ops.get_status) {
616                         if (fe->ops.i2c_gate_ctrl)
617                                 fe->ops.i2c_gate_ctrl(fe, 1);
618
619                         fe->ops.tuner_ops.get_status(fe, &tuner_status);
620
621                         if (fe->ops.i2c_gate_ctrl)
622                                 fe->ops.i2c_gate_ctrl(fe, 0);
623                 }
624                 if (tuner_status)
625                         *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
626                 break;
627         }
628
629         dprintk("%s() status 0x%08x\n", __func__, *status);
630
631         return 0;
632 }
633
634 static int au8522_read_snr(struct dvb_frontend *fe, u16 *snr)
635 {
636         struct au8522_state *state = fe->demodulator_priv;
637         int ret = -EINVAL;
638
639         dprintk("%s()\n", __func__);
640
641         if (state->current_modulation == QAM_256)
642                 ret = au8522_mse2snr_lookup(qam256_mse2snr_tab,
643                                             ARRAY_SIZE(qam256_mse2snr_tab),
644                                             au8522_readreg(state, 0x4522),
645                                             snr);
646         else if (state->current_modulation == QAM_64)
647                 ret = au8522_mse2snr_lookup(qam64_mse2snr_tab,
648                                             ARRAY_SIZE(qam64_mse2snr_tab),
649                                             au8522_readreg(state, 0x4522),
650                                             snr);
651         else /* VSB_8 */
652                 ret = au8522_mse2snr_lookup(vsb_mse2snr_tab,
653                                             ARRAY_SIZE(vsb_mse2snr_tab),
654                                             au8522_readreg(state, 0x4311),
655                                             snr);
656
657         return ret;
658 }
659
660 static int au8522_read_signal_strength(struct dvb_frontend *fe,
661                                        u16 *signal_strength)
662 {
663         return au8522_read_snr(fe, signal_strength);
664 }
665
666 static int au8522_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
667 {
668         struct au8522_state *state = fe->demodulator_priv;
669
670         if (state->current_modulation == VSB_8)
671                 *ucblocks = au8522_readreg(state, 0x4087);
672         else
673                 *ucblocks = au8522_readreg(state, 0x4543);
674
675         return 0;
676 }
677
678 static int au8522_read_ber(struct dvb_frontend *fe, u32 *ber)
679 {
680         return au8522_read_ucblocks(fe, ber);
681 }
682
683 static int au8522_get_frontend(struct dvb_frontend *fe,
684                                 struct dvb_frontend_parameters *p)
685 {
686         struct au8522_state *state = fe->demodulator_priv;
687
688         p->frequency = state->current_frequency;
689         p->u.vsb.modulation = state->current_modulation;
690
691         return 0;
692 }
693
694 static int au8522_get_tune_settings(struct dvb_frontend *fe,
695                                     struct dvb_frontend_tune_settings *tune)
696 {
697         tune->min_delay_ms = 1000;
698         return 0;
699 }
700
701 static void au8522_release(struct dvb_frontend *fe)
702 {
703         struct au8522_state *state = fe->demodulator_priv;
704         kfree(state);
705 }
706
707 static struct dvb_frontend_ops au8522_ops;
708
709 struct dvb_frontend *au8522_attach(const struct au8522_config *config,
710                                    struct i2c_adapter *i2c)
711 {
712         struct au8522_state *state = NULL;
713
714         /* allocate memory for the internal state */
715         state = kmalloc(sizeof(struct au8522_state), GFP_KERNEL);
716         if (state == NULL)
717                 goto error;
718
719         /* setup the state */
720         state->config = config;
721         state->i2c = i2c;
722         /* create dvb_frontend */
723         memcpy(&state->frontend.ops, &au8522_ops,
724                sizeof(struct dvb_frontend_ops));
725         state->frontend.demodulator_priv = state;
726
727         if (au8522_init(&state->frontend) != 0) {
728                 printk(KERN_ERR "%s: Failed to initialize correctly\n",
729                         __func__);
730                 goto error;
731         }
732
733         /* Note: Leaving the I2C gate open here. */
734         au8522_i2c_gate_ctrl(&state->frontend, 1);
735
736         return &state->frontend;
737
738 error:
739         kfree(state);
740         return NULL;
741 }
742 EXPORT_SYMBOL(au8522_attach);
743
744 static struct dvb_frontend_ops au8522_ops = {
745
746         .info = {
747                 .name                   = "Auvitek AU8522 QAM/8VSB Frontend",
748                 .type                   = FE_ATSC,
749                 .frequency_min          = 54000000,
750                 .frequency_max          = 858000000,
751                 .frequency_stepsize     = 62500,
752                 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
753         },
754
755         .init                 = au8522_init,
756         .sleep                = au8522_sleep,
757         .i2c_gate_ctrl        = au8522_i2c_gate_ctrl,
758         .set_frontend         = au8522_set_frontend,
759         .get_frontend         = au8522_get_frontend,
760         .get_tune_settings    = au8522_get_tune_settings,
761         .read_status          = au8522_read_status,
762         .read_ber             = au8522_read_ber,
763         .read_signal_strength = au8522_read_signal_strength,
764         .read_snr             = au8522_read_snr,
765         .read_ucblocks        = au8522_read_ucblocks,
766         .release              = au8522_release,
767 };
768
769 module_param(debug, int, 0644);
770 MODULE_PARM_DESC(debug, "Enable verbose debug messages");
771
772 MODULE_DESCRIPTION("Auvitek AU8522 QAM-B/ATSC Demodulator driver");
773 MODULE_AUTHOR("Steven Toth");
774 MODULE_LICENSE("GPL");