Merge git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb
[pandora-kernel.git] / drivers / media / dvb / frontends / s5h1409.c
1 /*
2     Samsung S5H1409 VSB/QAM demodulator driver
3
4     Copyright (C) 2006 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 "s5h1409.h"
30
31 struct s5h1409_state {
32
33         struct i2c_adapter* i2c;
34
35         /* configuration settings */
36         const struct s5h1409_config* config;
37
38         struct dvb_frontend frontend;
39
40         /* previous uncorrected block counter */
41         fe_modulation_t current_modulation;
42
43         u32 current_frequency;
44         int if_freq;
45
46         u32 is_qam_locked;
47         u32 qam_state;
48 };
49
50 static int debug;
51 #define dprintk if (debug) printk
52
53 /* Register values to initialise the demod, this will set VSB by default */
54 static struct init_tab {
55         u8      reg;
56         u16     data;
57 } init_tab[] = {
58         { 0x00, 0x0071, },
59         { 0x01, 0x3213, },
60         { 0x09, 0x0025, },
61         { 0x1c, 0x001d, },
62         { 0x1f, 0x002d, },
63         { 0x20, 0x001d, },
64         { 0x22, 0x0022, },
65         { 0x23, 0x0020, },
66         { 0x29, 0x110f, },
67         { 0x2a, 0x10b4, },
68         { 0x2b, 0x10ae, },
69         { 0x2c, 0x0031, },
70         { 0x31, 0x010d, },
71         { 0x32, 0x0100, },
72         { 0x44, 0x0510, },
73         { 0x54, 0x0104, },
74         { 0x58, 0x2222, },
75         { 0x59, 0x1162, },
76         { 0x5a, 0x3211, },
77         { 0x5d, 0x0370, },
78         { 0x5e, 0x0296, },
79         { 0x61, 0x0010, },
80         { 0x63, 0x4a00, },
81         { 0x65, 0x0800, },
82         { 0x71, 0x0003, },
83         { 0x72, 0x0470, },
84         { 0x81, 0x0002, },
85         { 0x82, 0x0600, },
86         { 0x86, 0x0002, },
87         { 0x8a, 0x2c38, },
88         { 0x8b, 0x2a37, },
89         { 0x92, 0x302f, },
90         { 0x93, 0x3332, },
91         { 0x96, 0x000c, },
92         { 0x99, 0x0101, },
93         { 0x9c, 0x2e37, },
94         { 0x9d, 0x2c37, },
95         { 0x9e, 0x2c37, },
96         { 0xab, 0x0100, },
97         { 0xac, 0x1003, },
98         { 0xad, 0x103f, },
99         { 0xe2, 0x0100, },
100         { 0xe3, 0x1000, },
101         { 0x28, 0x1010, },
102         { 0xb1, 0x000e, },
103 };
104
105 /* VSB SNR lookup table */
106 static struct vsb_snr_tab {
107         u16     val;
108         u16     data;
109 } vsb_snr_tab[] = {
110         {  924, 300, },
111         {  923, 300, },
112         {  918, 295, },
113         {  915, 290, },
114         {  911, 285, },
115         {  906, 280, },
116         {  901, 275, },
117         {  896, 270, },
118         {  891, 265, },
119         {  885, 260, },
120         {  879, 255, },
121         {  873, 250, },
122         {  864, 245, },
123         {  858, 240, },
124         {  850, 235, },
125         {  841, 230, },
126         {  832, 225, },
127         {  823, 220, },
128         {  812, 215, },
129         {  802, 210, },
130         {  788, 205, },
131         {  778, 200, },
132         {  767, 195, },
133         {  753, 190, },
134         {  740, 185, },
135         {  725, 180, },
136         {  707, 175, },
137         {  689, 170, },
138         {  671, 165, },
139         {  656, 160, },
140         {  637, 155, },
141         {  616, 150, },
142         {  542, 145, },
143         {  519, 140, },
144         {  507, 135, },
145         {  497, 130, },
146         {  492, 125, },
147         {  474, 120, },
148         {  300, 111, },
149         {    0,   0, },
150 };
151
152 /* QAM64 SNR lookup table */
153 static struct qam64_snr_tab {
154         u16     val;
155         u16     data;
156 } qam64_snr_tab[] = {
157         {    1,   0, },
158         {   12, 300, },
159         {   15, 290, },
160         {   18, 280, },
161         {   22, 270, },
162         {   23, 268, },
163         {   24, 266, },
164         {   25, 264, },
165         {   27, 262, },
166         {   28, 260, },
167         {   29, 258, },
168         {   30, 256, },
169         {   32, 254, },
170         {   33, 252, },
171         {   34, 250, },
172         {   35, 249, },
173         {   36, 248, },
174         {   37, 247, },
175         {   38, 246, },
176         {   39, 245, },
177         {   40, 244, },
178         {   41, 243, },
179         {   42, 241, },
180         {   43, 240, },
181         {   44, 239, },
182         {   45, 238, },
183         {   46, 237, },
184         {   47, 236, },
185         {   48, 235, },
186         {   49, 234, },
187         {   50, 233, },
188         {   51, 232, },
189         {   52, 231, },
190         {   53, 230, },
191         {   55, 229, },
192         {   56, 228, },
193         {   57, 227, },
194         {   58, 226, },
195         {   59, 225, },
196         {   60, 224, },
197         {   62, 223, },
198         {   63, 222, },
199         {   65, 221, },
200         {   66, 220, },
201         {   68, 219, },
202         {   69, 218, },
203         {   70, 217, },
204         {   72, 216, },
205         {   73, 215, },
206         {   75, 214, },
207         {   76, 213, },
208         {   78, 212, },
209         {   80, 211, },
210         {   81, 210, },
211         {   83, 209, },
212         {   84, 208, },
213         {   85, 207, },
214         {   87, 206, },
215         {   89, 205, },
216         {   91, 204, },
217         {   93, 203, },
218         {   95, 202, },
219         {   96, 201, },
220         {  104, 200, },
221         {  255,   0, },
222 };
223
224 /* QAM256 SNR lookup table */
225 static struct qam256_snr_tab {
226         u16     val;
227         u16     data;
228 } qam256_snr_tab[] = {
229         {    1,   0, },
230         {   12, 400, },
231         {   13, 390, },
232         {   15, 380, },
233         {   17, 360, },
234         {   19, 350, },
235         {   22, 348, },
236         {   23, 346, },
237         {   24, 344, },
238         {   25, 342, },
239         {   26, 340, },
240         {   27, 336, },
241         {   28, 334, },
242         {   29, 332, },
243         {   30, 330, },
244         {   31, 328, },
245         {   32, 326, },
246         {   33, 325, },
247         {   34, 322, },
248         {   35, 320, },
249         {   37, 318, },
250         {   39, 316, },
251         {   40, 314, },
252         {   41, 312, },
253         {   42, 310, },
254         {   43, 308, },
255         {   46, 306, },
256         {   47, 304, },
257         {   49, 302, },
258         {   51, 300, },
259         {   53, 298, },
260         {   54, 297, },
261         {   55, 296, },
262         {   56, 295, },
263         {   57, 294, },
264         {   59, 293, },
265         {   60, 292, },
266         {   61, 291, },
267         {   63, 290, },
268         {   64, 289, },
269         {   65, 288, },
270         {   66, 287, },
271         {   68, 286, },
272         {   69, 285, },
273         {   71, 284, },
274         {   72, 283, },
275         {   74, 282, },
276         {   75, 281, },
277         {   76, 280, },
278         {   77, 279, },
279         {   78, 278, },
280         {   81, 277, },
281         {   83, 276, },
282         {   84, 275, },
283         {   86, 274, },
284         {   87, 273, },
285         {   89, 272, },
286         {   90, 271, },
287         {   92, 270, },
288         {   93, 269, },
289         {   95, 268, },
290         {   96, 267, },
291         {   98, 266, },
292         {  100, 265, },
293         {  102, 264, },
294         {  104, 263, },
295         {  105, 262, },
296         {  106, 261, },
297         {  110, 260, },
298         {  255,   0, },
299 };
300
301 /* 8 bit registers, 16 bit values */
302 static int s5h1409_writereg(struct s5h1409_state* state, u8 reg, u16 data)
303 {
304         int ret;
305         u8 buf [] = { reg, data >> 8,  data & 0xff };
306
307         struct i2c_msg msg = { .addr = state->config->demod_address,
308                                .flags = 0, .buf = buf, .len = 3 };
309
310         ret = i2c_transfer(state->i2c, &msg, 1);
311
312         if (ret != 1)
313                 printk("%s: writereg error (reg == 0x%02x, val == 0x%04x, "
314                        "ret == %i)\n", __func__, reg, data, ret);
315
316         return (ret != 1) ? -1 : 0;
317 }
318
319 static u16 s5h1409_readreg(struct s5h1409_state* state, u8 reg)
320 {
321         int ret;
322         u8 b0 [] = { reg };
323         u8 b1 [] = { 0, 0 };
324
325         struct i2c_msg msg [] = {
326                 { .addr = state->config->demod_address, .flags = 0,
327                   .buf = b0, .len = 1 },
328                 { .addr = state->config->demod_address, .flags = I2C_M_RD,
329                   .buf = b1, .len = 2 } };
330
331         ret = i2c_transfer(state->i2c, msg, 2);
332
333         if (ret != 2)
334                 printk("%s: readreg error (ret == %i)\n", __func__, ret);
335         return (b1[0] << 8) | b1[1];
336 }
337
338 static int s5h1409_softreset(struct dvb_frontend* fe)
339 {
340         struct s5h1409_state* state = fe->demodulator_priv;
341
342         dprintk("%s()\n", __func__);
343
344         s5h1409_writereg(state, 0xf5, 0);
345         s5h1409_writereg(state, 0xf5, 1);
346         state->is_qam_locked = 0;
347         state->qam_state = 0;
348         return 0;
349 }
350
351 #define S5H1409_VSB_IF_FREQ 5380
352 #define S5H1409_QAM_IF_FREQ state->config->qam_if
353
354 static int s5h1409_set_if_freq(struct dvb_frontend* fe, int KHz)
355 {
356         struct s5h1409_state* state = fe->demodulator_priv;
357
358         dprintk("%s(%d KHz)\n", __func__, KHz);
359
360         switch (KHz) {
361         case 4000:
362                 s5h1409_writereg(state, 0x87, 0x014b);
363                 s5h1409_writereg(state, 0x88, 0x0cb5);
364                 s5h1409_writereg(state, 0x89, 0x03e2);
365                 break;
366         case 5380:
367         case 44000:
368         default:
369                 s5h1409_writereg(state, 0x87, 0x01be);
370                 s5h1409_writereg(state, 0x88, 0x0436);
371                 s5h1409_writereg(state, 0x89, 0x054d);
372                 break;
373         }
374         state->if_freq = KHz;
375
376         return 0;
377 }
378
379 static int s5h1409_set_spectralinversion(struct dvb_frontend* fe, int inverted)
380 {
381         struct s5h1409_state* state = fe->demodulator_priv;
382
383         dprintk("%s(%d)\n", __func__, inverted);
384
385         if(inverted == 1)
386                 return s5h1409_writereg(state, 0x1b, 0x1101); /* Inverted */
387         else
388                 return s5h1409_writereg(state, 0x1b, 0x0110); /* Normal */
389 }
390
391 static int s5h1409_enable_modulation(struct dvb_frontend* fe,
392                                      fe_modulation_t m)
393 {
394         struct s5h1409_state* state = fe->demodulator_priv;
395
396         dprintk("%s(0x%08x)\n", __func__, m);
397
398         switch(m) {
399         case VSB_8:
400                 dprintk("%s() VSB_8\n", __func__);
401                 if (state->if_freq != S5H1409_VSB_IF_FREQ)
402                         s5h1409_set_if_freq(fe, S5H1409_VSB_IF_FREQ);
403                 s5h1409_writereg(state, 0xf4, 0);
404                 break;
405         case QAM_64:
406         case QAM_256:
407                 dprintk("%s() QAM_AUTO (64/256)\n", __func__);
408                 if (state->if_freq != S5H1409_QAM_IF_FREQ)
409                         s5h1409_set_if_freq(fe, S5H1409_QAM_IF_FREQ);
410                 s5h1409_writereg(state, 0xf4, 1);
411                 s5h1409_writereg(state, 0x85, 0x110);
412                 break;
413         default:
414                 dprintk("%s() Invalid modulation\n", __func__);
415                 return -EINVAL;
416         }
417
418         state->current_modulation = m;
419         s5h1409_softreset(fe);
420
421         return 0;
422 }
423
424 static int s5h1409_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
425 {
426         struct s5h1409_state* state = fe->demodulator_priv;
427
428         dprintk("%s(%d)\n", __func__, enable);
429
430         if (enable)
431                 return s5h1409_writereg(state, 0xf3, 1);
432         else
433                 return s5h1409_writereg(state, 0xf3, 0);
434 }
435
436 static int s5h1409_set_gpio(struct dvb_frontend* fe, int enable)
437 {
438         struct s5h1409_state* state = fe->demodulator_priv;
439
440         dprintk("%s(%d)\n", __func__, enable);
441
442         if (enable)
443                 return s5h1409_writereg(state, 0xe3,
444                         s5h1409_readreg(state, 0xe3) | 0x1100);
445         else
446                 return s5h1409_writereg(state, 0xe3,
447                         s5h1409_readreg(state, 0xe3) & 0xfeff);
448 }
449
450 static int s5h1409_sleep(struct dvb_frontend* fe, int enable)
451 {
452         struct s5h1409_state* state = fe->demodulator_priv;
453
454         dprintk("%s(%d)\n", __func__, enable);
455
456         return s5h1409_writereg(state, 0xf2, enable);
457 }
458
459 static int s5h1409_register_reset(struct dvb_frontend* fe)
460 {
461         struct s5h1409_state* state = fe->demodulator_priv;
462
463         dprintk("%s()\n", __func__);
464
465         return s5h1409_writereg(state, 0xfa, 0);
466 }
467
468 static void s5h1409_set_qam_amhum_mode(struct dvb_frontend *fe)
469 {
470         struct s5h1409_state *state = fe->demodulator_priv;
471         u16 reg;
472
473         if (state->is_qam_locked)
474                 return;
475
476         /* QAM EQ lock check */
477         reg = s5h1409_readreg(state, 0xf0);
478
479         if ((reg >> 13) & 0x1) {
480
481                 state->is_qam_locked = 1;
482                 reg &= 0xff;
483
484                 s5h1409_writereg(state, 0x96, 0x00c);
485                 if ((reg < 0x38) || (reg > 0x68) ) {
486                         s5h1409_writereg(state, 0x93, 0x3332);
487                         s5h1409_writereg(state, 0x9e, 0x2c37);
488                 } else {
489                         s5h1409_writereg(state, 0x93, 0x3130);
490                         s5h1409_writereg(state, 0x9e, 0x2836);
491                 }
492
493         } else {
494                 s5h1409_writereg(state, 0x96, 0x0008);
495                 s5h1409_writereg(state, 0x93, 0x3332);
496                 s5h1409_writereg(state, 0x9e, 0x2c37);
497         }
498 }
499
500 static void s5h1409_set_qam_interleave_mode(struct dvb_frontend *fe)
501 {
502         struct s5h1409_state *state = fe->demodulator_priv;
503         u16 reg, reg1, reg2;
504
505         reg = s5h1409_readreg(state, 0xf1);
506
507         /* Master lock */
508         if ((reg >> 15) & 0x1) {
509                 if (state->qam_state != 2) {
510                         state->qam_state = 2;
511                         reg1 = s5h1409_readreg(state, 0xb2);
512                         reg2 = s5h1409_readreg(state, 0xad);
513
514                         s5h1409_writereg(state, 0x96, 0x20);
515                         s5h1409_writereg(state, 0xad,
516                                 ( ((reg1 & 0xf000) >> 4) | (reg2 & 0xf0ff)) );
517                         s5h1409_writereg(state, 0xab,
518                                 s5h1409_readreg(state, 0xab) & 0xeffe);
519                 }
520         } else {
521                 if (state->qam_state != 1) {
522                         state->qam_state = 1;
523                         s5h1409_writereg(state, 0x96, 0x08);
524                         s5h1409_writereg(state, 0xab,
525                                 s5h1409_readreg(state, 0xab) | 0x1001);
526                 }
527         }
528 }
529
530 /* Talk to the demod, set the FEC, GUARD, QAM settings etc */
531 static int s5h1409_set_frontend (struct dvb_frontend* fe,
532                                  struct dvb_frontend_parameters *p)
533 {
534         struct s5h1409_state* state = fe->demodulator_priv;
535
536         dprintk("%s(frequency=%d)\n", __func__, p->frequency);
537
538         s5h1409_softreset(fe);
539
540         state->current_frequency = p->frequency;
541
542         s5h1409_enable_modulation(fe, p->u.vsb.modulation);
543
544         /* Allow the demod to settle */
545         msleep(100);
546
547         if (fe->ops.tuner_ops.set_params) {
548                 if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 1);
549                 fe->ops.tuner_ops.set_params(fe, p);
550                 if (fe->ops.i2c_gate_ctrl) fe->ops.i2c_gate_ctrl(fe, 0);
551         }
552
553         /* Optimize the demod for QAM */
554         if (p->u.vsb.modulation != VSB_8) {
555                 s5h1409_set_qam_amhum_mode(fe);
556                 s5h1409_set_qam_interleave_mode(fe);
557         }
558
559         return 0;
560 }
561
562 static int s5h1409_set_mpeg_timing(struct dvb_frontend *fe, int mode)
563 {
564         struct s5h1409_state *state = fe->demodulator_priv;
565         u16 val;
566
567         dprintk("%s(%d)\n", __func__, mode);
568
569         val = s5h1409_readreg(state, 0xac) & 0xcfff;
570         switch (mode) {
571         case S5H1409_MPEGTIMING_CONTINOUS_INVERTING_CLOCK:
572                 val |= 0x0000;
573                 break;
574         case S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK:
575                 dprintk("%s(%d) Mode1 or Defaulting\n", __func__, mode);
576                 val |= 0x1000;
577                 break;
578         case S5H1409_MPEGTIMING_NONCONTINOUS_INVERTING_CLOCK:
579                 val |= 0x2000;
580                 break;
581         case S5H1409_MPEGTIMING_NONCONTINOUS_NONINVERTING_CLOCK:
582                 val |= 0x3000;
583                 break;
584         default:
585                 return -EINVAL;
586         }
587
588         /* Configure MPEG Signal Timing charactistics */
589         return s5h1409_writereg(state, 0xac, val);
590 }
591
592 /* Reset the demod hardware and reset all of the configuration registers
593    to a default state. */
594 static int s5h1409_init (struct dvb_frontend* fe)
595 {
596         int i;
597
598         struct s5h1409_state* state = fe->demodulator_priv;
599         dprintk("%s()\n", __func__);
600
601         s5h1409_sleep(fe, 0);
602         s5h1409_register_reset(fe);
603
604         for (i=0; i < ARRAY_SIZE(init_tab); i++)
605                 s5h1409_writereg(state, init_tab[i].reg, init_tab[i].data);
606
607         /* The datasheet says that after initialisation, VSB is default */
608         state->current_modulation = VSB_8;
609
610         if (state->config->output_mode == S5H1409_SERIAL_OUTPUT)
611                 s5h1409_writereg(state, 0xab,
612                         s5h1409_readreg(state, 0xab) | 0x100); /* Serial */
613         else
614                 s5h1409_writereg(state, 0xab,
615                         s5h1409_readreg(state, 0xab) & 0xfeff); /* Parallel */
616
617         s5h1409_set_spectralinversion(fe, state->config->inversion);
618         s5h1409_set_if_freq(fe, state->if_freq);
619         s5h1409_set_gpio(fe, state->config->gpio);
620         s5h1409_set_mpeg_timing(fe, state->config->mpeg_timing);
621         s5h1409_softreset(fe);
622
623         /* Note: Leaving the I2C gate closed. */
624         s5h1409_i2c_gate_ctrl(fe, 0);
625
626         return 0;
627 }
628
629 static int s5h1409_read_status(struct dvb_frontend* fe, fe_status_t* status)
630 {
631         struct s5h1409_state* state = fe->demodulator_priv;
632         u16 reg;
633         u32 tuner_status = 0;
634
635         *status = 0;
636
637         /* Get the demodulator status */
638         reg = s5h1409_readreg(state, 0xf1);
639         if(reg & 0x1000)
640                 *status |= FE_HAS_VITERBI;
641         if(reg & 0x8000)
642                 *status |= FE_HAS_LOCK | FE_HAS_SYNC;
643
644         switch(state->config->status_mode) {
645         case S5H1409_DEMODLOCKING:
646                 if (*status & FE_HAS_VITERBI)
647                         *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
648                 break;
649         case S5H1409_TUNERLOCKING:
650                 /* Get the tuner status */
651                 if (fe->ops.tuner_ops.get_status) {
652                         if (fe->ops.i2c_gate_ctrl)
653                                 fe->ops.i2c_gate_ctrl(fe, 1);
654
655                         fe->ops.tuner_ops.get_status(fe, &tuner_status);
656
657                         if (fe->ops.i2c_gate_ctrl)
658                                 fe->ops.i2c_gate_ctrl(fe, 0);
659                 }
660                 if (tuner_status)
661                         *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
662                 break;
663         }
664
665         dprintk("%s() status 0x%08x\n", __func__, *status);
666
667         return 0;
668 }
669
670 static int s5h1409_qam256_lookup_snr(struct dvb_frontend* fe, u16* snr, u16 v)
671 {
672         int i, ret = -EINVAL;
673         dprintk("%s()\n", __func__);
674
675         for (i=0; i < ARRAY_SIZE(qam256_snr_tab); i++) {
676                 if (v < qam256_snr_tab[i].val) {
677                         *snr = qam256_snr_tab[i].data;
678                         ret = 0;
679                         break;
680                 }
681         }
682         return ret;
683 }
684
685 static int s5h1409_qam64_lookup_snr(struct dvb_frontend* fe, u16* snr, u16 v)
686 {
687         int i, ret = -EINVAL;
688         dprintk("%s()\n", __func__);
689
690         for (i=0; i < ARRAY_SIZE(qam64_snr_tab); i++) {
691                 if (v < qam64_snr_tab[i].val) {
692                         *snr = qam64_snr_tab[i].data;
693                         ret = 0;
694                         break;
695                 }
696         }
697         return ret;
698 }
699
700 static int s5h1409_vsb_lookup_snr(struct dvb_frontend* fe, u16* snr, u16 v)
701 {
702         int i, ret = -EINVAL;
703         dprintk("%s()\n", __func__);
704
705         for (i=0; i < ARRAY_SIZE(vsb_snr_tab); i++) {
706                 if (v > vsb_snr_tab[i].val) {
707                         *snr = vsb_snr_tab[i].data;
708                         ret = 0;
709                         break;
710                 }
711         }
712         dprintk("%s() snr=%d\n", __func__, *snr);
713         return ret;
714 }
715
716 static int s5h1409_read_snr(struct dvb_frontend* fe, u16* snr)
717 {
718         struct s5h1409_state* state = fe->demodulator_priv;
719         u16 reg;
720         dprintk("%s()\n", __func__);
721
722         switch(state->current_modulation) {
723         case QAM_64:
724                 reg = s5h1409_readreg(state, 0xf0) & 0xff;
725                 return s5h1409_qam64_lookup_snr(fe, snr, reg);
726         case QAM_256:
727                 reg = s5h1409_readreg(state, 0xf0) & 0xff;
728                 return s5h1409_qam256_lookup_snr(fe, snr, reg);
729         case VSB_8:
730                 reg = s5h1409_readreg(state, 0xf1) & 0x3ff;
731                 return s5h1409_vsb_lookup_snr(fe, snr, reg);
732         default:
733                 break;
734         }
735
736         return -EINVAL;
737 }
738
739 static int s5h1409_read_signal_strength(struct dvb_frontend* fe,
740                                         u16* signal_strength)
741 {
742         return s5h1409_read_snr(fe, signal_strength);
743 }
744
745 static int s5h1409_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
746 {
747         struct s5h1409_state* state = fe->demodulator_priv;
748
749         *ucblocks = s5h1409_readreg(state, 0xb5);
750
751         return 0;
752 }
753
754 static int s5h1409_read_ber(struct dvb_frontend* fe, u32* ber)
755 {
756         return s5h1409_read_ucblocks(fe, ber);
757 }
758
759 static int s5h1409_get_frontend(struct dvb_frontend* fe,
760                                 struct dvb_frontend_parameters *p)
761 {
762         struct s5h1409_state* state = fe->demodulator_priv;
763
764         p->frequency = state->current_frequency;
765         p->u.vsb.modulation = state->current_modulation;
766
767         return 0;
768 }
769
770 static int s5h1409_get_tune_settings(struct dvb_frontend* fe,
771                                      struct dvb_frontend_tune_settings *tune)
772 {
773         tune->min_delay_ms = 1000;
774         return 0;
775 }
776
777 static void s5h1409_release(struct dvb_frontend* fe)
778 {
779         struct s5h1409_state* state = fe->demodulator_priv;
780         kfree(state);
781 }
782
783 static struct dvb_frontend_ops s5h1409_ops;
784
785 struct dvb_frontend* s5h1409_attach(const struct s5h1409_config* config,
786                                     struct i2c_adapter* i2c)
787 {
788         struct s5h1409_state* state = NULL;
789         u16 reg;
790
791         /* allocate memory for the internal state */
792         state = kmalloc(sizeof(struct s5h1409_state), GFP_KERNEL);
793         if (state == NULL)
794                 goto error;
795
796         /* setup the state */
797         state->config = config;
798         state->i2c = i2c;
799         state->current_modulation = 0;
800         state->if_freq = S5H1409_VSB_IF_FREQ;
801
802         /* check if the demod exists */
803         reg = s5h1409_readreg(state, 0x04);
804         if ((reg != 0x0066) && (reg != 0x007f))
805                 goto error;
806
807         /* create dvb_frontend */
808         memcpy(&state->frontend.ops, &s5h1409_ops,
809                sizeof(struct dvb_frontend_ops));
810         state->frontend.demodulator_priv = state;
811
812         if (s5h1409_init(&state->frontend) != 0) {
813                 printk(KERN_ERR "%s: Failed to initialize correctly\n",
814                         __func__);
815                 goto error;
816         }
817
818         /* Note: Leaving the I2C gate open here. */
819         s5h1409_i2c_gate_ctrl(&state->frontend, 1);
820
821         return &state->frontend;
822
823 error:
824         kfree(state);
825         return NULL;
826 }
827
828 static struct dvb_frontend_ops s5h1409_ops = {
829
830         .info = {
831                 .name                   = "Samsung S5H1409 QAM/8VSB Frontend",
832                 .type                   = FE_ATSC,
833                 .frequency_min          = 54000000,
834                 .frequency_max          = 858000000,
835                 .frequency_stepsize     = 62500,
836                 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
837         },
838
839         .init                 = s5h1409_init,
840         .i2c_gate_ctrl        = s5h1409_i2c_gate_ctrl,
841         .set_frontend         = s5h1409_set_frontend,
842         .get_frontend         = s5h1409_get_frontend,
843         .get_tune_settings    = s5h1409_get_tune_settings,
844         .read_status          = s5h1409_read_status,
845         .read_ber             = s5h1409_read_ber,
846         .read_signal_strength = s5h1409_read_signal_strength,
847         .read_snr             = s5h1409_read_snr,
848         .read_ucblocks        = s5h1409_read_ucblocks,
849         .release              = s5h1409_release,
850 };
851
852 module_param(debug, int, 0644);
853 MODULE_PARM_DESC(debug, "Enable verbose debug messages");
854
855 MODULE_DESCRIPTION("Samsung S5H1409 QAM-B/ATSC Demodulator driver");
856 MODULE_AUTHOR("Steven Toth");
857 MODULE_LICENSE("GPL");
858
859 EXPORT_SYMBOL(s5h1409_attach);
860
861 /*
862  * Local variables:
863  * c-basic-offset: 8
864  */