blob: 9638a69f36b2c32ff43d8bab19adf5c9f0216c0c [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
Miroslav Slugen304bce42011-12-11 20:19:34 -030027/* Registers (Write-only) */
28#define XREG_INIT 0x00
29#define XREG_RF_FREQ 0x02
30#define XREG_POWER_DOWN 0x08
31
32/* Registers (Read-only) */
33#define XREG_FREQ_ERROR 0x01
34#define XREG_LOCK 0x02
35#define XREG_VERSION 0x04
36#define XREG_PRODUCT_ID 0x08
37#define XREG_HSYNC_FREQ 0x10
38#define XREG_FRAME_LINES 0x20
39#define XREG_SNR 0x40
40
41#define XREG_ADC_ENV 0x0100
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -030042
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -030043static int debug;
44module_param(debug, int, 0644);
45MODULE_PARM_DESC(debug, "enable verbose debug messages");
46
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -030047static int no_poweroff;
48module_param(no_poweroff, int, 0644);
Devin Heitmueller49008772009-04-28 16:22:47 -030049MODULE_PARM_DESC(no_poweroff, "0 (default) powers device off when not used.\n"
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -030050 "1 keep device energized and with tuner ready all the times.\n"
51 " Faster, but consumes more power and keeps the device hotter\n");
52
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -030053static char audio_std[8];
54module_param_string(audio_std, audio_std, sizeof(audio_std), 0);
55MODULE_PARM_DESC(audio_std,
56 "Audio standard. XC3028 audio decoder explicitly "
57 "needs to know what audio\n"
58 "standard is needed for some video standards with audio A2 or NICAM.\n"
59 "The valid values are:\n"
60 "A2\n"
61 "A2/A\n"
62 "A2/B\n"
63 "NICAM\n"
64 "NICAM/A\n"
65 "NICAM/B\n");
66
Samuel Ortiz4327b772009-05-27 00:49:33 +020067static char firmware_name[30];
Mauro Carvalho Chehab5c913c02008-04-22 14:46:24 -030068module_param_string(firmware_name, firmware_name, sizeof(firmware_name), 0);
69MODULE_PARM_DESC(firmware_name, "Firmware file name. Allows overriding the "
70 "default firmware name\n");
71
Michael Krufkyc663d032008-04-18 21:22:50 -030072static LIST_HEAD(hybrid_tuner_instance_list);
Chris Pascoeaa501be2007-11-19 04:45:38 -030073static DEFINE_MUTEX(xc2028_list_mutex);
74
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030075/* struct for storing firmware table */
76struct firmware_description {
77 unsigned int type;
78 v4l2_std_id id;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -030079 __u16 int_freq;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030080 unsigned char *ptr;
81 unsigned int size;
82};
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030083
Chris Pascoee0f0b372007-11-19 11:22:03 -030084struct firmware_properties {
85 unsigned int type;
86 v4l2_std_id id;
87 v4l2_std_id std_req;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -030088 __u16 int_freq;
Chris Pascoee0f0b372007-11-19 11:22:03 -030089 unsigned int scode_table;
90 int scode_nr;
91};
92
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -030093enum xc2028_state {
94 XC2028_NO_FIRMWARE = 0,
95 XC2028_WAITING_FIRMWARE,
96 XC2028_ACTIVE,
97 XC2028_SLEEP,
98 XC2028_NODEV,
99};
100
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300101struct xc2028_data {
Michael Krufkyc663d032008-04-18 21:22:50 -0300102 struct list_head hybrid_tuner_instance_list;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300103 struct tuner_i2c_props i2c_props;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300104 __u32 frequency;
105
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300106 enum xc2028_state state;
107 const char *fname;
108
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300109 struct firmware_description *firm;
110 int firm_size;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300111 __u16 firm_version;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300112
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300113 __u16 hwmodel;
114 __u16 hwvers;
115
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300116 struct xc2028_ctrl ctrl;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300117
Chris Pascoee0f0b372007-11-19 11:22:03 -0300118 struct firmware_properties cur_fw;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300119
120 struct mutex lock;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300121};
122
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300123#define i2c_send(priv, buf, size) ({ \
124 int _rc; \
125 _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \
126 if (size != _rc) \
127 tuner_info("i2c output error: rc = %d (should be %d)\n",\
128 _rc, (int)size); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300129 if (priv->ctrl.msleep) \
130 msleep(priv->ctrl.msleep); \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300131 _rc; \
132})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300133
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300134#define i2c_rcv(priv, buf, size) ({ \
135 int _rc; \
136 _rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, size); \
137 if (size != _rc) \
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300138 tuner_err("i2c input error: rc = %d (should be %d)\n", \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300139 _rc, (int)size); \
140 _rc; \
141})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300142
Chris Pascoe7d58d112007-11-19 04:31:58 -0300143#define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \
144 int _rc; \
145 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
146 ibuf, isize); \
147 if (isize != _rc) \
148 tuner_err("i2c input error: rc = %d (should be %d)\n", \
149 _rc, (int)isize); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300150 if (priv->ctrl.msleep) \
151 msleep(priv->ctrl.msleep); \
Chris Pascoe7d58d112007-11-19 04:31:58 -0300152 _rc; \
153})
154
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300155#define send_seq(priv, data...) ({ \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300156 static u8 _val[] = data; \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300157 int _rc; \
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300158 if (sizeof(_val) != \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300159 (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300160 _val, sizeof(_val)))) { \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300161 tuner_err("Error on line %d: %d\n", __LINE__, _rc); \
Devin Heitmueller70ca3c42010-01-19 01:38:45 -0300162 } else if (priv->ctrl.msleep) \
Mauro Carvalho Chehabe5cc2bf2008-01-08 11:26:59 -0300163 msleep(priv->ctrl.msleep); \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300164 _rc; \
165})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300166
Devin Heitmueller83244022008-04-17 21:41:16 -0300167static int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300168{
Mauro Carvalho Chehabb873e1a2007-11-05 08:41:50 -0300169 unsigned char buf[2];
Chris Pascoe7d58d112007-11-19 04:31:58 -0300170 unsigned char ibuf[2];
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300171
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300172 tuner_dbg("%s %04x called\n", __func__, reg);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300173
Chris Pascoe7d58d112007-11-19 04:31:58 -0300174 buf[0] = reg >> 8;
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300175 buf[1] = (unsigned char) reg;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300176
Chris Pascoe7d58d112007-11-19 04:31:58 -0300177 if (i2c_send_recv(priv, buf, 2, ibuf, 2) != 2)
178 return -EIO;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300179
Chris Pascoe7d58d112007-11-19 04:31:58 -0300180 *val = (ibuf[1]) | (ibuf[0] << 8);
181 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300182}
183
Chris Pascoee0262682007-12-02 06:30:50 -0300184#define dump_firm_type(t) dump_firm_type_and_int_freq(t, 0)
Adrian Bunk29bec0b2008-04-22 14:41:45 -0300185static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq)
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300186{
187 if (type & BASE)
188 printk("BASE ");
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300189 if (type & INIT1)
190 printk("INIT1 ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300191 if (type & F8MHZ)
192 printk("F8MHZ ");
193 if (type & MTS)
194 printk("MTS ");
195 if (type & D2620)
196 printk("D2620 ");
197 if (type & D2633)
198 printk("D2633 ");
199 if (type & DTV6)
200 printk("DTV6 ");
201 if (type & QAM)
202 printk("QAM ");
203 if (type & DTV7)
204 printk("DTV7 ");
205 if (type & DTV78)
206 printk("DTV78 ");
207 if (type & DTV8)
208 printk("DTV8 ");
209 if (type & FM)
210 printk("FM ");
211 if (type & INPUT1)
212 printk("INPUT1 ");
213 if (type & LCD)
214 printk("LCD ");
215 if (type & NOGD)
216 printk("NOGD ");
217 if (type & MONO)
218 printk("MONO ");
219 if (type & ATSC)
220 printk("ATSC ");
221 if (type & IF)
222 printk("IF ");
223 if (type & LG60)
224 printk("LG60 ");
225 if (type & ATI638)
226 printk("ATI638 ");
227 if (type & OREN538)
228 printk("OREN538 ");
229 if (type & OREN36)
230 printk("OREN36 ");
231 if (type & TOYOTA388)
232 printk("TOYOTA388 ");
233 if (type & TOYOTA794)
234 printk("TOYOTA794 ");
235 if (type & DIBCOM52)
236 printk("DIBCOM52 ");
237 if (type & ZARLINK456)
238 printk("ZARLINK456 ");
239 if (type & CHINA)
240 printk("CHINA ");
241 if (type & F6MHZ)
242 printk("F6MHZ ");
243 if (type & INPUT2)
244 printk("INPUT2 ");
245 if (type & SCODE)
246 printk("SCODE ");
Chris Pascoee0262682007-12-02 06:30:50 -0300247 if (type & HAS_IF)
248 printk("HAS_IF_%d ", int_freq);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300249}
250
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300251static v4l2_std_id parse_audio_std_option(void)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300252{
Chris Pascoee155d902007-11-19 04:16:47 -0300253 if (strcasecmp(audio_std, "A2") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300254 return V4L2_STD_A2;
Chris Pascoee155d902007-11-19 04:16:47 -0300255 if (strcasecmp(audio_std, "A2/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300256 return V4L2_STD_A2_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300257 if (strcasecmp(audio_std, "A2/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300258 return V4L2_STD_A2_B;
Chris Pascoee155d902007-11-19 04:16:47 -0300259 if (strcasecmp(audio_std, "NICAM") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300260 return V4L2_STD_NICAM;
Chris Pascoee155d902007-11-19 04:16:47 -0300261 if (strcasecmp(audio_std, "NICAM/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300262 return V4L2_STD_NICAM_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300263 if (strcasecmp(audio_std, "NICAM/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300264 return V4L2_STD_NICAM_B;
265
266 return 0;
267}
268
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300269static int check_device_status(struct xc2028_data *priv)
270{
271 switch (priv->state) {
272 case XC2028_NO_FIRMWARE:
273 case XC2028_WAITING_FIRMWARE:
274 return -EAGAIN;
275 case XC2028_ACTIVE:
276 case XC2028_SLEEP:
277 return 0;
278 case XC2028_NODEV:
279 return -ENODEV;
280 }
281 return 0;
282}
283
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300284static void free_firmware(struct xc2028_data *priv)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300285{
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300286 int i;
Mauro Carvalho Chehab92b75ab2008-04-17 21:40:53 -0300287 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300288
289 if (!priv->firm)
290 return;
291
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300292 for (i = 0; i < priv->firm_size; i++)
293 kfree(priv->firm[i].ptr);
294
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300295 kfree(priv->firm);
296
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300297 priv->firm = NULL;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300298 priv->firm_size = 0;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300299 priv->state = XC2028_NO_FIRMWARE;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300300
301 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300302}
303
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300304static int load_all_firmwares(struct dvb_frontend *fe,
305 const struct firmware *fw)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300306{
307 struct xc2028_data *priv = fe->tuner_priv;
David Woodhousec63e87e2008-05-24 00:13:34 +0100308 const unsigned char *p, *endp;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300309 int rc = 0;
310 int n, n_array;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300311 char name[33];
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300312
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300313 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300314
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300315 p = fw->data;
316 endp = p + fw->size;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300317
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300318 if (fw->size < sizeof(name) - 1 + 2 + 2) {
319 tuner_err("Error: firmware file %s has invalid size!\n",
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300320 priv->fname);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300321 goto corrupt;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300322 }
323
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300324 memcpy(name, p, sizeof(name) - 1);
325 name[sizeof(name) - 1] = 0;
326 p += sizeof(name) - 1;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300327
Al Viro84a9f332008-06-22 14:19:29 -0300328 priv->firm_version = get_unaligned_le16(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300329 p += 2;
330
Al Viro84a9f332008-06-22 14:19:29 -0300331 n_array = get_unaligned_le16(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300332 p += 2;
333
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300334 tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n",
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300335 n_array, priv->fname, name,
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300336 priv->firm_version >> 8, priv->firm_version & 0xff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300337
Thomas Meyer1b7acf02011-11-29 17:08:00 -0300338 priv->firm = kcalloc(n_array, sizeof(*priv->firm), GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300339 if (priv->firm == NULL) {
340 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300341 rc = -ENOMEM;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300342 goto err;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300343 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300344 priv->firm_size = n_array;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300345
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300346 n = -1;
347 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300348 __u32 type, size;
349 v4l2_std_id id;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300350 __u16 int_freq = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300351
352 n++;
353 if (n >= n_array) {
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300354 tuner_err("More firmware images in file than "
355 "were expected!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300356 goto corrupt;
357 }
358
359 /* Checks if there's enough bytes to read */
Al Viro84a9f332008-06-22 14:19:29 -0300360 if (endp - p < sizeof(type) + sizeof(id) + sizeof(size))
361 goto header;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300362
Al Viro84a9f332008-06-22 14:19:29 -0300363 type = get_unaligned_le32(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300364 p += sizeof(type);
365
Al Viro84a9f332008-06-22 14:19:29 -0300366 id = get_unaligned_le64(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300367 p += sizeof(id);
368
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300369 if (type & HAS_IF) {
Al Viro84a9f332008-06-22 14:19:29 -0300370 int_freq = get_unaligned_le16(p);
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300371 p += sizeof(int_freq);
Al Viro84a9f332008-06-22 14:19:29 -0300372 if (endp - p < sizeof(size))
373 goto header;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300374 }
375
Al Viro84a9f332008-06-22 14:19:29 -0300376 size = get_unaligned_le32(p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300377 p += sizeof(size);
378
Al Viro84a9f332008-06-22 14:19:29 -0300379 if (!size || size > endp - p) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300380 tuner_err("Firmware type ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300381 dump_firm_type(type);
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300382 printk("(%x), id %llx is corrupted "
383 "(size=%d, expected %d)\n",
Chris Pascoe91240dd2007-11-19 04:38:53 -0300384 type, (unsigned long long)id,
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300385 (unsigned)(endp - p), size);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300386 goto corrupt;
387 }
388
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300389 priv->firm[n].ptr = kzalloc(size, GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300390 if (priv->firm[n].ptr == NULL) {
391 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300392 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300393 goto err;
394 }
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300395 tuner_dbg("Reading firmware type ");
396 if (debug) {
Chris Pascoee0262682007-12-02 06:30:50 -0300397 dump_firm_type_and_int_freq(type, int_freq);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300398 printk("(%x), id %llx, size=%d.\n",
Chris Pascoee0262682007-12-02 06:30:50 -0300399 type, (unsigned long long)id, size);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300400 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300401
402 memcpy(priv->firm[n].ptr, p, size);
403 priv->firm[n].type = type;
404 priv->firm[n].id = id;
405 priv->firm[n].size = size;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300406 priv->firm[n].int_freq = int_freq;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300407
408 p += size;
409 }
410
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300411 if (n + 1 != priv->firm_size) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300412 tuner_err("Firmware file is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300413 goto corrupt;
414 }
415
416 goto done;
417
Al Viro84a9f332008-06-22 14:19:29 -0300418header:
419 tuner_err("Firmware header is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300420corrupt:
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300421 rc = -EINVAL;
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300422 tuner_err("Error: firmware file is corrupted!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300423
424err:
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300425 tuner_info("Releasing partially loaded firmware file.\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300426 free_firmware(priv);
427
428done:
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300429 if (rc == 0)
430 tuner_dbg("Firmware files loaded.\n");
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300431 else
432 priv->state = XC2028_NODEV;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300433
434 return rc;
435}
436
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300437static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
438 v4l2_std_id *id)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300439{
440 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoeb1535292007-11-19 10:04:06 -0300441 int i, best_i = -1, best_nr_matches = 0;
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300442 unsigned int type_mask = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300443
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300444 tuner_dbg("%s called, want type=", __func__);
Chris Pascoeb1535292007-11-19 10:04:06 -0300445 if (debug) {
446 dump_firm_type(type);
447 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
448 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300449
450 if (!priv->firm) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300451 tuner_err("Error! firmware not loaded\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300452 return -EINVAL;
453 }
454
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300455 if (((type & ~SCODE) == 0) && (*id == 0))
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300456 *id = V4L2_STD_PAL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300457
Chris Pascoee0f0b372007-11-19 11:22:03 -0300458 if (type & BASE)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300459 type_mask = BASE_TYPES;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300460 else if (type & SCODE) {
Chris Pascoee0f0b372007-11-19 11:22:03 -0300461 type &= SCODE_TYPES;
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300462 type_mask = SCODE_TYPES & ~HAS_IF;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300463 } else if (type & DTV_TYPES)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300464 type_mask = DTV_TYPES;
Chris Pascoe11a9eff2007-11-19 23:18:36 -0300465 else if (type & STD_SPECIFIC_TYPES)
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300466 type_mask = STD_SPECIFIC_TYPES;
467
468 type &= type_mask;
469
Harvey Harrison8367fe22008-04-25 01:28:10 -0300470 if (!(type & SCODE))
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300471 type_mask = ~0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300472
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300473 /* Seek for exact match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300474 for (i = 0; i < priv->firm_size; i++) {
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300475 if ((type == (priv->firm[i].type & type_mask)) &&
Chris Pascoeef207fe2007-12-02 09:30:55 -0300476 (*id == priv->firm[i].id))
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300477 goto found;
478 }
479
480 /* Seek for generic video standard match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300481 for (i = 0; i < priv->firm_size; i++) {
Chris Pascoeb1535292007-11-19 10:04:06 -0300482 v4l2_std_id match_mask;
483 int nr_matches;
484
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300485 if (type != (priv->firm[i].type & type_mask))
Chris Pascoeb1535292007-11-19 10:04:06 -0300486 continue;
487
488 match_mask = *id & priv->firm[i].id;
489 if (!match_mask)
490 continue;
491
492 if ((*id & match_mask) == *id)
493 goto found; /* Supports all the requested standards */
494
495 nr_matches = hweight64(match_mask);
496 if (nr_matches > best_nr_matches) {
497 best_nr_matches = nr_matches;
498 best_i = i;
499 }
500 }
501
502 if (best_nr_matches > 0) {
503 tuner_dbg("Selecting best matching firmware (%d bits) for "
504 "type=", best_nr_matches);
505 dump_firm_type(type);
506 printk("(%x), id %016llx:\n", type, (unsigned long long)*id);
507 i = best_i;
508 goto found;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300509 }
510
511 /*FIXME: Would make sense to seek for type "hint" match ? */
512
Chris Pascoeb1535292007-11-19 10:04:06 -0300513 i = -ENOENT;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300514 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300515
516found:
517 *id = priv->firm[i].id;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300518
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300519ret:
Chris Pascoeb1535292007-11-19 10:04:06 -0300520 tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found");
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300521 if (debug) {
522 dump_firm_type(type);
Chris Pascoe91240dd2007-11-19 04:38:53 -0300523 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300524 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300525 return i;
526}
527
Michael Krufkyd7cba042008-09-12 13:31:45 -0300528static inline int do_tuner_callback(struct dvb_frontend *fe, int cmd, int arg)
529{
530 struct xc2028_data *priv = fe->tuner_priv;
531
532 /* analog side (tuner-core) uses i2c_adap->algo_data.
533 * digital side is not guaranteed to have algo_data defined.
534 *
535 * digital side will always have fe->dvb defined.
536 * analog side (tuner-core) doesn't (yet) define fe->dvb.
537 */
538
539 return (!fe->callback) ? -EINVAL :
540 fe->callback(((fe->dvb) && (fe->dvb->priv)) ?
541 fe->dvb->priv : priv->i2c_props.adap->algo_data,
542 DVB_FRONTEND_COMPONENT_TUNER, cmd, arg);
543}
544
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300545static int load_firmware(struct dvb_frontend *fe, unsigned int type,
546 v4l2_std_id *id)
547{
548 struct xc2028_data *priv = fe->tuner_priv;
549 int pos, rc;
Chris Pascoe0a196b62007-11-19 09:29:59 -0300550 unsigned char *p, *endp, buf[priv->ctrl.max_len];
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300551
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300552 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300553
554 pos = seek_firmware(fe, type, id);
555 if (pos < 0)
556 return pos;
557
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300558 tuner_info("Loading firmware for type=");
Chris Pascoeb1535292007-11-19 10:04:06 -0300559 dump_firm_type(priv->firm[pos].type);
560 printk("(%x), id %016llx.\n", priv->firm[pos].type,
561 (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300562
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300563 p = priv->firm[pos].ptr;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300564 endp = p + priv->firm[pos].size;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300565
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300566 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300567 __u16 size;
568
569 /* Checks if there's enough bytes to read */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300570 if (p + sizeof(size) > endp) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300571 tuner_err("Firmware chunk size is wrong\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300572 return -EINVAL;
573 }
574
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300575 size = le16_to_cpu(*(__u16 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300576 p += sizeof(size);
577
578 if (size == 0xffff)
579 return 0;
580
581 if (!size) {
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300582 /* Special callback command received */
Michael Krufkyd7cba042008-09-12 13:31:45 -0300583 rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300584 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300585 tuner_err("Error at RESET code %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300586 (*p) & 0x7f);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300587 return -EINVAL;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300588 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300589 continue;
590 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300591 if (size >= 0xff00) {
592 switch (size) {
593 case 0xff00:
Michael Krufkyd7cba042008-09-12 13:31:45 -0300594 rc = do_tuner_callback(fe, XC2028_RESET_CLK, 0);
Michel Ludwig5403bba2007-11-16 07:49:49 -0300595 if (rc < 0) {
596 tuner_err("Error at RESET code %d\n",
597 (*p) & 0x7f);
598 return -EINVAL;
599 }
Chris Pascoeb32f9fb2007-11-19 04:53:50 -0300600 break;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300601 default:
602 tuner_info("Invalid RESET code %d\n",
603 size & 0x7f);
604 return -EINVAL;
605
606 }
Mauro Carvalho Chehab2d4c0ac2007-11-16 09:43:19 -0300607 continue;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300608 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300609
610 /* Checks for a sleep command */
611 if (size & 0x8000) {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300612 msleep(size & 0x7fff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300613 continue;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300614 }
615
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300616 if ((size + p > endp)) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300617 tuner_err("missing bytes: need %d, have %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300618 size, (int)(endp - p));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300619 return -EINVAL;
620 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300621
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300622 buf[0] = *p;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300623 p++;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300624 size--;
625
626 /* Sends message chunks */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300627 while (size > 0) {
Chris Pascoe0a196b62007-11-19 09:29:59 -0300628 int len = (size < priv->ctrl.max_len - 1) ?
629 size : priv->ctrl.max_len - 1;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300630
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300631 memcpy(buf + 1, p, len);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300632
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300633 rc = i2c_send(priv, buf, len + 1);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300634 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300635 tuner_err("%d returned from send\n", rc);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300636 return -EINVAL;
637 }
638
639 p += len;
640 size -= len;
641 }
Thierry Reding4d37ece2011-08-04 04:13:59 -0300642
643 /* silently fail if the frontend doesn't support I2C flush */
644 rc = do_tuner_callback(fe, XC2028_I2C_FLUSH, 0);
645 if ((rc < 0) && (rc != -EINVAL)) {
646 tuner_err("error executing flush: %d\n", rc);
647 return rc;
648 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300649 }
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300650 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300651}
652
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300653static int load_scode(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300654 v4l2_std_id *id, __u16 int_freq, int scode)
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300655{
656 struct xc2028_data *priv = fe->tuner_priv;
657 int pos, rc;
658 unsigned char *p;
659
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300660 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300661
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300662 if (!int_freq) {
663 pos = seek_firmware(fe, type, id);
664 if (pos < 0)
665 return pos;
666 } else {
667 for (pos = 0; pos < priv->firm_size; pos++) {
668 if ((priv->firm[pos].int_freq == int_freq) &&
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300669 (priv->firm[pos].type & HAS_IF))
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300670 break;
671 }
672 if (pos == priv->firm_size)
673 return -ENOENT;
674 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300675
676 p = priv->firm[pos].ptr;
677
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300678 if (priv->firm[pos].type & HAS_IF) {
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300679 if (priv->firm[pos].size != 12 * 16 || scode >= 16)
680 return -EINVAL;
681 p += 12 * scode;
682 } else {
683 /* 16 SCODE entries per file; each SCODE entry is 12 bytes and
684 * has a 2-byte size header in the firmware format. */
685 if (priv->firm[pos].size != 14 * 16 || scode >= 16 ||
686 le16_to_cpu(*(__u16 *)(p + 14 * scode)) != 12)
687 return -EINVAL;
688 p += 14 * scode + 2;
689 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300690
Chris Pascoed7b22c52007-11-19 10:12:45 -0300691 tuner_info("Loading SCODE for type=");
Chris Pascoee0262682007-12-02 06:30:50 -0300692 dump_firm_type_and_int_freq(priv->firm[pos].type,
693 priv->firm[pos].int_freq);
Chris Pascoed7b22c52007-11-19 10:12:45 -0300694 printk("(%x), id %016llx.\n", priv->firm[pos].type,
695 (unsigned long long)*id);
696
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300697 if (priv->firm_version < 0x0202)
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300698 rc = send_seq(priv, {0x20, 0x00, 0x00, 0x00});
699 else
700 rc = send_seq(priv, {0xa0, 0x00, 0x00, 0x00});
701 if (rc < 0)
702 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300703
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300704 rc = i2c_send(priv, p, 12);
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300705 if (rc < 0)
706 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300707
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300708 rc = send_seq(priv, {0x00, 0x8c});
709 if (rc < 0)
710 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300711
712 return 0;
713}
714
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300715static int check_firmware(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300716 v4l2_std_id std, __u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300717{
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300718 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300719 struct firmware_properties new_fw;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300720 int rc, retry_count = 0;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300721 u16 version, hwmodel;
722 v4l2_std_id std0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300723
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300724 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300725
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300726 rc = check_device_status(priv);
727 if (rc < 0)
728 return rc;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300729
Mauro Carvalho Chehab0f6dac12008-01-05 16:47:16 -0300730 if (priv->ctrl.mts && !(type & FM))
Chris Pascoee0f0b372007-11-19 11:22:03 -0300731 type |= MTS;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300732
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300733retry:
Chris Pascoee0f0b372007-11-19 11:22:03 -0300734 new_fw.type = type;
735 new_fw.id = std;
736 new_fw.std_req = std;
737 new_fw.scode_table = SCODE | priv->ctrl.scode_table;
738 new_fw.scode_nr = 0;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300739 new_fw.int_freq = int_freq;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300740
741 tuner_dbg("checking firmware, user requested type=");
742 if (debug) {
743 dump_firm_type(new_fw.type);
Chris Pascoee0262682007-12-02 06:30:50 -0300744 printk("(%x), id %016llx, ", new_fw.type,
Chris Pascoee0f0b372007-11-19 11:22:03 -0300745 (unsigned long long)new_fw.std_req);
Chris Pascoee0262682007-12-02 06:30:50 -0300746 if (!int_freq) {
747 printk("scode_tbl ");
748 dump_firm_type(priv->ctrl.scode_table);
749 printk("(%x), ", priv->ctrl.scode_table);
750 } else
751 printk("int_freq %d, ", new_fw.int_freq);
752 printk("scode_nr %d\n", new_fw.scode_nr);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300753 }
754
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300755 /*
756 * No need to reload base firmware if it matches and if the tuner
757 * is not at sleep mode
758 */
759 if ((priv->state = XC2028_ACTIVE) &&
760 (((BASE | new_fw.type) & BASE_TYPES) ==
761 (priv->cur_fw.type & BASE_TYPES))) {
Chris Pascoee0f0b372007-11-19 11:22:03 -0300762 tuner_dbg("BASE firmware not changed.\n");
763 goto skip_base;
764 }
765
766 /* Updating BASE - forget about all currently loaded firmware */
767 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
768
769 /* Reset is needed before loading firmware */
Michael Krufkyd7cba042008-09-12 13:31:45 -0300770 rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300771 if (rc < 0)
772 goto fail;
773
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300774 /* BASE firmwares are all std0 */
775 std0 = 0;
776 rc = load_firmware(fe, BASE | new_fw.type, &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300777 if (rc < 0) {
778 tuner_err("Error %d while loading base firmware\n",
779 rc);
780 goto fail;
781 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300782
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300783 /* Load INIT1, if needed */
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300784 tuner_dbg("Load init1 firmware, if exists\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300785
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300786 rc = load_firmware(fe, BASE | INIT1 | new_fw.type, &std0);
Chris Pascoe1ad0b792007-11-19 23:43:13 -0300787 if (rc == -ENOENT)
788 rc = load_firmware(fe, (BASE | INIT1 | new_fw.type) & ~F8MHZ,
789 &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300790 if (rc < 0 && rc != -ENOENT) {
791 tuner_err("Error %d while loading init1 firmware\n",
792 rc);
793 goto fail;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300794 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300795
Chris Pascoee0f0b372007-11-19 11:22:03 -0300796skip_base:
797 /*
798 * No need to reload standard specific firmware if base firmware
799 * was not reloaded and requested video standards have not changed.
800 */
801 if (priv->cur_fw.type == (BASE | new_fw.type) &&
802 priv->cur_fw.std_req == std) {
803 tuner_dbg("Std-specific firmware already loaded.\n");
804 goto skip_std_specific;
805 }
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300806
Chris Pascoee0f0b372007-11-19 11:22:03 -0300807 /* Reloading std-specific firmware forces a SCODE update */
808 priv->cur_fw.scode_table = 0;
809
Chris Pascoee0f0b372007-11-19 11:22:03 -0300810 rc = load_firmware(fe, new_fw.type, &new_fw.id);
Mauro Carvalho Chehabcca83792007-11-22 11:47:18 -0300811 if (rc == -ENOENT)
812 rc = load_firmware(fe, new_fw.type & ~F8MHZ, &new_fw.id);
813
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300814 if (rc < 0)
Chris Pascoee0f0b372007-11-19 11:22:03 -0300815 goto fail;
816
817skip_std_specific:
818 if (priv->cur_fw.scode_table == new_fw.scode_table &&
819 priv->cur_fw.scode_nr == new_fw.scode_nr) {
820 tuner_dbg("SCODE firmware already loaded.\n");
821 goto check_device;
822 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300823
Mauro Carvalho Chehab40ae91a2008-02-14 01:52:48 -0300824 if (new_fw.type & FM)
825 goto check_device;
826
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300827 /* Load SCODE firmware, if exists */
Chris Pascoee0f0b372007-11-19 11:22:03 -0300828 tuner_dbg("Trying to load scode %d\n", new_fw.scode_nr);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300829
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300830 rc = load_scode(fe, new_fw.type | new_fw.scode_table, &new_fw.id,
831 new_fw.int_freq, new_fw.scode_nr);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300832
Chris Pascoee0f0b372007-11-19 11:22:03 -0300833check_device:
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300834 if (xc2028_get_reg(priv, 0x0004, &version) < 0 ||
835 xc2028_get_reg(priv, 0x0008, &hwmodel) < 0) {
836 tuner_err("Unable to read tuner registers.\n");
837 goto fail;
838 }
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300839
Devin Heitmuellerb37f2d62008-04-21 07:02:09 -0300840 tuner_dbg("Device is Xceive %d version %d.%d, "
841 "firmware version %d.%d\n",
842 hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8,
843 (version & 0xf0) >> 4, version & 0xf);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300844
Mauro Carvalho Chehab0fb84ce2008-12-02 08:30:16 -0300845
846 if (priv->ctrl.read_not_reliable)
847 goto read_not_reliable;
848
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300849 /* Check firmware version against what we downloaded. */
850 if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) {
Mauro Carvalho Chehab2d5024a2009-09-14 10:23:20 -0300851 if (!priv->ctrl.read_not_reliable) {
852 tuner_err("Incorrect readback of firmware version.\n");
853 goto fail;
854 } else {
855 tuner_err("Returned an incorrect version. However, "
856 "read is not reliable enough. Ignoring it.\n");
857 hwmodel = 3028;
858 }
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300859 }
860
861 /* Check that the tuner hardware model remains consistent over time. */
862 if (priv->hwmodel == 0 && (hwmodel == 2028 || hwmodel == 3028)) {
863 priv->hwmodel = hwmodel;
864 priv->hwvers = version & 0xff00;
865 } else if (priv->hwmodel == 0 || priv->hwmodel != hwmodel ||
866 priv->hwvers != (version & 0xff00)) {
867 tuner_err("Read invalid device hardware information - tuner "
868 "hung?\n");
869 goto fail;
870 }
871
Mauro Carvalho Chehab0fb84ce2008-12-02 08:30:16 -0300872read_not_reliable:
Chris Pascoee0f0b372007-11-19 11:22:03 -0300873 memcpy(&priv->cur_fw, &new_fw, sizeof(priv->cur_fw));
874
875 /*
876 * By setting BASE in cur_fw.type only after successfully loading all
877 * firmwares, we can:
878 * 1. Identify that BASE firmware with type=0 has been loaded;
879 * 2. Tell whether BASE firmware was just changed the next time through.
880 */
881 priv->cur_fw.type |= BASE;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300882 priv->state = XC2028_ACTIVE;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300883
884 return 0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300885
886fail:
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300887 priv->state = XC2028_SLEEP;
888
Chris Pascoee0f0b372007-11-19 11:22:03 -0300889 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Alina Friedrichsenb8bc77d2011-01-23 12:27:05 -0300890 if (retry_count < 8) {
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300891 msleep(50);
Alina Friedrichsenb8bc77d2011-01-23 12:27:05 -0300892 retry_count++;
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300893 tuner_dbg("Retrying firmware load\n");
894 goto retry;
895 }
896
Chris Pascoee0f0b372007-11-19 11:22:03 -0300897 if (rc == -ENOENT)
898 rc = -EINVAL;
899 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300900}
901
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300902static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300903{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300904 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoe7d58d112007-11-19 04:31:58 -0300905 u16 frq_lock, signal = 0;
906 int rc;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300907
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300908 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300909
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -0300910 rc = check_device_status(priv);
911 if (rc < 0)
912 return rc;
913
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300914 mutex_lock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300915
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300916 /* Sync Lock Indicator */
Miroslav Slugen304bce42011-12-11 20:19:34 -0300917 rc = xc2028_get_reg(priv, XREG_LOCK, &frq_lock);
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300918 if (rc < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300919 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300920
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300921 /* Frequency is locked */
922 if (frq_lock == 1)
Mauro Carvalho Chehab884b0512011-11-29 13:33:52 -0300923 signal = 1 << 11;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300924
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300925 /* Get SNR of the video signal */
Miroslav Slugen304bce42011-12-11 20:19:34 -0300926 rc = xc2028_get_reg(priv, XREG_SNR, &signal);
Chris Pascoe7d58d112007-11-19 04:31:58 -0300927 if (rc < 0)
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300928 goto ret;
929
930 /* Use both frq_lock and signal to generate the result */
931 signal = signal || ((signal & 0x07) << 12);
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300932
933ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300934 mutex_unlock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300935
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300936 *strength = signal;
937
Mauro Carvalho Chehabb0166ab2008-04-24 11:19:55 -0300938 tuner_dbg("signal strength is %d\n", signal);
939
Chris Pascoe7d58d112007-11-19 04:31:58 -0300940 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300941}
942
943#define DIV 15625
944
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300945static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */,
Hans Verkuilaa40d192011-03-06 09:24:32 -0300946 enum v4l2_tuner_type new_type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300947 unsigned int type,
948 v4l2_std_id std,
949 u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300950{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300951 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300952 int rc = -EINVAL;
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -0300953 unsigned char buf[4];
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300954 u32 div, offset = 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300955
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300956 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300957
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300958 mutex_lock(&priv->lock);
959
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -0300960 tuner_dbg("should set frequency %d kHz\n", freq / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300961
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300962 if (check_firmware(fe, type, std, int_freq) < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300963 goto ret;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300964
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -0300965 /* On some cases xc2028 can disable video output, if
966 * very weak signals are received. By sending a soft
967 * reset, this is re-enabled. So, it is better to always
968 * send a soft reset before changing channels, to be sure
969 * that xc2028 will be in a safe state.
970 * Maybe this might also be needed for DTV.
971 */
Mauro Carvalho Chehabfd34cb02011-08-31 15:12:45 -0300972 switch (new_type) {
973 case V4L2_TUNER_ANALOG_TV:
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -0300974 rc = send_seq(priv, {0x00, 0x00});
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -0300975
Mauro Carvalho Chehabfd34cb02011-08-31 15:12:45 -0300976 /* Analog mode requires offset = 0 */
977 break;
978 case V4L2_TUNER_RADIO:
979 /* Radio mode requires offset = 0 */
980 break;
981 case V4L2_TUNER_DIGITAL_TV:
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -0200982 /*
983 * Digital modes require an offset to adjust to the
984 * proper frequency. The offset depends on what
985 * firmware version is used.
986 */
987
988 /*
989 * Adjust to the center frequency. This is calculated by the
990 * formula: offset = 1.25MHz - BW/2
991 * For DTV 7/8, the firmware uses BW = 8000, so it needs a
992 * further adjustment to get the frequency center on VHF
993 */
Gianluca Gennari98ab8552012-01-04 15:17:19 -0300994
995 /*
996 * The firmware DTV78 used to work fine in UHF band (8 MHz
997 * bandwidth) but not at all in VHF band (7 MHz bandwidth).
998 * The real problem was connected to the formula used to
999 * calculate the center frequency offset in VHF band.
1000 * In fact, removing the 500KHz adjustment fixed the problem.
1001 * This is coherent to what was implemented for the DTV7
1002 * firmware.
1003 * In the end, now the center frequency is the same for all 3
1004 * firmwares (DTV7, DTV8, DTV78) and doesn't depend on channel
1005 * bandwidth.
1006 */
1007
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001008 if (priv->cur_fw.type & DTV6)
1009 offset = 1750000;
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001010 else /* DTV7 or DTV8 or DTV78 */
Mauro Carvalho Chehab0a863972009-06-01 12:18:10 -03001011 offset = 2750000;
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001012
1013 /*
1014 * xc3028 additional "magic"
1015 * Depending on the firmware version, it needs some adjustments
1016 * to properly centralize the frequency. This seems to be
1017 * needed to compensate the SCODE table adjustments made by
1018 * newer firmwares
1019 */
1020
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001021 /*
1022 * The proper adjustment would be to do it at s-code table.
1023 * However, this didn't work, as reported by
1024 * Robert Lowery <rglowery@exemail.com.au>
1025 */
1026
Gianluca Gennari98ab8552012-01-04 15:17:19 -03001027#if 0
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001028 /*
1029 * Still need tests for XC3028L (firmware 3.2 or upper)
1030 * So, for now, let's just comment the per-firmware
1031 * version of this change. Reports with xc3028l working
1032 * with and without the lines bellow are welcome
1033 */
1034
1035 if (priv->firm_version < 0x0302) {
1036 if (priv->cur_fw.type & DTV7)
1037 offset += 500000;
1038 } else {
1039 if (priv->cur_fw.type & DTV7)
1040 offset -= 300000;
1041 else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */
1042 offset += 200000;
1043 }
1044#endif
Chris Pascoea44f1c42007-11-19 06:35:26 -03001045 }
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001046
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001047 div = (freq - offset + DIV / 2) / DIV;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -03001048
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001049 /* CMD= Set frequency */
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001050 if (priv->firm_version < 0x0202)
Miroslav Slugen304bce42011-12-11 20:19:34 -03001051 rc = send_seq(priv, {0x00, XREG_RF_FREQ, 0x00, 0x00});
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001052 else
Miroslav Slugen304bce42011-12-11 20:19:34 -03001053 rc = send_seq(priv, {0x80, XREG_RF_FREQ, 0x00, 0x00});
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001054 if (rc < 0)
1055 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001056
Mauro Carvalho Chehab1fe873692008-04-22 14:45:20 -03001057 /* Return code shouldn't be checked.
1058 The reset CLK is needed only with tm6000.
1059 Driver should work fine even if this fails.
1060 */
Devin Heitmueller70ca3c42010-01-19 01:38:45 -03001061 if (priv->ctrl.msleep)
1062 msleep(priv->ctrl.msleep);
Michael Krufkyd7cba042008-09-12 13:31:45 -03001063 do_tuner_callback(fe, XC2028_RESET_CLK, 1);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001064
1065 msleep(10);
Michel Ludwig701672e2007-07-18 10:29:10 -03001066
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001067 buf[0] = 0xff & (div >> 24);
1068 buf[1] = 0xff & (div >> 16);
1069 buf[2] = 0xff & (div >> 8);
1070 buf[3] = 0xff & (div);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001071
Chris Pascoe47cc5b72007-11-19 04:14:23 -03001072 rc = i2c_send(priv, buf, sizeof(buf));
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001073 if (rc < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001074 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001075 msleep(100);
1076
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001077 priv->frequency = freq;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001078
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -03001079 tuner_dbg("divisor= %02x %02x %02x %02x (freq=%d.%03d)\n",
1080 buf[0], buf[1], buf[2], buf[3],
1081 freq / 1000000, (freq % 1000000) / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001082
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001083 rc = 0;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -03001084
1085ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001086 mutex_unlock(&priv->lock);
1087
1088 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001089}
1090
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001091static int xc2028_set_analog_freq(struct dvb_frontend *fe,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001092 struct analog_parameters *p)
Michel Ludwig701672e2007-07-18 10:29:10 -03001093{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001094 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001095 unsigned int type=0;
1096
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001097 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabc71d4bc2007-11-22 11:47:18 -03001098
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -03001099 if (p->mode == V4L2_TUNER_RADIO) {
1100 type |= FM;
1101 if (priv->ctrl.input1)
1102 type |= INPUT1;
1103 return generic_set_freq(fe, (625l * p->frequency) / 10,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001104 V4L2_TUNER_RADIO, type, 0, 0);
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -03001105 }
1106
Mauro Carvalho Chehaba5e9fe12007-11-23 11:36:18 -03001107 /* if std is not defined, choose one */
1108 if (!p->std)
1109 p->std = V4L2_STD_MN;
1110
1111 /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001112 if (!(p->std & V4L2_STD_MN))
1113 type |= F8MHZ;
Michel Ludwig701672e2007-07-18 10:29:10 -03001114
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001115 /* Add audio hack to std mask */
1116 p->std |= parse_audio_std_option();
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001117
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001118 return generic_set_freq(fe, 62500l * p->frequency,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001119 V4L2_TUNER_ANALOG_TV, type, p->std, 0);
Michel Ludwig701672e2007-07-18 10:29:10 -03001120}
1121
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -03001122static int xc2028_set_params(struct dvb_frontend *fe)
Michel Ludwig701672e2007-07-18 10:29:10 -03001123{
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001124 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
1125 u32 delsys = c->delivery_system;
1126 u32 bw = c->bandwidth_hz;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001127 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001128 int rc;
1129 unsigned int type = 0;
Chris Pascoead35ce92007-12-02 06:36:42 -03001130 u16 demod = 0;
Michel Ludwig701672e2007-07-18 10:29:10 -03001131
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001132 tuner_dbg("%s called\n", __func__);
Michel Ludwig701672e2007-07-18 10:29:10 -03001133
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001134 rc = check_device_status(priv);
1135 if (rc < 0)
1136 return rc;
1137
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001138 switch (delsys) {
1139 case SYS_DVBT:
1140 case SYS_DVBT2:
Mauro Carvalho Chehaba1014d72009-06-01 11:46:08 -03001141 /*
1142 * The only countries with 6MHz seem to be Taiwan/Uruguay.
1143 * Both seem to require QAM firmware for OFDM decoding
1144 * Tested in Taiwan by Terry Wu <terrywu2009@gmail.com>
1145 */
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001146 if (bw <= 6000000)
Mauro Carvalho Chehaba1014d72009-06-01 11:46:08 -03001147 type |= QAM;
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -03001148
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -03001149 switch (priv->ctrl.type) {
1150 case XC2028_D2633:
1151 type |= D2633;
1152 break;
1153 case XC2028_D2620:
1154 type |= D2620;
1155 break;
1156 case XC2028_AUTO:
1157 default:
1158 /* Zarlink seems to need D2633 */
1159 if (priv->ctrl.demod == XC3028_FE_ZARLINK456)
1160 type |= D2633;
1161 else
1162 type |= D2620;
1163 }
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001164 break;
1165 case SYS_ATSC:
1166 /* The only ATSC firmware (at least on v2.7) is D2633 */
1167 type |= ATSC | D2633;
1168 break;
1169 /* DVB-S and pure QAM (FE_QAM) are not supported */
1170 default:
1171 return -EINVAL;
1172 }
1173
1174 if (bw <= 6000000) {
1175 type |= DTV6;
1176 priv->ctrl.vhfbw7 = 0;
1177 priv->ctrl.uhfbw8 = 0;
1178 } else if (bw <= 7000000) {
1179 if (c->frequency < 470000000)
1180 priv->ctrl.vhfbw7 = 1;
1181 else
1182 priv->ctrl.uhfbw8 = 0;
1183 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV7;
1184 type |= F8MHZ;
1185 } else {
1186 if (c->frequency < 470000000)
1187 priv->ctrl.vhfbw7 = 0;
1188 else
1189 priv->ctrl.uhfbw8 = 1;
1190 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV8;
1191 type |= F8MHZ;
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -03001192 }
1193
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -03001194 /* All S-code tables need a 200kHz shift */
Andy Walls6e707b42009-06-11 07:57:50 -03001195 if (priv->ctrl.demod) {
Mauro Carvalho Chehab7d350282010-02-19 20:08:06 -02001196 demod = priv->ctrl.demod;
1197
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001198 /*
1199 * Newer firmwares require a 200 kHz offset only for ATSC
1200 */
1201 if (type == ATSC || priv->firm_version < 0x0302)
Mauro Carvalho Chehab7d350282010-02-19 20:08:06 -02001202 demod += 200;
Andy Walls6e707b42009-06-11 07:57:50 -03001203 /*
1204 * The DTV7 S-code table needs a 700 kHz shift.
Andy Walls6e707b42009-06-11 07:57:50 -03001205 *
1206 * DTV7 is only used in Australia. Germany or Italy may also
1207 * use this firmware after initialization, but a tune to a UHF
1208 * channel should then cause DTV78 to be used.
Mauro Carvalho Chehab7f2199c2010-02-19 02:45:00 -02001209 *
1210 * Unfortunately, on real-field tests, the s-code offset
1211 * didn't work as expected, as reported by
1212 * Robert Lowery <rglowery@exemail.com.au>
Andy Walls6e707b42009-06-11 07:57:50 -03001213 */
Andy Walls6e707b42009-06-11 07:57:50 -03001214 }
Mauro Carvalho Chehabb542dfd2007-11-24 11:07:12 -03001215
Mauro Carvalho Chehab506cd712011-12-21 08:53:22 -03001216 return generic_set_freq(fe, c->frequency,
Mauro Carvalho Chehab437f5fa2011-02-21 21:03:59 -03001217 V4L2_TUNER_DIGITAL_TV, type, 0, demod);
Michel Ludwig701672e2007-07-18 10:29:10 -03001218}
1219
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001220static int xc2028_sleep(struct dvb_frontend *fe)
1221{
1222 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001223 int rc;
1224
1225 rc = check_device_status(priv);
1226 if (rc < 0)
1227 return rc;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001228
Devin Heitmueller93b99922009-08-03 22:52:59 -03001229 /* Avoid firmware reload on slow devices or if PM disabled */
1230 if (no_poweroff || priv->ctrl.disable_power_mgmt)
Mauro Carvalho Chehab10f201a2008-12-05 10:49:53 -03001231 return 0;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001232
1233 tuner_dbg("Putting xc2028/3028 into poweroff mode.\n");
Mauro Carvalho Chehabe278e742008-12-18 06:00:25 -03001234 if (debug > 1) {
1235 tuner_dbg("Printing sleep stack trace:\n");
1236 dump_stack();
1237 }
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001238
1239 mutex_lock(&priv->lock);
1240
1241 if (priv->firm_version < 0x0202)
Miroslav Slugen304bce42011-12-11 20:19:34 -03001242 rc = send_seq(priv, {0x00, XREG_POWER_DOWN, 0x00, 0x00});
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001243 else
Miroslav Slugen304bce42011-12-11 20:19:34 -03001244 rc = send_seq(priv, {0x80, XREG_POWER_DOWN, 0x00, 0x00});
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001245
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001246 priv->state = XC2028_SLEEP;
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001247
1248 mutex_unlock(&priv->lock);
1249
1250 return rc;
1251}
Chris Pascoe45819c32007-11-19 11:41:20 -03001252
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001253static int xc2028_dvb_release(struct dvb_frontend *fe)
Michel Ludwig701672e2007-07-18 10:29:10 -03001254{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001255 struct xc2028_data *priv = fe->tuner_priv;
Michel Ludwig701672e2007-07-18 10:29:10 -03001256
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001257 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001258
Chris Pascoeaa501be2007-11-19 04:45:38 -03001259 mutex_lock(&xc2028_list_mutex);
1260
Michael Krufkyc663d032008-04-18 21:22:50 -03001261 /* only perform final cleanup if this is the last instance */
1262 if (hybrid_tuner_report_instance_count(priv) == 1) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001263 free_firmware(priv);
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001264 kfree(priv->ctrl.fname);
1265 priv->ctrl.fname = NULL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001266 }
Michel Ludwig701672e2007-07-18 10:29:10 -03001267
Michael Krufkyc663d032008-04-18 21:22:50 -03001268 if (priv)
1269 hybrid_tuner_release_state(priv);
1270
Chris Pascoeaa501be2007-11-19 04:45:38 -03001271 mutex_unlock(&xc2028_list_mutex);
1272
Michael Krufkyc663d032008-04-18 21:22:50 -03001273 fe->tuner_priv = NULL;
1274
Michel Ludwig701672e2007-07-18 10:29:10 -03001275 return 0;
1276}
1277
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001278static int xc2028_get_frequency(struct dvb_frontend *fe, u32 *frequency)
Michel Ludwig701672e2007-07-18 10:29:10 -03001279{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001280 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001281 int rc;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001282
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001283 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001284
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001285 rc = check_device_status(priv);
1286 if (rc < 0)
1287 return rc;
1288
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001289 *frequency = priv->frequency;
Michel Ludwig701672e2007-07-18 10:29:10 -03001290
1291 return 0;
1292}
1293
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001294static void load_firmware_cb(const struct firmware *fw,
1295 void *context)
1296{
1297 struct dvb_frontend *fe = context;
1298 struct xc2028_data *priv = fe->tuner_priv;
1299 int rc;
1300
1301 tuner_dbg("request_firmware_nowait(): %s\n", fw ? "OK" : "error");
1302 if (!fw) {
1303 tuner_err("Could not load firmware %s.\n", priv->fname);
1304 priv->state = XC2028_NODEV;
1305 return;
1306 }
1307
1308 rc = load_all_firmwares(fe, fw);
1309
1310 release_firmware(fw);
1311
1312 if (rc < 0)
1313 return;
1314 priv->state = XC2028_SLEEP;
1315}
1316
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001317static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001318{
1319 struct xc2028_data *priv = fe->tuner_priv;
1320 struct xc2028_ctrl *p = priv_cfg;
Chris Pascoe0a196b62007-11-19 09:29:59 -03001321 int rc = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001322
Harvey Harrison7e28adb2008-04-08 23:20:00 -03001323 tuner_dbg("%s called\n", __func__);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001324
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001325 mutex_lock(&priv->lock);
1326
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001327 /*
1328 * Copy the config data.
1329 * For the firmware name, keep a local copy of the string,
1330 * in order to avoid troubles during device release.
1331 */
1332 if (priv->ctrl.fname)
1333 kfree(priv->ctrl.fname);
Chris Pascoe0a196b62007-11-19 09:29:59 -03001334 memcpy(&priv->ctrl, p, sizeof(priv->ctrl));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001335 if (p->fname) {
Chris Pascoe0a196b62007-11-19 09:29:59 -03001336 priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL);
1337 if (priv->ctrl.fname == NULL)
1338 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001339 }
1340
Mauro Carvalho Chehab61a96112012-06-30 09:08:54 -03001341 /*
1342 * If firmware name changed, frees firmware. As free_firmware will
1343 * reset the status to NO_FIRMWARE, this forces a new request_firmware
1344 */
1345 if (!firmware_name[0] && p->fname &&
1346 priv->fname && strcmp(p->fname, priv->fname))
1347 free_firmware(priv);
1348
1349 if (priv->ctrl.max_len < 9)
1350 priv->ctrl.max_len = 13;
1351
1352 if (priv->state == XC2028_NO_FIRMWARE) {
1353 if (!firmware_name[0])
1354 priv->fname = priv->ctrl.fname;
1355 else
1356 priv->fname = firmware_name;
1357
1358 rc = request_firmware_nowait(THIS_MODULE, 1,
1359 priv->fname,
1360 priv->i2c_props.adap->dev.parent,
1361 GFP_KERNEL,
1362 fe, load_firmware_cb);
1363 if (rc < 0) {
1364 tuner_err("Failed to request firmware %s\n",
1365 priv->fname);
1366 priv->state = XC2028_NODEV;
1367 }
1368 priv->state = XC2028_WAITING_FIRMWARE;
1369 }
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001370 mutex_unlock(&priv->lock);
1371
Chris Pascoe0a196b62007-11-19 09:29:59 -03001372 return rc;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001373}
1374
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001375static const struct dvb_tuner_ops xc2028_dvb_tuner_ops = {
Michel Ludwig701672e2007-07-18 10:29:10 -03001376 .info = {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001377 .name = "Xceive XC3028",
1378 .frequency_min = 42000000,
1379 .frequency_max = 864000000,
1380 .frequency_step = 50000,
1381 },
Michel Ludwig701672e2007-07-18 10:29:10 -03001382
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001383 .set_config = xc2028_set_config,
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001384 .set_analog_params = xc2028_set_analog_freq,
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001385 .release = xc2028_dvb_release,
1386 .get_frequency = xc2028_get_frequency,
1387 .get_rf_strength = xc2028_signal,
1388 .set_params = xc2028_set_params,
Mauro Carvalho Chehab74a89b22008-12-05 10:31:16 -03001389 .sleep = xc2028_sleep,
Michel Ludwig701672e2007-07-18 10:29:10 -03001390};
1391
Michael Krufky7972f982007-12-21 16:12:09 -03001392struct dvb_frontend *xc2028_attach(struct dvb_frontend *fe,
1393 struct xc2028_config *cfg)
Michel Ludwig701672e2007-07-18 10:29:10 -03001394{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001395 struct xc2028_data *priv;
Michael Krufkyc663d032008-04-18 21:22:50 -03001396 int instance;
Michel Ludwig701672e2007-07-18 10:29:10 -03001397
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -03001398 if (debug)
Michael Krufky27566652008-04-22 14:41:53 -03001399 printk(KERN_DEBUG "xc2028: Xcv2028/3028 init called!\n");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001400
Mauro Carvalho Chehabb412ba72008-04-22 14:46:11 -03001401 if (NULL == cfg)
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001402 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001403
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001404 if (!fe) {
Michael Krufky27566652008-04-22 14:41:53 -03001405 printk(KERN_ERR "xc2028: No frontend!\n");
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001406 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001407 }
1408
Chris Pascoeaa501be2007-11-19 04:45:38 -03001409 mutex_lock(&xc2028_list_mutex);
1410
Michael Krufkyc663d032008-04-18 21:22:50 -03001411 instance = hybrid_tuner_request_state(struct xc2028_data, priv,
1412 hybrid_tuner_instance_list,
1413 cfg->i2c_adap, cfg->i2c_addr,
1414 "xc2028");
1415 switch (instance) {
1416 case 0:
1417 /* memory allocation failure */
1418 goto fail;
1419 break;
1420 case 1:
1421 /* new tuner instance */
Chris Pascoe0a196b62007-11-19 09:29:59 -03001422 priv->ctrl.max_len = 13;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001423
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001424 mutex_init(&priv->lock);
1425
Michael Krufkyc663d032008-04-18 21:22:50 -03001426 fe->tuner_priv = priv;
1427 break;
1428 case 2:
1429 /* existing tuner instance */
1430 fe->tuner_priv = priv;
1431 break;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001432 }
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001433
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001434 memcpy(&fe->ops.tuner_ops, &xc2028_dvb_tuner_ops,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001435 sizeof(xc2028_dvb_tuner_ops));
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001436
1437 tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner");
Michel Ludwig701672e2007-07-18 10:29:10 -03001438
Mauro Carvalho Chehab71a2ee32007-11-22 12:19:37 -03001439 if (cfg->ctrl)
1440 xc2028_set_config(fe, cfg->ctrl);
1441
Chris Pascoeaa501be2007-11-19 04:45:38 -03001442 mutex_unlock(&xc2028_list_mutex);
1443
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001444 return fe;
Michael Krufkyc663d032008-04-18 21:22:50 -03001445fail:
1446 mutex_unlock(&xc2028_list_mutex);
1447
1448 xc2028_dvb_release(fe);
1449 return NULL;
Michel Ludwig701672e2007-07-18 10:29:10 -03001450}
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001451
Michel Ludwig701672e2007-07-18 10:29:10 -03001452EXPORT_SYMBOL(xc2028_attach);
1453
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001454MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver");
Mauro Carvalho Chehab983d2142007-10-29 23:44:18 -03001455MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001456MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
1457MODULE_LICENSE("GPL");