blob: 4be5cf808a40584d949e89fa78e7a90c086a31f5 [file] [log] [blame]
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001/* tuner-xc2028
2 *
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -03003 * Copyright (c) 2007-2008 Mauro Carvalho Chehab (mchehab@infradead.org)
Mauro Carvalho Chehab983d2142007-10-29 23:44:18 -03004 *
Michel Ludwig701672e2007-07-18 10:29:10 -03005 * Copyright (c) 2007 Michel Ludwig (michel.ludwig@gmail.com)
6 * - frontend interface
Mauro Carvalho Chehab983d2142007-10-29 23:44:18 -03007 *
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03008 * This code is placed under the terms of the GNU General Public License v2
9 */
10
11#include <linux/i2c.h>
12#include <asm/div64.h>
13#include <linux/firmware.h>
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -030014#include <linux/videodev2.h>
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030015#include <linux/delay.h>
Michel Ludwig701672e2007-07-18 10:29:10 -030016#include <media/tuner.h>
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -030017#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Al Viro84a9f332008-06-22 14:19:29 -030019#include <asm/unaligned.h>
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030020#include "tuner-i2c.h"
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030021#include "tuner-xc2028.h"
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030022#include "tuner-xc2028-types.h"
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030023
Michel Ludwig701672e2007-07-18 10:29:10 -030024#include <linux/dvb/frontend.h>
25#include "dvb_frontend.h"
26
Mauro Carvalho Chehab56ac0332013-11-02 06:13:11 -030027/* Max transfer size done by I2C transfer functions */
28#define MAX_XFER_SIZE 80
29
Miroslav Slugen304bce42011-12-11 20:19:34 -030030/* Registers (Write-only) */
31#define XREG_INIT 0x00
32#define XREG_RF_FREQ 0x02
33#define XREG_POWER_DOWN 0x08
34
35/* Registers (Read-only) */
36#define XREG_FREQ_ERROR 0x01
37#define XREG_LOCK 0x02
38#define XREG_VERSION 0x04
39#define XREG_PRODUCT_ID 0x08
40#define XREG_HSYNC_FREQ 0x10
41#define XREG_FRAME_LINES 0x20
42#define XREG_SNR 0x40
43
44#define XREG_ADC_ENV 0x0100
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -030045
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -030046static int debug;
47module_param(debug, int, 0644);
48MODULE_PARM_DESC(debug, "enable verbose debug messages");
49
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -030050static int no_poweroff;
51module_param(no_poweroff, int, 0644);
Devin Heitmueller49008772009-04-28 16:22:47 -030052MODULE_PARM_DESC(no_poweroff, "0 (default) powers device off when not used.\n"
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -030053 "1 keep device energized and with tuner ready all the times.\n"
54 " Faster, but consumes more power and keeps the device hotter\n");
55
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -030056static char audio_std[8];
57module_param_string(audio_std, audio_std, sizeof(audio_std), 0);
58MODULE_PARM_DESC(audio_std,
59 "Audio standard. XC3028 audio decoder explicitly "
60 "needs to know what audio\n"
61 "standard is needed for some video standards with audio A2 or NICAM.\n"
62 "The valid values are:\n"
63 "A2\n"
64 "A2/A\n"
65 "A2/B\n"
66 "NICAM\n"
67 "NICAM/A\n"
68 "NICAM/B\n");
69
Samuel Ortiz4327b772009-05-27 00:49:33 +020070static char firmware_name[30];
Mauro Carvalho Chehab5c913c02008-04-22 14:46:24 -030071module_param_string(firmware_name, firmware_name, sizeof(firmware_name), 0);
72MODULE_PARM_DESC(firmware_name, "Firmware file name. Allows overriding the "
73 "default firmware name\n");
74
Michael Krufkyc663d032008-04-18 21:22:50 -030075static LIST_HEAD(hybrid_tuner_instance_list);
Chris Pascoeaa501be2007-11-19 04:45:38 -030076static DEFINE_MUTEX(xc2028_list_mutex);
77
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030078/* struct for storing firmware table */
79struct firmware_description {
80 unsigned int type;
81 v4l2_std_id id;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -030082 __u16 int_freq;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030083 unsigned char *ptr;
84 unsigned int size;
85};
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030086
Chris Pascoee0f0b372007-11-19 11:22:03 -030087struct firmware_properties {
88 unsigned int type;
89 v4l2_std_id id;
90 v4l2_std_id std_req;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -030091 __u16 int_freq;
Chris Pascoee0f0b372007-11-19 11:22:03 -030092 unsigned int scode_table;
93 int scode_nr;
94};
95
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -030096enum xc2028_state {
97 XC2028_NO_FIRMWARE = 0,
98 XC2028_WAITING_FIRMWARE,
99 XC2028_ACTIVE,
100 XC2028_SLEEP,
101 XC2028_NODEV,
102};
103
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300104struct xc2028_data {
Michael Krufkyc663d032008-04-18 21:22:50 -0300105 struct list_head hybrid_tuner_instance_list;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300106 struct tuner_i2c_props i2c_props;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300107 __u32 frequency;
108
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300109 enum xc2028_state state;
110 const char *fname;
111
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300112 struct firmware_description *firm;
113 int firm_size;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300114 __u16 firm_version;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300115
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300116 __u16 hwmodel;
117 __u16 hwvers;
118
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300119 struct xc2028_ctrl ctrl;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300120
Chris Pascoee0f0b372007-11-19 11:22:03 -0300121 struct firmware_properties cur_fw;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300122
123 struct mutex lock;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300124};
125
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300126#define i2c_send(priv, buf, size) ({ \
127 int _rc; \
128 _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \
129 if (size != _rc) \
130 tuner_info("i2c output error: rc = %d (should be %d)\n",\
131 _rc, (int)size); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300132 if (priv->ctrl.msleep) \
133 msleep(priv->ctrl.msleep); \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300134 _rc; \
135})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300136
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300137#define i2c_rcv(priv, buf, size) ({ \
138 int _rc; \
139 _rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, size); \
140 if (size != _rc) \
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300141 tuner_err("i2c input error: rc = %d (should be %d)\n", \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300142 _rc, (int)size); \
143 _rc; \
144})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300145
Chris Pascoe7d58d112007-11-19 04:31:58 -0300146#define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \
147 int _rc; \
148 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
149 ibuf, isize); \
150 if (isize != _rc) \
151 tuner_err("i2c input error: rc = %d (should be %d)\n", \
152 _rc, (int)isize); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300153 if (priv->ctrl.msleep) \
154 msleep(priv->ctrl.msleep); \
Chris Pascoe7d58d112007-11-19 04:31:58 -0300155 _rc; \
156})
157
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300158#define send_seq(priv, data...) ({ \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300159 static u8 _val[] = data; \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300160 int _rc; \
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300161 if (sizeof(_val) != \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300162 (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300163 _val, sizeof(_val)))) { \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300164 tuner_err("Error on line %d: %d\n", __LINE__, _rc); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300165 } else if (priv->ctrl.msleep) \
Mauro Carvalho Chehabe5cc2bf2008-01-08 11:26:59 -0300166 msleep(priv->ctrl.msleep); \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300167 _rc; \
168})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300169
Devin Heitmueller83244022008-04-17 21:41:16 -0300170static int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300171{
Mauro Carvalho Chehabb873e1a2007-11-05 08:41:50 -0300172 unsigned char buf[2];
Chris Pascoe7d58d112007-11-19 04:31:58 -0300173 unsigned char ibuf[2];
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300174
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300175 tuner_dbg("%s %04x called\n", __func__, reg);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300176
Chris Pascoe7d58d112007-11-19 04:31:58 -0300177 buf[0] = reg >> 8;
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300178 buf[1] = (unsigned char) reg;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300179
Chris Pascoe7d58d112007-11-19 04:31:58 -0300180 if (i2c_send_recv(priv, buf, 2, ibuf, 2) != 2)
181 return -EIO;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300182
Chris Pascoe7d58d112007-11-19 04:31:58 -0300183 *val = (ibuf[1]) | (ibuf[0] << 8);
184 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300185}
186
Chris Pascoee0262682007-12-02 06:30:50 -0300187#define dump_firm_type(t) dump_firm_type_and_int_freq(t, 0)
Adrian Bunk29bec0b2008-04-22 14:41:45 -0300188static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq)
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300189{
190 if (type & BASE)
191 printk("BASE ");
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300192 if (type & INIT1)
193 printk("INIT1 ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300194 if (type & F8MHZ)
195 printk("F8MHZ ");
196 if (type & MTS)
197 printk("MTS ");
198 if (type & D2620)
199 printk("D2620 ");
200 if (type & D2633)
201 printk("D2633 ");
202 if (type & DTV6)
203 printk("DTV6 ");
204 if (type & QAM)
205 printk("QAM ");
206 if (type & DTV7)
207 printk("DTV7 ");
208 if (type & DTV78)
209 printk("DTV78 ");
210 if (type & DTV8)
211 printk("DTV8 ");
212 if (type & FM)
213 printk("FM ");
214 if (type & INPUT1)
215 printk("INPUT1 ");
216 if (type & LCD)
217 printk("LCD ");
218 if (type & NOGD)
219 printk("NOGD ");
220 if (type & MONO)
221 printk("MONO ");
222 if (type & ATSC)
223 printk("ATSC ");
224 if (type & IF)
225 printk("IF ");
226 if (type & LG60)
227 printk("LG60 ");
228 if (type & ATI638)
229 printk("ATI638 ");
230 if (type & OREN538)
231 printk("OREN538 ");
232 if (type & OREN36)
233 printk("OREN36 ");
234 if (type & TOYOTA388)
235 printk("TOYOTA388 ");
236 if (type & TOYOTA794)
237 printk("TOYOTA794 ");
238 if (type & DIBCOM52)
239 printk("DIBCOM52 ");
240 if (type & ZARLINK456)
241 printk("ZARLINK456 ");
242 if (type & CHINA)
243 printk("CHINA ");
244 if (type & F6MHZ)
245 printk("F6MHZ ");
246 if (type & INPUT2)
247 printk("INPUT2 ");
248 if (type & SCODE)
249 printk("SCODE ");
Chris Pascoee0262682007-12-02 06:30:50 -0300250 if (type & HAS_IF)
251 printk("HAS_IF_%d ", int_freq);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300252}
253
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300254static v4l2_std_id parse_audio_std_option(void)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300255{
Chris Pascoee155d902007-11-19 04:16:47 -0300256 if (strcasecmp(audio_std, "A2") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300257 return V4L2_STD_A2;
Chris Pascoee155d902007-11-19 04:16:47 -0300258 if (strcasecmp(audio_std, "A2/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300259 return V4L2_STD_A2_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300260 if (strcasecmp(audio_std, "A2/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300261 return V4L2_STD_A2_B;
Chris Pascoee155d902007-11-19 04:16:47 -0300262 if (strcasecmp(audio_std, "NICAM") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300263 return V4L2_STD_NICAM;
Chris Pascoee155d902007-11-19 04:16:47 -0300264 if (strcasecmp(audio_std, "NICAM/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300265 return V4L2_STD_NICAM_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300266 if (strcasecmp(audio_std, "NICAM/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300267 return V4L2_STD_NICAM_B;
268
269 return 0;
270}
271
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300272static int check_device_status(struct xc2028_data *priv)
273{
274 switch (priv->state) {
275 case XC2028_NO_FIRMWARE:
276 case XC2028_WAITING_FIRMWARE:
277 return -EAGAIN;
278 case XC2028_ACTIVE:
279 case XC2028_SLEEP:
280 return 0;
281 case XC2028_NODEV:
282 return -ENODEV;
283 }
284 return 0;
285}
286
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300287static void free_firmware(struct xc2028_data *priv)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300288{
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300289 int i;
Mauro Carvalho Chehab92b75ab2008-04-17 21:40:53 -0300290 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300291
292 if (!priv->firm)
293 return;
294
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300295 for (i = 0; i < priv->firm_size; i++)
296 kfree(priv->firm[i].ptr);
297
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300298 kfree(priv->firm);
299
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300300 priv->firm = NULL;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300301 priv->firm_size = 0;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300302 priv->state = XC2028_NO_FIRMWARE;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300303
304 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300305}
306
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300307static int load_all_firmwares(struct dvb_frontend *fe,
308 const struct firmware *fw)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300309{
310 struct xc2028_data *priv = fe->tuner_priv;
David Woodhousec63e87e2008-05-24 00:13:34 +0100311 const unsigned char *p, *endp;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300312 int rc = 0;
313 int n, n_array;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300314 char name[33];
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300315
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300316 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300317
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300318 p = fw->data;
319 endp = p + fw->size;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300320
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300321 if (fw->size < sizeof(name) - 1 + 2 + 2) {
322 tuner_err("Error: firmware file %s has invalid size!\n",
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300323 priv->fname);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300324 goto corrupt;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300325 }
326
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300327 memcpy(name, p, sizeof(name) - 1);
328 name[sizeof(name) - 1] = 0;
329 p += sizeof(name) - 1;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300330
Al Viro84a9f332008-06-22 14:19:29 -0300331 priv->firm_version = get_unaligned_le16(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300332 p += 2;
333
Al Viro84a9f332008-06-22 14:19:29 -0300334 n_array = get_unaligned_le16(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300335 p += 2;
336
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300337 tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n",
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300338 n_array, priv->fname, name,
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300339 priv->firm_version >> 8, priv->firm_version & 0xff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300340
Thomas Meyer1b7acf02011-11-29 17:08:00 -0300341 priv->firm = kcalloc(n_array, sizeof(*priv->firm), GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300342 if (priv->firm == NULL) {
343 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300344 rc = -ENOMEM;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300345 goto err;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300346 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300347 priv->firm_size = n_array;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300348
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300349 n = -1;
350 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300351 __u32 type, size;
352 v4l2_std_id id;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300353 __u16 int_freq = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300354
355 n++;
356 if (n >= n_array) {
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300357 tuner_err("More firmware images in file than "
358 "were expected!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300359 goto corrupt;
360 }
361
362 /* Checks if there's enough bytes to read */
Al Viro84a9f332008-06-22 14:19:29 -0300363 if (endp - p < sizeof(type) + sizeof(id) + sizeof(size))
364 goto header;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300365
Al Viro84a9f332008-06-22 14:19:29 -0300366 type = get_unaligned_le32(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300367 p += sizeof(type);
368
Al Viro84a9f332008-06-22 14:19:29 -0300369 id = get_unaligned_le64(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300370 p += sizeof(id);
371
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300372 if (type & HAS_IF) {
Al Viro84a9f332008-06-22 14:19:29 -0300373 int_freq = get_unaligned_le16(p);
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300374 p += sizeof(int_freq);
Al Viro84a9f332008-06-22 14:19:29 -0300375 if (endp - p < sizeof(size))
376 goto header;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300377 }
378
Al Viro84a9f332008-06-22 14:19:29 -0300379 size = get_unaligned_le32(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300380 p += sizeof(size);
381
Al Viro84a9f332008-06-22 14:19:29 -0300382 if (!size || size > endp - p) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300383 tuner_err("Firmware type ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300384 dump_firm_type(type);
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300385 printk("(%x), id %llx is corrupted "
386 "(size=%d, expected %d)\n",
Chris Pascoe91240dd2007-11-19 04:38:53 -0300387 type, (unsigned long long)id,
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300388 (unsigned)(endp - p), size);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300389 goto corrupt;
390 }
391
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300392 priv->firm[n].ptr = kzalloc(size, GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300393 if (priv->firm[n].ptr == NULL) {
394 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300395 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300396 goto err;
397 }
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300398 tuner_dbg("Reading firmware type ");
399 if (debug) {
Chris Pascoee0262682007-12-02 06:30:50 -0300400 dump_firm_type_and_int_freq(type, int_freq);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300401 printk("(%x), id %llx, size=%d.\n",
Chris Pascoee0262682007-12-02 06:30:50 -0300402 type, (unsigned long long)id, size);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300403 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300404
405 memcpy(priv->firm[n].ptr, p, size);
406 priv->firm[n].type = type;
407 priv->firm[n].id = id;
408 priv->firm[n].size = size;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300409 priv->firm[n].int_freq = int_freq;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300410
411 p += size;
412 }
413
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300414 if (n + 1 != priv->firm_size) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300415 tuner_err("Firmware file is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300416 goto corrupt;
417 }
418
419 goto done;
420
Al Viro84a9f332008-06-22 14:19:29 -0300421header:
422 tuner_err("Firmware header is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300423corrupt:
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300424 rc = -EINVAL;
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300425 tuner_err("Error: firmware file is corrupted!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300426
427err:
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300428 tuner_info("Releasing partially loaded firmware file.\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300429 free_firmware(priv);
430
431done:
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300432 if (rc == 0)
433 tuner_dbg("Firmware files loaded.\n");
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300434 else
435 priv->state = XC2028_NODEV;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300436
437 return rc;
438}
439
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300440static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
441 v4l2_std_id *id)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300442{
443 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoeb1535292007-11-19 10:04:06 -0300444 int i, best_i = -1, best_nr_matches = 0;
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300445 unsigned int type_mask = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300446
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300447 tuner_dbg("%s called, want type=", __func__);
Chris Pascoeb1535292007-11-19 10:04:06 -0300448 if (debug) {
449 dump_firm_type(type);
450 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
451 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300452
453 if (!priv->firm) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300454 tuner_err("Error! firmware not loaded\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300455 return -EINVAL;
456 }
457
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300458 if (((type & ~SCODE) == 0) && (*id == 0))
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300459 *id = V4L2_STD_PAL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300460
Chris Pascoee0f0b372007-11-19 11:22:03 -0300461 if (type & BASE)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300462 type_mask = BASE_TYPES;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300463 else if (type & SCODE) {
Chris Pascoee0f0b372007-11-19 11:22:03 -0300464 type &= SCODE_TYPES;
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300465 type_mask = SCODE_TYPES & ~HAS_IF;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300466 } else if (type & DTV_TYPES)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300467 type_mask = DTV_TYPES;
Chris Pascoe11a9eff2007-11-19 23:18:36 -0300468 else if (type & STD_SPECIFIC_TYPES)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300469 type_mask = STD_SPECIFIC_TYPES;
470
471 type &= type_mask;
472
Harvey Harrison8367fe22008-04-25 01:28:10 -0300473 if (!(type & SCODE))
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300474 type_mask = ~0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300475
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300476 /* Seek for exact match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300477 for (i = 0; i < priv->firm_size; i++) {
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300478 if ((type == (priv->firm[i].type & type_mask)) &&
Chris Pascoeef207fe2007-12-02 09:30:55 -0300479 (*id == priv->firm[i].id))
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300480 goto found;
481 }
482
483 /* Seek for generic video standard match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300484 for (i = 0; i < priv->firm_size; i++) {
Chris Pascoeb1535292007-11-19 10:04:06 -0300485 v4l2_std_id match_mask;
486 int nr_matches;
487
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300488 if (type != (priv->firm[i].type & type_mask))
Chris Pascoeb1535292007-11-19 10:04:06 -0300489 continue;
490
491 match_mask = *id & priv->firm[i].id;
492 if (!match_mask)
493 continue;
494
495 if ((*id & match_mask) == *id)
496 goto found; /* Supports all the requested standards */
497
498 nr_matches = hweight64(match_mask);
499 if (nr_matches > best_nr_matches) {
500 best_nr_matches = nr_matches;
501 best_i = i;
502 }
503 }
504
505 if (best_nr_matches > 0) {
506 tuner_dbg("Selecting best matching firmware (%d bits) for "
507 "type=", best_nr_matches);
508 dump_firm_type(type);
509 printk("(%x), id %016llx:\n", type, (unsigned long long)*id);
510 i = best_i;
511 goto found;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300512 }
513
514 /*FIXME: Would make sense to seek for type "hint" match ? */
515
Chris Pascoeb1535292007-11-19 10:04:06 -0300516 i = -ENOENT;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300517 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300518
519found:
520 *id = priv->firm[i].id;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300521
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300522ret:
Chris Pascoeb1535292007-11-19 10:04:06 -0300523 tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found");
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300524 if (debug) {
525 dump_firm_type(type);
Chris Pascoe91240dd2007-11-19 04:38:53 -0300526 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300527 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300528 return i;
529}
530
Michael Krufkyd7cba042008-09-12 13:31:45 -0300531static inline int do_tuner_callback(struct dvb_frontend *fe, int cmd, int arg)
532{
533 struct xc2028_data *priv = fe->tuner_priv;
534
535 /* analog side (tuner-core) uses i2c_adap->algo_data.
536 * digital side is not guaranteed to have algo_data defined.
537 *
538 * digital side will always have fe->dvb defined.
539 * analog side (tuner-core) doesn't (yet) define fe->dvb.
540 */
541
542 return (!fe->callback) ? -EINVAL :
543 fe->callback(((fe->dvb) && (fe->dvb->priv)) ?
544 fe->dvb->priv : priv->i2c_props.adap->algo_data,
545 DVB_FRONTEND_COMPONENT_TUNER, cmd, arg);
546}
547
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300548static int load_firmware(struct dvb_frontend *fe, unsigned int type,
549 v4l2_std_id *id)
550{
551 struct xc2028_data *priv = fe->tuner_priv;
552 int pos, rc;
Mauro Carvalho Chehab56ac0332013-11-02 06:13:11 -0300553 unsigned char *p, *endp, buf[MAX_XFER_SIZE];
554
555 if (priv->ctrl.max_len > sizeof(buf))
556 priv->ctrl.max_len = sizeof(buf);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300557
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300558 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300559
560 pos = seek_firmware(fe, type, id);
561 if (pos < 0)
562 return pos;
563
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300564 tuner_info("Loading firmware for type=");
Chris Pascoeb1535292007-11-19 10:04:06 -0300565 dump_firm_type(priv->firm[pos].type);
566 printk("(%x), id %016llx.\n", priv->firm[pos].type,
567 (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300568
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300569 p = priv->firm[pos].ptr;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300570 endp = p + priv->firm[pos].size;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300571
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300572 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300573 __u16 size;
574
575 /* Checks if there's enough bytes to read */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300576 if (p + sizeof(size) > endp) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300577 tuner_err("Firmware chunk size is wrong\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300578 return -EINVAL;
579 }
580
Hans Verkuil84eeb0b2013-10-04 11:01:42 -0300581 size = le16_to_cpu(*(__le16 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300582 p += sizeof(size);
583
584 if (size == 0xffff)
585 return 0;
586
587 if (!size) {
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300588 /* Special callback command received */
Michael Krufkyd7cba042008-09-12 13:31:45 -0300589 rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300590 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300591 tuner_err("Error at RESET code %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300592 (*p) & 0x7f);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300593 return -EINVAL;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300594 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300595 continue;
596 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300597 if (size >= 0xff00) {
598 switch (size) {
599 case 0xff00:
Michael Krufkyd7cba042008-09-12 13:31:45 -0300600 rc = do_tuner_callback(fe, XC2028_RESET_CLK, 0);
Michel Ludwig5403bba2007-11-16 07:49:49 -0300601 if (rc < 0) {
602 tuner_err("Error at RESET code %d\n",
603 (*p) & 0x7f);
604 return -EINVAL;
605 }
Chris Pascoeb32f9fb2007-11-19 04:53:50 -0300606 break;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300607 default:
608 tuner_info("Invalid RESET code %d\n",
609 size & 0x7f);
610 return -EINVAL;
611
612 }
Mauro Carvalho Chehab2d4c0ac2007-11-16 09:43:19 -0300613 continue;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300614 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300615
616 /* Checks for a sleep command */
617 if (size & 0x8000) {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300618 msleep(size & 0x7fff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300619 continue;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300620 }
621
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300622 if ((size + p > endp)) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300623 tuner_err("missing bytes: need %d, have %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300624 size, (int)(endp - p));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300625 return -EINVAL;
626 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300627
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300628 buf[0] = *p;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300629 p++;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300630 size--;
631
632 /* Sends message chunks */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300633 while (size > 0) {
Chris Pascoe0a196b62007-11-19 09:29:59 -0300634 int len = (size < priv->ctrl.max_len - 1) ?
635 size : priv->ctrl.max_len - 1;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300636
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300637 memcpy(buf + 1, p, len);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300638
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300639 rc = i2c_send(priv, buf, len + 1);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300640 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300641 tuner_err("%d returned from send\n", rc);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300642 return -EINVAL;
643 }
644
645 p += len;
646 size -= len;
647 }
Thierry Reding4d37ece2011-08-04 04:13:59 -0300648
649 /* silently fail if the frontend doesn't support I2C flush */
650 rc = do_tuner_callback(fe, XC2028_I2C_FLUSH, 0);
651 if ((rc < 0) && (rc != -EINVAL)) {
652 tuner_err("error executing flush: %d\n", rc);
653 return rc;
654 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300655 }
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300656 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300657}
658
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300659static int load_scode(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300660 v4l2_std_id *id, __u16 int_freq, int scode)
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300661{
662 struct xc2028_data *priv = fe->tuner_priv;
663 int pos, rc;
664 unsigned char *p;
665
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300666 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300667
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300668 if (!int_freq) {
669 pos = seek_firmware(fe, type, id);
670 if (pos < 0)
671 return pos;
672 } else {
673 for (pos = 0; pos < priv->firm_size; pos++) {
674 if ((priv->firm[pos].int_freq == int_freq) &&
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300675 (priv->firm[pos].type & HAS_IF))
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300676 break;
677 }
678 if (pos == priv->firm_size)
679 return -ENOENT;
680 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300681
682 p = priv->firm[pos].ptr;
683
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300684 if (priv->firm[pos].type & HAS_IF) {
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300685 if (priv->firm[pos].size != 12 * 16 || scode >= 16)
686 return -EINVAL;
687 p += 12 * scode;
688 } else {
689 /* 16 SCODE entries per file; each SCODE entry is 12 bytes and
690 * has a 2-byte size header in the firmware format. */
691 if (priv->firm[pos].size != 14 * 16 || scode >= 16 ||
Hans Verkuil84eeb0b2013-10-04 11:01:42 -0300692 le16_to_cpu(*(__le16 *)(p + 14 * scode)) != 12)
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300693 return -EINVAL;
694 p += 14 * scode + 2;
695 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300696
Chris Pascoed7b22c52007-11-19 10:12:45 -0300697 tuner_info("Loading SCODE for type=");
Chris Pascoee0262682007-12-02 06:30:50 -0300698 dump_firm_type_and_int_freq(priv->firm[pos].type,
699 priv->firm[pos].int_freq);
Chris Pascoed7b22c52007-11-19 10:12:45 -0300700 printk("(%x), id %016llx.\n", priv->firm[pos].type,
701 (unsigned long long)*id);
702
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300703 if (priv->firm_version < 0x0202)
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300704 rc = send_seq(priv, {0x20, 0x00, 0x00, 0x00});
705 else
706 rc = send_seq(priv, {0xa0, 0x00, 0x00, 0x00});
707 if (rc < 0)
708 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300709
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300710 rc = i2c_send(priv, p, 12);
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300711 if (rc < 0)
712 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300713
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300714 rc = send_seq(priv, {0x00, 0x8c});
715 if (rc < 0)
716 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300717
718 return 0;
719}
720
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300721static int check_firmware(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300722 v4l2_std_id std, __u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300723{
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300724 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300725 struct firmware_properties new_fw;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300726 int rc, retry_count = 0;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300727 u16 version, hwmodel;
728 v4l2_std_id std0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300729
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300730 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300731
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300732 rc = check_device_status(priv);
733 if (rc < 0)
734 return rc;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300735
Mauro Carvalho Chehab0f6dac12008-01-05 16:47:16 -0300736 if (priv->ctrl.mts && !(type & FM))
Chris Pascoee0f0b372007-11-19 11:22:03 -0300737 type |= MTS;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300738
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300739retry:
Chris Pascoee0f0b372007-11-19 11:22:03 -0300740 new_fw.type = type;
741 new_fw.id = std;
742 new_fw.std_req = std;
743 new_fw.scode_table = SCODE | priv->ctrl.scode_table;
744 new_fw.scode_nr = 0;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300745 new_fw.int_freq = int_freq;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300746
747 tuner_dbg("checking firmware, user requested type=");
748 if (debug) {
749 dump_firm_type(new_fw.type);
Chris Pascoee0262682007-12-02 06:30:50 -0300750 printk("(%x), id %016llx, ", new_fw.type,
Chris Pascoee0f0b372007-11-19 11:22:03 -0300751 (unsigned long long)new_fw.std_req);
Chris Pascoee0262682007-12-02 06:30:50 -0300752 if (!int_freq) {
753 printk("scode_tbl ");
754 dump_firm_type(priv->ctrl.scode_table);
755 printk("(%x), ", priv->ctrl.scode_table);
756 } else
757 printk("int_freq %d, ", new_fw.int_freq);
758 printk("scode_nr %d\n", new_fw.scode_nr);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300759 }
760
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300761 /*
762 * No need to reload base firmware if it matches and if the tuner
763 * is not at sleep mode
764 */
Dan Carpenter3a495ed2012-07-21 04:32:38 -0300765 if ((priv->state == XC2028_ACTIVE) &&
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300766 (((BASE | new_fw.type) & BASE_TYPES) ==
767 (priv->cur_fw.type & BASE_TYPES))) {
Chris Pascoee0f0b372007-11-19 11:22:03 -0300768 tuner_dbg("BASE firmware not changed.\n");
769 goto skip_base;
770 }
771
772 /* Updating BASE - forget about all currently loaded firmware */
773 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
774
775 /* Reset is needed before loading firmware */
Michael Krufkyd7cba042008-09-12 13:31:45 -0300776 rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300777 if (rc < 0)
778 goto fail;
779
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300780 /* BASE firmwares are all std0 */
781 std0 = 0;
782 rc = load_firmware(fe, BASE | new_fw.type, &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300783 if (rc < 0) {
784 tuner_err("Error %d while loading base firmware\n",
785 rc);
786 goto fail;
787 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300788
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300789 /* Load INIT1, if needed */
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300790 tuner_dbg("Load init1 firmware, if exists\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300791
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300792 rc = load_firmware(fe, BASE | INIT1 | new_fw.type, &std0);
Chris Pascoe1ad0b792007-11-19 23:43:13 -0300793 if (rc == -ENOENT)
794 rc = load_firmware(fe, (BASE | INIT1 | new_fw.type) & ~F8MHZ,
795 &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300796 if (rc < 0 && rc != -ENOENT) {
797 tuner_err("Error %d while loading init1 firmware\n",
798 rc);
799 goto fail;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300800 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300801
Chris Pascoee0f0b372007-11-19 11:22:03 -0300802skip_base:
803 /*
804 * No need to reload standard specific firmware if base firmware
805 * was not reloaded and requested video standards have not changed.
806 */
807 if (priv->cur_fw.type == (BASE | new_fw.type) &&
808 priv->cur_fw.std_req == std) {
809 tuner_dbg("Std-specific firmware already loaded.\n");
810 goto skip_std_specific;
811 }
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300812
Chris Pascoee0f0b372007-11-19 11:22:03 -0300813 /* Reloading std-specific firmware forces a SCODE update */
814 priv->cur_fw.scode_table = 0;
815
Chris Pascoee0f0b372007-11-19 11:22:03 -0300816 rc = load_firmware(fe, new_fw.type, &new_fw.id);
Mauro Carvalho Chehabcca83792007-11-22 11:47:18 -0300817 if (rc == -ENOENT)
818 rc = load_firmware(fe, new_fw.type & ~F8MHZ, &new_fw.id);
819
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300820 if (rc < 0)
Chris Pascoee0f0b372007-11-19 11:22:03 -0300821 goto fail;
822
823skip_std_specific:
824 if (priv->cur_fw.scode_table == new_fw.scode_table &&
825 priv->cur_fw.scode_nr == new_fw.scode_nr) {
826 tuner_dbg("SCODE firmware already loaded.\n");
827 goto check_device;
828 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300829
Mauro Carvalho Chehab40ae91a2008-02-14 01:52:48 -0300830 if (new_fw.type & FM)
831 goto check_device;
832
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300833 /* Load SCODE firmware, if exists */
Chris Pascoee0f0b372007-11-19 11:22:03 -0300834 tuner_dbg("Trying to load scode %d\n", new_fw.scode_nr);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300835
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300836 rc = load_scode(fe, new_fw.type | new_fw.scode_table, &new_fw.id,
837 new_fw.int_freq, new_fw.scode_nr);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300838
Chris Pascoee0f0b372007-11-19 11:22:03 -0300839check_device:
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300840 if (xc2028_get_reg(priv, 0x0004, &version) < 0 ||
841 xc2028_get_reg(priv, 0x0008, &hwmodel) < 0) {
842 tuner_err("Unable to read tuner registers.\n");
843 goto fail;
844 }
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300845
Devin Heitmuellerb37f2d62008-04-21 07:02:09 -0300846 tuner_dbg("Device is Xceive %d version %d.%d, "
847 "firmware version %d.%d\n",
848 hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8,
849 (version & 0xf0) >> 4, version & 0xf);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300850
Mauro Carvalho Chehab0fb84ce2008-12-02 08:30:16 -0300851
852 if (priv->ctrl.read_not_reliable)
853 goto read_not_reliable;
854
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300855 /* Check firmware version against what we downloaded. */
856 if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) {
Mauro Carvalho Chehab2d5024a2009-09-14 10:23:20 -0300857 if (!priv->ctrl.read_not_reliable) {
858 tuner_err("Incorrect readback of firmware version.\n");
859 goto fail;
860 } else {
861 tuner_err("Returned an incorrect version. However, "
862 "read is not reliable enough. Ignoring it.\n");
863 hwmodel = 3028;
864 }
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300865 }
866
867 /* Check that the tuner hardware model remains consistent over time. */
868 if (priv->hwmodel == 0 && (hwmodel == 2028 || hwmodel == 3028)) {
869 priv->hwmodel = hwmodel;
870 priv->hwvers = version & 0xff00;
871 } else if (priv->hwmodel == 0 || priv->hwmodel != hwmodel ||
872 priv->hwvers != (version & 0xff00)) {
873 tuner_err("Read invalid device hardware information - tuner "
874 "hung?\n");
875 goto fail;
876 }
877
Mauro Carvalho Chehab0fb84ce2008-12-02 08:30:16 -0300878read_not_reliable:
Ezequiel Garcia03c42002012-10-23 15:57:16 -0300879 priv->cur_fw = new_fw;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300880
881 /*
882 * By setting BASE in cur_fw.type only after successfully loading all
883 * firmwares, we can:
884 * 1. Identify that BASE firmware with type=0 has been loaded;
885 * 2. Tell whether BASE firmware was just changed the next time through.
886 */
887 priv->cur_fw.type |= BASE;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300888 priv->state = XC2028_ACTIVE;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300889
890 return 0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300891
892fail:
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300893 priv->state = XC2028_SLEEP;
894
Chris Pascoee0f0b372007-11-19 11:22:03 -0300895 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Alina Friedrichsenb8bc77d2011-01-23 12:27:05 -0300896 if (retry_count < 8) {
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300897 msleep(50);
Alina Friedrichsenb8bc77d2011-01-23 12:27:05 -0300898 retry_count++;
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300899 tuner_dbg("Retrying firmware load\n");
900 goto retry;
901 }
902
Chris Pascoee0f0b372007-11-19 11:22:03 -0300903 if (rc == -ENOENT)
904 rc = -EINVAL;
905 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300906}
907
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300908static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300909{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300910 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoe7d58d112007-11-19 04:31:58 -0300911 u16 frq_lock, signal = 0;
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300912 int rc, i;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300913
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300914 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300915
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300916 rc = check_device_status(priv);
917 if (rc < 0)
918 return rc;
919
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300920 mutex_lock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300921
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300922 /* Sync Lock Indicator */
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300923 for (i = 0; i < 3; i++) {
924 rc = xc2028_get_reg(priv, XREG_LOCK, &frq_lock);
925 if (rc < 0)
926 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300927
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300928 if (frq_lock)
929 break;
930 msleep(6);
931 }
932
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -0300933 /* Frequency didn't lock */
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300934 if (frq_lock == 2)
935 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300936
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300937 /* Get SNR of the video signal */
Miroslav Slugen304bce42011-12-11 20:19:34 -0300938 rc = xc2028_get_reg(priv, XREG_SNR, &signal);
Chris Pascoe7d58d112007-11-19 04:31:58 -0300939 if (rc < 0)
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300940 goto ret;
941
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300942 /* Signal level is 3 bits only */
943
944 signal = ((1 << 12) - 1) | ((signal & 0x07) << 12);
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300945
946ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300947 mutex_unlock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300948
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300949 *strength = signal;
950
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300951 tuner_dbg("signal strength is %d\n", signal);
952
Chris Pascoe7d58d112007-11-19 04:31:58 -0300953 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300954}
955
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -0300956static int xc2028_get_afc(struct dvb_frontend *fe, s32 *afc)
957{
958 struct xc2028_data *priv = fe->tuner_priv;
959 int i, rc;
960 u16 frq_lock = 0;
961 s16 afc_reg = 0;
962
963 rc = check_device_status(priv);
964 if (rc < 0)
965 return rc;
966
967 mutex_lock(&priv->lock);
968
969 /* Sync Lock Indicator */
970 for (i = 0; i < 3; i++) {
971 rc = xc2028_get_reg(priv, XREG_LOCK, &frq_lock);
972 if (rc < 0)
973 goto ret;
974
975 if (frq_lock)
976 break;
977 msleep(6);
978 }
979
980 /* Frequency didn't lock */
981 if (frq_lock == 2)
982 goto ret;
983
984 /* Get AFC */
985 rc = xc2028_get_reg(priv, XREG_FREQ_ERROR, &afc_reg);
986 if (rc < 0)
Dan Carpenterf088ccd2012-07-21 04:32:59 -0300987 goto ret;
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -0300988
989 *afc = afc_reg * 15625; /* Hz */
990
991 tuner_dbg("AFC is %d Hz\n", *afc);
992
993ret:
994 mutex_unlock(&priv->lock);
995
996 return rc;
997}
998
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300999#define DIV 15625
1000
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001001static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */,
Hans Verkuilaa40d192011-03-06 09:24:32 -03001002 enum v4l2_tuner_type new_type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -03001003 unsigned int type,
1004 v4l2_std_id std,
1005 u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001006{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001007 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001008 int rc = -EINVAL;
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -03001009 unsigned char buf[4];
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001010 u32 div, offset = 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001011
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001012 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001013
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001014 mutex_lock(&priv->lock);
1015
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -03001016 tuner_dbg("should set frequency %d kHz\n", freq / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001017
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -03001018 if (check_firmware(fe, type, std, int_freq) < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001019 goto ret;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001020
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -03001021 /* On some cases xc2028 can disable video output, if
1022 * very weak signals are received. By sending a soft
1023 * reset, this is re-enabled. So, it is better to always
1024 * send a soft reset before changing channels, to be sure
1025 * that xc2028 will be in a safe state.
1026 * Maybe this might also be needed for DTV.
1027 */
Mauro Carvalho Chehabfd34cb02011-08-31 15:12:45 -03001028 switch (new_type) {
1029 case V4L2_TUNER_ANALOG_TV:
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -03001030 rc = send_seq(priv, {0x00, 0x00});
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001031
Mauro Carvalho Chehabfd34cb02011-08-31 15:12:45 -03001032 /* Analog mode requires offset = 0 */
1033 break;
1034 case V4L2_TUNER_RADIO:
1035 /* Radio mode requires offset = 0 */
1036 break;
1037 case V4L2_TUNER_DIGITAL_TV:
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001038 /*
1039 * Digital modes require an offset to adjust to the
1040 * proper frequency. The offset depends on what
1041 * firmware version is used.
1042 */
1043
1044 /*
1045 * Adjust to the center frequency. This is calculated by the
1046 * formula: offset = 1.25MHz - BW/2
1047 * For DTV 7/8, the firmware uses BW = 8000, so it needs a
1048 * further adjustment to get the frequency center on VHF
1049 */
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001050
1051 /*
1052 * The firmware DTV78 used to work fine in UHF band (8 MHz
1053 * bandwidth) but not at all in VHF band (7 MHz bandwidth).
1054 * The real problem was connected to the formula used to
1055 * calculate the center frequency offset in VHF band.
1056 * In fact, removing the 500KHz adjustment fixed the problem.
1057 * This is coherent to what was implemented for the DTV7
1058 * firmware.
1059 * In the end, now the center frequency is the same for all 3
1060 * firmwares (DTV7, DTV8, DTV78) and doesn't depend on channel
1061 * bandwidth.
1062 */
1063
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001064 if (priv->cur_fw.type & DTV6)
1065 offset = 1750000;
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001066 else /* DTV7 or DTV8 or DTV78 */
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001067 offset = 2750000;
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001068
1069 /*
1070 * xc3028 additional "magic"
1071 * Depending on the firmware version, it needs some adjustments
1072 * to properly centralize the frequency. This seems to be
1073 * needed to compensate the SCODE table adjustments made by
1074 * newer firmwares
1075 */
1076
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001077 /*
1078 * The proper adjustment would be to do it at s-code table.
1079 * However, this didn't work, as reported by
1080 * Robert Lowery <rglowery@exemail.com.au>
1081 */
1082
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001083#if 0
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001084 /*
1085 * Still need tests for XC3028L (firmware 3.2 or upper)
1086 * So, for now, let's just comment the per-firmware
1087 * version of this change. Reports with xc3028l working
1088 * with and without the lines bellow are welcome
1089 */
1090
1091 if (priv->firm_version < 0x0302) {
1092 if (priv->cur_fw.type & DTV7)
1093 offset += 500000;
1094 } else {
1095 if (priv->cur_fw.type & DTV7)
1096 offset -= 300000;
1097 else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */
1098 offset += 200000;
1099 }
1100#endif
Chris Pascoea44f1c42007-11-19 06:35:26 -03001101 }
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001102
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001103 div = (freq - offset + DIV / 2) / DIV;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001104
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001105 /* CMD= Set frequency */
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001106 if (priv->firm_version < 0x0202)
Miroslav Slugen304bce42011-12-11 20:19:34 -03001107 rc = send_seq(priv, {0x00, XREG_RF_FREQ, 0x00, 0x00});
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001108 else
Miroslav Slugen304bce42011-12-11 20:19:34 -03001109 rc = send_seq(priv, {0x80, XREG_RF_FREQ, 0x00, 0x00});
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001110 if (rc < 0)
1111 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001112
Mauro Carvalho Chehab1fe873692008-04-22 14:45:20 -03001113 /* Return code shouldn't be checked.
1114 The reset CLK is needed only with tm6000.
1115 Driver should work fine even if this fails.
1116 */
Devin Heitmueller70ca3c42010-01-19 01:38:45 -03001117 if (priv->ctrl.msleep)
1118 msleep(priv->ctrl.msleep);
Michael Krufkyd7cba042008-09-12 13:31:45 -03001119 do_tuner_callback(fe, XC2028_RESET_CLK, 1);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001120
1121 msleep(10);
Michel Ludwig701672e2007-07-18 10:29:10 -03001122
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001123 buf[0] = 0xff & (div >> 24);
1124 buf[1] = 0xff & (div >> 16);
1125 buf[2] = 0xff & (div >> 8);
1126 buf[3] = 0xff & (div);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001127
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001128 rc = i2c_send(priv, buf, sizeof(buf));
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001129 if (rc < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001130 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001131 msleep(100);
1132
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001133 priv->frequency = freq;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001134
Andy Shevchenkoc6480cc2012-08-07 12:43:03 -03001135 tuner_dbg("divisor= %*ph (freq=%d.%03d)\n", 4, buf,
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -03001136 freq / 1000000, (freq % 1000000) / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001137
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001138 rc = 0;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001139
1140ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001141 mutex_unlock(&priv->lock);
1142
1143 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001144}
1145
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001146static int xc2028_set_analog_freq(struct dvb_frontend *fe,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001147 struct analog_parameters *p)
Michel Ludwig701672e2007-07-18 10:29:10 -03001148{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001149 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001150 unsigned int type=0;
1151
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001152 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabc71d4bc2007-11-22 11:47:18 -03001153
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -03001154 if (p->mode == V4L2_TUNER_RADIO) {
1155 type |= FM;
1156 if (priv->ctrl.input1)
1157 type |= INPUT1;
1158 return generic_set_freq(fe, (625l * p->frequency) / 10,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001159 V4L2_TUNER_RADIO, type, 0, 0);
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -03001160 }
1161
Mauro Carvalho Chehaba5e9fe12007-11-23 11:36:18 -03001162 /* if std is not defined, choose one */
1163 if (!p->std)
1164 p->std = V4L2_STD_MN;
1165
1166 /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001167 if (!(p->std & V4L2_STD_MN))
1168 type |= F8MHZ;
Michel Ludwig701672e2007-07-18 10:29:10 -03001169
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001170 /* Add audio hack to std mask */
1171 p->std |= parse_audio_std_option();
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001172
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001173 return generic_set_freq(fe, 62500l * p->frequency,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001174 V4L2_TUNER_ANALOG_TV, type, p->std, 0);
Michel Ludwig701672e2007-07-18 10:29:10 -03001175}
1176
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -03001177static int xc2028_set_params(struct dvb_frontend *fe)
Michel Ludwig701672e2007-07-18 10:29:10 -03001178{
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001179 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1180 u32 delsys = c->delivery_system;
1181 u32 bw = c->bandwidth_hz;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001182 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001183 int rc;
1184 unsigned int type = 0;
Chris Pascoead35ce92007-12-02 06:36:42 -03001185 u16 demod = 0;
Michel Ludwig701672e2007-07-18 10:29:10 -03001186
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001187 tuner_dbg("%s called\n", __func__);
Michel Ludwig701672e2007-07-18 10:29:10 -03001188
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001189 rc = check_device_status(priv);
1190 if (rc < 0)
1191 return rc;
1192
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001193 switch (delsys) {
1194 case SYS_DVBT:
1195 case SYS_DVBT2:
Mauro Carvalho Chehaba1014d72009-06-01 11:46:08 -03001196 /*
1197 * The only countries with 6MHz seem to be Taiwan/Uruguay.
1198 * Both seem to require QAM firmware for OFDM decoding
1199 * Tested in Taiwan by Terry Wu <terrywu2009@gmail.com>
1200 */
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001201 if (bw <= 6000000)
Mauro Carvalho Chehaba1014d72009-06-01 11:46:08 -03001202 type |= QAM;
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -03001203
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -03001204 switch (priv->ctrl.type) {
1205 case XC2028_D2633:
1206 type |= D2633;
1207 break;
1208 case XC2028_D2620:
1209 type |= D2620;
1210 break;
1211 case XC2028_AUTO:
1212 default:
1213 /* Zarlink seems to need D2633 */
1214 if (priv->ctrl.demod == XC3028_FE_ZARLINK456)
1215 type |= D2633;
1216 else
1217 type |= D2620;
1218 }
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001219 break;
1220 case SYS_ATSC:
1221 /* The only ATSC firmware (at least on v2.7) is D2633 */
1222 type |= ATSC | D2633;
1223 break;
1224 /* DVB-S and pure QAM (FE_QAM) are not supported */
1225 default:
1226 return -EINVAL;
1227 }
1228
1229 if (bw <= 6000000) {
1230 type |= DTV6;
1231 priv->ctrl.vhfbw7 = 0;
1232 priv->ctrl.uhfbw8 = 0;
1233 } else if (bw <= 7000000) {
1234 if (c->frequency < 470000000)
1235 priv->ctrl.vhfbw7 = 1;
1236 else
1237 priv->ctrl.uhfbw8 = 0;
1238 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV7;
1239 type |= F8MHZ;
1240 } else {
1241 if (c->frequency < 470000000)
1242 priv->ctrl.vhfbw7 = 0;
1243 else
1244 priv->ctrl.uhfbw8 = 1;
1245 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV8;
1246 type |= F8MHZ;
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -03001247 }
1248
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -03001249 /* All S-code tables need a 200kHz shift */
Andy Walls6e707b42009-06-11 07:57:50 -03001250 if (priv->ctrl.demod) {
Mauro Carvalho Chehab7d350282010-02-19 20:08:06 -02001251 demod = priv->ctrl.demod;
1252
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001253 /*
1254 * Newer firmwares require a 200 kHz offset only for ATSC
1255 */
1256 if (type == ATSC || priv->firm_version < 0x0302)
Mauro Carvalho Chehab7d350282010-02-19 20:08:06 -02001257 demod += 200;
Andy Walls6e707b42009-06-11 07:57:50 -03001258 /*
1259 * The DTV7 S-code table needs a 700 kHz shift.
Andy Walls6e707b42009-06-11 07:57:50 -03001260 *
1261 * DTV7 is only used in Australia. Germany or Italy may also
1262 * use this firmware after initialization, but a tune to a UHF
1263 * channel should then cause DTV78 to be used.
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001264 *
1265 * Unfortunately, on real-field tests, the s-code offset
1266 * didn't work as expected, as reported by
1267 * Robert Lowery <rglowery@exemail.com.au>
Andy Walls6e707b42009-06-11 07:57:50 -03001268 */
Andy Walls6e707b42009-06-11 07:57:50 -03001269 }
Mauro Carvalho Chehabb542dfd2007-11-24 11:07:12 -03001270
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001271 return generic_set_freq(fe, c->frequency,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001272 V4L2_TUNER_DIGITAL_TV, type, 0, demod);
Michel Ludwig701672e2007-07-18 10:29:10 -03001273}
1274
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001275static int xc2028_sleep(struct dvb_frontend *fe)
1276{
1277 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001278 int rc;
1279
1280 rc = check_device_status(priv);
1281 if (rc < 0)
1282 return rc;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001283
Devin Heitmueller93b99922009-08-03 22:52:59 -03001284 /* Avoid firmware reload on slow devices or if PM disabled */
1285 if (no_poweroff || priv->ctrl.disable_power_mgmt)
Mauro Carvalho Chehab10f201a2008-12-05 10:49:53 -03001286 return 0;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001287
1288 tuner_dbg("Putting xc2028/3028 into poweroff mode.\n");
Mauro Carvalho Chehabe278e742008-12-18 06:00:25 -03001289 if (debug > 1) {
1290 tuner_dbg("Printing sleep stack trace:\n");
1291 dump_stack();
1292 }
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001293
1294 mutex_lock(&priv->lock);
1295
1296 if (priv->firm_version < 0x0202)
Miroslav Slugen304bce42011-12-11 20:19:34 -03001297 rc = send_seq(priv, {0x00, XREG_POWER_DOWN, 0x00, 0x00});
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001298 else
Miroslav Slugen304bce42011-12-11 20:19:34 -03001299 rc = send_seq(priv, {0x80, XREG_POWER_DOWN, 0x00, 0x00});
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001300
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001301 priv->state = XC2028_SLEEP;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001302
1303 mutex_unlock(&priv->lock);
1304
1305 return rc;
1306}
Chris Pascoe45819c32007-11-19 11:41:20 -03001307
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001308static int xc2028_dvb_release(struct dvb_frontend *fe)
Michel Ludwig701672e2007-07-18 10:29:10 -03001309{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001310 struct xc2028_data *priv = fe->tuner_priv;
Michel Ludwig701672e2007-07-18 10:29:10 -03001311
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001312 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001313
Chris Pascoeaa501be2007-11-19 04:45:38 -03001314 mutex_lock(&xc2028_list_mutex);
1315
Michael Krufkyc663d032008-04-18 21:22:50 -03001316 /* only perform final cleanup if this is the last instance */
1317 if (hybrid_tuner_report_instance_count(priv) == 1) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001318 free_firmware(priv);
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001319 kfree(priv->ctrl.fname);
1320 priv->ctrl.fname = NULL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001321 }
Michel Ludwig701672e2007-07-18 10:29:10 -03001322
Michael Krufkyc663d032008-04-18 21:22:50 -03001323 if (priv)
1324 hybrid_tuner_release_state(priv);
1325
Chris Pascoeaa501be2007-11-19 04:45:38 -03001326 mutex_unlock(&xc2028_list_mutex);
1327
Michael Krufkyc663d032008-04-18 21:22:50 -03001328 fe->tuner_priv = NULL;
1329
Michel Ludwig701672e2007-07-18 10:29:10 -03001330 return 0;
1331}
1332
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001333static int xc2028_get_frequency(struct dvb_frontend *fe, u32 *frequency)
Michel Ludwig701672e2007-07-18 10:29:10 -03001334{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001335 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001336 int rc;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001337
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001338 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001339
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001340 rc = check_device_status(priv);
1341 if (rc < 0)
1342 return rc;
1343
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001344 *frequency = priv->frequency;
Michel Ludwig701672e2007-07-18 10:29:10 -03001345
1346 return 0;
1347}
1348
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001349static void load_firmware_cb(const struct firmware *fw,
1350 void *context)
1351{
1352 struct dvb_frontend *fe = context;
1353 struct xc2028_data *priv = fe->tuner_priv;
1354 int rc;
1355
1356 tuner_dbg("request_firmware_nowait(): %s\n", fw ? "OK" : "error");
1357 if (!fw) {
1358 tuner_err("Could not load firmware %s.\n", priv->fname);
1359 priv->state = XC2028_NODEV;
1360 return;
1361 }
1362
1363 rc = load_all_firmwares(fe, fw);
1364
1365 release_firmware(fw);
1366
1367 if (rc < 0)
1368 return;
1369 priv->state = XC2028_SLEEP;
1370}
1371
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001372static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001373{
1374 struct xc2028_data *priv = fe->tuner_priv;
1375 struct xc2028_ctrl *p = priv_cfg;
Chris Pascoe0a196b62007-11-19 09:29:59 -03001376 int rc = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001377
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001378 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001379
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001380 mutex_lock(&priv->lock);
1381
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001382 /*
1383 * Copy the config data.
1384 * For the firmware name, keep a local copy of the string,
1385 * in order to avoid troubles during device release.
1386 */
Syam Sidhardhanf1065c92013-02-26 15:30:45 -03001387 kfree(priv->ctrl.fname);
Chris Pascoe0a196b62007-11-19 09:29:59 -03001388 memcpy(&priv->ctrl, p, sizeof(priv->ctrl));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001389 if (p->fname) {
Chris Pascoe0a196b62007-11-19 09:29:59 -03001390 priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL);
1391 if (priv->ctrl.fname == NULL)
1392 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001393 }
1394
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001395 /*
1396 * If firmware name changed, frees firmware. As free_firmware will
1397 * reset the status to NO_FIRMWARE, this forces a new request_firmware
1398 */
1399 if (!firmware_name[0] && p->fname &&
1400 priv->fname && strcmp(p->fname, priv->fname))
1401 free_firmware(priv);
1402
1403 if (priv->ctrl.max_len < 9)
1404 priv->ctrl.max_len = 13;
1405
1406 if (priv->state == XC2028_NO_FIRMWARE) {
1407 if (!firmware_name[0])
1408 priv->fname = priv->ctrl.fname;
1409 else
1410 priv->fname = firmware_name;
1411
1412 rc = request_firmware_nowait(THIS_MODULE, 1,
1413 priv->fname,
1414 priv->i2c_props.adap->dev.parent,
1415 GFP_KERNEL,
1416 fe, load_firmware_cb);
1417 if (rc < 0) {
1418 tuner_err("Failed to request firmware %s\n",
1419 priv->fname);
1420 priv->state = XC2028_NODEV;
Hans Petter Selasky1e9c14f2012-08-03 03:34:05 -03001421 } else
1422 priv->state = XC2028_WAITING_FIRMWARE;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001423 }
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001424 mutex_unlock(&priv->lock);
1425
Chris Pascoe0a196b62007-11-19 09:29:59 -03001426 return rc;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001427}
1428
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001429static const struct dvb_tuner_ops xc2028_dvb_tuner_ops = {
Michel Ludwig701672e2007-07-18 10:29:10 -03001430 .info = {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001431 .name = "Xceive XC3028",
1432 .frequency_min = 42000000,
1433 .frequency_max = 864000000,
1434 .frequency_step = 50000,
1435 },
Michel Ludwig701672e2007-07-18 10:29:10 -03001436
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001437 .set_config = xc2028_set_config,
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001438 .set_analog_params = xc2028_set_analog_freq,
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001439 .release = xc2028_dvb_release,
1440 .get_frequency = xc2028_get_frequency,
1441 .get_rf_strength = xc2028_signal,
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -03001442 .get_afc = xc2028_get_afc,
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001443 .set_params = xc2028_set_params,
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001444 .sleep = xc2028_sleep,
Michel Ludwig701672e2007-07-18 10:29:10 -03001445};
1446
Michael Krufky7972f982007-12-21 16:12:09 -03001447struct dvb_frontend *xc2028_attach(struct dvb_frontend *fe,
1448 struct xc2028_config *cfg)
Michel Ludwig701672e2007-07-18 10:29:10 -03001449{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001450 struct xc2028_data *priv;
Michael Krufkyc663d032008-04-18 21:22:50 -03001451 int instance;
Michel Ludwig701672e2007-07-18 10:29:10 -03001452
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -03001453 if (debug)
Michael Krufky27566652008-04-22 14:41:53 -03001454 printk(KERN_DEBUG "xc2028: Xcv2028/3028 init called!\n");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001455
Mauro Carvalho Chehabb412ba72008-04-22 14:46:11 -03001456 if (NULL == cfg)
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001457 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001458
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001459 if (!fe) {
Michael Krufky27566652008-04-22 14:41:53 -03001460 printk(KERN_ERR "xc2028: No frontend!\n");
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001461 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001462 }
1463
Chris Pascoeaa501be2007-11-19 04:45:38 -03001464 mutex_lock(&xc2028_list_mutex);
1465
Michael Krufkyc663d032008-04-18 21:22:50 -03001466 instance = hybrid_tuner_request_state(struct xc2028_data, priv,
1467 hybrid_tuner_instance_list,
1468 cfg->i2c_adap, cfg->i2c_addr,
1469 "xc2028");
1470 switch (instance) {
1471 case 0:
1472 /* memory allocation failure */
1473 goto fail;
1474 break;
1475 case 1:
1476 /* new tuner instance */
Chris Pascoe0a196b62007-11-19 09:29:59 -03001477 priv->ctrl.max_len = 13;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001478
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001479 mutex_init(&priv->lock);
1480
Michael Krufkyc663d032008-04-18 21:22:50 -03001481 fe->tuner_priv = priv;
1482 break;
1483 case 2:
1484 /* existing tuner instance */
1485 fe->tuner_priv = priv;
1486 break;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001487 }
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001488
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001489 memcpy(&fe->ops.tuner_ops, &xc2028_dvb_tuner_ops,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001490 sizeof(xc2028_dvb_tuner_ops));
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001491
1492 tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner");
Michel Ludwig701672e2007-07-18 10:29:10 -03001493
Mauro Carvalho Chehab71a2ee32007-11-22 12:19:37 -03001494 if (cfg->ctrl)
1495 xc2028_set_config(fe, cfg->ctrl);
1496
Chris Pascoeaa501be2007-11-19 04:45:38 -03001497 mutex_unlock(&xc2028_list_mutex);
1498
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001499 return fe;
Michael Krufkyc663d032008-04-18 21:22:50 -03001500fail:
1501 mutex_unlock(&xc2028_list_mutex);
1502
1503 xc2028_dvb_release(fe);
1504 return NULL;
Michel Ludwig701672e2007-07-18 10:29:10 -03001505}
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001506
Michel Ludwig701672e2007-07-18 10:29:10 -03001507EXPORT_SYMBOL(xc2028_attach);
1508
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001509MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver");
Mauro Carvalho Chehab983d2142007-10-29 23:44:18 -03001510MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001511MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
1512MODULE_LICENSE("GPL");
Mauro Carvalho Chehabab9cbcd2012-06-26 15:34:22 -03001513MODULE_FIRMWARE(XC2028_DEFAULT_FIRMWARE);
1514MODULE_FIRMWARE(XC3028L_DEFAULT_FIRMWARE);