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/moduleparam.h>
48 #include <linux/slab.h>
49 #include <linux/string.h>
51 #include "dvb_frontend.h"
55 struct nxt200x_state
{
57 struct i2c_adapter
* i2c
;
58 struct dvb_frontend_ops ops
;
59 const struct nxt200x_config
* config
;
60 struct dvb_frontend frontend
;
62 /* demodulator private data */
63 nxt_chip_type demod_chip
;
68 #define dprintk(args...) \
70 if (debug) printk(KERN_DEBUG "nxt200x: " args); \
73 static int i2c_writebytes (struct nxt200x_state
* state
, u8 addr
, u8
*buf
, u8 len
)
76 struct i2c_msg msg
= { .addr
= addr
, .flags
= 0, .buf
= buf
, .len
= len
};
78 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
79 printk (KERN_WARNING
"nxt200x: %s: i2c write error (addr 0x%02x, err == %i)\n",
80 __FUNCTION__
, addr
, err
);
86 static u8
i2c_readbytes (struct nxt200x_state
* state
, u8 addr
, u8
* buf
, u8 len
)
89 struct i2c_msg msg
= { .addr
= addr
, .flags
= I2C_M_RD
, .buf
= buf
, .len
= len
};
91 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
92 printk (KERN_WARNING
"nxt200x: %s: i2c read error (addr 0x%02x, err == %i)\n",
93 __FUNCTION__
, addr
, err
);
99 static int nxt200x_writebytes (struct nxt200x_state
* state
, u8 reg
, u8
*buf
, u8 len
)
103 struct i2c_msg msg
= { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= buf2
, .len
= len
+ 1 };
106 memcpy(&buf2
[1], buf
, len
);
108 if ((err
= i2c_transfer (state
->i2c
, &msg
, 1)) != 1) {
109 printk (KERN_WARNING
"nxt200x: %s: i2c write error (addr 0x%02x, err == %i)\n",
110 __FUNCTION__
, state
->config
->demod_address
, err
);
116 static u8
nxt200x_readbytes (struct nxt200x_state
* state
, u8 reg
, u8
* buf
, u8 len
)
118 u8 reg2
[] = { reg
};
120 struct i2c_msg msg
[] = { { .addr
= state
->config
->demod_address
, .flags
= 0, .buf
= reg2
, .len
= 1 },
121 { .addr
= state
->config
->demod_address
, .flags
= I2C_M_RD
, .buf
= buf
, .len
= len
} };
125 if ((err
= i2c_transfer (state
->i2c
, msg
, 2)) != 2) {
126 printk (KERN_WARNING
"nxt200x: %s: i2c read error (addr 0x%02x, err == %i)\n",
127 __FUNCTION__
, state
->config
->demod_address
, err
);
133 static u16
nxt200x_crc(u16 crc
, u8 c
)
136 u16 input
= (u16
) c
& 0xFF;
140 if((crc
^input
) & 0x8000)
141 crc
=(crc
<<1)^CRC_CCIT_MASK
;
149 static int nxt200x_writereg_multibyte (struct nxt200x_state
* state
, u8 reg
, u8
* data
, u8 len
)
152 dprintk("%s\n", __FUNCTION__
);
154 /* set mutli register register */
155 nxt200x_writebytes(state
, 0x35, ®
, 1);
157 /* send the actual data */
158 nxt200x_writebytes(state
, 0x36, data
, len
);
160 switch (state
->demod_chip
) {
166 /* probably not right, but gives correct values */
174 len2
= ((attr
<< 4) | 0x10) | len
;
182 /* set multi register length */
183 nxt200x_writebytes(state
, 0x34, &len2
, 1);
185 /* toggle the multireg write bit */
186 nxt200x_writebytes(state
, 0x21, &buf
, 1);
188 nxt200x_readbytes(state
, 0x21, &buf
, 1);
190 switch (state
->demod_chip
) {
192 if ((buf
& 0x02) == 0)
204 printk(KERN_WARNING
"nxt200x: Error writing multireg register 0x%02X\n",reg
);
209 static int nxt200x_readreg_multibyte (struct nxt200x_state
* state
, u8 reg
, u8
* data
, u8 len
)
213 dprintk("%s\n", __FUNCTION__
);
215 /* set mutli register register */
216 nxt200x_writebytes(state
, 0x35, ®
, 1);
218 switch (state
->demod_chip
) {
220 /* set multi register length */
222 nxt200x_writebytes(state
, 0x34, &len2
, 1);
224 /* read the actual data */
225 nxt200x_readbytes(state
, reg
, data
, len
);
229 /* probably not right, but gives correct values */
237 /* set multi register length */
238 len2
= (attr
<< 4) | len
;
239 nxt200x_writebytes(state
, 0x34, &len2
, 1);
241 /* toggle the multireg bit*/
243 nxt200x_writebytes(state
, 0x21, &buf
, 1);
245 /* read the actual data */
246 for(i
= 0; i
< len
; i
++) {
247 nxt200x_readbytes(state
, 0x36 + i
, &data
[i
], 1);
257 static void nxt200x_microcontroller_stop (struct nxt200x_state
* state
)
259 u8 buf
, stopval
, counter
= 0;
260 dprintk("%s\n", __FUNCTION__
);
262 /* set correct stop value */
263 switch (state
->demod_chip
) {
276 nxt200x_writebytes(state
, 0x22, &buf
, 1);
278 while (counter
< 20) {
279 nxt200x_readbytes(state
, 0x31, &buf
, 1);
286 printk(KERN_WARNING
"nxt200x: Timeout waiting for nxt200x to stop. This is ok after firmware upload.\n");
290 static void nxt200x_microcontroller_start (struct nxt200x_state
* state
)
293 dprintk("%s\n", __FUNCTION__
);
296 nxt200x_writebytes(state
, 0x22, &buf
, 1);
299 static void nxt2004_microcontroller_init (struct nxt200x_state
* state
)
303 dprintk("%s\n", __FUNCTION__
);
306 nxt200x_writebytes(state
, 0x2b, buf
, 1);
308 nxt200x_writebytes(state
, 0x34, buf
, 1);
310 nxt200x_writebytes(state
, 0x35, buf
, 1);
311 buf
[0] = 0x01; buf
[1] = 0x23; buf
[2] = 0x45; buf
[3] = 0x67; buf
[4] = 0x89;
312 buf
[5] = 0xAB; buf
[6] = 0xCD; buf
[7] = 0xEF; buf
[8] = 0xC0;
313 nxt200x_writebytes(state
, 0x36, buf
, 9);
315 nxt200x_writebytes(state
, 0x21, buf
, 1);
317 while (counter
< 20) {
318 nxt200x_readbytes(state
, 0x21, buf
, 1);
325 printk(KERN_WARNING
"nxt200x: Timeout waiting for nxt2004 to init.\n");
330 static int nxt200x_writetuner (struct nxt200x_state
* state
, u8
* data
)
334 dprintk("%s\n", __FUNCTION__
);
336 dprintk("Tuner Bytes: %02X %02X %02X %02X\n", data
[0], data
[1], data
[2], data
[3]);
338 /* if NXT2004, write directly to tuner. if NXT2002, write through NXT chip.
339 * direct write is required for Philips TUV1236D and ALPS TDHU2 */
340 switch (state
->demod_chip
) {
342 if (i2c_writebytes(state
, state
->config
->pll_address
, data
, 4))
343 printk(KERN_WARNING
"nxt200x: error writing to tuner\n");
344 /* wait until we have a lock */
346 i2c_readbytes(state
, state
->config
->pll_address
, &buf
, 1);
352 printk("nxt2004: timeout waiting for tuner lock\n");
355 /* set the i2c transfer speed to the tuner */
357 nxt200x_writebytes(state
, 0x20, &buf
, 1);
359 /* setup to transfer 4 bytes via i2c */
361 nxt200x_writebytes(state
, 0x34, &buf
, 1);
363 /* write actual tuner bytes */
364 nxt200x_writebytes(state
, 0x36, data
, 4);
366 /* set tuner i2c address */
367 buf
= state
->config
->pll_address
;
368 nxt200x_writebytes(state
, 0x35, &buf
, 1);
370 /* write UC Opmode to begin transfer */
372 nxt200x_writebytes(state
, 0x21, &buf
, 1);
375 nxt200x_readbytes(state
, 0x21, &buf
, 1);
376 if ((buf
& 0x80)== 0x00)
381 printk("nxt2002: timeout error writing tuner\n");
390 static void nxt200x_agc_reset(struct nxt200x_state
* state
)
393 dprintk("%s\n", __FUNCTION__
);
395 switch (state
->demod_chip
) {
398 nxt200x_writebytes(state
, 0x08, &buf
, 1);
400 nxt200x_writebytes(state
, 0x08, &buf
, 1);
403 nxt200x_readreg_multibyte(state
, 0x08, &buf
, 1);
405 nxt200x_writereg_multibyte(state
, 0x08, &buf
, 1);
407 nxt200x_writereg_multibyte(state
, 0x08, &buf
, 1);
415 static int nxt2002_load_firmware (struct dvb_frontend
* fe
, const struct firmware
*fw
)
418 struct nxt200x_state
* state
= fe
->demodulator_priv
;
419 u8 buf
[3], written
= 0, chunkpos
= 0;
420 u16 rambase
, position
, crc
= 0;
422 dprintk("%s\n", __FUNCTION__
);
423 dprintk("Firmware is %zu bytes\n", fw
->size
);
425 /* Get the RAM base for this nxt2002 */
426 nxt200x_readbytes(state
, 0x10, buf
, 1);
433 dprintk("rambase on this nxt2002 is %04X\n", rambase
);
435 /* Hold the micro in reset while loading firmware */
437 nxt200x_writebytes(state
, 0x2B, buf
, 1);
439 for (position
= 0; position
< fw
->size
; position
++) {
443 buf
[0] = ((rambase
+ position
) >> 8);
444 buf
[1] = (rambase
+ position
) & 0xFF;
446 /* write starting address */
447 nxt200x_writebytes(state
, 0x29, buf
, 3);
452 if ((written
% 4) == 0)
453 nxt200x_writebytes(state
, chunkpos
, &fw
->data
[position
-3], 4);
455 crc
= nxt200x_crc(crc
, fw
->data
[position
]);
457 if ((written
== 255) || (position
+1 == fw
->size
)) {
458 /* write remaining bytes of firmware */
459 nxt200x_writebytes(state
, chunkpos
+4-(written
%4),
460 &fw
->data
[position
-(written
%4) + 1],
466 nxt200x_writebytes(state
, 0x2C, buf
, 2);
468 /* do a read to stop things */
469 nxt200x_readbytes(state
, 0x2A, buf
, 1);
471 /* set transfer mode to complete */
473 nxt200x_writebytes(state
, 0x2B, buf
, 1);
482 static int nxt2004_load_firmware (struct dvb_frontend
* fe
, const struct firmware
*fw
)
485 struct nxt200x_state
* state
= fe
->demodulator_priv
;
487 u16 rambase
, position
, crc
=0;
489 dprintk("%s\n", __FUNCTION__
);
490 dprintk("Firmware is %zu bytes\n", fw
->size
);
495 /* hold the micro in reset while loading firmware */
497 nxt200x_writebytes(state
, 0x2B, buf
,1);
499 /* calculate firmware CRC */
500 for (position
= 0; position
< fw
->size
; position
++) {
501 crc
= nxt200x_crc(crc
, fw
->data
[position
]);
504 buf
[0] = rambase
>> 8;
505 buf
[1] = rambase
& 0xFF;
507 /* write starting address */
508 nxt200x_writebytes(state
,0x29,buf
,3);
510 for (position
= 0; position
< fw
->size
;) {
511 nxt200x_writebytes(state
, 0x2C, &fw
->data
[position
],
512 fw
->size
-position
> 255 ? 255 : fw
->size
-position
);
513 position
+= (fw
->size
-position
> 255 ? 255 : fw
->size
-position
);
518 dprintk("firmware crc is 0x%02X 0x%02X\n", buf
[0], buf
[1]);
521 nxt200x_writebytes(state
, 0x2C, buf
,2);
523 /* do a read to stop things */
524 nxt200x_readbytes(state
, 0x2C, buf
, 1);
526 /* set transfer mode to complete */
528 nxt200x_writebytes(state
, 0x2B, buf
,1);
533 static int nxt200x_setup_frontend_parameters (struct dvb_frontend
* fe
,
534 struct dvb_frontend_parameters
*p
)
536 struct nxt200x_state
* state
= fe
->demodulator_priv
;
539 /* stop the micro first */
540 nxt200x_microcontroller_stop(state
);
542 if (state
->demod_chip
== NXT2004
) {
543 /* make sure demod is set to digital */
545 nxt200x_writebytes(state
, 0x14, buf
, 1);
547 nxt200x_writebytes(state
, 0x17, buf
, 1);
550 /* get tuning information */
551 dvb_pll_configure(state
->config
->pll_desc
, buf
, p
->frequency
, 0);
553 /* set additional params */
554 switch (p
->u
.vsb
.modulation
) {
557 /* Set punctured clock for QAM */
558 /* This is just a guess since I am unable to test it */
559 if (state
->config
->set_ts_params
)
560 state
->config
->set_ts_params(fe
, 1);
563 if (state
->config
->set_pll_input
)
564 state
->config
->set_pll_input(buf
, 1);
567 /* Set non-punctured clock for VSB */
568 if (state
->config
->set_ts_params
)
569 state
->config
->set_ts_params(fe
, 0);
572 if (state
->config
->set_pll_input
)
573 state
->config
->set_pll_input(buf
, 0);
580 /* write frequency information */
581 nxt200x_writetuner(state
, buf
);
583 /* reset the agc now that tuning has been completed */
584 nxt200x_agc_reset(state
);
586 /* set target power level */
587 switch (p
->u
.vsb
.modulation
) {
599 nxt200x_writebytes(state
, 0x42, buf
, 1);
602 switch (state
->demod_chip
) {
613 nxt200x_writebytes(state
, 0x57, buf
, 1);
615 /* write sdm1 input */
618 switch (state
->demod_chip
) {
620 nxt200x_writereg_multibyte(state
, 0x58, buf
, 2);
623 nxt200x_writebytes(state
, 0x58, buf
, 2);
630 /* write sdmx input */
631 switch (p
->u
.vsb
.modulation
) {
646 switch (state
->demod_chip
) {
648 nxt200x_writereg_multibyte(state
, 0x5C, buf
, 2);
651 nxt200x_writebytes(state
, 0x5C, buf
, 2);
658 /* write adc power lpf fc */
660 nxt200x_writebytes(state
, 0x43, buf
, 1);
662 if (state
->demod_chip
== NXT2004
) {
666 nxt200x_writebytes(state
, 0x46, buf
, 2);
669 /* write accumulator2 input */
672 switch (state
->demod_chip
) {
674 nxt200x_writereg_multibyte(state
, 0x4B, buf
, 2);
677 nxt200x_writebytes(state
, 0x4B, buf
, 2);
686 nxt200x_writebytes(state
, 0x4D, buf
, 1);
688 /* write sdm12 lpf fc */
690 nxt200x_writebytes(state
, 0x55, buf
, 1);
692 /* write agc control reg */
694 nxt200x_writebytes(state
, 0x41, buf
, 1);
696 if (state
->demod_chip
== NXT2004
) {
697 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
699 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
702 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
704 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
705 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
707 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
709 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
711 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
713 nxt200x_writereg_multibyte(state
, 0x81, buf
, 1);
714 buf
[0] = 0x80; buf
[1] = 0x00; buf
[2] = 0x00;
715 nxt200x_writereg_multibyte(state
, 0x82, buf
, 3);
716 nxt200x_readreg_multibyte(state
, 0x88, buf
, 1);
718 nxt200x_writereg_multibyte(state
, 0x88, buf
, 1);
719 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
721 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
724 /* write agc ucgp0 */
725 switch (p
->u
.vsb
.modulation
) {
739 nxt200x_writebytes(state
, 0x30, buf
, 1);
741 /* write agc control reg */
743 nxt200x_writebytes(state
, 0x41, buf
, 1);
745 /* write accumulator2 input */
748 switch (state
->demod_chip
) {
750 nxt200x_writereg_multibyte(state
, 0x49, buf
, 2);
751 nxt200x_writereg_multibyte(state
, 0x4B, buf
, 2);
754 nxt200x_writebytes(state
, 0x49, buf
, 2);
755 nxt200x_writebytes(state
, 0x4B, buf
, 2);
762 /* write agc control reg */
764 nxt200x_writebytes(state
, 0x41, buf
, 1);
766 nxt200x_microcontroller_start(state
);
768 if (state
->demod_chip
== NXT2004
) {
769 nxt2004_microcontroller_init(state
);
774 nxt200x_writebytes(state
, 0x5C, buf
, 2);
777 /* adjacent channel detection should be done here, but I don't
778 have any stations with this need so I cannot test it */
783 static int nxt200x_read_status(struct dvb_frontend
* fe
, fe_status_t
* status
)
785 struct nxt200x_state
* state
= fe
->demodulator_priv
;
787 nxt200x_readbytes(state
, 0x31, &lock
, 1);
791 *status
|= FE_HAS_SIGNAL
;
792 *status
|= FE_HAS_CARRIER
;
793 *status
|= FE_HAS_VITERBI
;
794 *status
|= FE_HAS_SYNC
;
795 *status
|= FE_HAS_LOCK
;
800 static int nxt200x_read_ber(struct dvb_frontend
* fe
, u32
* ber
)
802 struct nxt200x_state
* state
= fe
->demodulator_priv
;
805 nxt200x_readreg_multibyte(state
, 0xE6, b
, 3);
807 *ber
= ((b
[0] << 8) + b
[1]) * 8;
812 static int nxt200x_read_signal_strength(struct dvb_frontend
* fe
, u16
* strength
)
814 struct nxt200x_state
* state
= fe
->demodulator_priv
;
818 /* setup to read cluster variance */
820 nxt200x_writebytes(state
, 0xA1, b
, 1);
822 /* get multreg val */
823 nxt200x_readreg_multibyte(state
, 0xA6, b
, 2);
825 temp
= (b
[0] << 8) | b
[1];
826 *strength
= ((0x7FFF - temp
) & 0x0FFF) * 16;
831 static int nxt200x_read_snr(struct dvb_frontend
* fe
, u16
* snr
)
834 struct nxt200x_state
* state
= fe
->demodulator_priv
;
839 /* setup to read cluster variance */
841 nxt200x_writebytes(state
, 0xA1, b
, 1);
843 /* get multreg val from 0xA6 */
844 nxt200x_readreg_multibyte(state
, 0xA6, b
, 2);
846 temp
= (b
[0] << 8) | b
[1];
847 temp2
= 0x7FFF - temp
;
849 /* snr will be in db */
851 snrdb
= 1000*24 + ( 1000*(30-24) * ( temp2
- 0x7F00 ) / ( 0x7FFF - 0x7F00 ) );
852 else if (temp2
> 0x7EC0)
853 snrdb
= 1000*18 + ( 1000*(24-18) * ( temp2
- 0x7EC0 ) / ( 0x7F00 - 0x7EC0 ) );
854 else if (temp2
> 0x7C00)
855 snrdb
= 1000*12 + ( 1000*(18-12) * ( temp2
- 0x7C00 ) / ( 0x7EC0 - 0x7C00 ) );
857 snrdb
= 1000*0 + ( 1000*(12-0) * ( temp2
- 0 ) / ( 0x7C00 - 0 ) );
859 /* the value reported back from the frontend will be FFFF=32db 0000=0db */
860 *snr
= snrdb
* (0xFFFF/32000);
865 static int nxt200x_read_ucblocks(struct dvb_frontend
* fe
, u32
* ucblocks
)
867 struct nxt200x_state
* state
= fe
->demodulator_priv
;
870 nxt200x_readreg_multibyte(state
, 0xE6, b
, 3);
876 static int nxt200x_sleep(struct dvb_frontend
* fe
)
881 static int nxt2002_init(struct dvb_frontend
* fe
)
883 struct nxt200x_state
* state
= fe
->demodulator_priv
;
884 const struct firmware
*fw
;
888 /* request the firmware, this will block until someone uploads it */
889 printk("nxt2002: Waiting for firmware upload (%s)...\n", NXT2002_DEFAULT_FIRMWARE
);
890 ret
= request_firmware(&fw
, NXT2002_DEFAULT_FIRMWARE
, &state
->i2c
->dev
);
891 printk("nxt2002: Waiting for firmware upload(2)...\n");
893 printk("nxt2002: No firmware uploaded (timeout or file not found?)\n");
897 ret
= nxt2002_load_firmware(fe
, fw
);
899 printk("nxt2002: Writing firmware to device failed\n");
900 release_firmware(fw
);
903 printk("nxt2002: Firmware upload complete\n");
905 /* Put the micro into reset */
906 nxt200x_microcontroller_stop(state
);
908 /* ensure transfer is complete */
910 nxt200x_writebytes(state
, 0x2B, buf
, 1);
912 /* Put the micro into reset for real this time */
913 nxt200x_microcontroller_stop(state
);
915 /* soft reset everything (agc,frontend,eq,fec)*/
917 nxt200x_writebytes(state
, 0x08, buf
, 1);
919 nxt200x_writebytes(state
, 0x08, buf
, 1);
921 /* write agc sdm configure */
923 nxt200x_writebytes(state
, 0x57, buf
, 1);
925 /* write mod output format */
927 nxt200x_writebytes(state
, 0x09, buf
, 1);
929 /* write fec mpeg mode */
932 nxt200x_writebytes(state
, 0xE9, buf
, 2);
934 /* write mux selection */
936 nxt200x_writebytes(state
, 0xCC, buf
, 1);
941 static int nxt2004_init(struct dvb_frontend
* fe
)
943 struct nxt200x_state
* state
= fe
->demodulator_priv
;
944 const struct firmware
*fw
;
950 nxt200x_writebytes(state
, 0x1E, buf
, 1);
952 /* request the firmware, this will block until someone uploads it */
953 printk("nxt2004: Waiting for firmware upload (%s)...\n", NXT2004_DEFAULT_FIRMWARE
);
954 ret
= request_firmware(&fw
, NXT2004_DEFAULT_FIRMWARE
, &state
->i2c
->dev
);
955 printk("nxt2004: Waiting for firmware upload(2)...\n");
957 printk("nxt2004: No firmware uploaded (timeout or file not found?)\n");
961 ret
= nxt2004_load_firmware(fe
, fw
);
963 printk("nxt2004: Writing firmware to device failed\n");
964 release_firmware(fw
);
967 printk("nxt2004: Firmware upload complete\n");
969 /* ensure transfer is complete */
971 nxt200x_writebytes(state
, 0x19, buf
, 1);
973 nxt2004_microcontroller_init(state
);
974 nxt200x_microcontroller_stop(state
);
975 nxt200x_microcontroller_stop(state
);
976 nxt2004_microcontroller_init(state
);
977 nxt200x_microcontroller_stop(state
);
979 /* soft reset everything (agc,frontend,eq,fec)*/
981 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
983 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
985 /* write agc sdm configure */
987 nxt200x_writebytes(state
, 0x57, buf
, 1);
992 nxt200x_writebytes(state
, 0x35, buf
, 2);
994 nxt200x_writebytes(state
, 0x34, buf
, 1);
996 nxt200x_writebytes(state
, 0x21, buf
, 1);
1000 nxt200x_writebytes(state
, 0x0A, buf
, 1);
1004 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1006 /* write fec mpeg mode */
1009 nxt200x_writebytes(state
, 0xE9, buf
, 2);
1011 /* write mux selection */
1013 nxt200x_writebytes(state
, 0xCC, buf
, 1);
1016 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1018 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1021 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
1023 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
1024 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
1026 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
1029 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1031 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1033 nxt200x_writereg_multibyte(state
, 0x81, buf
, 1);
1034 buf
[0] = 0x31; buf
[1] = 0x5E; buf
[2] = 0x66;
1035 nxt200x_writereg_multibyte(state
, 0x82, buf
, 3);
1037 nxt200x_readreg_multibyte(state
, 0x88, buf
, 1);
1039 nxt200x_writereg_multibyte(state
, 0x88, buf
, 1);
1040 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1042 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1044 nxt200x_readbytes(state
, 0x10, buf
, 1);
1046 nxt200x_writebytes(state
, 0x10, buf
, 1);
1047 nxt200x_readbytes(state
, 0x0A, buf
, 1);
1049 nxt200x_writebytes(state
, 0x0A, buf
, 1);
1051 nxt2004_microcontroller_init(state
);
1054 nxt200x_writebytes(state
, 0x0A, buf
, 1);
1056 nxt200x_writebytes(state
, 0xE9, buf
, 1);
1058 nxt200x_writebytes(state
, 0xEA, buf
, 1);
1060 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1062 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1063 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1065 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1068 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
1070 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
1071 nxt200x_readreg_multibyte(state
, 0x08, buf
, 1);
1073 nxt200x_writereg_multibyte(state
, 0x08, buf
, 1);
1075 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1077 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1079 nxt200x_writereg_multibyte(state
, 0x81, buf
, 1);
1080 buf
[0] = 0x80; buf
[1] = 0x00; buf
[2] = 0x00;
1081 nxt200x_writereg_multibyte(state
, 0x82, buf
, 3);
1083 nxt200x_readreg_multibyte(state
, 0x88, buf
, 1);
1085 nxt200x_writereg_multibyte(state
, 0x88, buf
, 1);
1087 nxt200x_readreg_multibyte(state
, 0x80, buf
, 1);
1089 nxt200x_writereg_multibyte(state
, 0x80, buf
, 1);
1091 /* initialize tuner */
1092 nxt200x_readbytes(state
, 0x10, buf
, 1);
1094 nxt200x_writebytes(state
, 0x10, buf
, 1);
1096 nxt200x_writebytes(state
, 0x13, buf
, 1);
1098 nxt200x_writebytes(state
, 0x16, buf
, 1);
1100 nxt200x_writebytes(state
, 0x14, buf
, 1);
1102 nxt200x_writebytes(state
, 0x14, buf
, 1);
1103 nxt200x_writebytes(state
, 0x17, buf
, 1);
1104 nxt200x_writebytes(state
, 0x14, buf
, 1);
1105 nxt200x_writebytes(state
, 0x17, buf
, 1);
1110 static int nxt200x_init(struct dvb_frontend
* fe
)
1112 struct nxt200x_state
* state
= fe
->demodulator_priv
;
1115 if (!state
->initialised
) {
1116 switch (state
->demod_chip
) {
1118 ret
= nxt2002_init(fe
);
1121 ret
= nxt2004_init(fe
);
1127 state
->initialised
= 1;
1132 static int nxt200x_get_tune_settings(struct dvb_frontend
* fe
, struct dvb_frontend_tune_settings
* fesettings
)
1134 fesettings
->min_delay_ms
= 500;
1135 fesettings
->step_size
= 0;
1136 fesettings
->max_drift
= 0;
1140 static void nxt200x_release(struct dvb_frontend
* fe
)
1142 struct nxt200x_state
* state
= fe
->demodulator_priv
;
1146 static struct dvb_frontend_ops nxt200x_ops
;
1148 struct dvb_frontend
* nxt200x_attach(const struct nxt200x_config
* config
,
1149 struct i2c_adapter
* i2c
)
1151 struct nxt200x_state
* state
= NULL
;
1152 u8 buf
[] = {0,0,0,0,0};
1154 /* allocate memory for the internal state */
1155 state
= kzalloc(sizeof(struct nxt200x_state
), GFP_KERNEL
);
1159 /* setup the state */
1160 state
->config
= config
;
1162 memcpy(&state
->ops
, &nxt200x_ops
, sizeof(struct dvb_frontend_ops
));
1163 state
->initialised
= 0;
1166 nxt200x_readbytes(state
, 0x00, buf
, 5);
1167 dprintk("NXT info: %02X %02X %02X %02X %02X\n",
1168 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4]);
1170 /* set demod chip */
1173 state
->demod_chip
= NXT2002
;
1174 printk("nxt200x: NXT2002 Detected\n");
1177 state
->demod_chip
= NXT2004
;
1178 printk("nxt200x: NXT2004 Detected\n");
1184 /* make sure demod chip is supported */
1185 switch (state
->demod_chip
) {
1187 if (buf
[0] != 0x04) goto error
; /* device id */
1188 if (buf
[1] != 0x02) goto error
; /* fab id */
1189 if (buf
[2] != 0x11) goto error
; /* month */
1190 if (buf
[3] != 0x20) goto error
; /* year msb */
1191 if (buf
[4] != 0x00) goto error
; /* year lsb */
1194 if (buf
[0] != 0x05) goto error
; /* device id */
1200 /* create dvb_frontend */
1201 state
->frontend
.ops
= &state
->ops
;
1202 state
->frontend
.demodulator_priv
= state
;
1203 return &state
->frontend
;
1207 printk("Unknown/Unsupported NXT chip: %02X %02X %02X %02X %02X\n",
1208 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4]);
1212 static struct dvb_frontend_ops nxt200x_ops
= {
1215 .name
= "Nextwave NXT200X VSB/QAM frontend",
1217 .frequency_min
= 54000000,
1218 .frequency_max
= 860000000,
1219 .frequency_stepsize
= 166666, /* stepsize is just a guess */
1220 .caps
= FE_CAN_FEC_1_2
| FE_CAN_FEC_2_3
| FE_CAN_FEC_3_4
|
1221 FE_CAN_FEC_5_6
| FE_CAN_FEC_7_8
| FE_CAN_FEC_AUTO
|
1222 FE_CAN_8VSB
| FE_CAN_QAM_64
| FE_CAN_QAM_256
1225 .release
= nxt200x_release
,
1227 .init
= nxt200x_init
,
1228 .sleep
= nxt200x_sleep
,
1230 .set_frontend
= nxt200x_setup_frontend_parameters
,
1231 .get_tune_settings
= nxt200x_get_tune_settings
,
1233 .read_status
= nxt200x_read_status
,
1234 .read_ber
= nxt200x_read_ber
,
1235 .read_signal_strength
= nxt200x_read_signal_strength
,
1236 .read_snr
= nxt200x_read_snr
,
1237 .read_ucblocks
= nxt200x_read_ucblocks
,
1240 module_param(debug
, int, 0644);
1241 MODULE_PARM_DESC(debug
, "Turn on/off frontend debugging (default:off).");
1243 MODULE_DESCRIPTION("NXT200X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulator Driver");
1244 MODULE_AUTHOR("Kirk Lapray, Michael Krufky, Jean-Francois Thibert, and Taylor Jacob");
1245 MODULE_LICENSE("GPL");
1247 EXPORT_SYMBOL(nxt200x_attach
);