3 * Copyright (c) 2007 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"
26 #define PREFIX "xc2028"
29 module_param(debug, int, 0644);
30 MODULE_PARM_DESC(debug, "enable verbose debug messages");
32 static char audio_std[8];
33 module_param_string(audio_std, audio_std, sizeof(audio_std), 0);
34 MODULE_PARM_DESC(audio_std,
35 "Audio standard. XC3028 audio decoder explicitly "
36 "needs to know what audio\n"
37 "standard is needed for some video standards with audio A2 or NICAM.\n"
38 "The valid values are:\n"
46 static LIST_HEAD(xc2028_list);
47 static DEFINE_MUTEX(xc2028_list_mutex);
49 /* struct for storing firmware table */
50 struct firmware_description {
57 struct firmware_properties {
61 unsigned int scode_table;
66 struct list_head xc2028_list;
67 struct tuner_i2c_props i2c_props;
68 int (*tuner_callback) (void *dev,
69 int command, int arg);
74 struct firmware_description *firm;
81 struct xc2028_ctrl ctrl;
83 struct firmware_properties cur_fw;
88 #define i2c_send(priv, buf, size) ({ \
90 _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \
92 tuner_info("i2c output error: rc = %d (should be %d)\n",\
97 #define i2c_rcv(priv, buf, size) ({ \
99 _rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, size); \
101 tuner_err("i2c input error: rc = %d (should be %d)\n", \
106 #define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \
108 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
111 tuner_err("i2c input error: rc = %d (should be %d)\n", \
116 #define send_seq(priv, data...) ({ \
117 static u8 _val[] = data; \
119 if (sizeof(_val) != \
120 (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \
121 _val, sizeof(_val)))) { \
122 tuner_err("Error on line %d: %d\n", __LINE__, _rc); \
128 static unsigned int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val)
130 unsigned char buf[2];
131 unsigned char ibuf[2];
133 tuner_dbg("%s %04x called\n", __FUNCTION__, reg);
136 buf[1] = (unsigned char) reg;
138 if (i2c_send_recv(priv, buf, 2, ibuf, 2) != 2)
141 *val = (ibuf[1]) | (ibuf[0] << 8);
145 void dump_firm_type(unsigned int type)
191 if (type & TOYOTA388)
192 printk("TOYOTA388 ");
193 if (type & TOYOTA794)
194 printk("TOYOTA794 ");
197 if (type & ZARLINK456)
198 printk("ZARLINK456 ");
209 static v4l2_std_id parse_audio_std_option(void)
211 if (strcasecmp(audio_std, "A2") == 0)
213 if (strcasecmp(audio_std, "A2/A") == 0)
214 return V4L2_STD_A2_A;
215 if (strcasecmp(audio_std, "A2/B") == 0)
216 return V4L2_STD_A2_B;
217 if (strcasecmp(audio_std, "NICAM") == 0)
218 return V4L2_STD_NICAM;
219 if (strcasecmp(audio_std, "NICAM/A") == 0)
220 return V4L2_STD_NICAM_A;
221 if (strcasecmp(audio_std, "NICAM/B") == 0)
222 return V4L2_STD_NICAM_B;
227 static void free_firmware(struct xc2028_data *priv)
234 for (i = 0; i < priv->firm_size; i++)
235 kfree(priv->firm[i].ptr);
242 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
245 static int load_all_firmwares(struct dvb_frontend *fe)
247 struct xc2028_data *priv = fe->tuner_priv;
248 const struct firmware *fw = NULL;
249 unsigned char *p, *endp;
254 tuner_dbg("%s called\n", __FUNCTION__);
256 tuner_dbg("Reading firmware %s\n", priv->ctrl.fname);
257 rc = request_firmware(&fw, priv->ctrl.fname,
258 &priv->i2c_props.adap->dev);
261 tuner_err("Error: firmware %s not found.\n",
264 tuner_err("Error %d while requesting firmware %s \n",
265 rc, priv->ctrl.fname);
272 if (fw->size < sizeof(name) - 1 + 2 + 2) {
273 tuner_err("Error: firmware file %s has invalid size!\n",
278 memcpy(name, p, sizeof(name) - 1);
279 name[sizeof(name) - 1] = 0;
280 p += sizeof(name) - 1;
282 priv->firm_version = le16_to_cpu(*(__u16 *) p);
285 n_array = le16_to_cpu(*(__u16 *) p);
288 tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n",
289 n_array, priv->ctrl.fname, name,
290 priv->firm_version >> 8, priv->firm_version & 0xff);
292 priv->firm = kzalloc(sizeof(*priv->firm) * n_array, GFP_KERNEL);
293 if (priv->firm == NULL) {
294 tuner_err("Not enough memory to load firmware file.\n");
298 priv->firm_size = n_array;
307 tuner_err("More firmware images in file than "
312 /* Checks if there's enough bytes to read */
313 if (p + sizeof(type) + sizeof(id) + sizeof(size) > endp) {
314 tuner_err("Firmware header is incomplete!\n");
318 type = le32_to_cpu(*(__u32 *) p);
321 id = le64_to_cpu(*(v4l2_std_id *) p);
324 size = le32_to_cpu(*(__u32 *) p);
327 if ((!size) || (size + p > endp)) {
328 tuner_err("Firmware type ");
329 dump_firm_type(type);
330 printk("(%x), id %llx is corrupted "
331 "(size=%d, expected %d)\n",
332 type, (unsigned long long)id,
333 (unsigned)(endp - p), size);
337 priv->firm[n].ptr = kzalloc(size, GFP_KERNEL);
338 if (priv->firm[n].ptr == NULL) {
339 tuner_err("Not enough memory to load firmware file.\n");
343 tuner_dbg("Reading firmware type ");
345 dump_firm_type(type);
346 printk("(%x), id %llx, size=%d.\n",
347 type, (unsigned long long)id, size);
350 memcpy(priv->firm[n].ptr, p, size);
351 priv->firm[n].type = type;
352 priv->firm[n].id = id;
353 priv->firm[n].size = size;
358 if (n + 1 != priv->firm_size) {
359 tuner_err("Firmware file is incomplete!\n");
367 tuner_err("Error: firmware file is corrupted!\n");
370 tuner_info("Releasing partially loaded firmware file.\n");
374 release_firmware(fw);
376 tuner_dbg("Firmware files loaded.\n");
381 static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
384 struct xc2028_data *priv = fe->tuner_priv;
385 int i, best_i = -1, best_nr_matches = 0;
387 tuner_dbg("%s called, want type=", __FUNCTION__);
389 dump_firm_type(type);
390 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
394 tuner_err("Error! firmware not loaded\n");
398 if (((type & ~SCODE) == 0) && (*id == 0))
403 else if (type & SCODE)
405 else if (type & DTV_TYPES)
407 else if (type & STD_SPECIFIC_TYPES)
408 type &= STD_SPECIFIC_TYPES;
410 /* Seek for exact match */
411 for (i = 0; i < priv->firm_size; i++) {
412 if ((type == priv->firm[i].type) && (*id == priv->firm[i].id))
416 /* Seek for generic video standard match */
417 for (i = 0; i < priv->firm_size; i++) {
418 v4l2_std_id match_mask;
421 if (type != priv->firm[i].type)
424 match_mask = *id & priv->firm[i].id;
428 if ((*id & match_mask) == *id)
429 goto found; /* Supports all the requested standards */
431 nr_matches = hweight64(match_mask);
432 if (nr_matches > best_nr_matches) {
433 best_nr_matches = nr_matches;
438 if (best_nr_matches > 0) {
439 tuner_dbg("Selecting best matching firmware (%d bits) for "
440 "type=", best_nr_matches);
441 dump_firm_type(type);
442 printk("(%x), id %016llx:\n", type, (unsigned long long)*id);
447 /*FIXME: Would make sense to seek for type "hint" match ? */
453 *id = priv->firm[i].id;
456 tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found");
458 dump_firm_type(type);
459 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
464 static int load_firmware(struct dvb_frontend *fe, unsigned int type,
467 struct xc2028_data *priv = fe->tuner_priv;
469 unsigned char *p, *endp, buf[priv->ctrl.max_len];
471 tuner_dbg("%s called\n", __FUNCTION__);
473 pos = seek_firmware(fe, type, id);
477 tuner_info("Loading firmware for type=");
478 dump_firm_type(priv->firm[pos].type);
479 printk("(%x), id %016llx.\n", priv->firm[pos].type,
480 (unsigned long long)*id);
482 p = priv->firm[pos].ptr;
483 endp = p + priv->firm[pos].size;
488 /* Checks if there's enough bytes to read */
489 if (p + sizeof(size) > endp) {
490 tuner_err("Firmware chunk size is wrong\n");
494 size = le16_to_cpu(*(__u16 *) p);
501 /* Special callback command received */
502 rc = priv->tuner_callback(priv->video_dev,
503 XC2028_TUNER_RESET, 0);
505 tuner_err("Error at RESET code %d\n",
511 if (size >= 0xff00) {
514 rc = priv->tuner_callback(priv->video_dev,
515 XC2028_RESET_CLK, 0);
517 tuner_err("Error at RESET code %d\n",
523 tuner_info("Invalid RESET code %d\n",
531 /* Checks for a sleep command */
533 msleep(size & 0x7fff);
537 if ((size + p > endp)) {
538 tuner_err("missing bytes: need %d, have %d\n",
539 size, (int)(endp - p));
547 /* Sends message chunks */
549 int len = (size < priv->ctrl.max_len - 1) ?
550 size : priv->ctrl.max_len - 1;
552 memcpy(buf + 1, p, len);
554 rc = i2c_send(priv, buf, len + 1);
556 tuner_err("%d returned from send\n", rc);
567 static int load_scode(struct dvb_frontend *fe, unsigned int type,
568 v4l2_std_id *id, int scode)
570 struct xc2028_data *priv = fe->tuner_priv;
574 tuner_dbg("%s called\n", __FUNCTION__);
576 pos = seek_firmware(fe, type, id);
580 p = priv->firm[pos].ptr;
582 /* 16 SCODE entries per file; each SCODE entry is 12 bytes and
583 * has a 2-byte size header in the firmware format. */
584 if (priv->firm[pos].size != 14 * 16 || scode >= 16 ||
585 le16_to_cpu(*(__u16 *)(p + 14 * scode)) != 12)
588 tuner_info("Loading SCODE for type=");
589 dump_firm_type(priv->firm[pos].type);
590 printk("(%x), id %016llx.\n", priv->firm[pos].type,
591 (unsigned long long)*id);
593 if (priv->firm_version < 0x0202)
594 rc = send_seq(priv, {0x20, 0x00, 0x00, 0x00});
596 rc = send_seq(priv, {0xa0, 0x00, 0x00, 0x00});
600 rc = i2c_send(priv, p + 14 * scode + 2, 12);
604 rc = send_seq(priv, {0x00, 0x8c});
611 static int check_firmware(struct dvb_frontend *fe, unsigned int type,
614 struct xc2028_data *priv = fe->tuner_priv;
615 struct firmware_properties new_fw;
616 int rc = 0, is_retry = 0;
617 u16 version, hwmodel;
620 tuner_dbg("%s called\n", __FUNCTION__);
623 if (!priv->ctrl.fname) {
624 tuner_info("xc2028/3028 firmware name not set!\n");
628 rc = load_all_firmwares(fe);
639 new_fw.std_req = std;
640 new_fw.scode_table = SCODE | priv->ctrl.scode_table;
643 tuner_dbg("checking firmware, user requested type=");
645 dump_firm_type(new_fw.type);
646 printk("(%x), id %016llx, scode_tbl ", new_fw.type,
647 (unsigned long long)new_fw.std_req);
648 dump_firm_type(priv->ctrl.scode_table);
649 printk("(%x), scode_nr %d\n", priv->ctrl.scode_table,
653 /* No need to reload base firmware if it matches */
654 if (((BASE | new_fw.type) & BASE_TYPES) ==
655 (priv->cur_fw.type & BASE_TYPES)) {
656 tuner_dbg("BASE firmware not changed.\n");
660 /* Updating BASE - forget about all currently loaded firmware */
661 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
663 /* Reset is needed before loading firmware */
664 rc = priv->tuner_callback(priv->video_dev,
665 XC2028_TUNER_RESET, 0);
669 /* BASE firmwares are all std0 */
671 rc = load_firmware(fe, BASE | new_fw.type, &std0);
673 tuner_err("Error %d while loading base firmware\n",
678 /* Load INIT1, if needed */
679 tuner_dbg("Load init1 firmware, if exists\n");
681 rc = load_firmware(fe, BASE | INIT1 | new_fw.type, &std0);
683 rc = load_firmware(fe, (BASE | INIT1 | new_fw.type) & ~F8MHZ,
685 if (rc < 0 && rc != -ENOENT) {
686 tuner_err("Error %d while loading init1 firmware\n",
693 * No need to reload standard specific firmware if base firmware
694 * was not reloaded and requested video standards have not changed.
696 if (priv->cur_fw.type == (BASE | new_fw.type) &&
697 priv->cur_fw.std_req == std) {
698 tuner_dbg("Std-specific firmware already loaded.\n");
699 goto skip_std_specific;
702 /* Reloading std-specific firmware forces a SCODE update */
703 priv->cur_fw.scode_table = 0;
705 rc = load_firmware(fe, new_fw.type, &new_fw.id);
707 rc = load_firmware(fe, new_fw.type & ~F8MHZ, &new_fw.id);
713 if (priv->cur_fw.scode_table == new_fw.scode_table &&
714 priv->cur_fw.scode_nr == new_fw.scode_nr) {
715 tuner_dbg("SCODE firmware already loaded.\n");
719 /* Load SCODE firmware, if exists */
720 tuner_dbg("Trying to load scode %d\n", new_fw.scode_nr);
722 rc = load_scode(fe, new_fw.type | new_fw.scode_table,
723 &new_fw.id, new_fw.scode_nr);
726 if (xc2028_get_reg(priv, 0x0004, &version) < 0 ||
727 xc2028_get_reg(priv, 0x0008, &hwmodel) < 0) {
728 tuner_err("Unable to read tuner registers.\n");
732 tuner_info("Device is Xceive %d version %d.%d, "
733 "firmware version %d.%d\n",
734 hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8,
735 (version & 0xf0) >> 4, version & 0xf);
737 /* Check firmware version against what we downloaded. */
738 if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) {
739 tuner_err("Incorrect readback of firmware version.\n");
743 /* Check that the tuner hardware model remains consistent over time. */
744 if (priv->hwmodel == 0 && (hwmodel == 2028 || hwmodel == 3028)) {
745 priv->hwmodel = hwmodel;
746 priv->hwvers = version & 0xff00;
747 } else if (priv->hwmodel == 0 || priv->hwmodel != hwmodel ||
748 priv->hwvers != (version & 0xff00)) {
749 tuner_err("Read invalid device hardware information - tuner "
754 memcpy(&priv->cur_fw, &new_fw, sizeof(priv->cur_fw));
757 * By setting BASE in cur_fw.type only after successfully loading all
759 * 1. Identify that BASE firmware with type=0 has been loaded;
760 * 2. Tell whether BASE firmware was just changed the next time through.
762 priv->cur_fw.type |= BASE;
767 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
771 tuner_dbg("Retrying firmware load\n");
780 static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)
782 struct xc2028_data *priv = fe->tuner_priv;
783 u16 frq_lock, signal = 0;
786 tuner_dbg("%s called\n", __FUNCTION__);
788 mutex_lock(&priv->lock);
790 /* Sync Lock Indicator */
791 rc = xc2028_get_reg(priv, 0x0002, &frq_lock);
792 if (rc < 0 || frq_lock == 0)
795 /* Frequency is locked. Return signal quality */
797 /* Get SNR of the video signal */
798 rc = xc2028_get_reg(priv, 0x0040, &signal);
803 mutex_unlock(&priv->lock);
812 static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */,
813 enum tuner_mode new_mode,
817 struct xc2028_data *priv = fe->tuner_priv;
819 unsigned char buf[4];
822 tuner_dbg("%s called\n", __FUNCTION__);
824 mutex_lock(&priv->lock);
826 tuner_dbg("should set frequency %d kHz\n", freq / 1000);
828 if (check_firmware(fe, type, std) < 0)
831 /* On some cases xc2028 can disable video output, if
832 * very weak signals are received. By sending a soft
833 * reset, this is re-enabled. So, it is better to always
834 * send a soft reset before changing channels, to be sure
835 * that xc2028 will be in a safe state.
836 * Maybe this might also be needed for DTV.
838 if (new_mode == T_ANALOG_TV) {
839 rc = send_seq(priv, {0x00, 0x00});
842 if (priv->cur_fw.type & DTV7)
846 div = (freq - offset + DIV / 2) / DIV;
848 /* CMD= Set frequency */
849 if (priv->firm_version < 0x0202)
850 rc = send_seq(priv, {0x00, 0x02, 0x00, 0x00});
852 rc = send_seq(priv, {0x80, 0x02, 0x00, 0x00});
856 rc = priv->tuner_callback(priv->video_dev, XC2028_RESET_CLK, 1);
862 buf[0] = 0xff & (div >> 24);
863 buf[1] = 0xff & (div >> 16);
864 buf[2] = 0xff & (div >> 8);
865 buf[3] = 0xff & (div);
867 rc = i2c_send(priv, buf, sizeof(buf));
872 priv->frequency = freq;
874 tuner_dbg("divisor= %02x %02x %02x %02x (freq=%d.%03d)\n",
875 buf[0], buf[1], buf[2], buf[3],
876 freq / 1000000, (freq % 1000000) / 1000);
881 mutex_unlock(&priv->lock);
886 static int xc2028_set_analog_freq(struct dvb_frontend *fe,
887 struct analog_parameters *p)
889 struct xc2028_data *priv = fe->tuner_priv;
892 tuner_dbg("%s called\n", __FUNCTION__);
894 if (p->mode == V4L2_TUNER_RADIO) {
896 if (priv->ctrl.input1)
898 return generic_set_freq(fe, (625l * p->frequency) / 10,
899 T_ANALOG_TV, type, 0);
902 /* if std is not defined, choose one */
904 p->std = V4L2_STD_MN;
906 /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */
907 if (!(p->std & V4L2_STD_MN))
910 /* Add audio hack to std mask */
911 p->std |= parse_audio_std_option();
913 return generic_set_freq(fe, 62500l * p->frequency,
914 T_ANALOG_TV, type, p->std);
917 static int xc2028_set_params(struct dvb_frontend *fe,
918 struct dvb_frontend_parameters *p)
920 struct xc2028_data *priv = fe->tuner_priv;
922 fe_bandwidth_t bw = BANDWIDTH_8_MHZ;
924 tuner_dbg("%s called\n", __FUNCTION__);
926 if (priv->ctrl.d2633)
931 switch(fe->ops.info.type) {
935 bw = p->u.ofdm.bandwidth;
938 bw = BANDWIDTH_6_MHZ;
942 bw = BANDWIDTH_6_MHZ;
947 bw = p->u.ofdm.bandwidth;
950 There are two Scodes that will never be selected:
951 DTV78 ZARLINK456, DTV78 DIBCOM52
952 When it should opt for DTV78 instead of DTV7 or DTV8?
955 case BANDWIDTH_8_MHZ:
956 type |= DTV8 | F8MHZ;
958 case BANDWIDTH_7_MHZ:
959 type |= DTV7 | F8MHZ;
961 case BANDWIDTH_6_MHZ:
965 tuner_err("error: bandwidth not supported.\n");
968 return generic_set_freq(fe, p->frequency,
969 T_DIGITAL_TV, type, 0);
972 static int xc2028_sleep(struct dvb_frontend *fe)
974 struct xc2028_data *priv = fe->tuner_priv;
977 tuner_dbg("%s called\n", __FUNCTION__);
979 mutex_lock(&priv->lock);
981 if (priv->firm_version < 0x0202)
982 rc = send_seq(priv, {0x00, 0x08, 0x00, 0x00});
984 rc = send_seq(priv, {0x80, 0x08, 0x00, 0x00});
986 priv->cur_fw.type = 0; /* need firmware reload */
988 mutex_unlock(&priv->lock);
994 static int xc2028_dvb_release(struct dvb_frontend *fe)
996 struct xc2028_data *priv = fe->tuner_priv;
998 tuner_dbg("%s called\n", __FUNCTION__);
1000 mutex_lock(&xc2028_list_mutex);
1005 list_del(&priv->xc2028_list);
1007 kfree(priv->ctrl.fname);
1009 free_firmware(priv);
1011 fe->tuner_priv = NULL;
1014 mutex_unlock(&xc2028_list_mutex);
1019 static int xc2028_get_frequency(struct dvb_frontend *fe, u32 *frequency)
1021 struct xc2028_data *priv = fe->tuner_priv;
1023 tuner_dbg("%s called\n", __FUNCTION__);
1025 *frequency = priv->frequency;
1030 static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg)
1032 struct xc2028_data *priv = fe->tuner_priv;
1033 struct xc2028_ctrl *p = priv_cfg;
1036 tuner_dbg("%s called\n", __FUNCTION__);
1038 mutex_lock(&priv->lock);
1040 kfree(priv->ctrl.fname);
1041 free_firmware(priv);
1043 memcpy(&priv->ctrl, p, sizeof(priv->ctrl));
1044 priv->ctrl.fname = NULL;
1047 priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL);
1048 if (priv->ctrl.fname == NULL)
1052 if (priv->ctrl.max_len < 9)
1053 priv->ctrl.max_len = 13;
1055 mutex_unlock(&priv->lock);
1060 static const struct dvb_tuner_ops xc2028_dvb_tuner_ops = {
1062 .name = "Xceive XC3028",
1063 .frequency_min = 42000000,
1064 .frequency_max = 864000000,
1065 .frequency_step = 50000,
1068 .set_config = xc2028_set_config,
1069 .set_analog_params = xc2028_set_analog_freq,
1070 .release = xc2028_dvb_release,
1071 .get_frequency = xc2028_get_frequency,
1072 .get_rf_strength = xc2028_signal,
1073 .set_params = xc2028_set_params,
1074 .sleep = xc2028_sleep,
1078 void *xc2028_attach(struct dvb_frontend *fe, struct xc2028_config *cfg)
1080 struct xc2028_data *priv;
1084 printk(KERN_DEBUG PREFIX ": Xcv2028/3028 init called!\n");
1086 if (NULL == cfg || NULL == cfg->video_dev)
1090 printk(KERN_ERR PREFIX ": No frontend!\n");
1094 video_dev = cfg->video_dev;
1096 mutex_lock(&xc2028_list_mutex);
1098 list_for_each_entry(priv, &xc2028_list, xc2028_list) {
1099 if (priv->video_dev == cfg->video_dev) {
1106 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1108 mutex_unlock(&xc2028_list_mutex);
1112 priv->i2c_props.addr = cfg->i2c_addr;
1113 priv->i2c_props.adap = cfg->i2c_adap;
1114 priv->video_dev = video_dev;
1115 priv->tuner_callback = cfg->callback;
1116 priv->ctrl.max_len = 13;
1118 mutex_init(&priv->lock);
1120 list_add_tail(&priv->xc2028_list, &xc2028_list);
1123 fe->tuner_priv = priv;
1126 memcpy(&fe->ops.tuner_ops, &xc2028_dvb_tuner_ops,
1127 sizeof(xc2028_dvb_tuner_ops));
1129 tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner");
1132 xc2028_set_config(fe, cfg->ctrl);
1134 mutex_unlock(&xc2028_list_mutex);
1139 EXPORT_SYMBOL(xc2028_attach);
1141 MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver");
1142 MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>");
1143 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
1144 MODULE_LICENSE("GPL");