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 <linux/slab.h>
19 #include <asm/unaligned.h>
20 #include "tuner-i2c.h"
21 #include "tuner-xc2028.h"
22 #include "tuner-xc2028-types.h"
24 #include <linux/dvb/frontend.h>
25 #include "dvb_frontend.h"
29 module_param(debug
, int, 0644);
30 MODULE_PARM_DESC(debug
, "enable verbose debug messages");
32 static int no_poweroff
;
33 module_param(no_poweroff
, int, 0644);
34 MODULE_PARM_DESC(no_poweroff
, "0 (default) powers device off when not used.\n"
35 "1 keep device energized and with tuner ready all the times.\n"
36 " Faster, but consumes more power and keeps the device hotter\n");
38 static char audio_std
[8];
39 module_param_string(audio_std
, audio_std
, sizeof(audio_std
), 0);
40 MODULE_PARM_DESC(audio_std
,
41 "Audio standard. XC3028 audio decoder explicitly "
42 "needs to know what audio\n"
43 "standard is needed for some video standards with audio A2 or NICAM.\n"
44 "The valid values are:\n"
52 static char firmware_name
[30];
53 module_param_string(firmware_name
, firmware_name
, sizeof(firmware_name
), 0);
54 MODULE_PARM_DESC(firmware_name
, "Firmware file name. Allows overriding the "
55 "default firmware name\n");
57 static LIST_HEAD(hybrid_tuner_instance_list
);
58 static DEFINE_MUTEX(xc2028_list_mutex
);
60 /* struct for storing firmware table */
61 struct firmware_description
{
69 struct firmware_properties
{
74 unsigned int scode_table
;
79 struct list_head hybrid_tuner_instance_list
;
80 struct tuner_i2c_props i2c_props
;
83 struct firmware_description
*firm
;
90 struct xc2028_ctrl ctrl
;
92 struct firmware_properties cur_fw
;
97 #define i2c_send(priv, buf, size) ({ \
99 _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \
101 tuner_info("i2c output error: rc = %d (should be %d)\n",\
103 if (priv->ctrl.msleep) \
104 msleep(priv->ctrl.msleep); \
108 #define i2c_rcv(priv, buf, size) ({ \
110 _rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, size); \
112 tuner_err("i2c input error: rc = %d (should be %d)\n", \
117 #define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \
119 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
122 tuner_err("i2c input error: rc = %d (should be %d)\n", \
124 if (priv->ctrl.msleep) \
125 msleep(priv->ctrl.msleep); \
129 #define send_seq(priv, data...) ({ \
130 static u8 _val[] = data; \
132 if (sizeof(_val) != \
133 (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \
134 _val, sizeof(_val)))) { \
135 tuner_err("Error on line %d: %d\n", __LINE__, _rc); \
136 } else if (priv->ctrl.msleep) \
137 msleep(priv->ctrl.msleep); \
141 static int xc2028_get_reg(struct xc2028_data
*priv
, u16 reg
, u16
*val
)
143 unsigned char buf
[2];
144 unsigned char ibuf
[2];
146 tuner_dbg("%s %04x called\n", __func__
, reg
);
149 buf
[1] = (unsigned char) reg
;
151 if (i2c_send_recv(priv
, buf
, 2, ibuf
, 2) != 2)
154 *val
= (ibuf
[1]) | (ibuf
[0] << 8);
158 #define dump_firm_type(t) dump_firm_type_and_int_freq(t, 0)
159 static void dump_firm_type_and_int_freq(unsigned int type
, u16 int_freq
)
205 if (type
& TOYOTA388
)
206 printk("TOYOTA388 ");
207 if (type
& TOYOTA794
)
208 printk("TOYOTA794 ");
211 if (type
& ZARLINK456
)
212 printk("ZARLINK456 ");
222 printk("HAS_IF_%d ", int_freq
);
225 static v4l2_std_id
parse_audio_std_option(void)
227 if (strcasecmp(audio_std
, "A2") == 0)
229 if (strcasecmp(audio_std
, "A2/A") == 0)
230 return V4L2_STD_A2_A
;
231 if (strcasecmp(audio_std
, "A2/B") == 0)
232 return V4L2_STD_A2_B
;
233 if (strcasecmp(audio_std
, "NICAM") == 0)
234 return V4L2_STD_NICAM
;
235 if (strcasecmp(audio_std
, "NICAM/A") == 0)
236 return V4L2_STD_NICAM_A
;
237 if (strcasecmp(audio_std
, "NICAM/B") == 0)
238 return V4L2_STD_NICAM_B
;
243 static void free_firmware(struct xc2028_data
*priv
)
246 tuner_dbg("%s called\n", __func__
);
251 for (i
= 0; i
< priv
->firm_size
; i
++)
252 kfree(priv
->firm
[i
].ptr
);
259 memset(&priv
->cur_fw
, 0, sizeof(priv
->cur_fw
));
262 static int load_all_firmwares(struct dvb_frontend
*fe
)
264 struct xc2028_data
*priv
= fe
->tuner_priv
;
265 const struct firmware
*fw
= NULL
;
266 const unsigned char *p
, *endp
;
272 tuner_dbg("%s called\n", __func__
);
274 if (!firmware_name
[0])
275 fname
= priv
->ctrl
.fname
;
277 fname
= firmware_name
;
279 tuner_dbg("Reading firmware %s\n", fname
);
280 rc
= request_firmware(&fw
, fname
, priv
->i2c_props
.adap
->dev
.parent
);
283 tuner_err("Error: firmware %s not found.\n",
286 tuner_err("Error %d while requesting firmware %s \n",
294 if (fw
->size
< sizeof(name
) - 1 + 2 + 2) {
295 tuner_err("Error: firmware file %s has invalid size!\n",
300 memcpy(name
, p
, sizeof(name
) - 1);
301 name
[sizeof(name
) - 1] = 0;
302 p
+= sizeof(name
) - 1;
304 priv
->firm_version
= get_unaligned_le16(p
);
307 n_array
= get_unaligned_le16(p
);
310 tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n",
311 n_array
, fname
, name
,
312 priv
->firm_version
>> 8, priv
->firm_version
& 0xff);
314 priv
->firm
= kzalloc(sizeof(*priv
->firm
) * n_array
, GFP_KERNEL
);
315 if (priv
->firm
== NULL
) {
316 tuner_err("Not enough memory to load firmware file.\n");
320 priv
->firm_size
= n_array
;
330 tuner_err("More firmware images in file than "
335 /* Checks if there's enough bytes to read */
336 if (endp
- p
< sizeof(type
) + sizeof(id
) + sizeof(size
))
339 type
= get_unaligned_le32(p
);
342 id
= get_unaligned_le64(p
);
346 int_freq
= get_unaligned_le16(p
);
347 p
+= sizeof(int_freq
);
348 if (endp
- p
< sizeof(size
))
352 size
= get_unaligned_le32(p
);
355 if (!size
|| size
> endp
- p
) {
356 tuner_err("Firmware type ");
357 dump_firm_type(type
);
358 printk("(%x), id %llx is corrupted "
359 "(size=%d, expected %d)\n",
360 type
, (unsigned long long)id
,
361 (unsigned)(endp
- p
), size
);
365 priv
->firm
[n
].ptr
= kzalloc(size
, GFP_KERNEL
);
366 if (priv
->firm
[n
].ptr
== NULL
) {
367 tuner_err("Not enough memory to load firmware file.\n");
371 tuner_dbg("Reading firmware type ");
373 dump_firm_type_and_int_freq(type
, int_freq
);
374 printk("(%x), id %llx, size=%d.\n",
375 type
, (unsigned long long)id
, size
);
378 memcpy(priv
->firm
[n
].ptr
, p
, size
);
379 priv
->firm
[n
].type
= type
;
380 priv
->firm
[n
].id
= id
;
381 priv
->firm
[n
].size
= size
;
382 priv
->firm
[n
].int_freq
= int_freq
;
387 if (n
+ 1 != priv
->firm_size
) {
388 tuner_err("Firmware file is incomplete!\n");
395 tuner_err("Firmware header is incomplete!\n");
398 tuner_err("Error: firmware file is corrupted!\n");
401 tuner_info("Releasing partially loaded firmware file.\n");
405 release_firmware(fw
);
407 tuner_dbg("Firmware files loaded.\n");
412 static int seek_firmware(struct dvb_frontend
*fe
, unsigned int type
,
415 struct xc2028_data
*priv
= fe
->tuner_priv
;
416 int i
, best_i
= -1, best_nr_matches
= 0;
417 unsigned int type_mask
= 0;
419 tuner_dbg("%s called, want type=", __func__
);
421 dump_firm_type(type
);
422 printk("(%x), id %016llx.\n", type
, (unsigned long long)*id
);
426 tuner_err("Error! firmware not loaded\n");
430 if (((type
& ~SCODE
) == 0) && (*id
== 0))
434 type_mask
= BASE_TYPES
;
435 else if (type
& SCODE
) {
437 type_mask
= SCODE_TYPES
& ~HAS_IF
;
438 } else if (type
& DTV_TYPES
)
439 type_mask
= DTV_TYPES
;
440 else if (type
& STD_SPECIFIC_TYPES
)
441 type_mask
= STD_SPECIFIC_TYPES
;
448 /* Seek for exact match */
449 for (i
= 0; i
< priv
->firm_size
; i
++) {
450 if ((type
== (priv
->firm
[i
].type
& type_mask
)) &&
451 (*id
== priv
->firm
[i
].id
))
455 /* Seek for generic video standard match */
456 for (i
= 0; i
< priv
->firm_size
; i
++) {
457 v4l2_std_id match_mask
;
460 if (type
!= (priv
->firm
[i
].type
& type_mask
))
463 match_mask
= *id
& priv
->firm
[i
].id
;
467 if ((*id
& match_mask
) == *id
)
468 goto found
; /* Supports all the requested standards */
470 nr_matches
= hweight64(match_mask
);
471 if (nr_matches
> best_nr_matches
) {
472 best_nr_matches
= nr_matches
;
477 if (best_nr_matches
> 0) {
478 tuner_dbg("Selecting best matching firmware (%d bits) for "
479 "type=", best_nr_matches
);
480 dump_firm_type(type
);
481 printk("(%x), id %016llx:\n", type
, (unsigned long long)*id
);
486 /*FIXME: Would make sense to seek for type "hint" match ? */
492 *id
= priv
->firm
[i
].id
;
495 tuner_dbg("%s firmware for type=", (i
< 0) ? "Can't find" : "Found");
497 dump_firm_type(type
);
498 printk("(%x), id %016llx.\n", type
, (unsigned long long)*id
);
503 static inline int do_tuner_callback(struct dvb_frontend
*fe
, int cmd
, int arg
)
505 struct xc2028_data
*priv
= fe
->tuner_priv
;
507 /* analog side (tuner-core) uses i2c_adap->algo_data.
508 * digital side is not guaranteed to have algo_data defined.
510 * digital side will always have fe->dvb defined.
511 * analog side (tuner-core) doesn't (yet) define fe->dvb.
514 return (!fe
->callback
) ? -EINVAL
:
515 fe
->callback(((fe
->dvb
) && (fe
->dvb
->priv
)) ?
516 fe
->dvb
->priv
: priv
->i2c_props
.adap
->algo_data
,
517 DVB_FRONTEND_COMPONENT_TUNER
, cmd
, arg
);
520 static int load_firmware(struct dvb_frontend
*fe
, unsigned int type
,
523 struct xc2028_data
*priv
= fe
->tuner_priv
;
525 unsigned char *p
, *endp
, buf
[priv
->ctrl
.max_len
];
527 tuner_dbg("%s called\n", __func__
);
529 pos
= seek_firmware(fe
, type
, id
);
533 tuner_info("Loading firmware for type=");
534 dump_firm_type(priv
->firm
[pos
].type
);
535 printk("(%x), id %016llx.\n", priv
->firm
[pos
].type
,
536 (unsigned long long)*id
);
538 p
= priv
->firm
[pos
].ptr
;
539 endp
= p
+ priv
->firm
[pos
].size
;
544 /* Checks if there's enough bytes to read */
545 if (p
+ sizeof(size
) > endp
) {
546 tuner_err("Firmware chunk size is wrong\n");
550 size
= le16_to_cpu(*(__u16
*) p
);
557 /* Special callback command received */
558 rc
= do_tuner_callback(fe
, XC2028_TUNER_RESET
, 0);
560 tuner_err("Error at RESET code %d\n",
566 if (size
>= 0xff00) {
569 rc
= do_tuner_callback(fe
, XC2028_RESET_CLK
, 0);
571 tuner_err("Error at RESET code %d\n",
577 tuner_info("Invalid RESET code %d\n",
585 /* Checks for a sleep command */
587 msleep(size
& 0x7fff);
591 if ((size
+ p
> endp
)) {
592 tuner_err("missing bytes: need %d, have %d\n",
593 size
, (int)(endp
- p
));
601 /* Sends message chunks */
603 int len
= (size
< priv
->ctrl
.max_len
- 1) ?
604 size
: priv
->ctrl
.max_len
- 1;
606 memcpy(buf
+ 1, p
, len
);
608 rc
= i2c_send(priv
, buf
, len
+ 1);
610 tuner_err("%d returned from send\n", rc
);
621 static int load_scode(struct dvb_frontend
*fe
, unsigned int type
,
622 v4l2_std_id
*id
, __u16 int_freq
, int scode
)
624 struct xc2028_data
*priv
= fe
->tuner_priv
;
628 tuner_dbg("%s called\n", __func__
);
631 pos
= seek_firmware(fe
, type
, id
);
635 for (pos
= 0; pos
< priv
->firm_size
; pos
++) {
636 if ((priv
->firm
[pos
].int_freq
== int_freq
) &&
637 (priv
->firm
[pos
].type
& HAS_IF
))
640 if (pos
== priv
->firm_size
)
644 p
= priv
->firm
[pos
].ptr
;
646 if (priv
->firm
[pos
].type
& HAS_IF
) {
647 if (priv
->firm
[pos
].size
!= 12 * 16 || scode
>= 16)
651 /* 16 SCODE entries per file; each SCODE entry is 12 bytes and
652 * has a 2-byte size header in the firmware format. */
653 if (priv
->firm
[pos
].size
!= 14 * 16 || scode
>= 16 ||
654 le16_to_cpu(*(__u16
*)(p
+ 14 * scode
)) != 12)
659 tuner_info("Loading SCODE for type=");
660 dump_firm_type_and_int_freq(priv
->firm
[pos
].type
,
661 priv
->firm
[pos
].int_freq
);
662 printk("(%x), id %016llx.\n", priv
->firm
[pos
].type
,
663 (unsigned long long)*id
);
665 if (priv
->firm_version
< 0x0202)
666 rc
= send_seq(priv
, {0x20, 0x00, 0x00, 0x00});
668 rc
= send_seq(priv
, {0xa0, 0x00, 0x00, 0x00});
672 rc
= i2c_send(priv
, p
, 12);
676 rc
= send_seq(priv
, {0x00, 0x8c});
683 static int check_firmware(struct dvb_frontend
*fe
, unsigned int type
,
684 v4l2_std_id std
, __u16 int_freq
)
686 struct xc2028_data
*priv
= fe
->tuner_priv
;
687 struct firmware_properties new_fw
;
688 int rc
= 0, retry_count
= 0;
689 u16 version
, hwmodel
;
692 tuner_dbg("%s called\n", __func__
);
695 if (!priv
->ctrl
.fname
) {
696 tuner_info("xc2028/3028 firmware name not set!\n");
700 rc
= load_all_firmwares(fe
);
705 if (priv
->ctrl
.mts
&& !(type
& FM
))
711 new_fw
.std_req
= std
;
712 new_fw
.scode_table
= SCODE
| priv
->ctrl
.scode_table
;
714 new_fw
.int_freq
= int_freq
;
716 tuner_dbg("checking firmware, user requested type=");
718 dump_firm_type(new_fw
.type
);
719 printk("(%x), id %016llx, ", new_fw
.type
,
720 (unsigned long long)new_fw
.std_req
);
722 printk("scode_tbl ");
723 dump_firm_type(priv
->ctrl
.scode_table
);
724 printk("(%x), ", priv
->ctrl
.scode_table
);
726 printk("int_freq %d, ", new_fw
.int_freq
);
727 printk("scode_nr %d\n", new_fw
.scode_nr
);
730 /* No need to reload base firmware if it matches */
731 if (((BASE
| new_fw
.type
) & BASE_TYPES
) ==
732 (priv
->cur_fw
.type
& BASE_TYPES
)) {
733 tuner_dbg("BASE firmware not changed.\n");
737 /* Updating BASE - forget about all currently loaded firmware */
738 memset(&priv
->cur_fw
, 0, sizeof(priv
->cur_fw
));
740 /* Reset is needed before loading firmware */
741 rc
= do_tuner_callback(fe
, XC2028_TUNER_RESET
, 0);
745 /* BASE firmwares are all std0 */
747 rc
= load_firmware(fe
, BASE
| new_fw
.type
, &std0
);
749 tuner_err("Error %d while loading base firmware\n",
754 /* Load INIT1, if needed */
755 tuner_dbg("Load init1 firmware, if exists\n");
757 rc
= load_firmware(fe
, BASE
| INIT1
| new_fw
.type
, &std0
);
759 rc
= load_firmware(fe
, (BASE
| INIT1
| new_fw
.type
) & ~F8MHZ
,
761 if (rc
< 0 && rc
!= -ENOENT
) {
762 tuner_err("Error %d while loading init1 firmware\n",
769 * No need to reload standard specific firmware if base firmware
770 * was not reloaded and requested video standards have not changed.
772 if (priv
->cur_fw
.type
== (BASE
| new_fw
.type
) &&
773 priv
->cur_fw
.std_req
== std
) {
774 tuner_dbg("Std-specific firmware already loaded.\n");
775 goto skip_std_specific
;
778 /* Reloading std-specific firmware forces a SCODE update */
779 priv
->cur_fw
.scode_table
= 0;
781 rc
= load_firmware(fe
, new_fw
.type
, &new_fw
.id
);
783 rc
= load_firmware(fe
, new_fw
.type
& ~F8MHZ
, &new_fw
.id
);
789 if (priv
->cur_fw
.scode_table
== new_fw
.scode_table
&&
790 priv
->cur_fw
.scode_nr
== new_fw
.scode_nr
) {
791 tuner_dbg("SCODE firmware already loaded.\n");
795 if (new_fw
.type
& FM
)
798 /* Load SCODE firmware, if exists */
799 tuner_dbg("Trying to load scode %d\n", new_fw
.scode_nr
);
801 rc
= load_scode(fe
, new_fw
.type
| new_fw
.scode_table
, &new_fw
.id
,
802 new_fw
.int_freq
, new_fw
.scode_nr
);
805 if (xc2028_get_reg(priv
, 0x0004, &version
) < 0 ||
806 xc2028_get_reg(priv
, 0x0008, &hwmodel
) < 0) {
807 tuner_err("Unable to read tuner registers.\n");
811 tuner_dbg("Device is Xceive %d version %d.%d, "
812 "firmware version %d.%d\n",
813 hwmodel
, (version
& 0xf000) >> 12, (version
& 0xf00) >> 8,
814 (version
& 0xf0) >> 4, version
& 0xf);
817 if (priv
->ctrl
.read_not_reliable
)
818 goto read_not_reliable
;
820 /* Check firmware version against what we downloaded. */
821 if (priv
->firm_version
!= ((version
& 0xf0) << 4 | (version
& 0x0f))) {
822 if (!priv
->ctrl
.read_not_reliable
) {
823 tuner_err("Incorrect readback of firmware version.\n");
826 tuner_err("Returned an incorrect version. However, "
827 "read is not reliable enough. Ignoring it.\n");
832 /* Check that the tuner hardware model remains consistent over time. */
833 if (priv
->hwmodel
== 0 && (hwmodel
== 2028 || hwmodel
== 3028)) {
834 priv
->hwmodel
= hwmodel
;
835 priv
->hwvers
= version
& 0xff00;
836 } else if (priv
->hwmodel
== 0 || priv
->hwmodel
!= hwmodel
||
837 priv
->hwvers
!= (version
& 0xff00)) {
838 tuner_err("Read invalid device hardware information - tuner "
844 memcpy(&priv
->cur_fw
, &new_fw
, sizeof(priv
->cur_fw
));
847 * By setting BASE in cur_fw.type only after successfully loading all
849 * 1. Identify that BASE firmware with type=0 has been loaded;
850 * 2. Tell whether BASE firmware was just changed the next time through.
852 priv
->cur_fw
.type
|= BASE
;
857 memset(&priv
->cur_fw
, 0, sizeof(priv
->cur_fw
));
858 if (retry_count
< 8) {
861 tuner_dbg("Retrying firmware load\n");
870 static int xc2028_signal(struct dvb_frontend
*fe
, u16
*strength
)
872 struct xc2028_data
*priv
= fe
->tuner_priv
;
873 u16 frq_lock
, signal
= 0;
876 tuner_dbg("%s called\n", __func__
);
878 mutex_lock(&priv
->lock
);
880 /* Sync Lock Indicator */
881 rc
= xc2028_get_reg(priv
, 0x0002, &frq_lock
);
885 /* Frequency is locked */
889 /* Get SNR of the video signal */
890 rc
= xc2028_get_reg(priv
, 0x0040, &signal
);
894 /* Use both frq_lock and signal to generate the result */
895 signal
= signal
|| ((signal
& 0x07) << 12);
898 mutex_unlock(&priv
->lock
);
902 tuner_dbg("signal strength is %d\n", signal
);
909 static int generic_set_freq(struct dvb_frontend
*fe
, u32 freq
/* in HZ */,
910 enum v4l2_tuner_type new_type
,
915 struct xc2028_data
*priv
= fe
->tuner_priv
;
917 unsigned char buf
[4];
920 tuner_dbg("%s called\n", __func__
);
922 mutex_lock(&priv
->lock
);
924 tuner_dbg("should set frequency %d kHz\n", freq
/ 1000);
926 if (check_firmware(fe
, type
, std
, int_freq
) < 0)
929 /* On some cases xc2028 can disable video output, if
930 * very weak signals are received. By sending a soft
931 * reset, this is re-enabled. So, it is better to always
932 * send a soft reset before changing channels, to be sure
933 * that xc2028 will be in a safe state.
934 * Maybe this might also be needed for DTV.
936 if (new_type
== V4L2_TUNER_ANALOG_TV
) {
937 rc
= send_seq(priv
, {0x00, 0x00});
939 /* Analog modes require offset = 0 */
942 * Digital modes require an offset to adjust to the
943 * proper frequency. The offset depends on what
944 * firmware version is used.
948 * Adjust to the center frequency. This is calculated by the
949 * formula: offset = 1.25MHz - BW/2
950 * For DTV 7/8, the firmware uses BW = 8000, so it needs a
951 * further adjustment to get the frequency center on VHF
953 if (priv
->cur_fw
.type
& DTV6
)
955 else if (priv
->cur_fw
.type
& DTV7
)
957 else /* DTV8 or DTV78 */
959 if ((priv
->cur_fw
.type
& DTV78
) && freq
< 470000000)
963 * xc3028 additional "magic"
964 * Depending on the firmware version, it needs some adjustments
965 * to properly centralize the frequency. This seems to be
966 * needed to compensate the SCODE table adjustments made by
972 * The proper adjustment would be to do it at s-code table.
973 * However, this didn't work, as reported by
974 * Robert Lowery <rglowery@exemail.com.au>
977 if (priv
->cur_fw
.type
& DTV7
)
982 * Still need tests for XC3028L (firmware 3.2 or upper)
983 * So, for now, let's just comment the per-firmware
984 * version of this change. Reports with xc3028l working
985 * with and without the lines bellow are welcome
988 if (priv
->firm_version
< 0x0302) {
989 if (priv
->cur_fw
.type
& DTV7
)
992 if (priv
->cur_fw
.type
& DTV7
)
994 else if (type
!= ATSC
) /* DVB @6MHz, DTV 8 and DTV 7/8 */
1000 div
= (freq
- offset
+ DIV
/ 2) / DIV
;
1002 /* CMD= Set frequency */
1003 if (priv
->firm_version
< 0x0202)
1004 rc
= send_seq(priv
, {0x00, 0x02, 0x00, 0x00});
1006 rc
= send_seq(priv
, {0x80, 0x02, 0x00, 0x00});
1010 /* Return code shouldn't be checked.
1011 The reset CLK is needed only with tm6000.
1012 Driver should work fine even if this fails.
1014 if (priv
->ctrl
.msleep
)
1015 msleep(priv
->ctrl
.msleep
);
1016 do_tuner_callback(fe
, XC2028_RESET_CLK
, 1);
1020 buf
[0] = 0xff & (div
>> 24);
1021 buf
[1] = 0xff & (div
>> 16);
1022 buf
[2] = 0xff & (div
>> 8);
1023 buf
[3] = 0xff & (div
);
1025 rc
= i2c_send(priv
, buf
, sizeof(buf
));
1030 priv
->frequency
= freq
;
1032 tuner_dbg("divisor= %02x %02x %02x %02x (freq=%d.%03d)\n",
1033 buf
[0], buf
[1], buf
[2], buf
[3],
1034 freq
/ 1000000, (freq
% 1000000) / 1000);
1039 mutex_unlock(&priv
->lock
);
1044 static int xc2028_set_analog_freq(struct dvb_frontend
*fe
,
1045 struct analog_parameters
*p
)
1047 struct xc2028_data
*priv
= fe
->tuner_priv
;
1048 unsigned int type
=0;
1050 tuner_dbg("%s called\n", __func__
);
1052 if (p
->mode
== V4L2_TUNER_RADIO
) {
1054 if (priv
->ctrl
.input1
)
1056 return generic_set_freq(fe
, (625l * p
->frequency
) / 10,
1057 V4L2_TUNER_RADIO
, type
, 0, 0);
1060 /* if std is not defined, choose one */
1062 p
->std
= V4L2_STD_MN
;
1064 /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */
1065 if (!(p
->std
& V4L2_STD_MN
))
1068 /* Add audio hack to std mask */
1069 p
->std
|= parse_audio_std_option();
1071 return generic_set_freq(fe
, 62500l * p
->frequency
,
1072 V4L2_TUNER_ANALOG_TV
, type
, p
->std
, 0);
1075 static int xc2028_set_params(struct dvb_frontend
*fe
,
1076 struct dvb_frontend_parameters
*p
)
1078 struct xc2028_data
*priv
= fe
->tuner_priv
;
1079 unsigned int type
=0;
1080 fe_bandwidth_t bw
= BANDWIDTH_8_MHZ
;
1083 tuner_dbg("%s called\n", __func__
);
1085 switch(fe
->ops
.info
.type
) {
1087 bw
= p
->u
.ofdm
.bandwidth
;
1089 * The only countries with 6MHz seem to be Taiwan/Uruguay.
1090 * Both seem to require QAM firmware for OFDM decoding
1091 * Tested in Taiwan by Terry Wu <terrywu2009@gmail.com>
1093 if (bw
== BANDWIDTH_6_MHZ
)
1097 bw
= BANDWIDTH_6_MHZ
;
1098 /* The only ATSC firmware (at least on v2.7) is D2633 */
1099 type
|= ATSC
| D2633
;
1101 /* DVB-S and pure QAM (FE_QAM) are not supported */
1107 case BANDWIDTH_8_MHZ
:
1108 if (p
->frequency
< 470000000)
1109 priv
->ctrl
.vhfbw7
= 0;
1111 priv
->ctrl
.uhfbw8
= 1;
1112 type
|= (priv
->ctrl
.vhfbw7
&& priv
->ctrl
.uhfbw8
) ? DTV78
: DTV8
;
1115 case BANDWIDTH_7_MHZ
:
1116 if (p
->frequency
< 470000000)
1117 priv
->ctrl
.vhfbw7
= 1;
1119 priv
->ctrl
.uhfbw8
= 0;
1120 type
|= (priv
->ctrl
.vhfbw7
&& priv
->ctrl
.uhfbw8
) ? DTV78
: DTV7
;
1123 case BANDWIDTH_6_MHZ
:
1125 priv
->ctrl
.vhfbw7
= 0;
1126 priv
->ctrl
.uhfbw8
= 0;
1129 tuner_err("error: bandwidth not supported.\n");
1133 Selects between D2633 or D2620 firmware.
1134 It doesn't make sense for ATSC, since it should be D2633 on all cases
1136 if (fe
->ops
.info
.type
!= FE_ATSC
) {
1137 switch (priv
->ctrl
.type
) {
1146 /* Zarlink seems to need D2633 */
1147 if (priv
->ctrl
.demod
== XC3028_FE_ZARLINK456
)
1154 /* All S-code tables need a 200kHz shift */
1155 if (priv
->ctrl
.demod
) {
1156 demod
= priv
->ctrl
.demod
;
1159 * Newer firmwares require a 200 kHz offset only for ATSC
1161 if (type
== ATSC
|| priv
->firm_version
< 0x0302)
1164 * The DTV7 S-code table needs a 700 kHz shift.
1166 * DTV7 is only used in Australia. Germany or Italy may also
1167 * use this firmware after initialization, but a tune to a UHF
1168 * channel should then cause DTV78 to be used.
1170 * Unfortunately, on real-field tests, the s-code offset
1171 * didn't work as expected, as reported by
1172 * Robert Lowery <rglowery@exemail.com.au>
1176 return generic_set_freq(fe
, p
->frequency
,
1177 V4L2_TUNER_DIGITAL_TV
, type
, 0, demod
);
1180 static int xc2028_sleep(struct dvb_frontend
*fe
)
1182 struct xc2028_data
*priv
= fe
->tuner_priv
;
1185 /* Avoid firmware reload on slow devices or if PM disabled */
1186 if (no_poweroff
|| priv
->ctrl
.disable_power_mgmt
)
1189 tuner_dbg("Putting xc2028/3028 into poweroff mode.\n");
1191 tuner_dbg("Printing sleep stack trace:\n");
1195 mutex_lock(&priv
->lock
);
1197 if (priv
->firm_version
< 0x0202)
1198 rc
= send_seq(priv
, {0x00, 0x08, 0x00, 0x00});
1200 rc
= send_seq(priv
, {0x80, 0x08, 0x00, 0x00});
1202 priv
->cur_fw
.type
= 0; /* need firmware reload */
1204 mutex_unlock(&priv
->lock
);
1209 static int xc2028_dvb_release(struct dvb_frontend
*fe
)
1211 struct xc2028_data
*priv
= fe
->tuner_priv
;
1213 tuner_dbg("%s called\n", __func__
);
1215 mutex_lock(&xc2028_list_mutex
);
1217 /* only perform final cleanup if this is the last instance */
1218 if (hybrid_tuner_report_instance_count(priv
) == 1) {
1219 kfree(priv
->ctrl
.fname
);
1220 free_firmware(priv
);
1224 hybrid_tuner_release_state(priv
);
1226 mutex_unlock(&xc2028_list_mutex
);
1228 fe
->tuner_priv
= NULL
;
1233 static int xc2028_get_frequency(struct dvb_frontend
*fe
, u32
*frequency
)
1235 struct xc2028_data
*priv
= fe
->tuner_priv
;
1237 tuner_dbg("%s called\n", __func__
);
1239 *frequency
= priv
->frequency
;
1244 static int xc2028_set_config(struct dvb_frontend
*fe
, void *priv_cfg
)
1246 struct xc2028_data
*priv
= fe
->tuner_priv
;
1247 struct xc2028_ctrl
*p
= priv_cfg
;
1250 tuner_dbg("%s called\n", __func__
);
1252 mutex_lock(&priv
->lock
);
1254 memcpy(&priv
->ctrl
, p
, sizeof(priv
->ctrl
));
1255 if (priv
->ctrl
.max_len
< 9)
1256 priv
->ctrl
.max_len
= 13;
1259 if (priv
->ctrl
.fname
&& strcmp(p
->fname
, priv
->ctrl
.fname
)) {
1260 kfree(priv
->ctrl
.fname
);
1261 free_firmware(priv
);
1264 priv
->ctrl
.fname
= kstrdup(p
->fname
, GFP_KERNEL
);
1265 if (priv
->ctrl
.fname
== NULL
)
1269 mutex_unlock(&priv
->lock
);
1274 static const struct dvb_tuner_ops xc2028_dvb_tuner_ops
= {
1276 .name
= "Xceive XC3028",
1277 .frequency_min
= 42000000,
1278 .frequency_max
= 864000000,
1279 .frequency_step
= 50000,
1282 .set_config
= xc2028_set_config
,
1283 .set_analog_params
= xc2028_set_analog_freq
,
1284 .release
= xc2028_dvb_release
,
1285 .get_frequency
= xc2028_get_frequency
,
1286 .get_rf_strength
= xc2028_signal
,
1287 .set_params
= xc2028_set_params
,
1288 .sleep
= xc2028_sleep
,
1291 struct dvb_frontend
*xc2028_attach(struct dvb_frontend
*fe
,
1292 struct xc2028_config
*cfg
)
1294 struct xc2028_data
*priv
;
1298 printk(KERN_DEBUG
"xc2028: Xcv2028/3028 init called!\n");
1304 printk(KERN_ERR
"xc2028: No frontend!\n");
1308 mutex_lock(&xc2028_list_mutex
);
1310 instance
= hybrid_tuner_request_state(struct xc2028_data
, priv
,
1311 hybrid_tuner_instance_list
,
1312 cfg
->i2c_adap
, cfg
->i2c_addr
,
1316 /* memory allocation failure */
1320 /* new tuner instance */
1321 priv
->ctrl
.max_len
= 13;
1323 mutex_init(&priv
->lock
);
1325 fe
->tuner_priv
= priv
;
1328 /* existing tuner instance */
1329 fe
->tuner_priv
= priv
;
1333 memcpy(&fe
->ops
.tuner_ops
, &xc2028_dvb_tuner_ops
,
1334 sizeof(xc2028_dvb_tuner_ops
));
1336 tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner");
1339 xc2028_set_config(fe
, cfg
->ctrl
);
1341 mutex_unlock(&xc2028_list_mutex
);
1345 mutex_unlock(&xc2028_list_mutex
);
1347 xc2028_dvb_release(fe
);
1351 EXPORT_SYMBOL(xc2028_attach
);
1353 MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver");
1354 MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>");
1355 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
1356 MODULE_LICENSE("GPL");