2 * Support for NXT2002 and NXT2004 - VSB/QAM
4 * Copyright (C) 2005 Kirk Lapray <kirk.lapray@gmail.com>
5 * Copyright (C) 2006 Michael Krufky <mkrufky@m1k.net>
6 * based on nxt2002 by Taylor Jacob <rtjacob@earthlink.net>
7 * and nxt2004 by Jean-Francois Thibert <jeanfrancois@sagetv.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 * NOTES ABOUT THIS DRIVER
28 * This Linux driver supports:
29 * B2C2/BBTI Technisat Air2PC - ATSC (NXT2002)
30 * AverTVHD MCE A180 (NXT2004)
31 * ATI HDTV Wonder (NXT2004)
33 * This driver needs external firmware. Please use the command
34 * "<kerneldir>/Documentation/dvb/get_dvb_firmware nxt2002" or
35 * "<kerneldir>/Documentation/dvb/get_dvb_firmware nxt2004" to
36 * download/extract the appropriate firmware, and then copy it to
37 * /usr/lib/hotplug/firmware/ or /lib/firmware/
38 * (depending on configuration of firmware hotplug).
40 #define NXT2002_DEFAULT_FIRMWARE "dvb-fe-nxt2002.fw"
41 #define NXT2004_DEFAULT_FIRMWARE "dvb-fe-nxt2004.fw"
42 #define CRC_CCIT_MASK 0x1021
44 #include <linux/kernel.h>
45 #include <linux/init.h>
46 #include <linux/module.h>
47 #include <linux/slab.h>
48 #include <linux/string.h>
50 #include "dvb_frontend.h"
53 struct nxt200x_state {
55 struct i2c_adapter* i2c;
56 const struct nxt200x_config* config;
57 struct dvb_frontend frontend;
59 /* demodulator private data */
60 nxt_chip_type demod_chip;
65 #define dprintk(args...) \
67 if (debug) printk(KERN_DEBUG "nxt200x: " args); \
70 static int i2c_writebytes (struct nxt200x_state* state, u8 addr, u8 *buf, u8 len)
73 struct i2c_msg msg = { .addr = addr, .flags = 0, .buf = buf, .len = len };
75 if ((err = i2c_transfer (state->i2c, &msg, 1)) != 1) {
76 printk (KERN_WARNING "nxt200x: %s: i2c write error (addr 0x%02x, err == %i)\n",
83 static u8 i2c_readbytes (struct nxt200x_state* state, u8 addr, u8* buf, u8 len)
86 struct i2c_msg msg = { .addr = addr, .flags = I2C_M_RD, .buf = buf, .len = len };
88 if ((err = i2c_transfer (state->i2c, &msg, 1)) != 1) {
89 printk (KERN_WARNING "nxt200x: %s: i2c read error (addr 0x%02x, err == %i)\n",
96 static int nxt200x_writebytes (struct nxt200x_state* state, u8 reg,
97 const u8 *buf, u8 len)
101 struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf2, .len = len + 1 };
104 memcpy(&buf2[1], buf, len);
106 if ((err = i2c_transfer (state->i2c, &msg, 1)) != 1) {
107 printk (KERN_WARNING "nxt200x: %s: i2c write error (addr 0x%02x, err == %i)\n",
108 __func__, state->config->demod_address, err);
114 static u8 nxt200x_readbytes (struct nxt200x_state* state, u8 reg, u8* buf, u8 len)
116 u8 reg2 [] = { reg };
118 struct i2c_msg msg [] = { { .addr = state->config->demod_address, .flags = 0, .buf = reg2, .len = 1 },
119 { .addr = state->config->demod_address, .flags = I2C_M_RD, .buf = buf, .len = len } };
123 if ((err = i2c_transfer (state->i2c, msg, 2)) != 2) {
124 printk (KERN_WARNING "nxt200x: %s: i2c read error (addr 0x%02x, err == %i)\n",
125 __func__, state->config->demod_address, err);
131 static u16 nxt200x_crc(u16 crc, u8 c)
134 u16 input = (u16) c & 0xFF;
138 if((crc^input) & 0x8000)
139 crc=(crc<<1)^CRC_CCIT_MASK;
147 static int nxt200x_writereg_multibyte (struct nxt200x_state* state, u8 reg, u8* data, u8 len)
150 dprintk("%s\n", __func__);
152 /* set mutli register register */
153 nxt200x_writebytes(state, 0x35, ®, 1);
155 /* send the actual data */
156 nxt200x_writebytes(state, 0x36, data, len);
158 switch (state->demod_chip) {
164 /* probably not right, but gives correct values */
172 len2 = ((attr << 4) | 0x10) | len;
180 /* set multi register length */
181 nxt200x_writebytes(state, 0x34, &len2, 1);
183 /* toggle the multireg write bit */
184 nxt200x_writebytes(state, 0x21, &buf, 1);
186 nxt200x_readbytes(state, 0x21, &buf, 1);
188 switch (state->demod_chip) {
190 if ((buf & 0x02) == 0)
202 printk(KERN_WARNING "nxt200x: Error writing multireg register 0x%02X\n",reg);
207 static int nxt200x_readreg_multibyte (struct nxt200x_state* state, u8 reg, u8* data, u8 len)
211 dprintk("%s\n", __func__);
213 /* set mutli register register */
214 nxt200x_writebytes(state, 0x35, ®, 1);
216 switch (state->demod_chip) {
218 /* set multi register length */
220 nxt200x_writebytes(state, 0x34, &len2, 1);
222 /* read the actual data */
223 nxt200x_readbytes(state, reg, data, len);
227 /* probably not right, but gives correct values */
235 /* set multi register length */
236 len2 = (attr << 4) | len;
237 nxt200x_writebytes(state, 0x34, &len2, 1);
239 /* toggle the multireg bit*/
241 nxt200x_writebytes(state, 0x21, &buf, 1);
243 /* read the actual data */
244 for(i = 0; i < len; i++) {
245 nxt200x_readbytes(state, 0x36 + i, &data[i], 1);
255 static void nxt200x_microcontroller_stop (struct nxt200x_state* state)
257 u8 buf, stopval, counter = 0;
258 dprintk("%s\n", __func__);
260 /* set correct stop value */
261 switch (state->demod_chip) {
274 nxt200x_writebytes(state, 0x22, &buf, 1);
276 while (counter < 20) {
277 nxt200x_readbytes(state, 0x31, &buf, 1);
284 printk(KERN_WARNING "nxt200x: Timeout waiting for nxt200x to stop. This is ok after firmware upload.\n");
288 static void nxt200x_microcontroller_start (struct nxt200x_state* state)
291 dprintk("%s\n", __func__);
294 nxt200x_writebytes(state, 0x22, &buf, 1);
297 static void nxt2004_microcontroller_init (struct nxt200x_state* state)
301 dprintk("%s\n", __func__);
304 nxt200x_writebytes(state, 0x2b, buf, 1);
306 nxt200x_writebytes(state, 0x34, buf, 1);
308 nxt200x_writebytes(state, 0x35, buf, 1);
309 buf[0] = 0x01; buf[1] = 0x23; buf[2] = 0x45; buf[3] = 0x67; buf[4] = 0x89;
310 buf[5] = 0xAB; buf[6] = 0xCD; buf[7] = 0xEF; buf[8] = 0xC0;
311 nxt200x_writebytes(state, 0x36, buf, 9);
313 nxt200x_writebytes(state, 0x21, buf, 1);
315 while (counter < 20) {
316 nxt200x_readbytes(state, 0x21, buf, 1);
323 printk(KERN_WARNING "nxt200x: Timeout waiting for nxt2004 to init.\n");
328 static int nxt200x_writetuner (struct nxt200x_state* state, u8* data)
332 dprintk("%s\n", __func__);
334 dprintk("Tuner Bytes: %02X %02X %02X %02X\n", data[1], data[2], data[3], data[4]);
336 /* if NXT2004, write directly to tuner. if NXT2002, write through NXT chip.
337 * direct write is required for Philips TUV1236D and ALPS TDHU2 */
338 switch (state->demod_chip) {
340 if (i2c_writebytes(state, data[0], data+1, 4))
341 printk(KERN_WARNING "nxt200x: error writing to tuner\n");
342 /* wait until we have a lock */
344 i2c_readbytes(state, data[0], &buf, 1);
350 printk("nxt2004: timeout waiting for tuner lock\n");
353 /* set the i2c transfer speed to the tuner */
355 nxt200x_writebytes(state, 0x20, &buf, 1);
357 /* setup to transfer 4 bytes via i2c */
359 nxt200x_writebytes(state, 0x34, &buf, 1);
361 /* write actual tuner bytes */
362 nxt200x_writebytes(state, 0x36, data+1, 4);
364 /* set tuner i2c address */
366 nxt200x_writebytes(state, 0x35, &buf, 1);
368 /* write UC Opmode to begin transfer */
370 nxt200x_writebytes(state, 0x21, &buf, 1);
373 nxt200x_readbytes(state, 0x21, &buf, 1);
374 if ((buf & 0x80)== 0x00)
379 printk("nxt2002: timeout error writing tuner\n");
388 static void nxt200x_agc_reset(struct nxt200x_state* state)
391 dprintk("%s\n", __func__);
393 switch (state->demod_chip) {
396 nxt200x_writebytes(state, 0x08, &buf, 1);
398 nxt200x_writebytes(state, 0x08, &buf, 1);
401 nxt200x_readreg_multibyte(state, 0x08, &buf, 1);
403 nxt200x_writereg_multibyte(state, 0x08, &buf, 1);
405 nxt200x_writereg_multibyte(state, 0x08, &buf, 1);
413 static int nxt2002_load_firmware (struct dvb_frontend* fe, const struct firmware *fw)
416 struct nxt200x_state* state = fe->demodulator_priv;
417 u8 buf[3], written = 0, chunkpos = 0;
418 u16 rambase, position, crc = 0;
420 dprintk("%s\n", __func__);
421 dprintk("Firmware is %zu bytes\n", fw->size);
423 /* Get the RAM base for this nxt2002 */
424 nxt200x_readbytes(state, 0x10, buf, 1);
431 dprintk("rambase on this nxt2002 is %04X\n", rambase);
433 /* Hold the micro in reset while loading firmware */
435 nxt200x_writebytes(state, 0x2B, buf, 1);
437 for (position = 0; position < fw->size; position++) {
441 buf[0] = ((rambase + position) >> 8);
442 buf[1] = (rambase + position) & 0xFF;
444 /* write starting address */
445 nxt200x_writebytes(state, 0x29, buf, 3);
450 if ((written % 4) == 0)
451 nxt200x_writebytes(state, chunkpos, &fw->data[position-3], 4);
453 crc = nxt200x_crc(crc, fw->data[position]);
455 if ((written == 255) || (position+1 == fw->size)) {
456 /* write remaining bytes of firmware */
457 nxt200x_writebytes(state, chunkpos+4-(written %4),
458 &fw->data[position-(written %4) + 1],
464 nxt200x_writebytes(state, 0x2C, buf, 2);
466 /* do a read to stop things */
467 nxt200x_readbytes(state, 0x2A, buf, 1);
469 /* set transfer mode to complete */
471 nxt200x_writebytes(state, 0x2B, buf, 1);
480 static int nxt2004_load_firmware (struct dvb_frontend* fe, const struct firmware *fw)
483 struct nxt200x_state* state = fe->demodulator_priv;
485 u16 rambase, position, crc=0;
487 dprintk("%s\n", __func__);
488 dprintk("Firmware is %zu bytes\n", fw->size);
493 /* hold the micro in reset while loading firmware */
495 nxt200x_writebytes(state, 0x2B, buf,1);
497 /* calculate firmware CRC */
498 for (position = 0; position < fw->size; position++) {
499 crc = nxt200x_crc(crc, fw->data[position]);
502 buf[0] = rambase >> 8;
503 buf[1] = rambase & 0xFF;
505 /* write starting address */
506 nxt200x_writebytes(state,0x29,buf,3);
508 for (position = 0; position < fw->size;) {
509 nxt200x_writebytes(state, 0x2C, &fw->data[position],
510 fw->size-position > 255 ? 255 : fw->size-position);
511 position += (fw->size-position > 255 ? 255 : fw->size-position);
516 dprintk("firmware crc is 0x%02X 0x%02X\n", buf[0], buf[1]);
519 nxt200x_writebytes(state, 0x2C, buf,2);
521 /* do a read to stop things */
522 nxt200x_readbytes(state, 0x2C, buf, 1);
524 /* set transfer mode to complete */
526 nxt200x_writebytes(state, 0x2B, buf,1);
531 static int nxt200x_setup_frontend_parameters (struct dvb_frontend* fe,
532 struct dvb_frontend_parameters *p)
534 struct nxt200x_state* state = fe->demodulator_priv;
537 /* stop the micro first */
538 nxt200x_microcontroller_stop(state);
540 if (state->demod_chip == NXT2004) {
541 /* make sure demod is set to digital */
543 nxt200x_writebytes(state, 0x14, buf, 1);
545 nxt200x_writebytes(state, 0x17, buf, 1);
548 /* set additional params */
549 switch (p->u.vsb.modulation) {
552 /* Set punctured clock for QAM */
553 /* This is just a guess since I am unable to test it */
554 if (state->config->set_ts_params)
555 state->config->set_ts_params(fe, 1);
558 /* Set non-punctured clock for VSB */
559 if (state->config->set_ts_params)
560 state->config->set_ts_params(fe, 0);
567 if (fe->ops.tuner_ops.calc_regs) {
568 /* get tuning information */
569 fe->ops.tuner_ops.calc_regs(fe, p, buf, 5);
571 /* write frequency information */
572 nxt200x_writetuner(state, buf);
575 /* reset the agc now that tuning has been completed */
576 nxt200x_agc_reset(state);
578 /* set target power level */
579 switch (p->u.vsb.modulation) {
591 nxt200x_writebytes(state, 0x42, buf, 1);
594 switch (state->demod_chip) {
605 nxt200x_writebytes(state, 0x57, buf, 1);
607 /* write sdm1 input */
610 switch (state->demod_chip) {
612 nxt200x_writereg_multibyte(state, 0x58, buf, 2);
615 nxt200x_writebytes(state, 0x58, buf, 2);
622 /* write sdmx input */
623 switch (p->u.vsb.modulation) {
638 switch (state->demod_chip) {
640 nxt200x_writereg_multibyte(state, 0x5C, buf, 2);
643 nxt200x_writebytes(state, 0x5C, buf, 2);
650 /* write adc power lpf fc */
652 nxt200x_writebytes(state, 0x43, buf, 1);
654 if (state->demod_chip == NXT2004) {
658 nxt200x_writebytes(state, 0x46, buf, 2);
661 /* write accumulator2 input */
664 switch (state->demod_chip) {
666 nxt200x_writereg_multibyte(state, 0x4B, buf, 2);
669 nxt200x_writebytes(state, 0x4B, buf, 2);
678 nxt200x_writebytes(state, 0x4D, buf, 1);
680 /* write sdm12 lpf fc */
682 nxt200x_writebytes(state, 0x55, buf, 1);
684 /* write agc control reg */
686 nxt200x_writebytes(state, 0x41, buf, 1);
688 if (state->demod_chip == NXT2004) {
689 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
691 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
694 nxt200x_readreg_multibyte(state, 0x08, buf, 1);
696 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
697 nxt200x_readreg_multibyte(state, 0x08, buf, 1);
699 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
701 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
703 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
705 nxt200x_writereg_multibyte(state, 0x81, buf, 1);
706 buf[0] = 0x80; buf[1] = 0x00; buf[2] = 0x00;
707 nxt200x_writereg_multibyte(state, 0x82, buf, 3);
708 nxt200x_readreg_multibyte(state, 0x88, buf, 1);
710 nxt200x_writereg_multibyte(state, 0x88, buf, 1);
711 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
713 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
716 /* write agc ucgp0 */
717 switch (p->u.vsb.modulation) {
731 nxt200x_writebytes(state, 0x30, buf, 1);
733 /* write agc control reg */
735 nxt200x_writebytes(state, 0x41, buf, 1);
737 /* write accumulator2 input */
740 switch (state->demod_chip) {
742 nxt200x_writereg_multibyte(state, 0x49, buf, 2);
743 nxt200x_writereg_multibyte(state, 0x4B, buf, 2);
746 nxt200x_writebytes(state, 0x49, buf, 2);
747 nxt200x_writebytes(state, 0x4B, buf, 2);
754 /* write agc control reg */
756 nxt200x_writebytes(state, 0x41, buf, 1);
758 nxt200x_microcontroller_start(state);
760 if (state->demod_chip == NXT2004) {
761 nxt2004_microcontroller_init(state);
766 nxt200x_writebytes(state, 0x5C, buf, 2);
769 /* adjacent channel detection should be done here, but I don't
770 have any stations with this need so I cannot test it */
775 static int nxt200x_read_status(struct dvb_frontend* fe, fe_status_t* status)
777 struct nxt200x_state* state = fe->demodulator_priv;
779 nxt200x_readbytes(state, 0x31, &lock, 1);
783 *status |= FE_HAS_SIGNAL;
784 *status |= FE_HAS_CARRIER;
785 *status |= FE_HAS_VITERBI;
786 *status |= FE_HAS_SYNC;
787 *status |= FE_HAS_LOCK;
792 static int nxt200x_read_ber(struct dvb_frontend* fe, u32* ber)
794 struct nxt200x_state* state = fe->demodulator_priv;
797 nxt200x_readreg_multibyte(state, 0xE6, b, 3);
799 *ber = ((b[0] << 8) + b[1]) * 8;
804 static int nxt200x_read_signal_strength(struct dvb_frontend* fe, u16* strength)
806 struct nxt200x_state* state = fe->demodulator_priv;
810 /* setup to read cluster variance */
812 nxt200x_writebytes(state, 0xA1, b, 1);
814 /* get multreg val */
815 nxt200x_readreg_multibyte(state, 0xA6, b, 2);
817 temp = (b[0] << 8) | b[1];
818 *strength = ((0x7FFF - temp) & 0x0FFF) * 16;
823 static int nxt200x_read_snr(struct dvb_frontend* fe, u16* snr)
826 struct nxt200x_state* state = fe->demodulator_priv;
831 /* setup to read cluster variance */
833 nxt200x_writebytes(state, 0xA1, b, 1);
835 /* get multreg val from 0xA6 */
836 nxt200x_readreg_multibyte(state, 0xA6, b, 2);
838 temp = (b[0] << 8) | b[1];
839 temp2 = 0x7FFF - temp;
841 /* snr will be in db */
843 snrdb = 1000*24 + ( 1000*(30-24) * ( temp2 - 0x7F00 ) / ( 0x7FFF - 0x7F00 ) );
844 else if (temp2 > 0x7EC0)
845 snrdb = 1000*18 + ( 1000*(24-18) * ( temp2 - 0x7EC0 ) / ( 0x7F00 - 0x7EC0 ) );
846 else if (temp2 > 0x7C00)
847 snrdb = 1000*12 + ( 1000*(18-12) * ( temp2 - 0x7C00 ) / ( 0x7EC0 - 0x7C00 ) );
849 snrdb = 1000*0 + ( 1000*(12-0) * ( temp2 - 0 ) / ( 0x7C00 - 0 ) );
851 /* the value reported back from the frontend will be FFFF=32db 0000=0db */
852 *snr = snrdb * (0xFFFF/32000);
857 static int nxt200x_read_ucblocks(struct dvb_frontend* fe, u32* ucblocks)
859 struct nxt200x_state* state = fe->demodulator_priv;
862 nxt200x_readreg_multibyte(state, 0xE6, b, 3);
868 static int nxt200x_sleep(struct dvb_frontend* fe)
873 static int nxt2002_init(struct dvb_frontend* fe)
875 struct nxt200x_state* state = fe->demodulator_priv;
876 const struct firmware *fw;
880 /* request the firmware, this will block until someone uploads it */
881 printk("nxt2002: Waiting for firmware upload (%s)...\n", NXT2002_DEFAULT_FIRMWARE);
882 ret = request_firmware(&fw, NXT2002_DEFAULT_FIRMWARE, &state->i2c->dev);
883 printk("nxt2002: Waiting for firmware upload(2)...\n");
885 printk("nxt2002: No firmware uploaded (timeout or file not found?)\n");
889 ret = nxt2002_load_firmware(fe, fw);
890 release_firmware(fw);
892 printk("nxt2002: Writing firmware to device failed\n");
895 printk("nxt2002: Firmware upload complete\n");
897 /* Put the micro into reset */
898 nxt200x_microcontroller_stop(state);
900 /* ensure transfer is complete */
902 nxt200x_writebytes(state, 0x2B, buf, 1);
904 /* Put the micro into reset for real this time */
905 nxt200x_microcontroller_stop(state);
907 /* soft reset everything (agc,frontend,eq,fec)*/
909 nxt200x_writebytes(state, 0x08, buf, 1);
911 nxt200x_writebytes(state, 0x08, buf, 1);
913 /* write agc sdm configure */
915 nxt200x_writebytes(state, 0x57, buf, 1);
917 /* write mod output format */
919 nxt200x_writebytes(state, 0x09, buf, 1);
921 /* write fec mpeg mode */
924 nxt200x_writebytes(state, 0xE9, buf, 2);
926 /* write mux selection */
928 nxt200x_writebytes(state, 0xCC, buf, 1);
933 static int nxt2004_init(struct dvb_frontend* fe)
935 struct nxt200x_state* state = fe->demodulator_priv;
936 const struct firmware *fw;
942 nxt200x_writebytes(state, 0x1E, buf, 1);
944 /* request the firmware, this will block until someone uploads it */
945 printk("nxt2004: Waiting for firmware upload (%s)...\n", NXT2004_DEFAULT_FIRMWARE);
946 ret = request_firmware(&fw, NXT2004_DEFAULT_FIRMWARE, &state->i2c->dev);
947 printk("nxt2004: Waiting for firmware upload(2)...\n");
949 printk("nxt2004: No firmware uploaded (timeout or file not found?)\n");
953 ret = nxt2004_load_firmware(fe, fw);
954 release_firmware(fw);
956 printk("nxt2004: Writing firmware to device failed\n");
959 printk("nxt2004: Firmware upload complete\n");
961 /* ensure transfer is complete */
963 nxt200x_writebytes(state, 0x19, buf, 1);
965 nxt2004_microcontroller_init(state);
966 nxt200x_microcontroller_stop(state);
967 nxt200x_microcontroller_stop(state);
968 nxt2004_microcontroller_init(state);
969 nxt200x_microcontroller_stop(state);
971 /* soft reset everything (agc,frontend,eq,fec)*/
973 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
975 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
977 /* write agc sdm configure */
979 nxt200x_writebytes(state, 0x57, buf, 1);
984 nxt200x_writebytes(state, 0x35, buf, 2);
986 nxt200x_writebytes(state, 0x34, buf, 1);
988 nxt200x_writebytes(state, 0x21, buf, 1);
992 nxt200x_writebytes(state, 0x0A, buf, 1);
996 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
998 /* write fec mpeg mode */
1001 nxt200x_writebytes(state, 0xE9, buf, 2);
1003 /* write mux selection */
1005 nxt200x_writebytes(state, 0xCC, buf, 1);
1008 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
1010 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
1013 nxt200x_readreg_multibyte(state, 0x08, buf, 1);
1015 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
1016 nxt200x_readreg_multibyte(state, 0x08, buf, 1);
1018 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
1021 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
1023 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
1025 nxt200x_writereg_multibyte(state, 0x81, buf, 1);
1026 buf[0] = 0x31; buf[1] = 0x5E; buf[2] = 0x66;
1027 nxt200x_writereg_multibyte(state, 0x82, buf, 3);
1029 nxt200x_readreg_multibyte(state, 0x88, buf, 1);
1031 nxt200x_writereg_multibyte(state, 0x88, buf, 1);
1032 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
1034 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
1036 nxt200x_readbytes(state, 0x10, buf, 1);
1038 nxt200x_writebytes(state, 0x10, buf, 1);
1039 nxt200x_readbytes(state, 0x0A, buf, 1);
1041 nxt200x_writebytes(state, 0x0A, buf, 1);
1043 nxt2004_microcontroller_init(state);
1046 nxt200x_writebytes(state, 0x0A, buf, 1);
1048 nxt200x_writebytes(state, 0xE9, buf, 1);
1050 nxt200x_writebytes(state, 0xEA, buf, 1);
1052 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
1054 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
1055 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
1057 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
1060 nxt200x_readreg_multibyte(state, 0x08, buf, 1);
1062 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
1063 nxt200x_readreg_multibyte(state, 0x08, buf, 1);
1065 nxt200x_writereg_multibyte(state, 0x08, buf, 1);
1067 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
1069 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
1071 nxt200x_writereg_multibyte(state, 0x81, buf, 1);
1072 buf[0] = 0x80; buf[1] = 0x00; buf[2] = 0x00;
1073 nxt200x_writereg_multibyte(state, 0x82, buf, 3);
1075 nxt200x_readreg_multibyte(state, 0x88, buf, 1);
1077 nxt200x_writereg_multibyte(state, 0x88, buf, 1);
1079 nxt200x_readreg_multibyte(state, 0x80, buf, 1);
1081 nxt200x_writereg_multibyte(state, 0x80, buf, 1);
1083 /* initialize tuner */
1084 nxt200x_readbytes(state, 0x10, buf, 1);
1086 nxt200x_writebytes(state, 0x10, buf, 1);
1088 nxt200x_writebytes(state, 0x13, buf, 1);
1090 nxt200x_writebytes(state, 0x16, buf, 1);
1092 nxt200x_writebytes(state, 0x14, buf, 1);
1094 nxt200x_writebytes(state, 0x14, buf, 1);
1095 nxt200x_writebytes(state, 0x17, buf, 1);
1096 nxt200x_writebytes(state, 0x14, buf, 1);
1097 nxt200x_writebytes(state, 0x17, buf, 1);
1102 static int nxt200x_init(struct dvb_frontend* fe)
1104 struct nxt200x_state* state = fe->demodulator_priv;
1107 if (!state->initialised) {
1108 switch (state->demod_chip) {
1110 ret = nxt2002_init(fe);
1113 ret = nxt2004_init(fe);
1119 state->initialised = 1;
1124 static int nxt200x_get_tune_settings(struct dvb_frontend* fe, struct dvb_frontend_tune_settings* fesettings)
1126 fesettings->min_delay_ms = 500;
1127 fesettings->step_size = 0;
1128 fesettings->max_drift = 0;
1132 static void nxt200x_release(struct dvb_frontend* fe)
1134 struct nxt200x_state* state = fe->demodulator_priv;
1138 static struct dvb_frontend_ops nxt200x_ops;
1140 struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config,
1141 struct i2c_adapter* i2c)
1143 struct nxt200x_state* state = NULL;
1144 u8 buf [] = {0,0,0,0,0};
1146 /* allocate memory for the internal state */
1147 state = kzalloc(sizeof(struct nxt200x_state), GFP_KERNEL);
1151 /* setup the state */
1152 state->config = config;
1154 state->initialised = 0;
1157 nxt200x_readbytes(state, 0x00, buf, 5);
1158 dprintk("NXT info: %02X %02X %02X %02X %02X\n",
1159 buf[0], buf[1], buf[2], buf[3], buf[4]);
1161 /* set demod chip */
1164 state->demod_chip = NXT2002;
1165 printk("nxt200x: NXT2002 Detected\n");
1168 state->demod_chip = NXT2004;
1169 printk("nxt200x: NXT2004 Detected\n");
1175 /* make sure demod chip is supported */
1176 switch (state->demod_chip) {
1178 if (buf[0] != 0x04) goto error; /* device id */
1179 if (buf[1] != 0x02) goto error; /* fab id */
1180 if (buf[2] != 0x11) goto error; /* month */
1181 if (buf[3] != 0x20) goto error; /* year msb */
1182 if (buf[4] != 0x00) goto error; /* year lsb */
1185 if (buf[0] != 0x05) goto error; /* device id */
1191 /* create dvb_frontend */
1192 memcpy(&state->frontend.ops, &nxt200x_ops, sizeof(struct dvb_frontend_ops));
1193 state->frontend.demodulator_priv = state;
1194 return &state->frontend;
1198 printk("Unknown/Unsupported NXT chip: %02X %02X %02X %02X %02X\n",
1199 buf[0], buf[1], buf[2], buf[3], buf[4]);
1203 static struct dvb_frontend_ops nxt200x_ops = {
1206 .name = "Nextwave NXT200X VSB/QAM frontend",
1208 .frequency_min = 54000000,
1209 .frequency_max = 860000000,
1210 .frequency_stepsize = 166666, /* stepsize is just a guess */
1211 .caps = FE_CAN_FEC_1_2 | FE_CAN_FEC_2_3 | FE_CAN_FEC_3_4 |
1212 FE_CAN_FEC_5_6 | FE_CAN_FEC_7_8 | FE_CAN_FEC_AUTO |
1213 FE_CAN_8VSB | FE_CAN_QAM_64 | FE_CAN_QAM_256
1216 .release = nxt200x_release,
1218 .init = nxt200x_init,
1219 .sleep = nxt200x_sleep,
1221 .set_frontend = nxt200x_setup_frontend_parameters,
1222 .get_tune_settings = nxt200x_get_tune_settings,
1224 .read_status = nxt200x_read_status,
1225 .read_ber = nxt200x_read_ber,
1226 .read_signal_strength = nxt200x_read_signal_strength,
1227 .read_snr = nxt200x_read_snr,
1228 .read_ucblocks = nxt200x_read_ucblocks,
1231 module_param(debug, int, 0644);
1232 MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");
1234 MODULE_DESCRIPTION("NXT200X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver");
1235 MODULE_AUTHOR("Kirk Lapray, Michael Krufky, Jean-Francois Thibert, and Taylor Jacob");
1236 MODULE_LICENSE("GPL");
1238 EXPORT_SYMBOL(nxt200x_attach);