3 * Copyright (c) 2007-2008 Mauro Carvalho Chehab (mchehab@infradead.org)
5 * Copyright (c) 2007 Michel Ludwig (michel.ludwig@gmail.com)
8 * This code is placed under the terms of the GNU General Public License v2
11 #include <linux/i2c.h>
12 #include <asm/div64.h>
13 #include <linux/firmware.h>
14 #include <linux/videodev2.h>
15 #include <linux/delay.h>
16 #include <media/tuner.h>
17 #include <linux/mutex.h>
18 #include "tuner-i2c.h"
19 #include "tuner-xc2028.h"
20 #include "tuner-xc2028-types.h"
22 #include <linux/dvb/frontend.h>
23 #include "dvb_frontend.h"
27 module_param(debug
, int, 0644);
28 MODULE_PARM_DESC(debug
, "enable verbose debug messages");
30 static char audio_std
[8];
31 module_param_string(audio_std
, audio_std
, sizeof(audio_std
), 0);
32 MODULE_PARM_DESC(audio_std
,
33 "Audio standard. XC3028 audio decoder explicitly "
34 "needs to know what audio\n"
35 "standard is needed for some video standards with audio A2 or NICAM.\n"
36 "The valid values are:\n"
44 static char firmware_name
[FIRMWARE_NAME_MAX
];
45 module_param_string(firmware_name
, firmware_name
, sizeof(firmware_name
), 0);
46 MODULE_PARM_DESC(firmware_name
, "Firmware file name. Allows overriding the "
47 "default firmware name\n");
49 static LIST_HEAD(xc2028_list
);
50 static DEFINE_MUTEX(xc2028_list_mutex
);
52 /* struct for storing firmware table */
53 struct firmware_description
{
61 struct firmware_properties
{
66 unsigned int scode_table
;
71 struct list_head xc2028_list
;
72 struct tuner_i2c_props i2c_props
;
73 int (*tuner_callback
) (void *dev
,
74 int command
, int arg
);
79 struct firmware_description
*firm
;
86 struct xc2028_ctrl ctrl
;
88 struct firmware_properties cur_fw
;
93 #define i2c_send(priv, buf, size) ({ \
95 _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \
97 tuner_info("i2c output error: rc = %d (should be %d)\n",\
102 #define i2c_rcv(priv, buf, size) ({ \
104 _rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, size); \
106 tuner_err("i2c input error: rc = %d (should be %d)\n", \
111 #define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \
113 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
116 tuner_err("i2c input error: rc = %d (should be %d)\n", \
121 #define send_seq(priv, data...) ({ \
122 static u8 _val[] = data; \
124 if (sizeof(_val) != \
125 (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \
126 _val, sizeof(_val)))) { \
127 tuner_err("Error on line %d: %d\n", __LINE__, _rc); \
133 static int xc2028_get_reg(struct xc2028_data
*priv
, u16 reg
, u16
*val
)
135 unsigned char buf
[2];
136 unsigned char ibuf
[2];
138 tuner_dbg("%s %04x called\n", __func__
, reg
);
141 buf
[1] = (unsigned char) reg
;
143 if (i2c_send_recv(priv
, buf
, 2, ibuf
, 2) != 2)
146 *val
= (ibuf
[1]) | (ibuf
[0] << 8);
150 #define dump_firm_type(t) dump_firm_type_and_int_freq(t, 0)
151 static void dump_firm_type_and_int_freq(unsigned int type
, u16 int_freq
)
197 if (type
& TOYOTA388
)
198 printk("TOYOTA388 ");
199 if (type
& TOYOTA794
)
200 printk("TOYOTA794 ");
203 if (type
& ZARLINK456
)
204 printk("ZARLINK456 ");
214 printk("HAS_IF_%d ", int_freq
);
217 static v4l2_std_id
parse_audio_std_option(void)
219 if (strcasecmp(audio_std
, "A2") == 0)
221 if (strcasecmp(audio_std
, "A2/A") == 0)
222 return V4L2_STD_A2_A
;
223 if (strcasecmp(audio_std
, "A2/B") == 0)
224 return V4L2_STD_A2_B
;
225 if (strcasecmp(audio_std
, "NICAM") == 0)
226 return V4L2_STD_NICAM
;
227 if (strcasecmp(audio_std
, "NICAM/A") == 0)
228 return V4L2_STD_NICAM_A
;
229 if (strcasecmp(audio_std
, "NICAM/B") == 0)
230 return V4L2_STD_NICAM_B
;
235 static void free_firmware(struct xc2028_data
*priv
)
238 tuner_dbg("%s called\n", __func__
);
243 for (i
= 0; i
< priv
->firm_size
; i
++)
244 kfree(priv
->firm
[i
].ptr
);
251 memset(&priv
->cur_fw
, 0, sizeof(priv
->cur_fw
));
254 static int load_all_firmwares(struct dvb_frontend
*fe
)
256 struct xc2028_data
*priv
= fe
->tuner_priv
;
257 const struct firmware
*fw
= NULL
;
258 unsigned char *p
, *endp
;
264 tuner_dbg("%s called\n", __func__
);
266 if (!firmware_name
[0])
267 fname
= priv
->ctrl
.fname
;
269 fname
= firmware_name
;
271 tuner_dbg("Reading firmware %s\n", fname
);
272 rc
= request_firmware(&fw
, fname
, &priv
->i2c_props
.adap
->dev
);
275 tuner_err("Error: firmware %s not found.\n",
278 tuner_err("Error %d while requesting firmware %s \n",
286 if (fw
->size
< sizeof(name
) - 1 + 2 + 2) {
287 tuner_err("Error: firmware file %s has invalid size!\n",
292 memcpy(name
, p
, sizeof(name
) - 1);
293 name
[sizeof(name
) - 1] = 0;
294 p
+= sizeof(name
) - 1;
296 priv
->firm_version
= le16_to_cpu(*(__u16
*) p
);
299 n_array
= le16_to_cpu(*(__u16
*) p
);
302 tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n",
303 n_array
, fname
, name
,
304 priv
->firm_version
>> 8, priv
->firm_version
& 0xff);
306 priv
->firm
= kzalloc(sizeof(*priv
->firm
) * n_array
, GFP_KERNEL
);
307 if (priv
->firm
== NULL
) {
308 tuner_err("Not enough memory to load firmware file.\n");
312 priv
->firm_size
= n_array
;
322 tuner_err("More firmware images in file than "
327 /* Checks if there's enough bytes to read */
328 if (p
+ sizeof(type
) + sizeof(id
) + sizeof(size
) > endp
) {
329 tuner_err("Firmware header is incomplete!\n");
333 type
= le32_to_cpu(*(__u32
*) p
);
336 id
= le64_to_cpu(*(v4l2_std_id
*) p
);
340 int_freq
= le16_to_cpu(*(__u16
*) p
);
341 p
+= sizeof(int_freq
);
344 size
= le32_to_cpu(*(__u32
*) p
);
347 if ((!size
) || (size
+ p
> endp
)) {
348 tuner_err("Firmware type ");
349 dump_firm_type(type
);
350 printk("(%x), id %llx is corrupted "
351 "(size=%d, expected %d)\n",
352 type
, (unsigned long long)id
,
353 (unsigned)(endp
- p
), size
);
357 priv
->firm
[n
].ptr
= kzalloc(size
, GFP_KERNEL
);
358 if (priv
->firm
[n
].ptr
== NULL
) {
359 tuner_err("Not enough memory to load firmware file.\n");
363 tuner_dbg("Reading firmware type ");
365 dump_firm_type_and_int_freq(type
, int_freq
);
366 printk("(%x), id %llx, size=%d.\n",
367 type
, (unsigned long long)id
, size
);
370 memcpy(priv
->firm
[n
].ptr
, p
, size
);
371 priv
->firm
[n
].type
= type
;
372 priv
->firm
[n
].id
= id
;
373 priv
->firm
[n
].size
= size
;
374 priv
->firm
[n
].int_freq
= int_freq
;
379 if (n
+ 1 != priv
->firm_size
) {
380 tuner_err("Firmware file is incomplete!\n");
388 tuner_err("Error: firmware file is corrupted!\n");
391 tuner_info("Releasing partially loaded firmware file.\n");
395 release_firmware(fw
);
397 tuner_dbg("Firmware files loaded.\n");
402 static int seek_firmware(struct dvb_frontend
*fe
, unsigned int type
,
405 struct xc2028_data
*priv
= fe
->tuner_priv
;
406 int i
, best_i
= -1, best_nr_matches
= 0;
407 unsigned int type_mask
= 0;
409 tuner_dbg("%s called, want type=", __func__
);
411 dump_firm_type(type
);
412 printk("(%x), id %016llx.\n", type
, (unsigned long long)*id
);
416 tuner_err("Error! firmware not loaded\n");
420 if (((type
& ~SCODE
) == 0) && (*id
== 0))
424 type_mask
= BASE_TYPES
;
425 else if (type
& SCODE
) {
427 type_mask
= SCODE_TYPES
& ~HAS_IF
;
428 } else if (type
& DTV_TYPES
)
429 type_mask
= DTV_TYPES
;
430 else if (type
& STD_SPECIFIC_TYPES
)
431 type_mask
= STD_SPECIFIC_TYPES
;
438 /* Seek for exact match */
439 for (i
= 0; i
< priv
->firm_size
; i
++) {
440 if ((type
== (priv
->firm
[i
].type
& type_mask
)) &&
441 (*id
== priv
->firm
[i
].id
))
445 /* Seek for generic video standard match */
446 for (i
= 0; i
< priv
->firm_size
; i
++) {
447 v4l2_std_id match_mask
;
450 if (type
!= (priv
->firm
[i
].type
& type_mask
))
453 match_mask
= *id
& priv
->firm
[i
].id
;
457 if ((*id
& match_mask
) == *id
)
458 goto found
; /* Supports all the requested standards */
460 nr_matches
= hweight64(match_mask
);
461 if (nr_matches
> best_nr_matches
) {
462 best_nr_matches
= nr_matches
;
467 if (best_nr_matches
> 0) {
468 tuner_dbg("Selecting best matching firmware (%d bits) for "
469 "type=", best_nr_matches
);
470 dump_firm_type(type
);
471 printk("(%x), id %016llx:\n", type
, (unsigned long long)*id
);
476 /*FIXME: Would make sense to seek for type "hint" match ? */
482 *id
= priv
->firm
[i
].id
;
485 tuner_dbg("%s firmware for type=", (i
< 0) ? "Can't find" : "Found");
487 dump_firm_type(type
);
488 printk("(%x), id %016llx.\n", type
, (unsigned long long)*id
);
493 static int load_firmware(struct dvb_frontend
*fe
, unsigned int type
,
496 struct xc2028_data
*priv
= fe
->tuner_priv
;
498 unsigned char *p
, *endp
, buf
[priv
->ctrl
.max_len
];
500 tuner_dbg("%s called\n", __func__
);
502 pos
= seek_firmware(fe
, type
, id
);
506 tuner_info("Loading firmware for type=");
507 dump_firm_type(priv
->firm
[pos
].type
);
508 printk("(%x), id %016llx.\n", priv
->firm
[pos
].type
,
509 (unsigned long long)*id
);
511 p
= priv
->firm
[pos
].ptr
;
512 endp
= p
+ priv
->firm
[pos
].size
;
517 /* Checks if there's enough bytes to read */
518 if (p
+ sizeof(size
) > endp
) {
519 tuner_err("Firmware chunk size is wrong\n");
523 size
= le16_to_cpu(*(__u16
*) p
);
530 /* Special callback command received */
531 rc
= priv
->tuner_callback(priv
->video_dev
,
532 XC2028_TUNER_RESET
, 0);
534 tuner_err("Error at RESET code %d\n",
540 if (size
>= 0xff00) {
543 rc
= priv
->tuner_callback(priv
->video_dev
,
544 XC2028_RESET_CLK
, 0);
546 tuner_err("Error at RESET code %d\n",
552 tuner_info("Invalid RESET code %d\n",
560 /* Checks for a sleep command */
562 msleep(size
& 0x7fff);
566 if ((size
+ p
> endp
)) {
567 tuner_err("missing bytes: need %d, have %d\n",
568 size
, (int)(endp
- p
));
576 /* Sends message chunks */
578 int len
= (size
< priv
->ctrl
.max_len
- 1) ?
579 size
: priv
->ctrl
.max_len
- 1;
581 memcpy(buf
+ 1, p
, len
);
583 rc
= i2c_send(priv
, buf
, len
+ 1);
585 tuner_err("%d returned from send\n", rc
);
596 static int load_scode(struct dvb_frontend
*fe
, unsigned int type
,
597 v4l2_std_id
*id
, __u16 int_freq
, int scode
)
599 struct xc2028_data
*priv
= fe
->tuner_priv
;
603 tuner_dbg("%s called\n", __func__
);
606 pos
= seek_firmware(fe
, type
, id
);
610 for (pos
= 0; pos
< priv
->firm_size
; pos
++) {
611 if ((priv
->firm
[pos
].int_freq
== int_freq
) &&
612 (priv
->firm
[pos
].type
& HAS_IF
))
615 if (pos
== priv
->firm_size
)
619 p
= priv
->firm
[pos
].ptr
;
621 if (priv
->firm
[pos
].type
& HAS_IF
) {
622 if (priv
->firm
[pos
].size
!= 12 * 16 || scode
>= 16)
626 /* 16 SCODE entries per file; each SCODE entry is 12 bytes and
627 * has a 2-byte size header in the firmware format. */
628 if (priv
->firm
[pos
].size
!= 14 * 16 || scode
>= 16 ||
629 le16_to_cpu(*(__u16
*)(p
+ 14 * scode
)) != 12)
634 tuner_info("Loading SCODE for type=");
635 dump_firm_type_and_int_freq(priv
->firm
[pos
].type
,
636 priv
->firm
[pos
].int_freq
);
637 printk("(%x), id %016llx.\n", priv
->firm
[pos
].type
,
638 (unsigned long long)*id
);
640 if (priv
->firm_version
< 0x0202)
641 rc
= send_seq(priv
, {0x20, 0x00, 0x00, 0x00});
643 rc
= send_seq(priv
, {0xa0, 0x00, 0x00, 0x00});
647 rc
= i2c_send(priv
, p
, 12);
651 rc
= send_seq(priv
, {0x00, 0x8c});
658 static int check_firmware(struct dvb_frontend
*fe
, unsigned int type
,
659 v4l2_std_id std
, __u16 int_freq
)
661 struct xc2028_data
*priv
= fe
->tuner_priv
;
662 struct firmware_properties new_fw
;
663 int rc
= 0, is_retry
= 0;
664 u16 version
, hwmodel
;
667 tuner_dbg("%s called\n", __func__
);
670 if (!priv
->ctrl
.fname
) {
671 tuner_info("xc2028/3028 firmware name not set!\n");
675 rc
= load_all_firmwares(fe
);
680 if (priv
->ctrl
.mts
&& !(type
& FM
))
686 new_fw
.std_req
= std
;
687 new_fw
.scode_table
= SCODE
| priv
->ctrl
.scode_table
;
689 new_fw
.int_freq
= int_freq
;
691 tuner_dbg("checking firmware, user requested type=");
693 dump_firm_type(new_fw
.type
);
694 printk("(%x), id %016llx, ", new_fw
.type
,
695 (unsigned long long)new_fw
.std_req
);
697 printk("scode_tbl ");
698 dump_firm_type(priv
->ctrl
.scode_table
);
699 printk("(%x), ", priv
->ctrl
.scode_table
);
701 printk("int_freq %d, ", new_fw
.int_freq
);
702 printk("scode_nr %d\n", new_fw
.scode_nr
);
705 /* No need to reload base firmware if it matches */
706 if (((BASE
| new_fw
.type
) & BASE_TYPES
) ==
707 (priv
->cur_fw
.type
& BASE_TYPES
)) {
708 tuner_dbg("BASE firmware not changed.\n");
712 /* Updating BASE - forget about all currently loaded firmware */
713 memset(&priv
->cur_fw
, 0, sizeof(priv
->cur_fw
));
715 /* Reset is needed before loading firmware */
716 rc
= priv
->tuner_callback(priv
->video_dev
,
717 XC2028_TUNER_RESET
, 0);
721 /* BASE firmwares are all std0 */
723 rc
= load_firmware(fe
, BASE
| new_fw
.type
, &std0
);
725 tuner_err("Error %d while loading base firmware\n",
730 /* Load INIT1, if needed */
731 tuner_dbg("Load init1 firmware, if exists\n");
733 rc
= load_firmware(fe
, BASE
| INIT1
| new_fw
.type
, &std0
);
735 rc
= load_firmware(fe
, (BASE
| INIT1
| new_fw
.type
) & ~F8MHZ
,
737 if (rc
< 0 && rc
!= -ENOENT
) {
738 tuner_err("Error %d while loading init1 firmware\n",
745 * No need to reload standard specific firmware if base firmware
746 * was not reloaded and requested video standards have not changed.
748 if (priv
->cur_fw
.type
== (BASE
| new_fw
.type
) &&
749 priv
->cur_fw
.std_req
== std
) {
750 tuner_dbg("Std-specific firmware already loaded.\n");
751 goto skip_std_specific
;
754 /* Reloading std-specific firmware forces a SCODE update */
755 priv
->cur_fw
.scode_table
= 0;
757 rc
= load_firmware(fe
, new_fw
.type
, &new_fw
.id
);
759 rc
= load_firmware(fe
, new_fw
.type
& ~F8MHZ
, &new_fw
.id
);
765 if (priv
->cur_fw
.scode_table
== new_fw
.scode_table
&&
766 priv
->cur_fw
.scode_nr
== new_fw
.scode_nr
) {
767 tuner_dbg("SCODE firmware already loaded.\n");
771 if (new_fw
.type
& FM
)
774 /* Load SCODE firmware, if exists */
775 tuner_dbg("Trying to load scode %d\n", new_fw
.scode_nr
);
777 rc
= load_scode(fe
, new_fw
.type
| new_fw
.scode_table
, &new_fw
.id
,
778 new_fw
.int_freq
, new_fw
.scode_nr
);
781 if (xc2028_get_reg(priv
, 0x0004, &version
) < 0 ||
782 xc2028_get_reg(priv
, 0x0008, &hwmodel
) < 0) {
783 tuner_err("Unable to read tuner registers.\n");
787 tuner_dbg("Device is Xceive %d version %d.%d, "
788 "firmware version %d.%d\n",
789 hwmodel
, (version
& 0xf000) >> 12, (version
& 0xf00) >> 8,
790 (version
& 0xf0) >> 4, version
& 0xf);
792 /* Check firmware version against what we downloaded. */
793 if (priv
->firm_version
!= ((version
& 0xf0) << 4 | (version
& 0x0f))) {
794 tuner_err("Incorrect readback of firmware version.\n");
798 /* Check that the tuner hardware model remains consistent over time. */
799 if (priv
->hwmodel
== 0 && (hwmodel
== 2028 || hwmodel
== 3028)) {
800 priv
->hwmodel
= hwmodel
;
801 priv
->hwvers
= version
& 0xff00;
802 } else if (priv
->hwmodel
== 0 || priv
->hwmodel
!= hwmodel
||
803 priv
->hwvers
!= (version
& 0xff00)) {
804 tuner_err("Read invalid device hardware information - tuner "
809 memcpy(&priv
->cur_fw
, &new_fw
, sizeof(priv
->cur_fw
));
812 * By setting BASE in cur_fw.type only after successfully loading all
814 * 1. Identify that BASE firmware with type=0 has been loaded;
815 * 2. Tell whether BASE firmware was just changed the next time through.
817 priv
->cur_fw
.type
|= BASE
;
822 memset(&priv
->cur_fw
, 0, sizeof(priv
->cur_fw
));
826 tuner_dbg("Retrying firmware load\n");
835 static int xc2028_signal(struct dvb_frontend
*fe
, u16
*strength
)
837 struct xc2028_data
*priv
= fe
->tuner_priv
;
838 u16 frq_lock
, signal
= 0;
841 tuner_dbg("%s called\n", __func__
);
843 mutex_lock(&priv
->lock
);
845 /* Sync Lock Indicator */
846 rc
= xc2028_get_reg(priv
, 0x0002, &frq_lock
);
850 /* Frequency is locked */
854 /* Get SNR of the video signal */
855 rc
= xc2028_get_reg(priv
, 0x0040, &signal
);
859 /* Use both frq_lock and signal to generate the result */
860 signal
= signal
|| ((signal
& 0x07) << 12);
863 mutex_unlock(&priv
->lock
);
867 tuner_dbg("signal strength is %d\n", signal
);
874 static int generic_set_freq(struct dvb_frontend
*fe
, u32 freq
/* in HZ */,
875 enum tuner_mode new_mode
,
880 struct xc2028_data
*priv
= fe
->tuner_priv
;
882 unsigned char buf
[4];
885 tuner_dbg("%s called\n", __func__
);
887 mutex_lock(&priv
->lock
);
889 tuner_dbg("should set frequency %d kHz\n", freq
/ 1000);
891 if (check_firmware(fe
, type
, std
, int_freq
) < 0)
894 /* On some cases xc2028 can disable video output, if
895 * very weak signals are received. By sending a soft
896 * reset, this is re-enabled. So, it is better to always
897 * send a soft reset before changing channels, to be sure
898 * that xc2028 will be in a safe state.
899 * Maybe this might also be needed for DTV.
901 if (new_mode
== T_ANALOG_TV
) {
902 rc
= send_seq(priv
, {0x00, 0x00});
903 } else if (priv
->cur_fw
.type
& ATSC
) {
908 * We must adjust the offset by 500kHz in two cases in order
909 * to correctly center the IF output:
910 * 1) When the ZARLINK456 or DIBCOM52 tables were explicitly
911 * selected and a 7MHz channel is tuned;
912 * 2) When tuning a VHF channel with DTV78 firmware.
914 if (((priv
->cur_fw
.type
& DTV7
) &&
915 (priv
->cur_fw
.scode_table
& (ZARLINK456
| DIBCOM52
))) ||
916 ((priv
->cur_fw
.type
& DTV78
) && freq
< 470000000))
920 div
= (freq
- offset
+ DIV
/ 2) / DIV
;
922 /* CMD= Set frequency */
923 if (priv
->firm_version
< 0x0202)
924 rc
= send_seq(priv
, {0x00, 0x02, 0x00, 0x00});
926 rc
= send_seq(priv
, {0x80, 0x02, 0x00, 0x00});
930 /* Return code shouldn't be checked.
931 The reset CLK is needed only with tm6000.
932 Driver should work fine even if this fails.
934 priv
->tuner_callback(priv
->video_dev
, XC2028_RESET_CLK
, 1);
938 buf
[0] = 0xff & (div
>> 24);
939 buf
[1] = 0xff & (div
>> 16);
940 buf
[2] = 0xff & (div
>> 8);
941 buf
[3] = 0xff & (div
);
943 rc
= i2c_send(priv
, buf
, sizeof(buf
));
948 priv
->frequency
= freq
;
950 tuner_dbg("divisor= %02x %02x %02x %02x (freq=%d.%03d)\n",
951 buf
[0], buf
[1], buf
[2], buf
[3],
952 freq
/ 1000000, (freq
% 1000000) / 1000);
957 mutex_unlock(&priv
->lock
);
962 static int xc2028_set_analog_freq(struct dvb_frontend
*fe
,
963 struct analog_parameters
*p
)
965 struct xc2028_data
*priv
= fe
->tuner_priv
;
968 tuner_dbg("%s called\n", __func__
);
970 if (p
->mode
== V4L2_TUNER_RADIO
) {
972 if (priv
->ctrl
.input1
)
974 return generic_set_freq(fe
, (625l * p
->frequency
) / 10,
975 T_ANALOG_TV
, type
, 0, 0);
978 /* if std is not defined, choose one */
980 p
->std
= V4L2_STD_MN
;
982 /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */
983 if (!(p
->std
& V4L2_STD_MN
))
986 /* Add audio hack to std mask */
987 p
->std
|= parse_audio_std_option();
989 return generic_set_freq(fe
, 62500l * p
->frequency
,
990 T_ANALOG_TV
, type
, p
->std
, 0);
993 static int xc2028_set_params(struct dvb_frontend
*fe
,
994 struct dvb_frontend_parameters
*p
)
996 struct xc2028_data
*priv
= fe
->tuner_priv
;
998 fe_bandwidth_t bw
= BANDWIDTH_8_MHZ
;
1001 tuner_dbg("%s called\n", __func__
);
1003 if (priv
->ctrl
.d2633
)
1008 switch(fe
->ops
.info
.type
) {
1010 bw
= p
->u
.ofdm
.bandwidth
;
1013 tuner_info("WARN: There are some reports that "
1014 "QAM 6 MHz doesn't work.\n"
1015 "If this works for you, please report by "
1016 "e-mail to: v4l-dvb-maintainer@linuxtv.org\n");
1017 bw
= BANDWIDTH_6_MHZ
;
1021 bw
= BANDWIDTH_6_MHZ
;
1022 /* The only ATSC firmware (at least on v2.7) is D2633,
1023 so overrides ctrl->d2633 */
1024 type
|= ATSC
| D2633
;
1027 /* DVB-S is not supported */
1033 case BANDWIDTH_8_MHZ
:
1034 if (p
->frequency
< 470000000)
1035 priv
->ctrl
.vhfbw7
= 0;
1037 priv
->ctrl
.uhfbw8
= 1;
1038 type
|= (priv
->ctrl
.vhfbw7
&& priv
->ctrl
.uhfbw8
) ? DTV78
: DTV8
;
1041 case BANDWIDTH_7_MHZ
:
1042 if (p
->frequency
< 470000000)
1043 priv
->ctrl
.vhfbw7
= 1;
1045 priv
->ctrl
.uhfbw8
= 0;
1046 type
|= (priv
->ctrl
.vhfbw7
&& priv
->ctrl
.uhfbw8
) ? DTV78
: DTV7
;
1049 case BANDWIDTH_6_MHZ
:
1051 priv
->ctrl
.vhfbw7
= 0;
1052 priv
->ctrl
.uhfbw8
= 0;
1055 tuner_err("error: bandwidth not supported.\n");
1058 /* All S-code tables need a 200kHz shift */
1059 if (priv
->ctrl
.demod
)
1060 demod
= priv
->ctrl
.demod
+ 200;
1062 return generic_set_freq(fe
, p
->frequency
,
1063 T_DIGITAL_TV
, type
, 0, demod
);
1067 static int xc2028_dvb_release(struct dvb_frontend
*fe
)
1069 struct xc2028_data
*priv
= fe
->tuner_priv
;
1071 tuner_dbg("%s called\n", __func__
);
1073 mutex_lock(&xc2028_list_mutex
);
1078 list_del(&priv
->xc2028_list
);
1080 kfree(priv
->ctrl
.fname
);
1082 free_firmware(priv
);
1084 fe
->tuner_priv
= NULL
;
1087 mutex_unlock(&xc2028_list_mutex
);
1092 static int xc2028_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
1094 struct xc2028_data
*priv
= fe
->tuner_priv
;
1096 tuner_dbg("%s called\n", __func__
);
1098 *frequency
= priv
->frequency
;
1103 static int xc2028_set_config(struct dvb_frontend
*fe
, void *priv_cfg
)
1105 struct xc2028_data
*priv
= fe
->tuner_priv
;
1106 struct xc2028_ctrl
*p
= priv_cfg
;
1109 tuner_dbg("%s called\n", __func__
);
1111 mutex_lock(&priv
->lock
);
1113 memcpy(&priv
->ctrl
, p
, sizeof(priv
->ctrl
));
1114 if (priv
->ctrl
.max_len
< 9)
1115 priv
->ctrl
.max_len
= 13;
1118 if (priv
->ctrl
.fname
&& strcmp(p
->fname
, priv
->ctrl
.fname
)) {
1119 kfree(priv
->ctrl
.fname
);
1120 free_firmware(priv
);
1123 priv
->ctrl
.fname
= kstrdup(p
->fname
, GFP_KERNEL
);
1124 if (priv
->ctrl
.fname
== NULL
)
1128 mutex_unlock(&priv
->lock
);
1133 static const struct dvb_tuner_ops xc2028_dvb_tuner_ops
= {
1135 .name
= "Xceive XC3028",
1136 .frequency_min
= 42000000,
1137 .frequency_max
= 864000000,
1138 .frequency_step
= 50000,
1141 .set_config
= xc2028_set_config
,
1142 .set_analog_params
= xc2028_set_analog_freq
,
1143 .release
= xc2028_dvb_release
,
1144 .get_frequency
= xc2028_get_frequency
,
1145 .get_rf_strength
= xc2028_signal
,
1146 .set_params
= xc2028_set_params
,
1149 struct dvb_frontend
*xc2028_attach(struct dvb_frontend
*fe
,
1150 struct xc2028_config
*cfg
)
1152 struct xc2028_data
*priv
;
1156 printk(KERN_DEBUG
"xc2028: Xcv2028/3028 init called!\n");
1162 printk(KERN_ERR
"xc2028: No frontend!\n");
1166 video_dev
= cfg
->i2c_adap
->algo_data
;
1169 printk(KERN_DEBUG
"xc2028: video_dev =%p\n", video_dev
);
1171 mutex_lock(&xc2028_list_mutex
);
1173 list_for_each_entry(priv
, &xc2028_list
, xc2028_list
) {
1174 if (&priv
->i2c_props
.adap
->dev
== &cfg
->i2c_adap
->dev
) {
1177 printk(KERN_DEBUG
"xc2028: reusing device\n");
1184 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
1186 mutex_unlock(&xc2028_list_mutex
);
1190 priv
->i2c_props
.addr
= cfg
->i2c_addr
;
1191 priv
->i2c_props
.adap
= cfg
->i2c_adap
;
1192 priv
->i2c_props
.name
= "xc2028";
1194 priv
->video_dev
= video_dev
;
1195 priv
->tuner_callback
= cfg
->callback
;
1196 priv
->ctrl
.max_len
= 13;
1198 mutex_init(&priv
->lock
);
1200 list_add_tail(&priv
->xc2028_list
, &xc2028_list
);
1203 fe
->tuner_priv
= priv
;
1207 printk(KERN_DEBUG
"xc2028: usage count is %i\n", priv
->count
);
1209 memcpy(&fe
->ops
.tuner_ops
, &xc2028_dvb_tuner_ops
,
1210 sizeof(xc2028_dvb_tuner_ops
));
1212 tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner");
1215 xc2028_set_config(fe
, cfg
->ctrl
);
1217 mutex_unlock(&xc2028_list_mutex
);
1222 EXPORT_SYMBOL(xc2028_attach
);
1224 MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver");
1225 MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>");
1226 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
1227 MODULE_LICENSE("GPL");