blob: 75afab718ba60ab4b06377d91dba5709f90d94e6 [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 Pascoe7d58d112007-11-19 04:31:58 -0300137#define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \
138 int _rc; \
139 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
140 ibuf, isize); \
141 if (isize != _rc) \
142 tuner_err("i2c input error: rc = %d (should be %d)\n", \
143 _rc, (int)isize); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300144 if (priv->ctrl.msleep) \
145 msleep(priv->ctrl.msleep); \
Chris Pascoe7d58d112007-11-19 04:31:58 -0300146 _rc; \
147})
148
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300149#define send_seq(priv, data...) ({ \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300150 static u8 _val[] = data; \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300151 int _rc; \
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300152 if (sizeof(_val) != \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300153 (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300154 _val, sizeof(_val)))) { \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300155 tuner_err("Error on line %d: %d\n", __LINE__, _rc); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300156 } else if (priv->ctrl.msleep) \
Mauro Carvalho Chehabe5cc2bf2008-01-08 11:26:59 -0300157 msleep(priv->ctrl.msleep); \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300158 _rc; \
159})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300160
Devin Heitmueller83244022008-04-17 21:41:16 -0300161static int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300162{
Mauro Carvalho Chehabb873e1a2007-11-05 08:41:50 -0300163 unsigned char buf[2];
Chris Pascoe7d58d112007-11-19 04:31:58 -0300164 unsigned char ibuf[2];
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300165
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300166 tuner_dbg("%s %04x called\n", __func__, reg);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300167
Chris Pascoe7d58d112007-11-19 04:31:58 -0300168 buf[0] = reg >> 8;
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300169 buf[1] = (unsigned char) reg;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300170
Chris Pascoe7d58d112007-11-19 04:31:58 -0300171 if (i2c_send_recv(priv, buf, 2, ibuf, 2) != 2)
172 return -EIO;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300173
Chris Pascoe7d58d112007-11-19 04:31:58 -0300174 *val = (ibuf[1]) | (ibuf[0] << 8);
175 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300176}
177
Chris Pascoee0262682007-12-02 06:30:50 -0300178#define dump_firm_type(t) dump_firm_type_and_int_freq(t, 0)
Adrian Bunk29bec0b2008-04-22 14:41:45 -0300179static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq)
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300180{
181 if (type & BASE)
182 printk("BASE ");
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300183 if (type & INIT1)
184 printk("INIT1 ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300185 if (type & F8MHZ)
186 printk("F8MHZ ");
187 if (type & MTS)
188 printk("MTS ");
189 if (type & D2620)
190 printk("D2620 ");
191 if (type & D2633)
192 printk("D2633 ");
193 if (type & DTV6)
194 printk("DTV6 ");
195 if (type & QAM)
196 printk("QAM ");
197 if (type & DTV7)
198 printk("DTV7 ");
199 if (type & DTV78)
200 printk("DTV78 ");
201 if (type & DTV8)
202 printk("DTV8 ");
203 if (type & FM)
204 printk("FM ");
205 if (type & INPUT1)
206 printk("INPUT1 ");
207 if (type & LCD)
208 printk("LCD ");
209 if (type & NOGD)
210 printk("NOGD ");
211 if (type & MONO)
212 printk("MONO ");
213 if (type & ATSC)
214 printk("ATSC ");
215 if (type & IF)
216 printk("IF ");
217 if (type & LG60)
218 printk("LG60 ");
219 if (type & ATI638)
220 printk("ATI638 ");
221 if (type & OREN538)
222 printk("OREN538 ");
223 if (type & OREN36)
224 printk("OREN36 ");
225 if (type & TOYOTA388)
226 printk("TOYOTA388 ");
227 if (type & TOYOTA794)
228 printk("TOYOTA794 ");
229 if (type & DIBCOM52)
230 printk("DIBCOM52 ");
231 if (type & ZARLINK456)
232 printk("ZARLINK456 ");
233 if (type & CHINA)
234 printk("CHINA ");
235 if (type & F6MHZ)
236 printk("F6MHZ ");
237 if (type & INPUT2)
238 printk("INPUT2 ");
239 if (type & SCODE)
240 printk("SCODE ");
Chris Pascoee0262682007-12-02 06:30:50 -0300241 if (type & HAS_IF)
242 printk("HAS_IF_%d ", int_freq);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300243}
244
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300245static v4l2_std_id parse_audio_std_option(void)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300246{
Chris Pascoee155d902007-11-19 04:16:47 -0300247 if (strcasecmp(audio_std, "A2") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300248 return V4L2_STD_A2;
Chris Pascoee155d902007-11-19 04:16:47 -0300249 if (strcasecmp(audio_std, "A2/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300250 return V4L2_STD_A2_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300251 if (strcasecmp(audio_std, "A2/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300252 return V4L2_STD_A2_B;
Chris Pascoee155d902007-11-19 04:16:47 -0300253 if (strcasecmp(audio_std, "NICAM") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300254 return V4L2_STD_NICAM;
Chris Pascoee155d902007-11-19 04:16:47 -0300255 if (strcasecmp(audio_std, "NICAM/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300256 return V4L2_STD_NICAM_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300257 if (strcasecmp(audio_std, "NICAM/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300258 return V4L2_STD_NICAM_B;
259
260 return 0;
261}
262
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300263static int check_device_status(struct xc2028_data *priv)
264{
265 switch (priv->state) {
266 case XC2028_NO_FIRMWARE:
267 case XC2028_WAITING_FIRMWARE:
268 return -EAGAIN;
269 case XC2028_ACTIVE:
270 case XC2028_SLEEP:
271 return 0;
272 case XC2028_NODEV:
273 return -ENODEV;
274 }
275 return 0;
276}
277
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300278static void free_firmware(struct xc2028_data *priv)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300279{
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300280 int i;
Mauro Carvalho Chehab92b75ab2008-04-17 21:40:53 -0300281 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300282
283 if (!priv->firm)
284 return;
285
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300286 for (i = 0; i < priv->firm_size; i++)
287 kfree(priv->firm[i].ptr);
288
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300289 kfree(priv->firm);
290
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300291 priv->firm = NULL;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300292 priv->firm_size = 0;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300293 priv->state = XC2028_NO_FIRMWARE;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300294
295 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300296}
297
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300298static int load_all_firmwares(struct dvb_frontend *fe,
299 const struct firmware *fw)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300300{
301 struct xc2028_data *priv = fe->tuner_priv;
David Woodhousec63e87e2008-05-24 00:13:34 +0100302 const unsigned char *p, *endp;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300303 int rc = 0;
304 int n, n_array;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300305 char name[33];
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300306
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300307 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300308
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300309 p = fw->data;
310 endp = p + fw->size;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300311
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300312 if (fw->size < sizeof(name) - 1 + 2 + 2) {
313 tuner_err("Error: firmware file %s has invalid size!\n",
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300314 priv->fname);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300315 goto corrupt;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300316 }
317
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300318 memcpy(name, p, sizeof(name) - 1);
319 name[sizeof(name) - 1] = 0;
320 p += sizeof(name) - 1;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300321
Al Viro84a9f332008-06-22 14:19:29 -0300322 priv->firm_version = get_unaligned_le16(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300323 p += 2;
324
Al Viro84a9f332008-06-22 14:19:29 -0300325 n_array = get_unaligned_le16(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300326 p += 2;
327
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300328 tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n",
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300329 n_array, priv->fname, name,
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300330 priv->firm_version >> 8, priv->firm_version & 0xff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300331
Thomas Meyer1b7acf02011-11-29 17:08:00 -0300332 priv->firm = kcalloc(n_array, sizeof(*priv->firm), GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300333 if (priv->firm == NULL) {
334 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300335 rc = -ENOMEM;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300336 goto err;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300337 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300338 priv->firm_size = n_array;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300339
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300340 n = -1;
341 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300342 __u32 type, size;
343 v4l2_std_id id;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300344 __u16 int_freq = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300345
346 n++;
347 if (n >= n_array) {
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300348 tuner_err("More firmware images in file than "
349 "were expected!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300350 goto corrupt;
351 }
352
353 /* Checks if there's enough bytes to read */
Al Viro84a9f332008-06-22 14:19:29 -0300354 if (endp - p < sizeof(type) + sizeof(id) + sizeof(size))
355 goto header;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300356
Al Viro84a9f332008-06-22 14:19:29 -0300357 type = get_unaligned_le32(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300358 p += sizeof(type);
359
Al Viro84a9f332008-06-22 14:19:29 -0300360 id = get_unaligned_le64(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300361 p += sizeof(id);
362
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300363 if (type & HAS_IF) {
Al Viro84a9f332008-06-22 14:19:29 -0300364 int_freq = get_unaligned_le16(p);
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300365 p += sizeof(int_freq);
Al Viro84a9f332008-06-22 14:19:29 -0300366 if (endp - p < sizeof(size))
367 goto header;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300368 }
369
Al Viro84a9f332008-06-22 14:19:29 -0300370 size = get_unaligned_le32(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300371 p += sizeof(size);
372
Al Viro84a9f332008-06-22 14:19:29 -0300373 if (!size || size > endp - p) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300374 tuner_err("Firmware type ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300375 dump_firm_type(type);
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300376 printk("(%x), id %llx is corrupted "
377 "(size=%d, expected %d)\n",
Chris Pascoe91240dd2007-11-19 04:38:53 -0300378 type, (unsigned long long)id,
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300379 (unsigned)(endp - p), size);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300380 goto corrupt;
381 }
382
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300383 priv->firm[n].ptr = kzalloc(size, GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300384 if (priv->firm[n].ptr == NULL) {
385 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300386 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300387 goto err;
388 }
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300389 tuner_dbg("Reading firmware type ");
390 if (debug) {
Chris Pascoee0262682007-12-02 06:30:50 -0300391 dump_firm_type_and_int_freq(type, int_freq);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300392 printk("(%x), id %llx, size=%d.\n",
Chris Pascoee0262682007-12-02 06:30:50 -0300393 type, (unsigned long long)id, size);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300394 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300395
396 memcpy(priv->firm[n].ptr, p, size);
397 priv->firm[n].type = type;
398 priv->firm[n].id = id;
399 priv->firm[n].size = size;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300400 priv->firm[n].int_freq = int_freq;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300401
402 p += size;
403 }
404
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300405 if (n + 1 != priv->firm_size) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300406 tuner_err("Firmware file is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300407 goto corrupt;
408 }
409
410 goto done;
411
Al Viro84a9f332008-06-22 14:19:29 -0300412header:
413 tuner_err("Firmware header is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300414corrupt:
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300415 rc = -EINVAL;
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300416 tuner_err("Error: firmware file is corrupted!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300417
418err:
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300419 tuner_info("Releasing partially loaded firmware file.\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300420 free_firmware(priv);
421
422done:
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300423 if (rc == 0)
424 tuner_dbg("Firmware files loaded.\n");
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300425 else
426 priv->state = XC2028_NODEV;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300427
428 return rc;
429}
430
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300431static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
432 v4l2_std_id *id)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300433{
434 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoeb1535292007-11-19 10:04:06 -0300435 int i, best_i = -1, best_nr_matches = 0;
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300436 unsigned int type_mask = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300437
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300438 tuner_dbg("%s called, want type=", __func__);
Chris Pascoeb1535292007-11-19 10:04:06 -0300439 if (debug) {
440 dump_firm_type(type);
441 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
442 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300443
444 if (!priv->firm) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300445 tuner_err("Error! firmware not loaded\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300446 return -EINVAL;
447 }
448
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300449 if (((type & ~SCODE) == 0) && (*id == 0))
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300450 *id = V4L2_STD_PAL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300451
Chris Pascoee0f0b372007-11-19 11:22:03 -0300452 if (type & BASE)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300453 type_mask = BASE_TYPES;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300454 else if (type & SCODE) {
Chris Pascoee0f0b372007-11-19 11:22:03 -0300455 type &= SCODE_TYPES;
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300456 type_mask = SCODE_TYPES & ~HAS_IF;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300457 } else if (type & DTV_TYPES)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300458 type_mask = DTV_TYPES;
Chris Pascoe11a9eff2007-11-19 23:18:36 -0300459 else if (type & STD_SPECIFIC_TYPES)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300460 type_mask = STD_SPECIFIC_TYPES;
461
462 type &= type_mask;
463
Harvey Harrison8367fe22008-04-25 01:28:10 -0300464 if (!(type & SCODE))
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300465 type_mask = ~0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300466
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300467 /* Seek for exact match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300468 for (i = 0; i < priv->firm_size; i++) {
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300469 if ((type == (priv->firm[i].type & type_mask)) &&
Chris Pascoeef207fe2007-12-02 09:30:55 -0300470 (*id == priv->firm[i].id))
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300471 goto found;
472 }
473
474 /* Seek for generic video standard match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300475 for (i = 0; i < priv->firm_size; i++) {
Chris Pascoeb1535292007-11-19 10:04:06 -0300476 v4l2_std_id match_mask;
477 int nr_matches;
478
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300479 if (type != (priv->firm[i].type & type_mask))
Chris Pascoeb1535292007-11-19 10:04:06 -0300480 continue;
481
482 match_mask = *id & priv->firm[i].id;
483 if (!match_mask)
484 continue;
485
486 if ((*id & match_mask) == *id)
487 goto found; /* Supports all the requested standards */
488
489 nr_matches = hweight64(match_mask);
490 if (nr_matches > best_nr_matches) {
491 best_nr_matches = nr_matches;
492 best_i = i;
493 }
494 }
495
496 if (best_nr_matches > 0) {
497 tuner_dbg("Selecting best matching firmware (%d bits) for "
498 "type=", best_nr_matches);
499 dump_firm_type(type);
500 printk("(%x), id %016llx:\n", type, (unsigned long long)*id);
501 i = best_i;
502 goto found;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300503 }
504
505 /*FIXME: Would make sense to seek for type "hint" match ? */
506
Chris Pascoeb1535292007-11-19 10:04:06 -0300507 i = -ENOENT;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300508 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300509
510found:
511 *id = priv->firm[i].id;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300512
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300513ret:
Chris Pascoeb1535292007-11-19 10:04:06 -0300514 tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found");
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300515 if (debug) {
516 dump_firm_type(type);
Chris Pascoe91240dd2007-11-19 04:38:53 -0300517 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300518 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300519 return i;
520}
521
Michael Krufkyd7cba042008-09-12 13:31:45 -0300522static inline int do_tuner_callback(struct dvb_frontend *fe, int cmd, int arg)
523{
524 struct xc2028_data *priv = fe->tuner_priv;
525
526 /* analog side (tuner-core) uses i2c_adap->algo_data.
527 * digital side is not guaranteed to have algo_data defined.
528 *
529 * digital side will always have fe->dvb defined.
530 * analog side (tuner-core) doesn't (yet) define fe->dvb.
531 */
532
533 return (!fe->callback) ? -EINVAL :
534 fe->callback(((fe->dvb) && (fe->dvb->priv)) ?
535 fe->dvb->priv : priv->i2c_props.adap->algo_data,
536 DVB_FRONTEND_COMPONENT_TUNER, cmd, arg);
537}
538
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300539static int load_firmware(struct dvb_frontend *fe, unsigned int type,
540 v4l2_std_id *id)
541{
542 struct xc2028_data *priv = fe->tuner_priv;
543 int pos, rc;
Mauro Carvalho Chehab56ac0332013-11-02 06:13:11 -0300544 unsigned char *p, *endp, buf[MAX_XFER_SIZE];
545
546 if (priv->ctrl.max_len > sizeof(buf))
547 priv->ctrl.max_len = sizeof(buf);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300548
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300549 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300550
551 pos = seek_firmware(fe, type, id);
552 if (pos < 0)
553 return pos;
554
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300555 tuner_info("Loading firmware for type=");
Chris Pascoeb1535292007-11-19 10:04:06 -0300556 dump_firm_type(priv->firm[pos].type);
557 printk("(%x), id %016llx.\n", priv->firm[pos].type,
558 (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300559
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300560 p = priv->firm[pos].ptr;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300561 endp = p + priv->firm[pos].size;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300562
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300563 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300564 __u16 size;
565
566 /* Checks if there's enough bytes to read */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300567 if (p + sizeof(size) > endp) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300568 tuner_err("Firmware chunk size is wrong\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300569 return -EINVAL;
570 }
571
Hans Verkuil84eeb0b2013-10-04 11:01:42 -0300572 size = le16_to_cpu(*(__le16 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300573 p += sizeof(size);
574
575 if (size == 0xffff)
576 return 0;
577
578 if (!size) {
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300579 /* Special callback command received */
Michael Krufkyd7cba042008-09-12 13:31:45 -0300580 rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300581 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300582 tuner_err("Error at RESET code %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300583 (*p) & 0x7f);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300584 return -EINVAL;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300585 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300586 continue;
587 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300588 if (size >= 0xff00) {
589 switch (size) {
590 case 0xff00:
Michael Krufkyd7cba042008-09-12 13:31:45 -0300591 rc = do_tuner_callback(fe, XC2028_RESET_CLK, 0);
Michel Ludwig5403bba2007-11-16 07:49:49 -0300592 if (rc < 0) {
593 tuner_err("Error at RESET code %d\n",
594 (*p) & 0x7f);
595 return -EINVAL;
596 }
Chris Pascoeb32f9fb2007-11-19 04:53:50 -0300597 break;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300598 default:
599 tuner_info("Invalid RESET code %d\n",
600 size & 0x7f);
601 return -EINVAL;
602
603 }
Mauro Carvalho Chehab2d4c0ac2007-11-16 09:43:19 -0300604 continue;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300605 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300606
607 /* Checks for a sleep command */
608 if (size & 0x8000) {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300609 msleep(size & 0x7fff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300610 continue;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300611 }
612
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300613 if ((size + p > endp)) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300614 tuner_err("missing bytes: need %d, have %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300615 size, (int)(endp - p));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300616 return -EINVAL;
617 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300618
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300619 buf[0] = *p;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300620 p++;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300621 size--;
622
623 /* Sends message chunks */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300624 while (size > 0) {
Chris Pascoe0a196b62007-11-19 09:29:59 -0300625 int len = (size < priv->ctrl.max_len - 1) ?
626 size : priv->ctrl.max_len - 1;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300627
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300628 memcpy(buf + 1, p, len);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300629
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300630 rc = i2c_send(priv, buf, len + 1);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300631 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300632 tuner_err("%d returned from send\n", rc);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300633 return -EINVAL;
634 }
635
636 p += len;
637 size -= len;
638 }
Thierry Reding4d37ece2011-08-04 04:13:59 -0300639
640 /* silently fail if the frontend doesn't support I2C flush */
641 rc = do_tuner_callback(fe, XC2028_I2C_FLUSH, 0);
642 if ((rc < 0) && (rc != -EINVAL)) {
643 tuner_err("error executing flush: %d\n", rc);
644 return rc;
645 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300646 }
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300647 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300648}
649
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300650static int load_scode(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300651 v4l2_std_id *id, __u16 int_freq, int scode)
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300652{
653 struct xc2028_data *priv = fe->tuner_priv;
654 int pos, rc;
655 unsigned char *p;
656
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300657 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300658
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300659 if (!int_freq) {
660 pos = seek_firmware(fe, type, id);
661 if (pos < 0)
662 return pos;
663 } else {
664 for (pos = 0; pos < priv->firm_size; pos++) {
665 if ((priv->firm[pos].int_freq == int_freq) &&
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300666 (priv->firm[pos].type & HAS_IF))
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300667 break;
668 }
669 if (pos == priv->firm_size)
670 return -ENOENT;
671 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300672
673 p = priv->firm[pos].ptr;
674
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300675 if (priv->firm[pos].type & HAS_IF) {
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300676 if (priv->firm[pos].size != 12 * 16 || scode >= 16)
677 return -EINVAL;
678 p += 12 * scode;
679 } else {
680 /* 16 SCODE entries per file; each SCODE entry is 12 bytes and
681 * has a 2-byte size header in the firmware format. */
682 if (priv->firm[pos].size != 14 * 16 || scode >= 16 ||
Hans Verkuil84eeb0b2013-10-04 11:01:42 -0300683 le16_to_cpu(*(__le16 *)(p + 14 * scode)) != 12)
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300684 return -EINVAL;
685 p += 14 * scode + 2;
686 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300687
Chris Pascoed7b22c52007-11-19 10:12:45 -0300688 tuner_info("Loading SCODE for type=");
Chris Pascoee0262682007-12-02 06:30:50 -0300689 dump_firm_type_and_int_freq(priv->firm[pos].type,
690 priv->firm[pos].int_freq);
Chris Pascoed7b22c52007-11-19 10:12:45 -0300691 printk("(%x), id %016llx.\n", priv->firm[pos].type,
692 (unsigned long long)*id);
693
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300694 if (priv->firm_version < 0x0202)
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300695 rc = send_seq(priv, {0x20, 0x00, 0x00, 0x00});
696 else
697 rc = send_seq(priv, {0xa0, 0x00, 0x00, 0x00});
698 if (rc < 0)
699 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300700
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300701 rc = i2c_send(priv, p, 12);
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300702 if (rc < 0)
703 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300704
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300705 rc = send_seq(priv, {0x00, 0x8c});
706 if (rc < 0)
707 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300708
709 return 0;
710}
711
Mauro Carvalho Chehabebf044f2014-01-06 06:39:51 -0300712static int xc2028_sleep(struct dvb_frontend *fe);
713
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300714static int check_firmware(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300715 v4l2_std_id std, __u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300716{
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300717 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300718 struct firmware_properties new_fw;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300719 int rc, retry_count = 0;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300720 u16 version, hwmodel;
721 v4l2_std_id std0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300722
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300723 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300724
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300725 rc = check_device_status(priv);
726 if (rc < 0)
727 return rc;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300728
Mauro Carvalho Chehab0f6dac12008-01-05 16:47:16 -0300729 if (priv->ctrl.mts && !(type & FM))
Chris Pascoee0f0b372007-11-19 11:22:03 -0300730 type |= MTS;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300731
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300732retry:
Chris Pascoee0f0b372007-11-19 11:22:03 -0300733 new_fw.type = type;
734 new_fw.id = std;
735 new_fw.std_req = std;
736 new_fw.scode_table = SCODE | priv->ctrl.scode_table;
737 new_fw.scode_nr = 0;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300738 new_fw.int_freq = int_freq;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300739
740 tuner_dbg("checking firmware, user requested type=");
741 if (debug) {
742 dump_firm_type(new_fw.type);
Chris Pascoee0262682007-12-02 06:30:50 -0300743 printk("(%x), id %016llx, ", new_fw.type,
Chris Pascoee0f0b372007-11-19 11:22:03 -0300744 (unsigned long long)new_fw.std_req);
Chris Pascoee0262682007-12-02 06:30:50 -0300745 if (!int_freq) {
746 printk("scode_tbl ");
747 dump_firm_type(priv->ctrl.scode_table);
748 printk("(%x), ", priv->ctrl.scode_table);
749 } else
750 printk("int_freq %d, ", new_fw.int_freq);
751 printk("scode_nr %d\n", new_fw.scode_nr);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300752 }
753
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300754 /*
755 * No need to reload base firmware if it matches and if the tuner
756 * is not at sleep mode
757 */
Dan Carpenter3a495ed2012-07-21 04:32:38 -0300758 if ((priv->state == XC2028_ACTIVE) &&
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300759 (((BASE | new_fw.type) & BASE_TYPES) ==
760 (priv->cur_fw.type & BASE_TYPES))) {
Chris Pascoee0f0b372007-11-19 11:22:03 -0300761 tuner_dbg("BASE firmware not changed.\n");
762 goto skip_base;
763 }
764
765 /* Updating BASE - forget about all currently loaded firmware */
766 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
767
768 /* Reset is needed before loading firmware */
Michael Krufkyd7cba042008-09-12 13:31:45 -0300769 rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300770 if (rc < 0)
771 goto fail;
772
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300773 /* BASE firmwares are all std0 */
774 std0 = 0;
775 rc = load_firmware(fe, BASE | new_fw.type, &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300776 if (rc < 0) {
777 tuner_err("Error %d while loading base firmware\n",
778 rc);
779 goto fail;
780 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300781
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300782 /* Load INIT1, if needed */
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300783 tuner_dbg("Load init1 firmware, if exists\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300784
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300785 rc = load_firmware(fe, BASE | INIT1 | new_fw.type, &std0);
Chris Pascoe1ad0b792007-11-19 23:43:13 -0300786 if (rc == -ENOENT)
787 rc = load_firmware(fe, (BASE | INIT1 | new_fw.type) & ~F8MHZ,
788 &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300789 if (rc < 0 && rc != -ENOENT) {
790 tuner_err("Error %d while loading init1 firmware\n",
791 rc);
792 goto fail;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300793 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300794
Chris Pascoee0f0b372007-11-19 11:22:03 -0300795skip_base:
796 /*
797 * No need to reload standard specific firmware if base firmware
798 * was not reloaded and requested video standards have not changed.
799 */
800 if (priv->cur_fw.type == (BASE | new_fw.type) &&
801 priv->cur_fw.std_req == std) {
802 tuner_dbg("Std-specific firmware already loaded.\n");
803 goto skip_std_specific;
804 }
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300805
Chris Pascoee0f0b372007-11-19 11:22:03 -0300806 /* Reloading std-specific firmware forces a SCODE update */
807 priv->cur_fw.scode_table = 0;
808
Chris Pascoee0f0b372007-11-19 11:22:03 -0300809 rc = load_firmware(fe, new_fw.type, &new_fw.id);
Mauro Carvalho Chehabcca83792007-11-22 11:47:18 -0300810 if (rc == -ENOENT)
811 rc = load_firmware(fe, new_fw.type & ~F8MHZ, &new_fw.id);
812
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300813 if (rc < 0)
Chris Pascoee0f0b372007-11-19 11:22:03 -0300814 goto fail;
815
816skip_std_specific:
817 if (priv->cur_fw.scode_table == new_fw.scode_table &&
818 priv->cur_fw.scode_nr == new_fw.scode_nr) {
819 tuner_dbg("SCODE firmware already loaded.\n");
820 goto check_device;
821 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300822
Mauro Carvalho Chehab40ae91a2008-02-14 01:52:48 -0300823 if (new_fw.type & FM)
824 goto check_device;
825
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300826 /* Load SCODE firmware, if exists */
Chris Pascoee0f0b372007-11-19 11:22:03 -0300827 tuner_dbg("Trying to load scode %d\n", new_fw.scode_nr);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300828
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300829 rc = load_scode(fe, new_fw.type | new_fw.scode_table, &new_fw.id,
830 new_fw.int_freq, new_fw.scode_nr);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300831
Chris Pascoee0f0b372007-11-19 11:22:03 -0300832check_device:
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300833 if (xc2028_get_reg(priv, 0x0004, &version) < 0 ||
834 xc2028_get_reg(priv, 0x0008, &hwmodel) < 0) {
835 tuner_err("Unable to read tuner registers.\n");
836 goto fail;
837 }
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300838
Devin Heitmuellerb37f2d62008-04-21 07:02:09 -0300839 tuner_dbg("Device is Xceive %d version %d.%d, "
840 "firmware version %d.%d\n",
841 hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8,
842 (version & 0xf0) >> 4, version & 0xf);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300843
Mauro Carvalho Chehab0fb84ce2008-12-02 08:30:16 -0300844
845 if (priv->ctrl.read_not_reliable)
846 goto read_not_reliable;
847
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300848 /* Check firmware version against what we downloaded. */
849 if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) {
Mauro Carvalho Chehab2d5024a2009-09-14 10:23:20 -0300850 if (!priv->ctrl.read_not_reliable) {
851 tuner_err("Incorrect readback of firmware version.\n");
852 goto fail;
853 } else {
854 tuner_err("Returned an incorrect version. However, "
855 "read is not reliable enough. Ignoring it.\n");
856 hwmodel = 3028;
857 }
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300858 }
859
860 /* Check that the tuner hardware model remains consistent over time. */
861 if (priv->hwmodel == 0 && (hwmodel == 2028 || hwmodel == 3028)) {
862 priv->hwmodel = hwmodel;
863 priv->hwvers = version & 0xff00;
864 } else if (priv->hwmodel == 0 || priv->hwmodel != hwmodel ||
865 priv->hwvers != (version & 0xff00)) {
866 tuner_err("Read invalid device hardware information - tuner "
867 "hung?\n");
868 goto fail;
869 }
870
Mauro Carvalho Chehab0fb84ce2008-12-02 08:30:16 -0300871read_not_reliable:
Ezequiel Garcia03c42002012-10-23 15:57:16 -0300872 priv->cur_fw = new_fw;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300873
874 /*
875 * By setting BASE in cur_fw.type only after successfully loading all
876 * firmwares, we can:
877 * 1. Identify that BASE firmware with type=0 has been loaded;
878 * 2. Tell whether BASE firmware was just changed the next time through.
879 */
880 priv->cur_fw.type |= BASE;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300881 priv->state = XC2028_ACTIVE;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300882
883 return 0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300884
885fail:
Mauro Carvalho Chehabebf044f2014-01-06 06:39:51 -0300886 priv->state = XC2028_NO_FIRMWARE;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300887
Chris Pascoee0f0b372007-11-19 11:22:03 -0300888 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Alina Friedrichsenb8bc77d2011-01-23 12:27:05 -0300889 if (retry_count < 8) {
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300890 msleep(50);
Alina Friedrichsenb8bc77d2011-01-23 12:27:05 -0300891 retry_count++;
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300892 tuner_dbg("Retrying firmware load\n");
893 goto retry;
894 }
895
Mauro Carvalho Chehabebf044f2014-01-06 06:39:51 -0300896 /* Firmware didn't load. Put the device to sleep */
897 xc2028_sleep(fe);
898
Chris Pascoee0f0b372007-11-19 11:22:03 -0300899 if (rc == -ENOENT)
900 rc = -EINVAL;
901 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300902}
903
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300904static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300905{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300906 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoe7d58d112007-11-19 04:31:58 -0300907 u16 frq_lock, signal = 0;
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300908 int rc, i;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300909
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300910 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300911
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300912 rc = check_device_status(priv);
913 if (rc < 0)
914 return rc;
915
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300916 mutex_lock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300917
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300918 /* Sync Lock Indicator */
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300919 for (i = 0; i < 3; i++) {
920 rc = xc2028_get_reg(priv, XREG_LOCK, &frq_lock);
921 if (rc < 0)
922 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300923
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300924 if (frq_lock)
925 break;
926 msleep(6);
927 }
928
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -0300929 /* Frequency didn't lock */
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300930 if (frq_lock == 2)
931 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300932
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300933 /* Get SNR of the video signal */
Miroslav Slugen304bce42011-12-11 20:19:34 -0300934 rc = xc2028_get_reg(priv, XREG_SNR, &signal);
Chris Pascoe7d58d112007-11-19 04:31:58 -0300935 if (rc < 0)
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300936 goto ret;
937
Mauro Carvalho Chehab90acb852012-07-04 02:00:00 -0300938 /* Signal level is 3 bits only */
939
940 signal = ((1 << 12) - 1) | ((signal & 0x07) << 12);
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300941
942ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300943 mutex_unlock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300944
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300945 *strength = signal;
946
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300947 tuner_dbg("signal strength is %d\n", signal);
948
Chris Pascoe7d58d112007-11-19 04:31:58 -0300949 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300950}
951
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -0300952static int xc2028_get_afc(struct dvb_frontend *fe, s32 *afc)
953{
954 struct xc2028_data *priv = fe->tuner_priv;
955 int i, rc;
956 u16 frq_lock = 0;
957 s16 afc_reg = 0;
958
959 rc = check_device_status(priv);
960 if (rc < 0)
961 return rc;
962
963 mutex_lock(&priv->lock);
964
965 /* Sync Lock Indicator */
966 for (i = 0; i < 3; i++) {
967 rc = xc2028_get_reg(priv, XREG_LOCK, &frq_lock);
968 if (rc < 0)
969 goto ret;
970
971 if (frq_lock)
972 break;
973 msleep(6);
974 }
975
976 /* Frequency didn't lock */
977 if (frq_lock == 2)
978 goto ret;
979
980 /* Get AFC */
981 rc = xc2028_get_reg(priv, XREG_FREQ_ERROR, &afc_reg);
982 if (rc < 0)
Dan Carpenterf088ccd2012-07-21 04:32:59 -0300983 goto ret;
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -0300984
985 *afc = afc_reg * 15625; /* Hz */
986
987 tuner_dbg("AFC is %d Hz\n", *afc);
988
989ret:
990 mutex_unlock(&priv->lock);
991
992 return rc;
993}
994
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300995#define DIV 15625
996
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300997static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */,
Hans Verkuilaa40d192011-03-06 09:24:32 -0300998 enum v4l2_tuner_type new_type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300999 unsigned int type,
1000 v4l2_std_id std,
1001 u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001002{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001003 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001004 int rc = -EINVAL;
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -03001005 unsigned char buf[4];
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001006 u32 div, offset = 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001007
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001008 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001009
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001010 mutex_lock(&priv->lock);
1011
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -03001012 tuner_dbg("should set frequency %d kHz\n", freq / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001013
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -03001014 if (check_firmware(fe, type, std, int_freq) < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001015 goto ret;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001016
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -03001017 /* On some cases xc2028 can disable video output, if
1018 * very weak signals are received. By sending a soft
1019 * reset, this is re-enabled. So, it is better to always
1020 * send a soft reset before changing channels, to be sure
1021 * that xc2028 will be in a safe state.
1022 * Maybe this might also be needed for DTV.
1023 */
Mauro Carvalho Chehabfd34cb02011-08-31 15:12:45 -03001024 switch (new_type) {
1025 case V4L2_TUNER_ANALOG_TV:
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -03001026 rc = send_seq(priv, {0x00, 0x00});
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001027
Mauro Carvalho Chehabfd34cb02011-08-31 15:12:45 -03001028 /* Analog mode requires offset = 0 */
1029 break;
1030 case V4L2_TUNER_RADIO:
1031 /* Radio mode requires offset = 0 */
1032 break;
1033 case V4L2_TUNER_DIGITAL_TV:
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001034 /*
1035 * Digital modes require an offset to adjust to the
1036 * proper frequency. The offset depends on what
1037 * firmware version is used.
1038 */
1039
1040 /*
1041 * Adjust to the center frequency. This is calculated by the
1042 * formula: offset = 1.25MHz - BW/2
1043 * For DTV 7/8, the firmware uses BW = 8000, so it needs a
1044 * further adjustment to get the frequency center on VHF
1045 */
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001046
1047 /*
1048 * The firmware DTV78 used to work fine in UHF band (8 MHz
1049 * bandwidth) but not at all in VHF band (7 MHz bandwidth).
1050 * The real problem was connected to the formula used to
1051 * calculate the center frequency offset in VHF band.
1052 * In fact, removing the 500KHz adjustment fixed the problem.
1053 * This is coherent to what was implemented for the DTV7
1054 * firmware.
1055 * In the end, now the center frequency is the same for all 3
1056 * firmwares (DTV7, DTV8, DTV78) and doesn't depend on channel
1057 * bandwidth.
1058 */
1059
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001060 if (priv->cur_fw.type & DTV6)
1061 offset = 1750000;
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001062 else /* DTV7 or DTV8 or DTV78 */
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001063 offset = 2750000;
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001064
1065 /*
1066 * xc3028 additional "magic"
1067 * Depending on the firmware version, it needs some adjustments
1068 * to properly centralize the frequency. This seems to be
1069 * needed to compensate the SCODE table adjustments made by
1070 * newer firmwares
1071 */
1072
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001073 /*
1074 * The proper adjustment would be to do it at s-code table.
1075 * However, this didn't work, as reported by
1076 * Robert Lowery <rglowery@exemail.com.au>
1077 */
1078
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001079#if 0
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001080 /*
1081 * Still need tests for XC3028L (firmware 3.2 or upper)
1082 * So, for now, let's just comment the per-firmware
1083 * version of this change. Reports with xc3028l working
1084 * with and without the lines bellow are welcome
1085 */
1086
1087 if (priv->firm_version < 0x0302) {
1088 if (priv->cur_fw.type & DTV7)
1089 offset += 500000;
1090 } else {
1091 if (priv->cur_fw.type & DTV7)
1092 offset -= 300000;
1093 else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */
1094 offset += 200000;
1095 }
1096#endif
Chris Pascoea44f1c42007-11-19 06:35:26 -03001097 }
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001098
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001099 div = (freq - offset + DIV / 2) / DIV;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001100
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001101 /* CMD= Set frequency */
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001102 if (priv->firm_version < 0x0202)
Miroslav Slugen304bce42011-12-11 20:19:34 -03001103 rc = send_seq(priv, {0x00, XREG_RF_FREQ, 0x00, 0x00});
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001104 else
Miroslav Slugen304bce42011-12-11 20:19:34 -03001105 rc = send_seq(priv, {0x80, XREG_RF_FREQ, 0x00, 0x00});
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001106 if (rc < 0)
1107 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001108
Mauro Carvalho Chehab1fe873692008-04-22 14:45:20 -03001109 /* Return code shouldn't be checked.
1110 The reset CLK is needed only with tm6000.
1111 Driver should work fine even if this fails.
1112 */
Devin Heitmueller70ca3c42010-01-19 01:38:45 -03001113 if (priv->ctrl.msleep)
1114 msleep(priv->ctrl.msleep);
Michael Krufkyd7cba042008-09-12 13:31:45 -03001115 do_tuner_callback(fe, XC2028_RESET_CLK, 1);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001116
1117 msleep(10);
Michel Ludwig701672e2007-07-18 10:29:10 -03001118
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001119 buf[0] = 0xff & (div >> 24);
1120 buf[1] = 0xff & (div >> 16);
1121 buf[2] = 0xff & (div >> 8);
1122 buf[3] = 0xff & (div);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001123
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001124 rc = i2c_send(priv, buf, sizeof(buf));
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001125 if (rc < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001126 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001127 msleep(100);
1128
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001129 priv->frequency = freq;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001130
Andy Shevchenkoc6480cc2012-08-07 12:43:03 -03001131 tuner_dbg("divisor= %*ph (freq=%d.%03d)\n", 4, buf,
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -03001132 freq / 1000000, (freq % 1000000) / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001133
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001134 rc = 0;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001135
1136ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001137 mutex_unlock(&priv->lock);
1138
1139 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001140}
1141
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001142static int xc2028_set_analog_freq(struct dvb_frontend *fe,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001143 struct analog_parameters *p)
Michel Ludwig701672e2007-07-18 10:29:10 -03001144{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001145 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001146 unsigned int type=0;
1147
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001148 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabc71d4bc2007-11-22 11:47:18 -03001149
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -03001150 if (p->mode == V4L2_TUNER_RADIO) {
1151 type |= FM;
1152 if (priv->ctrl.input1)
1153 type |= INPUT1;
1154 return generic_set_freq(fe, (625l * p->frequency) / 10,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001155 V4L2_TUNER_RADIO, type, 0, 0);
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -03001156 }
1157
Mauro Carvalho Chehaba5e9fe12007-11-23 11:36:18 -03001158 /* if std is not defined, choose one */
1159 if (!p->std)
1160 p->std = V4L2_STD_MN;
1161
1162 /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001163 if (!(p->std & V4L2_STD_MN))
1164 type |= F8MHZ;
Michel Ludwig701672e2007-07-18 10:29:10 -03001165
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001166 /* Add audio hack to std mask */
1167 p->std |= parse_audio_std_option();
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001168
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001169 return generic_set_freq(fe, 62500l * p->frequency,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001170 V4L2_TUNER_ANALOG_TV, type, p->std, 0);
Michel Ludwig701672e2007-07-18 10:29:10 -03001171}
1172
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -03001173static int xc2028_set_params(struct dvb_frontend *fe)
Michel Ludwig701672e2007-07-18 10:29:10 -03001174{
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001175 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1176 u32 delsys = c->delivery_system;
1177 u32 bw = c->bandwidth_hz;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001178 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001179 int rc;
1180 unsigned int type = 0;
Chris Pascoead35ce92007-12-02 06:36:42 -03001181 u16 demod = 0;
Michel Ludwig701672e2007-07-18 10:29:10 -03001182
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001183 tuner_dbg("%s called\n", __func__);
Michel Ludwig701672e2007-07-18 10:29:10 -03001184
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001185 rc = check_device_status(priv);
1186 if (rc < 0)
1187 return rc;
1188
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001189 switch (delsys) {
1190 case SYS_DVBT:
1191 case SYS_DVBT2:
Mauro Carvalho Chehaba1014d72009-06-01 11:46:08 -03001192 /*
1193 * The only countries with 6MHz seem to be Taiwan/Uruguay.
1194 * Both seem to require QAM firmware for OFDM decoding
1195 * Tested in Taiwan by Terry Wu <terrywu2009@gmail.com>
1196 */
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001197 if (bw <= 6000000)
Mauro Carvalho Chehaba1014d72009-06-01 11:46:08 -03001198 type |= QAM;
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -03001199
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -03001200 switch (priv->ctrl.type) {
1201 case XC2028_D2633:
1202 type |= D2633;
1203 break;
1204 case XC2028_D2620:
1205 type |= D2620;
1206 break;
1207 case XC2028_AUTO:
1208 default:
1209 /* Zarlink seems to need D2633 */
1210 if (priv->ctrl.demod == XC3028_FE_ZARLINK456)
1211 type |= D2633;
1212 else
1213 type |= D2620;
1214 }
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001215 break;
1216 case SYS_ATSC:
1217 /* The only ATSC firmware (at least on v2.7) is D2633 */
1218 type |= ATSC | D2633;
1219 break;
1220 /* DVB-S and pure QAM (FE_QAM) are not supported */
1221 default:
1222 return -EINVAL;
1223 }
1224
1225 if (bw <= 6000000) {
1226 type |= DTV6;
1227 priv->ctrl.vhfbw7 = 0;
1228 priv->ctrl.uhfbw8 = 0;
1229 } else if (bw <= 7000000) {
1230 if (c->frequency < 470000000)
1231 priv->ctrl.vhfbw7 = 1;
1232 else
1233 priv->ctrl.uhfbw8 = 0;
1234 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV7;
1235 type |= F8MHZ;
1236 } else {
1237 if (c->frequency < 470000000)
1238 priv->ctrl.vhfbw7 = 0;
1239 else
1240 priv->ctrl.uhfbw8 = 1;
1241 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV8;
1242 type |= F8MHZ;
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -03001243 }
1244
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -03001245 /* All S-code tables need a 200kHz shift */
Andy Walls6e707b42009-06-11 07:57:50 -03001246 if (priv->ctrl.demod) {
Mauro Carvalho Chehab7d350282010-02-19 20:08:06 -02001247 demod = priv->ctrl.demod;
1248
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001249 /*
1250 * Newer firmwares require a 200 kHz offset only for ATSC
1251 */
1252 if (type == ATSC || priv->firm_version < 0x0302)
Mauro Carvalho Chehab7d350282010-02-19 20:08:06 -02001253 demod += 200;
Andy Walls6e707b42009-06-11 07:57:50 -03001254 /*
1255 * The DTV7 S-code table needs a 700 kHz shift.
Andy Walls6e707b42009-06-11 07:57:50 -03001256 *
1257 * DTV7 is only used in Australia. Germany or Italy may also
1258 * use this firmware after initialization, but a tune to a UHF
1259 * channel should then cause DTV78 to be used.
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001260 *
1261 * Unfortunately, on real-field tests, the s-code offset
1262 * didn't work as expected, as reported by
1263 * Robert Lowery <rglowery@exemail.com.au>
Andy Walls6e707b42009-06-11 07:57:50 -03001264 */
Andy Walls6e707b42009-06-11 07:57:50 -03001265 }
Mauro Carvalho Chehabb542dfd2007-11-24 11:07:12 -03001266
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001267 return generic_set_freq(fe, c->frequency,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001268 V4L2_TUNER_DIGITAL_TV, type, 0, demod);
Michel Ludwig701672e2007-07-18 10:29:10 -03001269}
1270
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001271static int xc2028_sleep(struct dvb_frontend *fe)
1272{
1273 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001274 int rc;
1275
1276 rc = check_device_status(priv);
1277 if (rc < 0)
1278 return rc;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001279
Devin Heitmueller93b99922009-08-03 22:52:59 -03001280 /* Avoid firmware reload on slow devices or if PM disabled */
1281 if (no_poweroff || priv->ctrl.disable_power_mgmt)
Mauro Carvalho Chehab10f201a2008-12-05 10:49:53 -03001282 return 0;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001283
Mauro Carvalho Chehabebf044f2014-01-06 06:39:51 -03001284 /* Device is already in sleep mode */
1285 if (priv->state == XC2028_SLEEP)
1286 return 0;
1287
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001288 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 Chehabebf044f2014-01-06 06:39:51 -03001301 if (rc >= 0)
1302 priv->state = XC2028_SLEEP;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001303
1304 mutex_unlock(&priv->lock);
1305
1306 return rc;
1307}
Chris Pascoe45819c32007-11-19 11:41:20 -03001308
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001309static int xc2028_dvb_release(struct dvb_frontend *fe)
Michel Ludwig701672e2007-07-18 10:29:10 -03001310{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001311 struct xc2028_data *priv = fe->tuner_priv;
Michel Ludwig701672e2007-07-18 10:29:10 -03001312
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001313 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001314
Chris Pascoeaa501be2007-11-19 04:45:38 -03001315 mutex_lock(&xc2028_list_mutex);
1316
Michael Krufkyc663d032008-04-18 21:22:50 -03001317 /* only perform final cleanup if this is the last instance */
1318 if (hybrid_tuner_report_instance_count(priv) == 1) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001319 free_firmware(priv);
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001320 kfree(priv->ctrl.fname);
1321 priv->ctrl.fname = NULL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001322 }
Michel Ludwig701672e2007-07-18 10:29:10 -03001323
Michael Krufkyc663d032008-04-18 21:22:50 -03001324 if (priv)
1325 hybrid_tuner_release_state(priv);
1326
Chris Pascoeaa501be2007-11-19 04:45:38 -03001327 mutex_unlock(&xc2028_list_mutex);
1328
Michael Krufkyc663d032008-04-18 21:22:50 -03001329 fe->tuner_priv = NULL;
1330
Michel Ludwig701672e2007-07-18 10:29:10 -03001331 return 0;
1332}
1333
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001334static int xc2028_get_frequency(struct dvb_frontend *fe, u32 *frequency)
Michel Ludwig701672e2007-07-18 10:29:10 -03001335{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001336 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001337 int rc;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001338
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001339 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001340
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001341 rc = check_device_status(priv);
1342 if (rc < 0)
1343 return rc;
1344
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001345 *frequency = priv->frequency;
Michel Ludwig701672e2007-07-18 10:29:10 -03001346
1347 return 0;
1348}
1349
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001350static void load_firmware_cb(const struct firmware *fw,
1351 void *context)
1352{
1353 struct dvb_frontend *fe = context;
1354 struct xc2028_data *priv = fe->tuner_priv;
1355 int rc;
1356
1357 tuner_dbg("request_firmware_nowait(): %s\n", fw ? "OK" : "error");
1358 if (!fw) {
1359 tuner_err("Could not load firmware %s.\n", priv->fname);
1360 priv->state = XC2028_NODEV;
1361 return;
1362 }
1363
1364 rc = load_all_firmwares(fe, fw);
1365
1366 release_firmware(fw);
1367
1368 if (rc < 0)
1369 return;
Mauro Carvalho Chehabebf044f2014-01-06 06:39:51 -03001370 priv->state = XC2028_ACTIVE;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001371}
1372
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001373static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001374{
1375 struct xc2028_data *priv = fe->tuner_priv;
1376 struct xc2028_ctrl *p = priv_cfg;
Chris Pascoe0a196b62007-11-19 09:29:59 -03001377 int rc = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001378
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001379 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001380
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001381 mutex_lock(&priv->lock);
1382
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001383 /*
1384 * Copy the config data.
1385 * For the firmware name, keep a local copy of the string,
1386 * in order to avoid troubles during device release.
1387 */
Syam Sidhardhanf1065c92013-02-26 15:30:45 -03001388 kfree(priv->ctrl.fname);
Chris Pascoe0a196b62007-11-19 09:29:59 -03001389 memcpy(&priv->ctrl, p, sizeof(priv->ctrl));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001390 if (p->fname) {
Chris Pascoe0a196b62007-11-19 09:29:59 -03001391 priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL);
1392 if (priv->ctrl.fname == NULL)
1393 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001394 }
1395
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001396 /*
1397 * If firmware name changed, frees firmware. As free_firmware will
1398 * reset the status to NO_FIRMWARE, this forces a new request_firmware
1399 */
1400 if (!firmware_name[0] && p->fname &&
1401 priv->fname && strcmp(p->fname, priv->fname))
1402 free_firmware(priv);
1403
1404 if (priv->ctrl.max_len < 9)
1405 priv->ctrl.max_len = 13;
1406
1407 if (priv->state == XC2028_NO_FIRMWARE) {
1408 if (!firmware_name[0])
1409 priv->fname = priv->ctrl.fname;
1410 else
1411 priv->fname = firmware_name;
1412
1413 rc = request_firmware_nowait(THIS_MODULE, 1,
1414 priv->fname,
1415 priv->i2c_props.adap->dev.parent,
1416 GFP_KERNEL,
1417 fe, load_firmware_cb);
1418 if (rc < 0) {
1419 tuner_err("Failed to request firmware %s\n",
1420 priv->fname);
1421 priv->state = XC2028_NODEV;
Hans Petter Selasky1e9c14f2012-08-03 03:34:05 -03001422 } else
1423 priv->state = XC2028_WAITING_FIRMWARE;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001424 }
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001425 mutex_unlock(&priv->lock);
1426
Chris Pascoe0a196b62007-11-19 09:29:59 -03001427 return rc;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001428}
1429
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001430static const struct dvb_tuner_ops xc2028_dvb_tuner_ops = {
Michel Ludwig701672e2007-07-18 10:29:10 -03001431 .info = {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001432 .name = "Xceive XC3028",
1433 .frequency_min = 42000000,
1434 .frequency_max = 864000000,
1435 .frequency_step = 50000,
1436 },
Michel Ludwig701672e2007-07-18 10:29:10 -03001437
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001438 .set_config = xc2028_set_config,
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001439 .set_analog_params = xc2028_set_analog_freq,
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001440 .release = xc2028_dvb_release,
1441 .get_frequency = xc2028_get_frequency,
1442 .get_rf_strength = xc2028_signal,
Mauro Carvalho Chehab1d432a32012-07-04 02:33:55 -03001443 .get_afc = xc2028_get_afc,
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001444 .set_params = xc2028_set_params,
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001445 .sleep = xc2028_sleep,
Michel Ludwig701672e2007-07-18 10:29:10 -03001446};
1447
Michael Krufky7972f982007-12-21 16:12:09 -03001448struct dvb_frontend *xc2028_attach(struct dvb_frontend *fe,
1449 struct xc2028_config *cfg)
Michel Ludwig701672e2007-07-18 10:29:10 -03001450{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001451 struct xc2028_data *priv;
Michael Krufkyc663d032008-04-18 21:22:50 -03001452 int instance;
Michel Ludwig701672e2007-07-18 10:29:10 -03001453
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -03001454 if (debug)
Michael Krufky27566652008-04-22 14:41:53 -03001455 printk(KERN_DEBUG "xc2028: Xcv2028/3028 init called!\n");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001456
Mauro Carvalho Chehabb412ba72008-04-22 14:46:11 -03001457 if (NULL == cfg)
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001458 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001459
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001460 if (!fe) {
Michael Krufky27566652008-04-22 14:41:53 -03001461 printk(KERN_ERR "xc2028: No frontend!\n");
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001462 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001463 }
1464
Chris Pascoeaa501be2007-11-19 04:45:38 -03001465 mutex_lock(&xc2028_list_mutex);
1466
Michael Krufkyc663d032008-04-18 21:22:50 -03001467 instance = hybrid_tuner_request_state(struct xc2028_data, priv,
1468 hybrid_tuner_instance_list,
1469 cfg->i2c_adap, cfg->i2c_addr,
1470 "xc2028");
1471 switch (instance) {
1472 case 0:
1473 /* memory allocation failure */
1474 goto fail;
1475 break;
1476 case 1:
1477 /* new tuner instance */
Chris Pascoe0a196b62007-11-19 09:29:59 -03001478 priv->ctrl.max_len = 13;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001479
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001480 mutex_init(&priv->lock);
1481
Michael Krufkyc663d032008-04-18 21:22:50 -03001482 fe->tuner_priv = priv;
1483 break;
1484 case 2:
1485 /* existing tuner instance */
1486 fe->tuner_priv = priv;
1487 break;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001488 }
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001489
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001490 memcpy(&fe->ops.tuner_ops, &xc2028_dvb_tuner_ops,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001491 sizeof(xc2028_dvb_tuner_ops));
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001492
1493 tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner");
Michel Ludwig701672e2007-07-18 10:29:10 -03001494
Mauro Carvalho Chehab71a2ee32007-11-22 12:19:37 -03001495 if (cfg->ctrl)
1496 xc2028_set_config(fe, cfg->ctrl);
1497
Chris Pascoeaa501be2007-11-19 04:45:38 -03001498 mutex_unlock(&xc2028_list_mutex);
1499
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001500 return fe;
Michael Krufkyc663d032008-04-18 21:22:50 -03001501fail:
1502 mutex_unlock(&xc2028_list_mutex);
1503
1504 xc2028_dvb_release(fe);
1505 return NULL;
Michel Ludwig701672e2007-07-18 10:29:10 -03001506}
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001507
Michel Ludwig701672e2007-07-18 10:29:10 -03001508EXPORT_SYMBOL(xc2028_attach);
1509
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001510MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver");
Mauro Carvalho Chehab983d2142007-10-29 23:44:18 -03001511MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001512MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
1513MODULE_LICENSE("GPL");
Mauro Carvalho Chehabab9cbcd2012-06-26 15:34:22 -03001514MODULE_FIRMWARE(XC2028_DEFAULT_FIRMWARE);
1515MODULE_FIRMWARE(XC3028L_DEFAULT_FIRMWARE);