2 Samsung S5H1411 VSB/QAM demodulator driver
4 Copyright (C) 2008 Steven Toth <stoth@hauppauge.com>
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.
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"
31 struct s5h1411_state {
33 struct i2c_adapter *i2c;
35 /* configuration settings */
36 const struct s5h1411_config *config;
38 struct dvb_frontend frontend;
40 fe_modulation_t current_modulation;
42 u32 current_frequency;
50 #define dprintk(arg...) do { \
55 /* Register values to initialise the demod, defaults to VSB */
56 static struct init_tab {
61 { S5H1411_I2C_TOP_ADDR, 0x00, 0x0071, },
62 { S5H1411_I2C_TOP_ADDR, 0x08, 0x0047, },
63 { S5H1411_I2C_TOP_ADDR, 0x1c, 0x0400, },
64 { S5H1411_I2C_TOP_ADDR, 0x1e, 0x0370, },
65 { S5H1411_I2C_TOP_ADDR, 0x1f, 0x342a, },
66 { S5H1411_I2C_TOP_ADDR, 0x24, 0x0231, },
67 { S5H1411_I2C_TOP_ADDR, 0x25, 0x1011, },
68 { S5H1411_I2C_TOP_ADDR, 0x26, 0x0f07, },
69 { S5H1411_I2C_TOP_ADDR, 0x27, 0x0f04, },
70 { S5H1411_I2C_TOP_ADDR, 0x28, 0x070f, },
71 { S5H1411_I2C_TOP_ADDR, 0x29, 0x2820, },
72 { S5H1411_I2C_TOP_ADDR, 0x2a, 0x102e, },
73 { S5H1411_I2C_TOP_ADDR, 0x2b, 0x0220, },
74 { S5H1411_I2C_TOP_ADDR, 0x2e, 0x0d0e, },
75 { S5H1411_I2C_TOP_ADDR, 0x2f, 0x1013, },
76 { S5H1411_I2C_TOP_ADDR, 0x31, 0x171b, },
77 { S5H1411_I2C_TOP_ADDR, 0x32, 0x0e0f, },
78 { S5H1411_I2C_TOP_ADDR, 0x33, 0x0f10, },
79 { S5H1411_I2C_TOP_ADDR, 0x34, 0x170e, },
80 { S5H1411_I2C_TOP_ADDR, 0x35, 0x4b10, },
81 { S5H1411_I2C_TOP_ADDR, 0x36, 0x0f17, },
82 { S5H1411_I2C_TOP_ADDR, 0x3c, 0x1577, },
83 { S5H1411_I2C_TOP_ADDR, 0x3d, 0x081a, },
84 { S5H1411_I2C_TOP_ADDR, 0x3e, 0x77ee, },
85 { S5H1411_I2C_TOP_ADDR, 0x40, 0x1e09, },
86 { S5H1411_I2C_TOP_ADDR, 0x41, 0x0f0c, },
87 { S5H1411_I2C_TOP_ADDR, 0x42, 0x1f10, },
88 { S5H1411_I2C_TOP_ADDR, 0x4d, 0x0509, },
89 { S5H1411_I2C_TOP_ADDR, 0x4e, 0x0a00, },
90 { S5H1411_I2C_TOP_ADDR, 0x50, 0x0000, },
91 { S5H1411_I2C_TOP_ADDR, 0x5b, 0x0000, },
92 { S5H1411_I2C_TOP_ADDR, 0x5c, 0x0008, },
93 { S5H1411_I2C_TOP_ADDR, 0x57, 0x1101, },
94 { S5H1411_I2C_TOP_ADDR, 0x65, 0x007c, },
95 { S5H1411_I2C_TOP_ADDR, 0x68, 0x0512, },
96 { S5H1411_I2C_TOP_ADDR, 0x69, 0x0258, },
97 { S5H1411_I2C_TOP_ADDR, 0x70, 0x0004, },
98 { S5H1411_I2C_TOP_ADDR, 0x71, 0x0007, },
99 { S5H1411_I2C_TOP_ADDR, 0x76, 0x00a9, },
100 { S5H1411_I2C_TOP_ADDR, 0x78, 0x3141, },
101 { S5H1411_I2C_TOP_ADDR, 0x7a, 0x3141, },
102 { S5H1411_I2C_TOP_ADDR, 0xb3, 0x8003, },
103 { S5H1411_I2C_TOP_ADDR, 0xb5, 0xafbb, },
104 { S5H1411_I2C_TOP_ADDR, 0xb5, 0xa6bb, },
105 { S5H1411_I2C_TOP_ADDR, 0xb6, 0x0609, },
106 { S5H1411_I2C_TOP_ADDR, 0xb7, 0x2f06, },
107 { S5H1411_I2C_TOP_ADDR, 0xb8, 0x003f, },
108 { S5H1411_I2C_TOP_ADDR, 0xb9, 0x2700, },
109 { S5H1411_I2C_TOP_ADDR, 0xba, 0xfac8, },
110 { S5H1411_I2C_TOP_ADDR, 0xbe, 0x1003, },
111 { S5H1411_I2C_TOP_ADDR, 0xbf, 0x103f, },
112 { S5H1411_I2C_TOP_ADDR, 0xce, 0x2000, },
113 { S5H1411_I2C_TOP_ADDR, 0xcf, 0x0800, },
114 { S5H1411_I2C_TOP_ADDR, 0xd0, 0x0800, },
115 { S5H1411_I2C_TOP_ADDR, 0xd1, 0x0400, },
116 { S5H1411_I2C_TOP_ADDR, 0xd2, 0x0800, },
117 { S5H1411_I2C_TOP_ADDR, 0xd3, 0x2000, },
118 { S5H1411_I2C_TOP_ADDR, 0xd4, 0x3000, },
119 { S5H1411_I2C_TOP_ADDR, 0xdb, 0x4a9b, },
120 { S5H1411_I2C_TOP_ADDR, 0xdc, 0x1000, },
121 { S5H1411_I2C_TOP_ADDR, 0xde, 0x0001, },
122 { S5H1411_I2C_TOP_ADDR, 0xdf, 0x0000, },
123 { S5H1411_I2C_TOP_ADDR, 0xe3, 0x0301, },
124 { S5H1411_I2C_QAM_ADDR, 0xf3, 0x0000, },
125 { S5H1411_I2C_QAM_ADDR, 0xf3, 0x0001, },
126 { S5H1411_I2C_QAM_ADDR, 0x08, 0x0600, },
127 { S5H1411_I2C_QAM_ADDR, 0x18, 0x4201, },
128 { S5H1411_I2C_QAM_ADDR, 0x1e, 0x6476, },
129 { S5H1411_I2C_QAM_ADDR, 0x21, 0x0830, },
130 { S5H1411_I2C_QAM_ADDR, 0x0c, 0x5679, },
131 { S5H1411_I2C_QAM_ADDR, 0x0d, 0x579b, },
132 { S5H1411_I2C_QAM_ADDR, 0x24, 0x0102, },
133 { S5H1411_I2C_QAM_ADDR, 0x31, 0x7488, },
134 { S5H1411_I2C_QAM_ADDR, 0x32, 0x0a08, },
135 { S5H1411_I2C_QAM_ADDR, 0x3d, 0x8689, },
136 { S5H1411_I2C_QAM_ADDR, 0x49, 0x0048, },
137 { S5H1411_I2C_QAM_ADDR, 0x57, 0x2012, },
138 { S5H1411_I2C_QAM_ADDR, 0x5d, 0x7676, },
139 { S5H1411_I2C_QAM_ADDR, 0x04, 0x0400, },
140 { S5H1411_I2C_QAM_ADDR, 0x58, 0x00c0, },
141 { S5H1411_I2C_QAM_ADDR, 0x5b, 0x0100, },
144 /* VSB SNR lookup table */
145 static struct vsb_snr_tab {
189 /* QAM64 SNR lookup table */
190 static struct qam64_snr_tab {
193 } qam64_snr_tab[] = {
262 /* QAM256 SNR lookup table */
263 static struct qam256_snr_tab {
266 } qam256_snr_tab[] = {
341 /* 8 bit registers, 16 bit values */
342 static int s5h1411_writereg(struct s5h1411_state *state,
343 u8 addr, u8 reg, u16 data)
346 u8 buf [] = { reg, data >> 8, data & 0xff };
348 struct i2c_msg msg = { .addr = addr, .flags = 0, .buf = buf, .len = 3 };
350 ret = i2c_transfer(state->i2c, &msg, 1);
353 printk(KERN_ERR "%s: writereg error 0x%02x 0x%02x 0x%04x, "
354 "ret == %i)\n", __func__, addr, reg, data, ret);
356 return (ret != 1) ? -1 : 0;
359 static u16 s5h1411_readreg(struct s5h1411_state *state, u8 addr, u8 reg)
365 struct i2c_msg msg [] = {
366 { .addr = addr, .flags = 0, .buf = b0, .len = 1 },
367 { .addr = addr, .flags = I2C_M_RD, .buf = b1, .len = 2 } };
369 ret = i2c_transfer(state->i2c, msg, 2);
372 printk(KERN_ERR "%s: readreg error (ret == %i)\n",
374 return (b1[0] << 8) | b1[1];
377 static int s5h1411_softreset(struct dvb_frontend *fe)
379 struct s5h1411_state *state = fe->demodulator_priv;
381 dprintk("%s()\n", __func__);
383 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf7, 0);
384 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf7, 1);
388 static int s5h1411_set_if_freq(struct dvb_frontend *fe, int KHz)
390 struct s5h1411_state *state = fe->demodulator_priv;
392 dprintk("%s(%d KHz)\n", __func__, KHz);
396 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x38, 0x10d9);
397 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x39, 0x5342);
398 s5h1411_writereg(state, S5H1411_I2C_QAM_ADDR, 0x2c, 0x10d9);
401 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x38, 0x1225);
402 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x39, 0x1e96);
403 s5h1411_writereg(state, S5H1411_I2C_QAM_ADDR, 0x2c, 0x1225);
406 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x38, 0x14bc);
407 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x39, 0xb53e);
408 s5h1411_writereg(state, S5H1411_I2C_QAM_ADDR, 0x2c, 0x14bd);
411 dprintk("%s(%d KHz) Invalid, defaulting to 5380\n",
413 /* no break, need to continue */
416 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x38, 0x1be4);
417 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x39, 0x3655);
418 s5h1411_writereg(state, S5H1411_I2C_QAM_ADDR, 0x2c, 0x1be4);
422 state->if_freq = KHz;
427 static int s5h1411_set_mpeg_timing(struct dvb_frontend *fe, int mode)
429 struct s5h1411_state *state = fe->demodulator_priv;
432 dprintk("%s(%d)\n", __func__, mode);
434 val = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xbe) & 0xcfff;
436 case S5H1411_MPEGTIMING_CONTINOUS_INVERTING_CLOCK:
439 case S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK:
440 dprintk("%s(%d) Mode1 or Defaulting\n", __func__, mode);
443 case S5H1411_MPEGTIMING_NONCONTINOUS_INVERTING_CLOCK:
446 case S5H1411_MPEGTIMING_NONCONTINOUS_NONINVERTING_CLOCK:
453 /* Configure MPEG Signal Timing charactistics */
454 return s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xbe, val);
457 static int s5h1411_set_spectralinversion(struct dvb_frontend *fe, int inversion)
459 struct s5h1411_state *state = fe->demodulator_priv;
462 dprintk("%s(%d)\n", __func__, inversion);
463 val = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0x24) & ~0x1000;
466 val |= 0x1000; /* Inverted */
470 state->inversion = inversion;
471 return s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x24, val);
474 static int s5h1411_enable_modulation(struct dvb_frontend *fe,
477 struct s5h1411_state *state = fe->demodulator_priv;
479 dprintk("%s(0x%08x)\n", __func__, m);
483 dprintk("%s() VSB_8\n", __func__);
484 s5h1411_set_if_freq(fe, state->config->vsb_if);
485 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x00, 0x71);
486 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf6, 0x00);
487 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xcd, 0xf1);
491 dprintk("%s() QAM_AUTO (64/256)\n", __func__);
492 s5h1411_set_if_freq(fe, state->config->qam_if);
493 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0x00, 0x0171);
494 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf6, 0x0001);
495 s5h1411_writereg(state, S5H1411_I2C_QAM_ADDR, 0x16, 0x1101);
496 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xcd, 0x00f0);
499 dprintk("%s() Invalid modulation\n", __func__);
503 state->current_modulation = m;
504 s5h1411_softreset(fe);
509 static int s5h1411_i2c_gate_ctrl(struct dvb_frontend *fe, int enable)
511 struct s5h1411_state *state = fe->demodulator_priv;
513 dprintk("%s(%d)\n", __func__, enable);
516 return s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf5, 1);
518 return s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf5, 0);
521 static int s5h1411_set_gpio(struct dvb_frontend *fe, int enable)
523 struct s5h1411_state *state = fe->demodulator_priv;
526 dprintk("%s(%d)\n", __func__, enable);
528 val = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xe0) & ~0x02;
531 return s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xe0,
534 return s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xe0, val);
537 static int s5h1411_sleep(struct dvb_frontend *fe, int enable)
539 struct s5h1411_state *state = fe->demodulator_priv;
541 dprintk("%s(%d)\n", __func__, enable);
544 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf4, 1);
546 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf4, 0);
547 s5h1411_softreset(fe);
553 static int s5h1411_register_reset(struct dvb_frontend *fe)
555 struct s5h1411_state *state = fe->demodulator_priv;
557 dprintk("%s()\n", __func__);
559 return s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf3, 0);
562 /* Talk to the demod, set the FEC, GUARD, QAM settings etc */
563 static int s5h1411_set_frontend(struct dvb_frontend *fe,
564 struct dvb_frontend_parameters *p)
566 struct s5h1411_state *state = fe->demodulator_priv;
568 dprintk("%s(frequency=%d)\n", __func__, p->frequency);
570 s5h1411_softreset(fe);
572 state->current_frequency = p->frequency;
574 s5h1411_enable_modulation(fe, p->u.vsb.modulation);
576 /* Allow the demod to settle */
579 if (fe->ops.tuner_ops.set_params) {
580 if (fe->ops.i2c_gate_ctrl)
581 fe->ops.i2c_gate_ctrl(fe, 1);
583 fe->ops.tuner_ops.set_params(fe, p);
585 if (fe->ops.i2c_gate_ctrl)
586 fe->ops.i2c_gate_ctrl(fe, 0);
592 /* Reset the demod hardware and reset all of the configuration registers
593 to a default state. */
594 static int s5h1411_init(struct dvb_frontend *fe)
596 struct s5h1411_state *state = fe->demodulator_priv;
599 dprintk("%s()\n", __func__);
601 s5h1411_sleep(fe, 0);
602 s5h1411_register_reset(fe);
604 for (i = 0; i < ARRAY_SIZE(init_tab); i++)
605 s5h1411_writereg(state, init_tab[i].addr,
609 /* The datasheet says that after initialisation, VSB is default */
610 state->current_modulation = VSB_8;
612 if (state->config->output_mode == S5H1411_SERIAL_OUTPUT)
614 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xbd, 0x1101);
617 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xbd, 0x1001);
619 s5h1411_set_spectralinversion(fe, state->config->inversion);
620 s5h1411_set_if_freq(fe, state->config->vsb_if);
621 s5h1411_set_gpio(fe, state->config->gpio);
622 s5h1411_set_mpeg_timing(fe, state->config->mpeg_timing);
623 s5h1411_softreset(fe);
625 /* Note: Leaving the I2C gate closed. */
626 s5h1411_i2c_gate_ctrl(fe, 0);
631 static int s5h1411_read_status(struct dvb_frontend *fe, fe_status_t *status)
633 struct s5h1411_state *state = fe->demodulator_priv;
635 u32 tuner_status = 0;
639 /* Get the demodulator status */
640 reg = (s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xf2) >> 15)
643 *status |= FE_HAS_LOCK | FE_HAS_CARRIER | FE_HAS_SIGNAL;
645 switch (state->current_modulation) {
648 reg = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xf0);
650 *status |= FE_HAS_VITERBI;
652 *status |= FE_HAS_SYNC;
655 reg = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0x5e);
657 *status |= FE_HAS_SYNC;
658 reg = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xf2);
660 *status |= FE_HAS_VITERBI;
666 switch (state->config->status_mode) {
667 case S5H1411_DEMODLOCKING:
668 if (*status & FE_HAS_VITERBI)
669 *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
671 case S5H1411_TUNERLOCKING:
672 /* Get the tuner status */
673 if (fe->ops.tuner_ops.get_status) {
674 if (fe->ops.i2c_gate_ctrl)
675 fe->ops.i2c_gate_ctrl(fe, 1);
677 fe->ops.tuner_ops.get_status(fe, &tuner_status);
679 if (fe->ops.i2c_gate_ctrl)
680 fe->ops.i2c_gate_ctrl(fe, 0);
683 *status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
687 dprintk("%s() status 0x%08x\n", __func__, *status);
692 static int s5h1411_qam256_lookup_snr(struct dvb_frontend *fe, u16 *snr, u16 v)
694 int i, ret = -EINVAL;
695 dprintk("%s()\n", __func__);
697 for (i = 0; i < ARRAY_SIZE(qam256_snr_tab); i++) {
698 if (v < qam256_snr_tab[i].val) {
699 *snr = qam256_snr_tab[i].data;
707 static int s5h1411_qam64_lookup_snr(struct dvb_frontend *fe, u16 *snr, u16 v)
709 int i, ret = -EINVAL;
710 dprintk("%s()\n", __func__);
712 for (i = 0; i < ARRAY_SIZE(qam64_snr_tab); i++) {
713 if (v < qam64_snr_tab[i].val) {
714 *snr = qam64_snr_tab[i].data;
722 static int s5h1411_vsb_lookup_snr(struct dvb_frontend *fe, u16 *snr, u16 v)
724 int i, ret = -EINVAL;
725 dprintk("%s()\n", __func__);
727 for (i = 0; i < ARRAY_SIZE(vsb_snr_tab); i++) {
728 if (v > vsb_snr_tab[i].val) {
729 *snr = vsb_snr_tab[i].data;
734 dprintk("%s() snr=%d\n", __func__, *snr);
738 static int s5h1411_read_snr(struct dvb_frontend *fe, u16 *snr)
740 struct s5h1411_state *state = fe->demodulator_priv;
742 dprintk("%s()\n", __func__);
744 switch (state->current_modulation) {
746 reg = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xf1);
747 return s5h1411_qam64_lookup_snr(fe, snr, reg);
749 reg = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xf1);
750 return s5h1411_qam256_lookup_snr(fe, snr, reg);
752 reg = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR,
754 return s5h1411_vsb_lookup_snr(fe, snr, reg);
762 static int s5h1411_read_signal_strength(struct dvb_frontend *fe,
763 u16 *signal_strength)
765 return s5h1411_read_snr(fe, signal_strength);
768 static int s5h1411_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
770 struct s5h1411_state *state = fe->demodulator_priv;
772 *ucblocks = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0xc9);
777 static int s5h1411_read_ber(struct dvb_frontend *fe, u32 *ber)
779 return s5h1411_read_ucblocks(fe, ber);
782 static int s5h1411_get_frontend(struct dvb_frontend *fe,
783 struct dvb_frontend_parameters *p)
785 struct s5h1411_state *state = fe->demodulator_priv;
787 p->frequency = state->current_frequency;
788 p->u.vsb.modulation = state->current_modulation;
793 static int s5h1411_get_tune_settings(struct dvb_frontend *fe,
794 struct dvb_frontend_tune_settings *tune)
796 tune->min_delay_ms = 1000;
800 static void s5h1411_release(struct dvb_frontend *fe)
802 struct s5h1411_state *state = fe->demodulator_priv;
806 static struct dvb_frontend_ops s5h1411_ops;
808 struct dvb_frontend *s5h1411_attach(const struct s5h1411_config *config,
809 struct i2c_adapter *i2c)
811 struct s5h1411_state *state = NULL;
814 /* allocate memory for the internal state */
815 state = kmalloc(sizeof(struct s5h1411_state), GFP_KERNEL);
819 /* setup the state */
820 state->config = config;
822 state->current_modulation = VSB_8;
823 state->inversion = state->config->inversion;
825 /* check if the demod exists */
826 reg = s5h1411_readreg(state, S5H1411_I2C_TOP_ADDR, 0x05);
830 /* create dvb_frontend */
831 memcpy(&state->frontend.ops, &s5h1411_ops,
832 sizeof(struct dvb_frontend_ops));
834 state->frontend.demodulator_priv = state;
836 if (s5h1411_init(&state->frontend) != 0) {
837 printk(KERN_ERR "%s: Failed to initialize correctly\n",
842 /* Note: Leaving the I2C gate open here. */
843 s5h1411_writereg(state, S5H1411_I2C_TOP_ADDR, 0xf5, 1);
845 return &state->frontend;
851 EXPORT_SYMBOL(s5h1411_attach);
853 static struct dvb_frontend_ops s5h1411_ops = {
856 .name = "Samsung S5H1411 QAM/8VSB Frontend",
858 .frequency_min = 54000000,
859 .frequency_max = 858000000,
860 .frequency_stepsize = 62500,
861 .caps = FE_CAN_QAM_64 | FE_CAN_QAM_256 | FE_CAN_8VSB
864 .init = s5h1411_init,
865 .i2c_gate_ctrl = s5h1411_i2c_gate_ctrl,
866 .set_frontend = s5h1411_set_frontend,
867 .get_frontend = s5h1411_get_frontend,
868 .get_tune_settings = s5h1411_get_tune_settings,
869 .read_status = s5h1411_read_status,
870 .read_ber = s5h1411_read_ber,
871 .read_signal_strength = s5h1411_read_signal_strength,
872 .read_snr = s5h1411_read_snr,
873 .read_ucblocks = s5h1411_read_ucblocks,
874 .release = s5h1411_release,
877 module_param(debug, int, 0644);
878 MODULE_PARM_DESC(debug, "Enable verbose debug messages");
880 MODULE_DESCRIPTION("Samsung S5H1411 QAM-B/ATSC Demodulator driver");
881 MODULE_AUTHOR("Steven Toth");
882 MODULE_LICENSE("GPL");