2 * Support for NXT2002 and NXT2004 - VSB/QAM
4 * Copyright (C) 2005 Kirk Lapray (kirk.lapray@gmail.com)
5 * based on nxt2002 by Taylor Jacob <rtjacob@earthlink.net>
6 * and nxt2004 by Jean-Francois Thibert (jeanfrancois@sagetv.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * NOTES ABOUT THIS DRIVER
27 * This Linux driver supports:
28 * B2C2/BBTI Technisat Air2PC - ATSC (NXT2002)
29 * AverTVHD MCE A180 (NXT2004)
30 * ATI HDTV Wonder (NXT2004)
32 * This driver needs external firmware. Please use the command
33 * "<kerneldir>/Documentation/dvb/get_dvb_firmware nxt2002" or
34 * "<kerneldir>/Documentation/dvb/get_dvb_firmware nxt2004" to
35 * download/extract the appropriate firmware, and then copy it to
36 * /usr/lib/hotplug/firmware/ or /lib/firmware/
37 * (depending on configuration of firmware hotplug).
39 #define NXT2002_DEFAULT_FIRMWARE "dvb-fe-nxt2002.fw"
40 #define NXT2004_DEFAULT_FIRMWARE "dvb-fe-nxt2004.fw"
41 #define CRC_CCIT_MASK 0x1021
43 #include <linux/kernel.h>
44 #include <linux/init.h>
45 #include <linux/module.h>
46 #include <linux/moduleparam.h>
47 #include <linux/slab.h>
48 #include <linux/string.h>
50 #include "dvb_frontend.h"
54 struct nxt200x_state
{
56 struct i2c_adapter
* i2c
;
57 struct dvb_frontend_ops ops
;
58 const struct nxt200x_config
* config
;
59 struct dvb_frontend frontend
;
61 /* demodulator private data */
62 nxt_chip_type demod_chip
;
67 #define dprintk(args...) \
69 if (debug) printk(KERN_DEBUG "nxt200x: " args); \
72 static int i2c_writebytes (struct nxt200x_state
* state
, u8 addr
, u8
*buf
, u8 len
)
75 struct i2c_msg msg
= { .addr
= addr
, .flags
= 0, .buf
= buf
, .len
= len
};
77 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
78 printk (KERN_WARNING
"nxt200x: %s: i2c write error (addr 0x%02x, err == %i)\n",
79 __FUNCTION__
, addr
, err
);
85 static u8
i2c_readbytes (struct nxt200x_state
* state
, u8 addr
, u8
* buf
, u8 len
)
88 struct i2c_msg msg
= { .addr
= addr
, .flags
= I2C_M_RD
, .buf
= buf
, .len
= len
};
90 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
91 printk (KERN_WARNING
"nxt200x: %s: i2c read error (addr 0x%02x, err == %i)\n",
92 __FUNCTION__
, addr
, err
);
98 static int nxt200x_writebytes (struct nxt200x_state
* state
, u8 reg
, u8
*buf
, u8 len
)
102 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= buf2
, .len
= len
+ 1 };
105 memcpy(&buf2
[1], buf
, len
);
107 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
108 printk (KERN_WARNING
"nxt200x: %s: i2c write error (addr 0x%02x, err == %i)\n",
109 __FUNCTION__
, state
->config
->demod_address
, err
);
115 static u8
nxt200x_readbytes (struct nxt200x_state
* state
, u8 reg
, u8
* buf
, u8 len
)
117 u8 reg2
[] = { reg
};
119 struct i2c_msg msg
[] = { { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= reg2
, .len
= 1 },
120 { .addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
, .buf
= buf
, .len
= len
} };
124 if ((err
= i2c_transfer (state
->i2c
, msg
, 2)) != 2) {
125 printk (KERN_WARNING
"nxt200x: %s: i2c read error (addr 0x%02x, err == %i)\n",
126 __FUNCTION__
, state
->config
->demod_address
, err
);
132 static u16
nxt200x_crc(u16 crc
, u8 c
)
135 u16 input
= (u16
) c
& 0xFF;
139 if((crc
^input
) & 0x8000)
140 crc
=(crc
<<1)^CRC_CCIT_MASK
;
148 static int nxt200x_writereg_multibyte (struct nxt200x_state
* state
, u8 reg
, u8
* data
, u8 len
)
151 dprintk("%s\n", __FUNCTION__
);
153 /* set mutli register register */
154 nxt200x_writebytes(state
, 0x35, ®
, 1);
156 /* send the actual data */
157 nxt200x_writebytes(state
, 0x36, data
, len
);
159 switch (state
->demod_chip
) {
165 /* probably not right, but gives correct values */
173 len2
= ((attr
<< 4) | 0x10) | len
;
181 /* set multi register length */
182 nxt200x_writebytes(state
, 0x34, &len2
, 1);
184 /* toggle the multireg write bit */
185 nxt200x_writebytes(state
, 0x21, &buf
, 1);
187 nxt200x_readbytes(state
, 0x21, &buf
, 1);
189 switch (state
->demod_chip
) {
191 if ((buf
& 0x02) == 0)
203 printk(KERN_WARNING
"nxt200x: Error writing multireg register 0x%02X\n",reg
);
208 static int nxt200x_readreg_multibyte (struct nxt200x_state
* state
, u8 reg
, u8
* data
, u8 len
)
212 dprintk("%s\n", __FUNCTION__
);
214 /* set mutli register register */
215 nxt200x_writebytes(state
, 0x35, ®
, 1);
217 switch (state
->demod_chip
) {
219 /* set multi register length */
221 nxt200x_writebytes(state
, 0x34, &len2
, 1);
223 /* read the actual data */
224 nxt200x_readbytes(state
, reg
, data
, len
);
228 /* probably not right, but gives correct values */
236 /* set multi register length */
237 len2
= (attr
<< 4) | len
;
238 nxt200x_writebytes(state
, 0x34, &len2
, 1);
240 /* toggle the multireg bit*/
242 nxt200x_writebytes(state
, 0x21, &buf
, 1);
244 /* read the actual data */
245 for(i
= 0; i
< len
; i
++) {
246 nxt200x_readbytes(state
, 0x36 + i
, &data
[i
], 1);
256 static void nxt200x_microcontroller_stop (struct nxt200x_state
* state
)
258 u8 buf
, stopval
, counter
= 0;
259 dprintk("%s\n", __FUNCTION__
);
261 /* set correct stop value */
262 switch (state
->demod_chip
) {
275 nxt200x_writebytes(state
, 0x22, &buf
, 1);
277 while (counter
< 20) {
278 nxt200x_readbytes(state
, 0x31, &buf
, 1);
285 printk(KERN_WARNING
"nxt200x: Timeout waiting for nxt200x to stop. This is ok after firmware upload.\n");
289 static void nxt200x_microcontroller_start (struct nxt200x_state
* state
)
292 dprintk("%s\n", __FUNCTION__
);
295 nxt200x_writebytes(state
, 0x22, &buf
, 1);
298 static void nxt2004_microcontroller_init (struct nxt200x_state
* state
)
302 dprintk("%s\n", __FUNCTION__
);
305 nxt200x_writebytes(state
, 0x2b, buf
, 1);
307 nxt200x_writebytes(state
, 0x34, buf
, 1);
309 nxt200x_writebytes(state
, 0x35, buf
, 1);
310 buf
[0] = 0x01; buf
[1] = 0x23; buf
[2] = 0x45; buf
[3] = 0x67; buf
[4] = 0x89;
311 buf
[5] = 0xAB; buf
[6] = 0xCD; buf
[7] = 0xEF; buf
[8] = 0xC0;
312 nxt200x_writebytes(state
, 0x36, buf
, 9);
314 nxt200x_writebytes(state
, 0x21, buf
, 1);
316 while (counter
< 20) {
317 nxt200x_readbytes(state
, 0x21, buf
, 1);
324 printk(KERN_WARNING
"nxt200x: Timeout waiting for nxt2004 to init.\n");
329 static int nxt200x_writetuner (struct nxt200x_state
* state
, u8
* data
)
333 dprintk("%s\n", __FUNCTION__
);
335 dprintk("Tuner Bytes: %02X %02X %02X %02X\n", data
[0], data
[1], data
[2], data
[3]);
337 /* if NXT2004, write directly to tuner. if NXT2002, write through NXT chip.
338 * direct write is required for Philips TUV1236D and ALPS TDHU2 */
339 switch (state
->demod_chip
) {
341 if (i2c_writebytes(state
, state
->config
->pll_address
, data
, 4))
342 printk(KERN_WARNING
"nxt200x: error writing to tuner\n");
343 /* wait until we have a lock */
345 i2c_readbytes(state
, state
->config
->pll_address
, &buf
, 1);
351 printk("nxt2004: timeout waiting for tuner lock\n");
354 /* set the i2c transfer speed to the tuner */
356 nxt200x_writebytes(state
, 0x20, &buf
, 1);
358 /* setup to transfer 4 bytes via i2c */
360 nxt200x_writebytes(state
, 0x34, &buf
, 1);
362 /* write actual tuner bytes */
363 nxt200x_writebytes(state
, 0x36, data
, 4);
365 /* set tuner i2c address */
366 buf
= state
->config
->pll_address
;
367 nxt200x_writebytes(state
, 0x35, &buf
, 1);
369 /* write UC Opmode to begin transfer */
371 nxt200x_writebytes(state
, 0x21, &buf
, 1);
374 nxt200x_readbytes(state
, 0x21, &buf
, 1);
375 if ((buf
& 0x80)== 0x00)
380 printk("nxt2002: timeout error writing tuner\n");
389 static void nxt200x_agc_reset(struct nxt200x_state
* state
)
392 dprintk("%s\n", __FUNCTION__
);
394 switch (state
->demod_chip
) {
397 nxt200x_writebytes(state
, 0x08, &buf
, 1);
399 nxt200x_writebytes(state
, 0x08, &buf
, 1);
402 nxt200x_readreg_multibyte(state
, 0x08, &buf
, 1);
404 nxt200x_writereg_multibyte(state
, 0x08, &buf
, 1);
406 nxt200x_writereg_multibyte(state
, 0x08, &buf
, 1);
414 static int nxt2002_load_firmware (struct dvb_frontend
* fe
, const struct firmware
*fw
)
417 struct nxt200x_state
* state
= fe
->demodulator_priv
;
418 u8 buf
[3], written
= 0, chunkpos
= 0;
419 u16 rambase
, position
, crc
= 0;
421 dprintk("%s\n", __FUNCTION__
);
422 dprintk("Firmware is %zu bytes\n", fw
->size
);
424 /* Get the RAM base for this nxt2002 */
425 nxt200x_readbytes(state
, 0x10, buf
, 1);
432 dprintk("rambase on this nxt2002 is %04X\n", rambase
);
434 /* Hold the micro in reset while loading firmware */
436 nxt200x_writebytes(state
, 0x2B, buf
, 1);
438 for (position
= 0; position
< fw
->size
; position
++) {
442 buf
[0] = ((rambase
+ position
) >> 8);
443 buf
[1] = (rambase
+ position
) & 0xFF;
445 /* write starting address */
446 nxt200x_writebytes(state
, 0x29, buf
, 3);
451 if ((written
% 4) == 0)
452 nxt200x_writebytes(state
, chunkpos
, &fw
->data
[position
-3], 4);
454 crc
= nxt200x_crc(crc
, fw
->data
[position
]);
456 if ((written
== 255) || (position
+1 == fw
->size
)) {
457 /* write remaining bytes of firmware */
458 nxt200x_writebytes(state
, chunkpos
+4-(written
%4),
459 &fw
->data
[position
-(written
%4) + 1],
465 nxt200x_writebytes(state
, 0x2C, buf
, 2);
467 /* do a read to stop things */
468 nxt200x_readbytes(state
, 0x2A, buf
, 1);
470 /* set transfer mode to complete */
472 nxt200x_writebytes(state
, 0x2B, buf
, 1);
481 static int nxt2004_load_firmware (struct dvb_frontend
* fe
, const struct firmware
*fw
)
484 struct nxt200x_state
* state
= fe
->demodulator_priv
;
486 u16 rambase
, position
, crc
=0;
488 dprintk("%s\n", __FUNCTION__
);
489 dprintk("Firmware is %zu bytes\n", fw
->size
);
494 /* hold the micro in reset while loading firmware */
496 nxt200x_writebytes(state
, 0x2B, buf
,1);
498 /* calculate firmware CRC */
499 for (position
= 0; position
< fw
->size
; position
++) {
500 crc
= nxt200x_crc(crc
, fw
->data
[position
]);
503 buf
[0] = rambase
>> 8;
504 buf
[1] = rambase
& 0xFF;
506 /* write starting address */
507 nxt200x_writebytes(state
,0x29,buf
,3);
509 for (position
= 0; position
< fw
->size
;) {
510 nxt200x_writebytes(state
, 0x2C, &fw
->data
[position
],
511 fw
->size
-position
> 255 ? 255 : fw
->size
-position
);
512 position
+= (fw
->size
-position
> 255 ? 255 : fw
->size
-position
);
517 dprintk("firmware crc is 0x%02X 0x%02X\n", buf
[0], buf
[1]);
520 nxt200x_writebytes(state
, 0x2C, buf
,2);
522 /* do a read to stop things */
523 nxt200x_readbytes(state
, 0x2C, buf
, 1);
525 /* set transfer mode to complete */
527 nxt200x_writebytes(state
, 0x2B, buf
,1);
532 static int nxt200x_setup_frontend_parameters (struct dvb_frontend
* fe
,
533 struct dvb_frontend_parameters
*p
)
535 struct nxt200x_state
* state
= fe
->demodulator_priv
;
538 /* stop the micro first */
539 nxt200x_microcontroller_stop(state
);
541 if (state
->demod_chip
== NXT2004
) {
542 /* make sure demod is set to digital */
544 nxt200x_writebytes(state
, 0x14, buf
, 1);
546 nxt200x_writebytes(state
, 0x17, buf
, 1);
549 /* get tuning information */
550 dvb_pll_configure(state
->config
->pll_desc
, buf
, p
->frequency
, 0);
552 /* set additional params */
553 switch (p
->u
.vsb
.modulation
) {
556 /* Set punctured clock for QAM */
557 /* This is just a guess since I am unable to test it */
558 if (state
->config
->set_ts_params
)
559 state
->config
->set_ts_params(fe
, 1);
562 if (state
->config
->set_pll_input
)
563 state
->config
->set_pll_input(buf
, 1);
566 /* Set non-punctured clock for VSB */
567 if (state
->config
->set_ts_params
)
568 state
->config
->set_ts_params(fe
, 0);
571 if (state
->config
->set_pll_input
)
572 state
->config
->set_pll_input(buf
, 0);
579 /* write frequency information */
580 nxt200x_writetuner(state
, buf
);
582 /* reset the agc now that tuning has been completed */
583 nxt200x_agc_reset(state
);
585 /* set target power level */
586 switch (p
->u
.vsb
.modulation
) {
598 nxt200x_writebytes(state
, 0x42, buf
, 1);
601 switch (state
->demod_chip
) {
612 nxt200x_writebytes(state
, 0x57, buf
, 1);
614 /* write sdm1 input */
617 nxt200x_writebytes(state
, 0x58, buf
, 2);
619 /* write sdmx input */
620 switch (p
->u
.vsb
.modulation
) {
635 nxt200x_writebytes(state
, 0x5C, buf
, 2);
637 /* write adc power lpf fc */
639 nxt200x_writebytes(state
, 0x43, buf
, 1);
641 if (state
->demod_chip
== NXT2004
) {
645 nxt200x_writebytes(state
, 0x46, buf
, 2);
648 /* write accumulator2 input */
651 nxt200x_writebytes(state
, 0x4B, buf
, 2);
655 nxt200x_writebytes(state
, 0x4D, buf
, 1);
657 /* write sdm12 lpf fc */
659 nxt200x_writebytes(state
, 0x55, buf
, 1);
661 /* write agc control reg */
663 nxt200x_writebytes(state
, 0x41, buf
, 1);
665 if (state
->demod_chip
== NXT2004
) {
666 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
668 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
671 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
673 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
674 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
676 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
678 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
680 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
682 nxt200x_writereg_multibyte(state
, 0x81, buf
, 1);
683 buf
[0] = 0x80; buf
[1] = 0x00; buf
[2] = 0x00;
684 nxt200x_writereg_multibyte(state
, 0x82, buf
, 3);
685 nxt200x_readreg_multibyte(state
, 0x88, buf
, 1);
687 nxt200x_writereg_multibyte(state
, 0x88, buf
, 1);
688 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
690 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
693 /* write agc ucgp0 */
694 switch (p
->u
.vsb
.modulation
) {
708 nxt200x_writebytes(state
, 0x30, buf
, 1);
710 /* write agc control reg */
712 nxt200x_writebytes(state
, 0x41, buf
, 1);
714 /* write accumulator2 input */
717 nxt200x_writebytes(state
, 0x49, buf
,2);
718 nxt200x_writebytes(state
, 0x4B, buf
,2);
720 /* write agc control reg */
722 nxt200x_writebytes(state
, 0x41, buf
, 1);
724 nxt200x_microcontroller_start(state
);
726 if (state
->demod_chip
== NXT2004
) {
727 nxt2004_microcontroller_init(state
);
732 nxt200x_writebytes(state
, 0x5C, buf
, 2);
735 /* adjacent channel detection should be done here, but I don't
736 have any stations with this need so I cannot test it */
741 static int nxt200x_read_status(struct dvb_frontend
* fe
, fe_status_t
* status
)
743 struct nxt200x_state
* state
= fe
->demodulator_priv
;
745 nxt200x_readbytes(state
, 0x31, &lock
, 1);
749 *status
|= FE_HAS_SIGNAL
;
750 *status
|= FE_HAS_CARRIER
;
751 *status
|= FE_HAS_VITERBI
;
752 *status
|= FE_HAS_SYNC
;
753 *status
|= FE_HAS_LOCK
;
758 static int nxt200x_read_ber(struct dvb_frontend
* fe
, u32
* ber
)
760 struct nxt200x_state
* state
= fe
->demodulator_priv
;
763 nxt200x_readreg_multibyte(state
, 0xE6, b
, 3);
765 *ber
= ((b
[0] << 8) + b
[1]) * 8;
770 static int nxt200x_read_signal_strength(struct dvb_frontend
* fe
, u16
* strength
)
772 struct nxt200x_state
* state
= fe
->demodulator_priv
;
776 /* setup to read cluster variance */
778 nxt200x_writebytes(state
, 0xA1, b
, 1);
780 /* get multreg val */
781 nxt200x_readreg_multibyte(state
, 0xA6, b
, 2);
783 temp
= (b
[0] << 8) | b
[1];
784 *strength
= ((0x7FFF - temp
) & 0x0FFF) * 16;
789 static int nxt200x_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
792 struct nxt200x_state
* state
= fe
->demodulator_priv
;
797 /* setup to read cluster variance */
799 nxt200x_writebytes(state
, 0xA1, b
, 1);
801 /* get multreg val from 0xA6 */
802 nxt200x_readreg_multibyte(state
, 0xA6, b
, 2);
804 temp
= (b
[0] << 8) | b
[1];
805 temp2
= 0x7FFF - temp
;
807 /* snr will be in db */
809 snrdb
= 1000*24 + ( 1000*(30-24) * ( temp2
- 0x7F00 ) / ( 0x7FFF - 0x7F00 ) );
810 else if (temp2
> 0x7EC0)
811 snrdb
= 1000*18 + ( 1000*(24-18) * ( temp2
- 0x7EC0 ) / ( 0x7F00 - 0x7EC0 ) );
812 else if (temp2
> 0x7C00)
813 snrdb
= 1000*12 + ( 1000*(18-12) * ( temp2
- 0x7C00 ) / ( 0x7EC0 - 0x7C00 ) );
815 snrdb
= 1000*0 + ( 1000*(12-0) * ( temp2
- 0 ) / ( 0x7C00 - 0 ) );
817 /* the value reported back from the frontend will be FFFF=32db 0000=0db */
818 *snr
= snrdb
* (0xFFFF/32000);
823 static int nxt200x_read_ucblocks(struct dvb_frontend
* fe
, u32
* ucblocks
)
825 struct nxt200x_state
* state
= fe
->demodulator_priv
;
828 nxt200x_readreg_multibyte(state
, 0xE6, b
, 3);
834 static int nxt200x_sleep(struct dvb_frontend
* fe
)
839 static int nxt2002_init(struct dvb_frontend
* fe
)
841 struct nxt200x_state
* state
= fe
->demodulator_priv
;
842 const struct firmware
*fw
;
846 /* request the firmware, this will block until someone uploads it */
847 printk("nxt2002: Waiting for firmware upload (%s)...\n", NXT2002_DEFAULT_FIRMWARE
);
848 ret
= request_firmware(&fw
, NXT2002_DEFAULT_FIRMWARE
, &state
->i2c
->dev
);
849 printk("nxt2002: Waiting for firmware upload(2)...\n");
851 printk("nxt2002: No firmware uploaded (timeout or file not found?)\n");
855 ret
= nxt2002_load_firmware(fe
, fw
);
857 printk("nxt2002: Writing firmware to device failed\n");
858 release_firmware(fw
);
861 printk("nxt2002: Firmware upload complete\n");
863 /* Put the micro into reset */
864 nxt200x_microcontroller_stop(state
);
866 /* ensure transfer is complete */
868 nxt200x_writebytes(state
, 0x2B, buf
, 1);
870 /* Put the micro into reset for real this time */
871 nxt200x_microcontroller_stop(state
);
873 /* soft reset everything (agc,frontend,eq,fec)*/
875 nxt200x_writebytes(state
, 0x08, buf
, 1);
877 nxt200x_writebytes(state
, 0x08, buf
, 1);
879 /* write agc sdm configure */
881 nxt200x_writebytes(state
, 0x57, buf
, 1);
883 /* write mod output format */
885 nxt200x_writebytes(state
, 0x09, buf
, 1);
887 /* write fec mpeg mode */
890 nxt200x_writebytes(state
, 0xE9, buf
, 2);
892 /* write mux selection */
894 nxt200x_writebytes(state
, 0xCC, buf
, 1);
899 static int nxt2004_init(struct dvb_frontend
* fe
)
901 struct nxt200x_state
* state
= fe
->demodulator_priv
;
902 const struct firmware
*fw
;
908 nxt200x_writebytes(state
, 0x1E, buf
, 1);
910 /* request the firmware, this will block until someone uploads it */
911 printk("nxt2004: Waiting for firmware upload (%s)...\n", NXT2004_DEFAULT_FIRMWARE
);
912 ret
= request_firmware(&fw
, NXT2004_DEFAULT_FIRMWARE
, &state
->i2c
->dev
);
913 printk("nxt2004: Waiting for firmware upload(2)...\n");
915 printk("nxt2004: No firmware uploaded (timeout or file not found?)\n");
919 ret
= nxt2004_load_firmware(fe
, fw
);
921 printk("nxt2004: Writing firmware to device failed\n");
922 release_firmware(fw
);
925 printk("nxt2004: Firmware upload complete\n");
927 /* ensure transfer is complete */
929 nxt200x_writebytes(state
, 0x19, buf
, 1);
931 nxt2004_microcontroller_init(state
);
932 nxt200x_microcontroller_stop(state
);
933 nxt200x_microcontroller_stop(state
);
934 nxt2004_microcontroller_init(state
);
935 nxt200x_microcontroller_stop(state
);
937 /* soft reset everything (agc,frontend,eq,fec)*/
939 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
941 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
943 /* write agc sdm configure */
945 nxt200x_writebytes(state
, 0x57, buf
, 1);
950 nxt200x_writebytes(state
, 0x35, buf
, 2);
952 nxt200x_writebytes(state
, 0x34, buf
, 1);
954 nxt200x_writebytes(state
, 0x21, buf
, 1);
958 nxt200x_writebytes(state
, 0x0A, buf
, 1);
962 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
964 /* write fec mpeg mode */
967 nxt200x_writebytes(state
, 0xE9, buf
, 2);
969 /* write mux selection */
971 nxt200x_writebytes(state
, 0xCC, buf
, 1);
974 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
976 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
979 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
981 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
982 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
984 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
987 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
989 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
991 nxt200x_writereg_multibyte(state
, 0x81, buf
, 1);
992 buf
[0] = 0x31; buf
[1] = 0x5E; buf
[2] = 0x66;
993 nxt200x_writereg_multibyte(state
, 0x82, buf
, 3);
995 nxt200x_readreg_multibyte(state
, 0x88, buf
, 1);
997 nxt200x_writereg_multibyte(state
, 0x88, buf
, 1);
998 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1000 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1002 nxt200x_readbytes(state
, 0x10, buf
, 1);
1004 nxt200x_writebytes(state
, 0x10, buf
, 1);
1005 nxt200x_readbytes(state
, 0x0A, buf
, 1);
1007 nxt200x_writebytes(state
, 0x0A, buf
, 1);
1009 nxt2004_microcontroller_init(state
);
1012 nxt200x_writebytes(state
, 0x0A, buf
, 1);
1014 nxt200x_writebytes(state
, 0xE9, buf
, 1);
1016 nxt200x_writebytes(state
, 0xEA, buf
, 1);
1018 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1020 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1021 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1023 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1026 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
1028 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
1029 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
1031 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
1033 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1035 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1037 nxt200x_writereg_multibyte(state
, 0x81, buf
, 1);
1038 buf
[0] = 0x80; buf
[1] = 0x00; buf
[2] = 0x00;
1039 nxt200x_writereg_multibyte(state
, 0x82, buf
, 3);
1041 nxt200x_readreg_multibyte(state
, 0x88, buf
, 1);
1043 nxt200x_writereg_multibyte(state
, 0x88, buf
, 1);
1045 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1047 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1049 /* initialize tuner */
1050 nxt200x_readbytes(state
, 0x10, buf
, 1);
1052 nxt200x_writebytes(state
, 0x10, buf
, 1);
1054 nxt200x_writebytes(state
, 0x13, buf
, 1);
1056 nxt200x_writebytes(state
, 0x16, buf
, 1);
1058 nxt200x_writebytes(state
, 0x14, buf
, 1);
1060 nxt200x_writebytes(state
, 0x14, buf
, 1);
1061 nxt200x_writebytes(state
, 0x17, buf
, 1);
1062 nxt200x_writebytes(state
, 0x14, buf
, 1);
1063 nxt200x_writebytes(state
, 0x17, buf
, 1);
1068 static int nxt200x_init(struct dvb_frontend
* fe
)
1070 struct nxt200x_state
* state
= fe
->demodulator_priv
;
1073 if (!state
->initialised
) {
1074 switch (state
->demod_chip
) {
1076 ret
= nxt2002_init(fe
);
1079 ret
= nxt2004_init(fe
);
1085 state
->initialised
= 1;
1090 static int nxt200x_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
* fesettings
)
1092 fesettings
->min_delay_ms
= 500;
1093 fesettings
->step_size
= 0;
1094 fesettings
->max_drift
= 0;
1098 static void nxt200x_release(struct dvb_frontend
* fe
)
1100 struct nxt200x_state
* state
= fe
->demodulator_priv
;
1104 static struct dvb_frontend_ops nxt200x_ops
;
1106 struct dvb_frontend
* nxt200x_attach(const struct nxt200x_config
* config
,
1107 struct i2c_adapter
* i2c
)
1109 struct nxt200x_state
* state
= NULL
;
1110 u8 buf
[] = {0,0,0,0,0};
1112 /* allocate memory for the internal state */
1113 state
= kzalloc(sizeof(struct nxt200x_state
), GFP_KERNEL
);
1117 /* setup the state */
1118 state
->config
= config
;
1120 memcpy(&state
->ops
, &nxt200x_ops
, sizeof(struct dvb_frontend_ops
));
1121 state
->initialised
= 0;
1124 nxt200x_readbytes(state
, 0x00, buf
, 5);
1125 dprintk("NXT info: %02X %02X %02X %02X %02X\n",
1126 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4]);
1128 /* set demod chip */
1131 state
->demod_chip
= NXT2002
;
1132 printk("nxt200x: NXT2002 Detected\n");
1135 state
->demod_chip
= NXT2004
;
1136 printk("nxt200x: NXT2004 Detected\n");
1142 /* make sure demod chip is supported */
1143 switch (state
->demod_chip
) {
1145 if (buf
[0] != 0x04) goto error
; /* device id */
1146 if (buf
[1] != 0x02) goto error
; /* fab id */
1147 if (buf
[2] != 0x11) goto error
; /* month */
1148 if (buf
[3] != 0x20) goto error
; /* year msb */
1149 if (buf
[4] != 0x00) goto error
; /* year lsb */
1152 if (buf
[0] != 0x05) goto error
; /* device id */
1158 /* create dvb_frontend */
1159 state
->frontend
.ops
= &state
->ops
;
1160 state
->frontend
.demodulator_priv
= state
;
1161 return &state
->frontend
;
1165 printk("Unknown/Unsupported NXT chip: %02X %02X %02X %02X %02X\n",
1166 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4]);
1170 static struct dvb_frontend_ops nxt200x_ops
= {
1173 .name
= "Nextwave NXT200X VSB/QAM frontend",
1175 .frequency_min
= 54000000,
1176 .frequency_max
= 860000000,
1177 .frequency_stepsize
= 166666, /* stepsize is just a guess */
1178 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
1179 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
1180 FE_CAN_8VSB
| FE_CAN_QAM_64
| FE_CAN_QAM_256
1183 .release
= nxt200x_release
,
1185 .init
= nxt200x_init
,
1186 .sleep
= nxt200x_sleep
,
1188 .set_frontend
= nxt200x_setup_frontend_parameters
,
1189 .get_tune_settings
= nxt200x_get_tune_settings
,
1191 .read_status
= nxt200x_read_status
,
1192 .read_ber
= nxt200x_read_ber
,
1193 .read_signal_strength
= nxt200x_read_signal_strength
,
1194 .read_snr
= nxt200x_read_snr
,
1195 .read_ucblocks
= nxt200x_read_ucblocks
,
1198 module_param(debug
, int, 0644);
1199 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
1201 MODULE_DESCRIPTION("NXT200X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver");
1202 MODULE_AUTHOR("Kirk Lapray, Jean-Francois Thibert, and Taylor Jacob");
1203 MODULE_LICENSE("GPL");
1205 EXPORT_SYMBOL(nxt200x_attach
);