blob: a9caae1af49ddc3931873acd57a0a1a4915c2102 [file] [log] [blame]
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001/* tuner-xc2028
2 *
3 * Copyright (c) 2007 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>
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030018#include "tuner-i2c.h"
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030019#include "tuner-xc2028.h"
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030020#include "tuner-xc2028-types.h"
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030021
Michel Ludwig701672e2007-07-18 10:29:10 -030022#include <linux/dvb/frontend.h>
23#include "dvb_frontend.h"
24
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -030025
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -030026static int debug;
27module_param(debug, int, 0644);
28MODULE_PARM_DESC(debug, "enable verbose debug messages");
29
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -030030static char audio_std[8];
31module_param_string(audio_std, audio_std, sizeof(audio_std), 0);
32MODULE_PARM_DESC(audio_std,
33 "Audio standard. XC3028 audio decoder explicitly "
34 "needs to know what audio\n"
35 "standard is needed for some video standards with audio A2 or NICAM.\n"
36 "The valid values are:\n"
37 "A2\n"
38 "A2/A\n"
39 "A2/B\n"
40 "NICAM\n"
41 "NICAM/A\n"
42 "NICAM/B\n");
43
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030044static LIST_HEAD(xc2028_list);
Chris Pascoeaa501be2007-11-19 04:45:38 -030045static DEFINE_MUTEX(xc2028_list_mutex);
46
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030047/* struct for storing firmware table */
48struct firmware_description {
49 unsigned int type;
50 v4l2_std_id id;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -030051 __u16 int_freq;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030052 unsigned char *ptr;
53 unsigned int size;
54};
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030055
Chris Pascoee0f0b372007-11-19 11:22:03 -030056struct firmware_properties {
57 unsigned int type;
58 v4l2_std_id id;
59 v4l2_std_id std_req;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -030060 __u16 int_freq;
Chris Pascoee0f0b372007-11-19 11:22:03 -030061 unsigned int scode_table;
62 int scode_nr;
63};
64
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030065struct xc2028_data {
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030066 struct list_head xc2028_list;
67 struct tuner_i2c_props i2c_props;
68 int (*tuner_callback) (void *dev,
69 int command, int arg);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030070 void *video_dev;
71 int count;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030072 __u32 frequency;
73
74 struct firmware_description *firm;
75 int firm_size;
Chris Pascoe06fd82d2007-11-19 06:06:08 -030076 __u16 firm_version;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030077
Chris Pascoe8bf799a2007-11-19 11:35:45 -030078 __u16 hwmodel;
79 __u16 hwvers;
80
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030081 struct xc2028_ctrl ctrl;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030082
Chris Pascoee0f0b372007-11-19 11:22:03 -030083 struct firmware_properties cur_fw;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030084
85 struct mutex lock;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030086};
87
Chris Pascoe47cc5b72007-11-19 04:14:23 -030088#define i2c_send(priv, buf, size) ({ \
89 int _rc; \
90 _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \
91 if (size != _rc) \
92 tuner_info("i2c output error: rc = %d (should be %d)\n",\
93 _rc, (int)size); \
94 _rc; \
95})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030096
Chris Pascoe47cc5b72007-11-19 04:14:23 -030097#define i2c_rcv(priv, buf, size) ({ \
98 int _rc; \
99 _rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, size); \
100 if (size != _rc) \
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300101 tuner_err("i2c input error: rc = %d (should be %d)\n", \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300102 _rc, (int)size); \
103 _rc; \
104})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300105
Chris Pascoe7d58d112007-11-19 04:31:58 -0300106#define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \
107 int _rc; \
108 _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \
109 ibuf, isize); \
110 if (isize != _rc) \
111 tuner_err("i2c input error: rc = %d (should be %d)\n", \
112 _rc, (int)isize); \
113 _rc; \
114})
115
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300116#define send_seq(priv, data...) ({ \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300117 static u8 _val[] = data; \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300118 int _rc; \
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300119 if (sizeof(_val) != \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300120 (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300121 _val, sizeof(_val)))) { \
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300122 tuner_err("Error on line %d: %d\n", __LINE__, _rc); \
123 } else \
124 msleep(10); \
125 _rc; \
126})
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300127
Chris Pascoe7d58d112007-11-19 04:31:58 -0300128static unsigned int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300129{
Mauro Carvalho Chehabb873e1a2007-11-05 08:41:50 -0300130 unsigned char buf[2];
Chris Pascoe7d58d112007-11-19 04:31:58 -0300131 unsigned char ibuf[2];
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300132
Chris Pascoe7d58d112007-11-19 04:31:58 -0300133 tuner_dbg("%s %04x called\n", __FUNCTION__, reg);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300134
Chris Pascoe7d58d112007-11-19 04:31:58 -0300135 buf[0] = reg >> 8;
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300136 buf[1] = (unsigned char) reg;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300137
Chris Pascoe7d58d112007-11-19 04:31:58 -0300138 if (i2c_send_recv(priv, buf, 2, ibuf, 2) != 2)
139 return -EIO;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300140
Chris Pascoe7d58d112007-11-19 04:31:58 -0300141 *val = (ibuf[1]) | (ibuf[0] << 8);
142 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300143}
144
Chris Pascoee0262682007-12-02 06:30:50 -0300145#define dump_firm_type(t) dump_firm_type_and_int_freq(t, 0)
Adrian Bunk29bec0b2008-04-22 14:41:45 -0300146static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq)
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300147{
148 if (type & BASE)
149 printk("BASE ");
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300150 if (type & INIT1)
151 printk("INIT1 ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300152 if (type & F8MHZ)
153 printk("F8MHZ ");
154 if (type & MTS)
155 printk("MTS ");
156 if (type & D2620)
157 printk("D2620 ");
158 if (type & D2633)
159 printk("D2633 ");
160 if (type & DTV6)
161 printk("DTV6 ");
162 if (type & QAM)
163 printk("QAM ");
164 if (type & DTV7)
165 printk("DTV7 ");
166 if (type & DTV78)
167 printk("DTV78 ");
168 if (type & DTV8)
169 printk("DTV8 ");
170 if (type & FM)
171 printk("FM ");
172 if (type & INPUT1)
173 printk("INPUT1 ");
174 if (type & LCD)
175 printk("LCD ");
176 if (type & NOGD)
177 printk("NOGD ");
178 if (type & MONO)
179 printk("MONO ");
180 if (type & ATSC)
181 printk("ATSC ");
182 if (type & IF)
183 printk("IF ");
184 if (type & LG60)
185 printk("LG60 ");
186 if (type & ATI638)
187 printk("ATI638 ");
188 if (type & OREN538)
189 printk("OREN538 ");
190 if (type & OREN36)
191 printk("OREN36 ");
192 if (type & TOYOTA388)
193 printk("TOYOTA388 ");
194 if (type & TOYOTA794)
195 printk("TOYOTA794 ");
196 if (type & DIBCOM52)
197 printk("DIBCOM52 ");
198 if (type & ZARLINK456)
199 printk("ZARLINK456 ");
200 if (type & CHINA)
201 printk("CHINA ");
202 if (type & F6MHZ)
203 printk("F6MHZ ");
204 if (type & INPUT2)
205 printk("INPUT2 ");
206 if (type & SCODE)
207 printk("SCODE ");
Chris Pascoee0262682007-12-02 06:30:50 -0300208 if (type & HAS_IF)
209 printk("HAS_IF_%d ", int_freq);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300210}
211
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300212static v4l2_std_id parse_audio_std_option(void)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300213{
Chris Pascoee155d902007-11-19 04:16:47 -0300214 if (strcasecmp(audio_std, "A2") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300215 return V4L2_STD_A2;
Chris Pascoee155d902007-11-19 04:16:47 -0300216 if (strcasecmp(audio_std, "A2/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300217 return V4L2_STD_A2_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300218 if (strcasecmp(audio_std, "A2/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300219 return V4L2_STD_A2_B;
Chris Pascoee155d902007-11-19 04:16:47 -0300220 if (strcasecmp(audio_std, "NICAM") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300221 return V4L2_STD_NICAM;
Chris Pascoee155d902007-11-19 04:16:47 -0300222 if (strcasecmp(audio_std, "NICAM/A") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300223 return V4L2_STD_NICAM_A;
Chris Pascoee155d902007-11-19 04:16:47 -0300224 if (strcasecmp(audio_std, "NICAM/B") == 0)
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300225 return V4L2_STD_NICAM_B;
226
227 return 0;
228}
229
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300230static void free_firmware(struct xc2028_data *priv)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300231{
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300232 int i;
233
234 if (!priv->firm)
235 return;
236
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300237 for (i = 0; i < priv->firm_size; i++)
238 kfree(priv->firm[i].ptr);
239
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300240 kfree(priv->firm);
241
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300242 priv->firm = NULL;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300243 priv->firm_size = 0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300244
245 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300246}
247
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300248static int load_all_firmwares(struct dvb_frontend *fe)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300249{
250 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300251 const struct firmware *fw = NULL;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300252 unsigned char *p, *endp;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300253 int rc = 0;
254 int n, n_array;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300255 char name[33];
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300256
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300257 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300258
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300259 tuner_dbg("Reading firmware %s\n", priv->ctrl.fname);
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300260 rc = request_firmware(&fw, priv->ctrl.fname,
261 &priv->i2c_props.adap->dev);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300262 if (rc < 0) {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300263 if (rc == -ENOENT)
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300264 tuner_err("Error: firmware %s not found.\n",
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300265 priv->ctrl.fname);
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300266 else
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300267 tuner_err("Error %d while requesting firmware %s \n",
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300268 rc, priv->ctrl.fname);
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300269
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300270 return rc;
271 }
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300272 p = fw->data;
273 endp = p + fw->size;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300274
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300275 if (fw->size < sizeof(name) - 1 + 2 + 2) {
276 tuner_err("Error: firmware file %s has invalid size!\n",
277 priv->ctrl.fname);
278 goto corrupt;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300279 }
280
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300281 memcpy(name, p, sizeof(name) - 1);
282 name[sizeof(name) - 1] = 0;
283 p += sizeof(name) - 1;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300284
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300285 priv->firm_version = le16_to_cpu(*(__u16 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300286 p += 2;
287
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300288 n_array = le16_to_cpu(*(__u16 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300289 p += 2;
290
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300291 tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n",
292 n_array, priv->ctrl.fname, name,
293 priv->firm_version >> 8, priv->firm_version & 0xff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300294
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300295 priv->firm = kzalloc(sizeof(*priv->firm) * n_array, GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300296 if (priv->firm == NULL) {
297 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300298 rc = -ENOMEM;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300299 goto err;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300300 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300301 priv->firm_size = n_array;
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300302
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300303 n = -1;
304 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300305 __u32 type, size;
306 v4l2_std_id id;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300307 __u16 int_freq = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300308
309 n++;
310 if (n >= n_array) {
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300311 tuner_err("More firmware images in file than "
312 "were expected!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300313 goto corrupt;
314 }
315
316 /* Checks if there's enough bytes to read */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300317 if (p + sizeof(type) + sizeof(id) + sizeof(size) > endp) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300318 tuner_err("Firmware header is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300319 goto corrupt;
320 }
321
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300322 type = le32_to_cpu(*(__u32 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300323 p += sizeof(type);
324
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300325 id = le64_to_cpu(*(v4l2_std_id *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300326 p += sizeof(id);
327
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300328 if (type & HAS_IF) {
329 int_freq = le16_to_cpu(*(__u16 *) p);
330 p += sizeof(int_freq);
331 }
332
Michel Ludwig2fc580f2007-11-16 07:19:35 -0300333 size = le32_to_cpu(*(__u32 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300334 p += sizeof(size);
335
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300336 if ((!size) || (size + p > endp)) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300337 tuner_err("Firmware type ");
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300338 dump_firm_type(type);
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300339 printk("(%x), id %llx is corrupted "
340 "(size=%d, expected %d)\n",
Chris Pascoe91240dd2007-11-19 04:38:53 -0300341 type, (unsigned long long)id,
Mauro Carvalho Chehabef8c1882007-11-16 16:28:21 -0300342 (unsigned)(endp - p), size);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300343 goto corrupt;
344 }
345
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300346 priv->firm[n].ptr = kzalloc(size, GFP_KERNEL);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300347 if (priv->firm[n].ptr == NULL) {
348 tuner_err("Not enough memory to load firmware file.\n");
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300349 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300350 goto err;
351 }
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300352 tuner_dbg("Reading firmware type ");
353 if (debug) {
Chris Pascoee0262682007-12-02 06:30:50 -0300354 dump_firm_type_and_int_freq(type, int_freq);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300355 printk("(%x), id %llx, size=%d.\n",
Chris Pascoee0262682007-12-02 06:30:50 -0300356 type, (unsigned long long)id, size);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300357 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300358
359 memcpy(priv->firm[n].ptr, p, size);
360 priv->firm[n].type = type;
361 priv->firm[n].id = id;
362 priv->firm[n].size = size;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300363 priv->firm[n].int_freq = int_freq;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300364
365 p += size;
366 }
367
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300368 if (n + 1 != priv->firm_size) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300369 tuner_err("Firmware file is incomplete!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300370 goto corrupt;
371 }
372
373 goto done;
374
375corrupt:
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300376 rc = -EINVAL;
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300377 tuner_err("Error: firmware file is corrupted!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300378
379err:
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300380 tuner_info("Releasing partially loaded firmware file.\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300381 free_firmware(priv);
382
383done:
384 release_firmware(fw);
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300385 if (rc == 0)
386 tuner_dbg("Firmware files loaded.\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300387
388 return rc;
389}
390
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300391static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
392 v4l2_std_id *id)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300393{
394 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoeb1535292007-11-19 10:04:06 -0300395 int i, best_i = -1, best_nr_matches = 0;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300396 unsigned int ign_firm_type_mask = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300397
Chris Pascoeb1535292007-11-19 10:04:06 -0300398 tuner_dbg("%s called, want type=", __FUNCTION__);
399 if (debug) {
400 dump_firm_type(type);
401 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
402 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300403
404 if (!priv->firm) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300405 tuner_err("Error! firmware not loaded\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300406 return -EINVAL;
407 }
408
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300409 if (((type & ~SCODE) == 0) && (*id == 0))
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300410 *id = V4L2_STD_PAL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300411
Chris Pascoee0f0b372007-11-19 11:22:03 -0300412 if (type & BASE)
413 type &= BASE_TYPES;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300414 else if (type & SCODE) {
Chris Pascoee0f0b372007-11-19 11:22:03 -0300415 type &= SCODE_TYPES;
Chris Pascoeef207fe2007-12-02 09:30:55 -0300416 ign_firm_type_mask = HAS_IF;
417 } else if (type & DTV_TYPES)
Chris Pascoe11a9eff2007-11-19 23:18:36 -0300418 type &= DTV_TYPES;
419 else if (type & STD_SPECIFIC_TYPES)
420 type &= STD_SPECIFIC_TYPES;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300421
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300422 /* Seek for exact match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300423 for (i = 0; i < priv->firm_size; i++) {
Chris Pascoeef207fe2007-12-02 09:30:55 -0300424 if ((type == (priv->firm[i].type & ~ign_firm_type_mask)) &&
425 (*id == priv->firm[i].id))
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300426 goto found;
427 }
428
429 /* Seek for generic video standard match */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300430 for (i = 0; i < priv->firm_size; i++) {
Chris Pascoeb1535292007-11-19 10:04:06 -0300431 v4l2_std_id match_mask;
432 int nr_matches;
433
Chris Pascoeef207fe2007-12-02 09:30:55 -0300434 if (type != (priv->firm[i].type & ~ign_firm_type_mask))
Chris Pascoeb1535292007-11-19 10:04:06 -0300435 continue;
436
437 match_mask = *id & priv->firm[i].id;
438 if (!match_mask)
439 continue;
440
441 if ((*id & match_mask) == *id)
442 goto found; /* Supports all the requested standards */
443
444 nr_matches = hweight64(match_mask);
445 if (nr_matches > best_nr_matches) {
446 best_nr_matches = nr_matches;
447 best_i = i;
448 }
449 }
450
451 if (best_nr_matches > 0) {
452 tuner_dbg("Selecting best matching firmware (%d bits) for "
453 "type=", best_nr_matches);
454 dump_firm_type(type);
455 printk("(%x), id %016llx:\n", type, (unsigned long long)*id);
456 i = best_i;
457 goto found;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300458 }
459
460 /*FIXME: Would make sense to seek for type "hint" match ? */
461
Chris Pascoeb1535292007-11-19 10:04:06 -0300462 i = -ENOENT;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300463 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300464
465found:
466 *id = priv->firm[i].id;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300467
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300468ret:
Chris Pascoeb1535292007-11-19 10:04:06 -0300469 tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found");
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300470 if (debug) {
471 dump_firm_type(type);
Chris Pascoe91240dd2007-11-19 04:38:53 -0300472 printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300473 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300474 return i;
475}
476
477static int load_firmware(struct dvb_frontend *fe, unsigned int type,
478 v4l2_std_id *id)
479{
480 struct xc2028_data *priv = fe->tuner_priv;
481 int pos, rc;
Chris Pascoe0a196b62007-11-19 09:29:59 -0300482 unsigned char *p, *endp, buf[priv->ctrl.max_len];
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300483
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300484 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300485
486 pos = seek_firmware(fe, type, id);
487 if (pos < 0)
488 return pos;
489
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300490 tuner_info("Loading firmware for type=");
Chris Pascoeb1535292007-11-19 10:04:06 -0300491 dump_firm_type(priv->firm[pos].type);
492 printk("(%x), id %016llx.\n", priv->firm[pos].type,
493 (unsigned long long)*id);
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300494
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300495 p = priv->firm[pos].ptr;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300496 endp = p + priv->firm[pos].size;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300497
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300498 while (p < endp) {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300499 __u16 size;
500
501 /* Checks if there's enough bytes to read */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300502 if (p + sizeof(size) > endp) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300503 tuner_err("Firmware chunk size is wrong\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300504 return -EINVAL;
505 }
506
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300507 size = le16_to_cpu(*(__u16 *) p);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300508 p += sizeof(size);
509
510 if (size == 0xffff)
511 return 0;
512
513 if (!size) {
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300514 /* Special callback command received */
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300515 rc = priv->tuner_callback(priv->video_dev,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300516 XC2028_TUNER_RESET, 0);
517 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300518 tuner_err("Error at RESET code %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300519 (*p) & 0x7f);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300520 return -EINVAL;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300521 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300522 continue;
523 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300524 if (size >= 0xff00) {
525 switch (size) {
526 case 0xff00:
527 rc = priv->tuner_callback(priv->video_dev,
528 XC2028_RESET_CLK, 0);
529 if (rc < 0) {
530 tuner_err("Error at RESET code %d\n",
531 (*p) & 0x7f);
532 return -EINVAL;
533 }
Chris Pascoeb32f9fb2007-11-19 04:53:50 -0300534 break;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300535 default:
536 tuner_info("Invalid RESET code %d\n",
537 size & 0x7f);
538 return -EINVAL;
539
540 }
Mauro Carvalho Chehab2d4c0ac2007-11-16 09:43:19 -0300541 continue;
Michel Ludwig5403bba2007-11-16 07:49:49 -0300542 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300543
544 /* Checks for a sleep command */
545 if (size & 0x8000) {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300546 msleep(size & 0x7fff);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300547 continue;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300548 }
549
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300550 if ((size + p > endp)) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300551 tuner_err("missing bytes: need %d, have %d\n",
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300552 size, (int)(endp - p));
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300553 return -EINVAL;
554 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300555
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300556 buf[0] = *p;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300557 p++;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300558 size--;
559
560 /* Sends message chunks */
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300561 while (size > 0) {
Chris Pascoe0a196b62007-11-19 09:29:59 -0300562 int len = (size < priv->ctrl.max_len - 1) ?
563 size : priv->ctrl.max_len - 1;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300564
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300565 memcpy(buf + 1, p, len);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300566
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300567 rc = i2c_send(priv, buf, len + 1);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300568 if (rc < 0) {
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300569 tuner_err("%d returned from send\n", rc);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300570 return -EINVAL;
571 }
572
573 p += len;
574 size -= len;
575 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300576 }
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300577 return 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300578}
579
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300580static int load_scode(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300581 v4l2_std_id *id, __u16 int_freq, int scode)
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300582{
583 struct xc2028_data *priv = fe->tuner_priv;
584 int pos, rc;
585 unsigned char *p;
586
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300587 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300588
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300589 if (!int_freq) {
590 pos = seek_firmware(fe, type, id);
591 if (pos < 0)
592 return pos;
593 } else {
594 for (pos = 0; pos < priv->firm_size; pos++) {
595 if ((priv->firm[pos].int_freq == int_freq) &&
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300596 (priv->firm[pos].type & HAS_IF))
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300597 break;
598 }
599 if (pos == priv->firm_size)
600 return -ENOENT;
601 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300602
603 p = priv->firm[pos].ptr;
604
Chris Pascoe9ca01e72007-12-02 06:54:17 -0300605 if (priv->firm[pos].type & HAS_IF) {
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300606 if (priv->firm[pos].size != 12 * 16 || scode >= 16)
607 return -EINVAL;
608 p += 12 * scode;
609 } else {
610 /* 16 SCODE entries per file; each SCODE entry is 12 bytes and
611 * has a 2-byte size header in the firmware format. */
612 if (priv->firm[pos].size != 14 * 16 || scode >= 16 ||
613 le16_to_cpu(*(__u16 *)(p + 14 * scode)) != 12)
614 return -EINVAL;
615 p += 14 * scode + 2;
616 }
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300617
Chris Pascoed7b22c52007-11-19 10:12:45 -0300618 tuner_info("Loading SCODE for type=");
Chris Pascoee0262682007-12-02 06:30:50 -0300619 dump_firm_type_and_int_freq(priv->firm[pos].type,
620 priv->firm[pos].int_freq);
Chris Pascoed7b22c52007-11-19 10:12:45 -0300621 printk("(%x), id %016llx.\n", priv->firm[pos].type,
622 (unsigned long long)*id);
623
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300624 if (priv->firm_version < 0x0202)
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300625 rc = send_seq(priv, {0x20, 0x00, 0x00, 0x00});
626 else
627 rc = send_seq(priv, {0xa0, 0x00, 0x00, 0x00});
628 if (rc < 0)
629 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300630
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300631 rc = i2c_send(priv, p, 12);
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300632 if (rc < 0)
633 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300634
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300635 rc = send_seq(priv, {0x00, 0x8c});
636 if (rc < 0)
637 return -EIO;
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300638
639 return 0;
640}
641
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300642static int check_firmware(struct dvb_frontend *fe, unsigned int type,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300643 v4l2_std_id std, __u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300644{
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300645 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300646 struct firmware_properties new_fw;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300647 int rc = 0, is_retry = 0;
648 u16 version, hwmodel;
649 v4l2_std_id std0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300650
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300651 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300652
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300653 if (!priv->firm) {
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300654 if (!priv->ctrl.fname) {
655 tuner_info("xc2028/3028 firmware name not set!\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300656 return -EINVAL;
Michel Ludwiga37b4c92007-11-16 07:46:14 -0300657 }
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300658
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300659 rc = load_all_firmwares(fe);
660 if (rc < 0)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300661 return rc;
662 }
663
Mauro Carvalho Chehab0f6dac12008-01-05 16:47:16 -0300664 if (priv->ctrl.mts && !(type & FM))
Chris Pascoee0f0b372007-11-19 11:22:03 -0300665 type |= MTS;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300666
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300667retry:
Chris Pascoee0f0b372007-11-19 11:22:03 -0300668 new_fw.type = type;
669 new_fw.id = std;
670 new_fw.std_req = std;
671 new_fw.scode_table = SCODE | priv->ctrl.scode_table;
672 new_fw.scode_nr = 0;
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300673 new_fw.int_freq = int_freq;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300674
675 tuner_dbg("checking firmware, user requested type=");
676 if (debug) {
677 dump_firm_type(new_fw.type);
Chris Pascoee0262682007-12-02 06:30:50 -0300678 printk("(%x), id %016llx, ", new_fw.type,
Chris Pascoee0f0b372007-11-19 11:22:03 -0300679 (unsigned long long)new_fw.std_req);
Chris Pascoee0262682007-12-02 06:30:50 -0300680 if (!int_freq) {
681 printk("scode_tbl ");
682 dump_firm_type(priv->ctrl.scode_table);
683 printk("(%x), ", priv->ctrl.scode_table);
684 } else
685 printk("int_freq %d, ", new_fw.int_freq);
686 printk("scode_nr %d\n", new_fw.scode_nr);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300687 }
688
689 /* No need to reload base firmware if it matches */
690 if (((BASE | new_fw.type) & BASE_TYPES) ==
691 (priv->cur_fw.type & BASE_TYPES)) {
692 tuner_dbg("BASE firmware not changed.\n");
693 goto skip_base;
694 }
695
696 /* Updating BASE - forget about all currently loaded firmware */
697 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
698
699 /* Reset is needed before loading firmware */
700 rc = priv->tuner_callback(priv->video_dev,
701 XC2028_TUNER_RESET, 0);
702 if (rc < 0)
703 goto fail;
704
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300705 /* BASE firmwares are all std0 */
706 std0 = 0;
707 rc = load_firmware(fe, BASE | new_fw.type, &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300708 if (rc < 0) {
709 tuner_err("Error %d while loading base firmware\n",
710 rc);
711 goto fail;
712 }
Michel Ludwig5403bba2007-11-16 07:49:49 -0300713
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300714 /* Load INIT1, if needed */
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300715 tuner_dbg("Load init1 firmware, if exists\n");
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300716
Chris Pascoe47bd5bc2007-11-19 23:11:37 -0300717 rc = load_firmware(fe, BASE | INIT1 | new_fw.type, &std0);
Chris Pascoe1ad0b792007-11-19 23:43:13 -0300718 if (rc == -ENOENT)
719 rc = load_firmware(fe, (BASE | INIT1 | new_fw.type) & ~F8MHZ,
720 &std0);
Chris Pascoee0f0b372007-11-19 11:22:03 -0300721 if (rc < 0 && rc != -ENOENT) {
722 tuner_err("Error %d while loading init1 firmware\n",
723 rc);
724 goto fail;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300725 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300726
Chris Pascoee0f0b372007-11-19 11:22:03 -0300727skip_base:
728 /*
729 * No need to reload standard specific firmware if base firmware
730 * was not reloaded and requested video standards have not changed.
731 */
732 if (priv->cur_fw.type == (BASE | new_fw.type) &&
733 priv->cur_fw.std_req == std) {
734 tuner_dbg("Std-specific firmware already loaded.\n");
735 goto skip_std_specific;
736 }
Mauro Carvalho Chehaba82200f2007-11-15 11:58:00 -0300737
Chris Pascoee0f0b372007-11-19 11:22:03 -0300738 /* Reloading std-specific firmware forces a SCODE update */
739 priv->cur_fw.scode_table = 0;
740
Chris Pascoee0f0b372007-11-19 11:22:03 -0300741 rc = load_firmware(fe, new_fw.type, &new_fw.id);
Mauro Carvalho Chehabcca83792007-11-22 11:47:18 -0300742 if (rc == -ENOENT)
743 rc = load_firmware(fe, new_fw.type & ~F8MHZ, &new_fw.id);
744
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300745 if (rc < 0)
Chris Pascoee0f0b372007-11-19 11:22:03 -0300746 goto fail;
747
748skip_std_specific:
749 if (priv->cur_fw.scode_table == new_fw.scode_table &&
750 priv->cur_fw.scode_nr == new_fw.scode_nr) {
751 tuner_dbg("SCODE firmware already loaded.\n");
752 goto check_device;
753 }
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300754
Mauro Carvalho Chehab40ae91a2008-02-14 01:52:48 -0300755 if (new_fw.type & FM)
756 goto check_device;
757
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300758 /* Load SCODE firmware, if exists */
Chris Pascoee0f0b372007-11-19 11:22:03 -0300759 tuner_dbg("Trying to load scode %d\n", new_fw.scode_nr);
Mauro Carvalho Chehabf380e1d2007-11-15 08:43:53 -0300760
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300761 rc = load_scode(fe, new_fw.type | new_fw.scode_table, &new_fw.id,
762 new_fw.int_freq, new_fw.scode_nr);
Mauro Carvalho Chehab43efe702007-11-14 19:30:28 -0300763
Chris Pascoee0f0b372007-11-19 11:22:03 -0300764check_device:
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300765 if (xc2028_get_reg(priv, 0x0004, &version) < 0 ||
766 xc2028_get_reg(priv, 0x0008, &hwmodel) < 0) {
767 tuner_err("Unable to read tuner registers.\n");
768 goto fail;
769 }
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300770
771 tuner_info("Device is Xceive %d version %d.%d, "
772 "firmware version %d.%d\n",
773 hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8,
774 (version & 0xf0) >> 4, version & 0xf);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300775
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300776 /* Check firmware version against what we downloaded. */
777 if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) {
778 tuner_err("Incorrect readback of firmware version.\n");
779 goto fail;
780 }
781
782 /* Check that the tuner hardware model remains consistent over time. */
783 if (priv->hwmodel == 0 && (hwmodel == 2028 || hwmodel == 3028)) {
784 priv->hwmodel = hwmodel;
785 priv->hwvers = version & 0xff00;
786 } else if (priv->hwmodel == 0 || priv->hwmodel != hwmodel ||
787 priv->hwvers != (version & 0xff00)) {
788 tuner_err("Read invalid device hardware information - tuner "
789 "hung?\n");
790 goto fail;
791 }
792
Chris Pascoee0f0b372007-11-19 11:22:03 -0300793 memcpy(&priv->cur_fw, &new_fw, sizeof(priv->cur_fw));
794
795 /*
796 * By setting BASE in cur_fw.type only after successfully loading all
797 * firmwares, we can:
798 * 1. Identify that BASE firmware with type=0 has been loaded;
799 * 2. Tell whether BASE firmware was just changed the next time through.
800 */
801 priv->cur_fw.type |= BASE;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300802
803 return 0;
Chris Pascoee0f0b372007-11-19 11:22:03 -0300804
805fail:
806 memset(&priv->cur_fw, 0, sizeof(priv->cur_fw));
Chris Pascoe8bf799a2007-11-19 11:35:45 -0300807 if (!is_retry) {
808 msleep(50);
809 is_retry = 1;
810 tuner_dbg("Retrying firmware load\n");
811 goto retry;
812 }
813
Chris Pascoee0f0b372007-11-19 11:22:03 -0300814 if (rc == -ENOENT)
815 rc = -EINVAL;
816 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300817}
818
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300819static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300820{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300821 struct xc2028_data *priv = fe->tuner_priv;
Chris Pascoe7d58d112007-11-19 04:31:58 -0300822 u16 frq_lock, signal = 0;
823 int rc;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300824
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300825 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300826
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300827 mutex_lock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300828
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300829 /* Sync Lock Indicator */
Chris Pascoe7d58d112007-11-19 04:31:58 -0300830 rc = xc2028_get_reg(priv, 0x0002, &frq_lock);
831 if (rc < 0 || frq_lock == 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300832 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300833
834 /* Frequency is locked. Return signal quality */
835
Mauro Carvalho Chehab80b52202007-11-05 09:07:13 -0300836 /* Get SNR of the video signal */
Chris Pascoe7d58d112007-11-19 04:31:58 -0300837 rc = xc2028_get_reg(priv, 0x0040, &signal);
838 if (rc < 0)
839 signal = -frq_lock;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300840
841ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300842 mutex_unlock(&priv->lock);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300843
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300844 *strength = signal;
845
Chris Pascoe7d58d112007-11-19 04:31:58 -0300846 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300847}
848
849#define DIV 15625
850
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300851static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300852 enum tuner_mode new_mode,
853 unsigned int type,
854 v4l2_std_id std,
855 u16 int_freq)
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300856{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300857 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300858 int rc = -EINVAL;
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -0300859 unsigned char buf[4];
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300860 u32 div, offset = 0;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300861
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300862 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300863
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300864 mutex_lock(&priv->lock);
865
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -0300866 tuner_dbg("should set frequency %d kHz\n", freq / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300867
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300868 if (check_firmware(fe, type, std, int_freq) < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300869 goto ret;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300870
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -0300871 /* On some cases xc2028 can disable video output, if
872 * very weak signals are received. By sending a soft
873 * reset, this is re-enabled. So, it is better to always
874 * send a soft reset before changing channels, to be sure
875 * that xc2028 will be in a safe state.
876 * Maybe this might also be needed for DTV.
877 */
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300878 if (new_mode == T_ANALOG_TV) {
Mauro Carvalho Chehab2800ae92007-11-22 12:48:04 -0300879 rc = send_seq(priv, {0x00, 0x00});
Michael Krufkyd536c9d2007-12-18 10:42:33 -0300880 } else if (priv->cur_fw.type & ATSC) {
881 offset = 1750000;
882 } else {
Mauro Carvalho Chehabd4e76682007-07-18 23:14:25 -0300883 offset = 2750000;
Chris Pascoe897b8422007-12-02 09:39:18 -0300884 /*
885 * We must adjust the offset by 500kHz in two cases in order
886 * to correctly center the IF output:
887 * 1) When the ZARLINK456 or DIBCOM52 tables were explicitly
888 * selected and a 7MHz channel is tuned;
889 * 2) When tuning a VHF channel with DTV78 firmware.
890 */
891 if (((priv->cur_fw.type & DTV7) &&
892 (priv->cur_fw.scode_table & (ZARLINK456 | DIBCOM52))) ||
893 ((priv->cur_fw.type & DTV78) && freq < 470000000))
Chris Pascoea44f1c42007-11-19 06:35:26 -0300894 offset -= 500000;
895 }
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300896
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300897 div = (freq - offset + DIV / 2) / DIV;
Mauro Carvalho Chehab2e4160c2007-07-18 13:33:23 -0300898
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300899 /* CMD= Set frequency */
Chris Pascoe06fd82d2007-11-19 06:06:08 -0300900 if (priv->firm_version < 0x0202)
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300901 rc = send_seq(priv, {0x00, 0x02, 0x00, 0x00});
902 else
903 rc = send_seq(priv, {0x80, 0x02, 0x00, 0x00});
904 if (rc < 0)
905 goto ret;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -0300906
Mauro Carvalho Chehab1fe873692008-04-22 14:45:20 -0300907 /* Return code shouldn't be checked.
908 The reset CLK is needed only with tm6000.
909 Driver should work fine even if this fails.
910 */
911 priv->tuner_callback(priv->video_dev, XC2028_RESET_CLK, 1);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300912
913 msleep(10);
Michel Ludwig701672e2007-07-18 10:29:10 -0300914
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300915 buf[0] = 0xff & (div >> 24);
916 buf[1] = 0xff & (div >> 16);
917 buf[2] = 0xff & (div >> 8);
918 buf[3] = 0xff & (div);
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300919
Chris Pascoe47cc5b72007-11-19 04:14:23 -0300920 rc = i2c_send(priv, buf, sizeof(buf));
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300921 if (rc < 0)
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300922 goto ret;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300923 msleep(100);
924
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300925 priv->frequency = freq;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300926
Chris Pascoe2ce4b3a2007-11-19 06:20:17 -0300927 tuner_dbg("divisor= %02x %02x %02x %02x (freq=%d.%03d)\n",
928 buf[0], buf[1], buf[2], buf[3],
929 freq / 1000000, (freq % 1000000) / 1000);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300930
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300931 rc = 0;
Mauro Carvalho Chehab3b205322007-09-27 18:27:03 -0300932
933ret:
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300934 mutex_unlock(&priv->lock);
935
936 return rc;
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -0300937}
938
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300939static int xc2028_set_analog_freq(struct dvb_frontend *fe,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -0300940 struct analog_parameters *p)
Michel Ludwig701672e2007-07-18 10:29:10 -0300941{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300942 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300943 unsigned int type=0;
944
945 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehabc71d4bc2007-11-22 11:47:18 -0300946
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -0300947 if (p->mode == V4L2_TUNER_RADIO) {
948 type |= FM;
949 if (priv->ctrl.input1)
950 type |= INPUT1;
951 return generic_set_freq(fe, (625l * p->frequency) / 10,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300952 T_ANALOG_TV, type, 0, 0);
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -0300953 }
954
Mauro Carvalho Chehaba5e9fe12007-11-23 11:36:18 -0300955 /* if std is not defined, choose one */
956 if (!p->std)
957 p->std = V4L2_STD_MN;
958
959 /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300960 if (!(p->std & V4L2_STD_MN))
961 type |= F8MHZ;
Michel Ludwig701672e2007-07-18 10:29:10 -0300962
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300963 /* Add audio hack to std mask */
964 p->std |= parse_audio_std_option();
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300965
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300966 return generic_set_freq(fe, 62500l * p->frequency,
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -0300967 T_ANALOG_TV, type, p->std, 0);
Michel Ludwig701672e2007-07-18 10:29:10 -0300968}
969
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300970static int xc2028_set_params(struct dvb_frontend *fe,
Michel Ludwig701672e2007-07-18 10:29:10 -0300971 struct dvb_frontend_parameters *p)
972{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -0300973 struct xc2028_data *priv = fe->tuner_priv;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300974 unsigned int type=0;
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -0300975 fe_bandwidth_t bw = BANDWIDTH_8_MHZ;
Chris Pascoead35ce92007-12-02 06:36:42 -0300976 u16 demod = 0;
Michel Ludwig701672e2007-07-18 10:29:10 -0300977
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -0300978 tuner_dbg("%s called\n", __FUNCTION__);
Michel Ludwig701672e2007-07-18 10:29:10 -0300979
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -0300980 if (priv->ctrl.d2633)
981 type |= D2633;
982 else
983 type |= D2620;
984
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -0300985 switch(fe->ops.info.type) {
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -0300986 case FE_OFDM:
987 bw = p->u.ofdm.bandwidth;
988 break;
989 case FE_QAM:
Mauro Carvalho Chehab5c156482007-12-02 00:02:18 -0300990 tuner_info("WARN: There are some reports that "
991 "QAM 6 MHz doesn't work.\n"
992 "If this works for you, please report by "
993 "e-mail to: v4l-dvb-maintainer@linuxtv.org\n");
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -0300994 bw = BANDWIDTH_6_MHZ;
995 type |= QAM;
996 break;
997 case FE_ATSC:
998 bw = BANDWIDTH_6_MHZ;
Mauro Carvalho Chehab4bfae522007-12-16 09:24:30 -0300999 /* The only ATSC firmware (at least on v2.7) is D2633,
1000 so overrides ctrl->d2633 */
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -03001001 type |= ATSC| D2633;
Mauro Carvalho Chehab4bfae522007-12-16 09:24:30 -03001002 type &= ~D2620;
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -03001003 break;
Mauro Carvalho Chehab5c156482007-12-02 00:02:18 -03001004 /* DVB-S is not supported */
1005 default:
1006 return -EINVAL;
Mauro Carvalho Chehabd04aa542007-11-24 10:47:03 -03001007 }
1008
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001009 switch (bw) {
1010 case BANDWIDTH_8_MHZ:
Chris Pascoe3dfefc52007-12-02 10:07:06 -03001011 if (p->frequency < 470000000)
1012 priv->ctrl.vhfbw7 = 0;
1013 else
1014 priv->ctrl.uhfbw8 = 1;
1015 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV8;
1016 type |= F8MHZ;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001017 break;
1018 case BANDWIDTH_7_MHZ:
Chris Pascoe3dfefc52007-12-02 10:07:06 -03001019 if (p->frequency < 470000000)
1020 priv->ctrl.vhfbw7 = 1;
1021 else
1022 priv->ctrl.uhfbw8 = 0;
1023 type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV7;
1024 type |= F8MHZ;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001025 break;
1026 case BANDWIDTH_6_MHZ:
Chris Pascoe3dfefc52007-12-02 10:07:06 -03001027 type |= DTV6;
1028 priv->ctrl.vhfbw7 = 0;
1029 priv->ctrl.uhfbw8 = 0;
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001030 break;
1031 default:
1032 tuner_err("error: bandwidth not supported.\n");
1033 };
1034
Mauro Carvalho Chehab66c2d532007-11-25 19:26:36 -03001035 /* All S-code tables need a 200kHz shift */
1036 if (priv->ctrl.demod)
Chris Pascoead35ce92007-12-02 06:36:42 -03001037 demod = priv->ctrl.demod + 200;
Mauro Carvalho Chehabb542dfd2007-11-24 11:07:12 -03001038
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001039 return generic_set_freq(fe, p->frequency,
Chris Pascoead35ce92007-12-02 06:36:42 -03001040 T_DIGITAL_TV, type, 0, demod);
Michel Ludwig701672e2007-07-18 10:29:10 -03001041}
1042
Chris Pascoe45819c32007-11-19 11:41:20 -03001043static int xc2028_sleep(struct dvb_frontend *fe)
1044{
1045 struct xc2028_data *priv = fe->tuner_priv;
1046 int rc = 0;
1047
1048 tuner_dbg("%s called\n", __FUNCTION__);
1049
1050 mutex_lock(&priv->lock);
1051
1052 if (priv->firm_version < 0x0202)
1053 rc = send_seq(priv, {0x00, 0x08, 0x00, 0x00});
1054 else
1055 rc = send_seq(priv, {0x80, 0x08, 0x00, 0x00});
1056
1057 priv->cur_fw.type = 0; /* need firmware reload */
1058
1059 mutex_unlock(&priv->lock);
1060
1061 return rc;
1062}
1063
1064
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001065static int xc2028_dvb_release(struct dvb_frontend *fe)
Michel Ludwig701672e2007-07-18 10:29:10 -03001066{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001067 struct xc2028_data *priv = fe->tuner_priv;
Michel Ludwig701672e2007-07-18 10:29:10 -03001068
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -03001069 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001070
Chris Pascoeaa501be2007-11-19 04:45:38 -03001071 mutex_lock(&xc2028_list_mutex);
1072
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001073 priv->count--;
1074
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001075 if (!priv->count) {
Mauro Carvalho Chehab1808a692007-10-29 17:38:59 -03001076 list_del(&priv->xc2028_list);
1077
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001078 kfree(priv->ctrl.fname);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001079
1080 free_firmware(priv);
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001081 kfree(priv);
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001082 fe->tuner_priv = NULL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001083 }
Michel Ludwig701672e2007-07-18 10:29:10 -03001084
Chris Pascoeaa501be2007-11-19 04:45:38 -03001085 mutex_unlock(&xc2028_list_mutex);
1086
Michel Ludwig701672e2007-07-18 10:29:10 -03001087 return 0;
1088}
1089
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001090static int xc2028_get_frequency(struct dvb_frontend *fe, u32 *frequency)
Michel Ludwig701672e2007-07-18 10:29:10 -03001091{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001092 struct xc2028_data *priv = fe->tuner_priv;
1093
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -03001094 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001095
1096 *frequency = priv->frequency;
Michel Ludwig701672e2007-07-18 10:29:10 -03001097
1098 return 0;
1099}
1100
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001101static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg)
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001102{
1103 struct xc2028_data *priv = fe->tuner_priv;
1104 struct xc2028_ctrl *p = priv_cfg;
Chris Pascoe0a196b62007-11-19 09:29:59 -03001105 int rc = 0;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001106
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -03001107 tuner_dbg("%s called\n", __FUNCTION__);
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001108
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001109 mutex_lock(&priv->lock);
1110
Chris Pascoe0a196b62007-11-19 09:29:59 -03001111 kfree(priv->ctrl.fname);
1112 free_firmware(priv);
1113
1114 memcpy(&priv->ctrl, p, sizeof(priv->ctrl));
1115 priv->ctrl.fname = NULL;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001116
1117 if (p->fname) {
Chris Pascoe0a196b62007-11-19 09:29:59 -03001118 priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL);
1119 if (priv->ctrl.fname == NULL)
1120 rc = -ENOMEM;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001121 }
1122
Chris Pascoe0a196b62007-11-19 09:29:59 -03001123 if (priv->ctrl.max_len < 9)
1124 priv->ctrl.max_len = 13;
Mauro Carvalho Chehab352fae12007-11-01 16:56:26 -03001125
Chris Pascoe06fd82d2007-11-19 06:06:08 -03001126 mutex_unlock(&priv->lock);
1127
Chris Pascoe0a196b62007-11-19 09:29:59 -03001128 return rc;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001129}
1130
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001131static const struct dvb_tuner_ops xc2028_dvb_tuner_ops = {
Michel Ludwig701672e2007-07-18 10:29:10 -03001132 .info = {
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001133 .name = "Xceive XC3028",
1134 .frequency_min = 42000000,
1135 .frequency_max = 864000000,
1136 .frequency_step = 50000,
1137 },
Michel Ludwig701672e2007-07-18 10:29:10 -03001138
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001139 .set_config = xc2028_set_config,
Mauro Carvalho Chehab00deff12007-11-24 10:13:42 -03001140 .set_analog_params = xc2028_set_analog_freq,
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001141 .release = xc2028_dvb_release,
1142 .get_frequency = xc2028_get_frequency,
1143 .get_rf_strength = xc2028_signal,
1144 .set_params = xc2028_set_params,
Chris Pascoe45819c32007-11-19 11:41:20 -03001145 .sleep = xc2028_sleep,
Michel Ludwig701672e2007-07-18 10:29:10 -03001146
Michel Ludwig701672e2007-07-18 10:29:10 -03001147};
1148
Michael Krufky7972f982007-12-21 16:12:09 -03001149struct dvb_frontend *xc2028_attach(struct dvb_frontend *fe,
1150 struct xc2028_config *cfg)
Michel Ludwig701672e2007-07-18 10:29:10 -03001151{
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001152 struct xc2028_data *priv;
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001153 void *video_dev;
Michel Ludwig701672e2007-07-18 10:29:10 -03001154
Mauro Carvalho Chehab83fb3402007-11-15 09:44:30 -03001155 if (debug)
Michael Krufky27566652008-04-22 14:41:53 -03001156 printk(KERN_DEBUG "xc2028: Xcv2028/3028 init called!\n");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001157
Mauro Carvalho Chehab71a2ee32007-11-22 12:19:37 -03001158 if (NULL == cfg || NULL == cfg->video_dev)
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001159 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001160
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001161 if (!fe) {
Michael Krufky27566652008-04-22 14:41:53 -03001162 printk(KERN_ERR "xc2028: No frontend!\n");
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001163 return NULL;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001164 }
1165
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001166 video_dev = cfg->video_dev;
1167
Chris Pascoeaa501be2007-11-19 04:45:38 -03001168 mutex_lock(&xc2028_list_mutex);
1169
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001170 list_for_each_entry(priv, &xc2028_list, xc2028_list) {
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001171 if (priv->video_dev == cfg->video_dev) {
1172 video_dev = NULL;
1173 break;
1174 }
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001175 }
1176
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001177 if (video_dev) {
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001178 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Chris Pascoeaa501be2007-11-19 04:45:38 -03001179 if (priv == NULL) {
1180 mutex_unlock(&xc2028_list_mutex);
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001181 return NULL;
Chris Pascoeaa501be2007-11-19 04:45:38 -03001182 }
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001183
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001184 priv->i2c_props.addr = cfg->i2c_addr;
1185 priv->i2c_props.adap = cfg->i2c_adap;
Michael Krufky27566652008-04-22 14:41:53 -03001186 priv->i2c_props.name = "xc2028";
1187
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001188 priv->video_dev = video_dev;
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001189 priv->tuner_callback = cfg->callback;
Chris Pascoe0a196b62007-11-19 09:29:59 -03001190 priv->ctrl.max_len = 13;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -03001191
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001192 mutex_init(&priv->lock);
1193
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001194 list_add_tail(&priv->xc2028_list, &xc2028_list);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001195 }
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001196
1197 fe->tuner_priv = priv;
Mauro Carvalho Chehab1808a692007-10-29 17:38:59 -03001198 priv->count++;
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001199
1200 memcpy(&fe->ops.tuner_ops, &xc2028_dvb_tuner_ops,
Mauro Carvalho Chehabab0b9fc2007-11-01 17:47:42 -03001201 sizeof(xc2028_dvb_tuner_ops));
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001202
1203 tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner");
Michel Ludwig701672e2007-07-18 10:29:10 -03001204
Mauro Carvalho Chehab71a2ee32007-11-22 12:19:37 -03001205 if (cfg->ctrl)
1206 xc2028_set_config(fe, cfg->ctrl);
1207
Chris Pascoeaa501be2007-11-19 04:45:38 -03001208 mutex_unlock(&xc2028_list_mutex);
1209
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001210 return fe;
Michel Ludwig701672e2007-07-18 10:29:10 -03001211}
Michel Ludwiga37b4c92007-11-16 07:46:14 -03001212
Michel Ludwig701672e2007-07-18 10:29:10 -03001213EXPORT_SYMBOL(xc2028_attach);
1214
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001215MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver");
Mauro Carvalho Chehab983d2142007-10-29 23:44:18 -03001216MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>");
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03001217MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
1218MODULE_LICENSE("GPL");