Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 1 | /* tuner-xc2028 |
| 2 | * |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 3 | * Copyright (c) 2007-2008 Mauro Carvalho Chehab (mchehab@infradead.org) |
Mauro Carvalho Chehab | 983d214 | 2007-10-29 23:44:18 -0300 | [diff] [blame] | 4 | * |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 5 | * Copyright (c) 2007 Michel Ludwig (michel.ludwig@gmail.com) |
| 6 | * - frontend interface |
Mauro Carvalho Chehab | 983d214 | 2007-10-29 23:44:18 -0300 | [diff] [blame] | 7 | * |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 8 | * 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 Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 14 | #include <linux/videodev2.h> |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 15 | #include <linux/delay.h> |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 16 | #include <media/tuner.h> |
Mauro Carvalho Chehab | 3b20532 | 2007-09-27 18:27:03 -0300 | [diff] [blame] | 17 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 19 | #include <asm/unaligned.h> |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 20 | #include "tuner-i2c.h" |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 21 | #include "tuner-xc2028.h" |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 22 | #include "tuner-xc2028-types.h" |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 23 | |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 24 | #include <linux/dvb/frontend.h> |
| 25 | #include "dvb_frontend.h" |
| 26 | |
Mauro Carvalho Chehab | ef8c188 | 2007-11-16 16:28:21 -0300 | [diff] [blame] | 27 | |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 28 | static int debug; |
| 29 | module_param(debug, int, 0644); |
| 30 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); |
| 31 | |
Mauro Carvalho Chehab | 74a89b2 | 2008-12-05 10:31:16 -0300 | [diff] [blame] | 32 | static int no_poweroff; |
| 33 | module_param(no_poweroff, int, 0644); |
Devin Heitmueller | 4900877 | 2009-04-28 16:22:47 -0300 | [diff] [blame] | 34 | MODULE_PARM_DESC(no_poweroff, "0 (default) powers device off when not used.\n" |
Mauro Carvalho Chehab | 74a89b2 | 2008-12-05 10:31:16 -0300 | [diff] [blame] | 35 | "1 keep device energized and with tuner ready all the times.\n" |
| 36 | " Faster, but consumes more power and keeps the device hotter\n"); |
| 37 | |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 38 | static char audio_std[8]; |
| 39 | module_param_string(audio_std, audio_std, sizeof(audio_std), 0); |
| 40 | MODULE_PARM_DESC(audio_std, |
| 41 | "Audio standard. XC3028 audio decoder explicitly " |
| 42 | "needs to know what audio\n" |
| 43 | "standard is needed for some video standards with audio A2 or NICAM.\n" |
| 44 | "The valid values are:\n" |
| 45 | "A2\n" |
| 46 | "A2/A\n" |
| 47 | "A2/B\n" |
| 48 | "NICAM\n" |
| 49 | "NICAM/A\n" |
| 50 | "NICAM/B\n"); |
| 51 | |
Samuel Ortiz | 4327b77 | 2009-05-27 00:49:33 +0200 | [diff] [blame] | 52 | static char firmware_name[30]; |
Mauro Carvalho Chehab | 5c913c0 | 2008-04-22 14:46:24 -0300 | [diff] [blame] | 53 | module_param_string(firmware_name, firmware_name, sizeof(firmware_name), 0); |
| 54 | MODULE_PARM_DESC(firmware_name, "Firmware file name. Allows overriding the " |
| 55 | "default firmware name\n"); |
| 56 | |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 57 | static LIST_HEAD(hybrid_tuner_instance_list); |
Chris Pascoe | aa501be | 2007-11-19 04:45:38 -0300 | [diff] [blame] | 58 | static DEFINE_MUTEX(xc2028_list_mutex); |
| 59 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 60 | /* struct for storing firmware table */ |
| 61 | struct firmware_description { |
| 62 | unsigned int type; |
| 63 | v4l2_std_id id; |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 64 | __u16 int_freq; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 65 | unsigned char *ptr; |
| 66 | unsigned int size; |
| 67 | }; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 68 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 69 | struct firmware_properties { |
| 70 | unsigned int type; |
| 71 | v4l2_std_id id; |
| 72 | v4l2_std_id std_req; |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 73 | __u16 int_freq; |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 74 | unsigned int scode_table; |
| 75 | int scode_nr; |
| 76 | }; |
| 77 | |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 78 | struct xc2028_data { |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 79 | struct list_head hybrid_tuner_instance_list; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 80 | struct tuner_i2c_props i2c_props; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 81 | __u32 frequency; |
| 82 | |
| 83 | struct firmware_description *firm; |
| 84 | int firm_size; |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 85 | __u16 firm_version; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 86 | |
Chris Pascoe | 8bf799a | 2007-11-19 11:35:45 -0300 | [diff] [blame] | 87 | __u16 hwmodel; |
| 88 | __u16 hwvers; |
| 89 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 90 | struct xc2028_ctrl ctrl; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 91 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 92 | struct firmware_properties cur_fw; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 93 | |
| 94 | struct mutex lock; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 95 | }; |
| 96 | |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 97 | #define i2c_send(priv, buf, size) ({ \ |
| 98 | int _rc; \ |
| 99 | _rc = tuner_i2c_xfer_send(&priv->i2c_props, buf, size); \ |
| 100 | if (size != _rc) \ |
| 101 | tuner_info("i2c output error: rc = %d (should be %d)\n",\ |
| 102 | _rc, (int)size); \ |
Devin Heitmueller | 70ca3c4 | 2010-01-19 01:38:45 -0300 | [diff] [blame] | 103 | if (priv->ctrl.msleep) \ |
| 104 | msleep(priv->ctrl.msleep); \ |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 105 | _rc; \ |
| 106 | }) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 107 | |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 108 | #define i2c_rcv(priv, buf, size) ({ \ |
| 109 | int _rc; \ |
| 110 | _rc = tuner_i2c_xfer_recv(&priv->i2c_props, buf, size); \ |
| 111 | if (size != _rc) \ |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 112 | tuner_err("i2c input error: rc = %d (should be %d)\n", \ |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 113 | _rc, (int)size); \ |
| 114 | _rc; \ |
| 115 | }) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 116 | |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 117 | #define i2c_send_recv(priv, obuf, osize, ibuf, isize) ({ \ |
| 118 | int _rc; \ |
| 119 | _rc = tuner_i2c_xfer_send_recv(&priv->i2c_props, obuf, osize, \ |
| 120 | ibuf, isize); \ |
| 121 | if (isize != _rc) \ |
| 122 | tuner_err("i2c input error: rc = %d (should be %d)\n", \ |
| 123 | _rc, (int)isize); \ |
Devin Heitmueller | 70ca3c4 | 2010-01-19 01:38:45 -0300 | [diff] [blame] | 124 | if (priv->ctrl.msleep) \ |
| 125 | msleep(priv->ctrl.msleep); \ |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 126 | _rc; \ |
| 127 | }) |
| 128 | |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 129 | #define send_seq(priv, data...) ({ \ |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 130 | static u8 _val[] = data; \ |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 131 | int _rc; \ |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 132 | if (sizeof(_val) != \ |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 133 | (_rc = tuner_i2c_xfer_send(&priv->i2c_props, \ |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 134 | _val, sizeof(_val)))) { \ |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 135 | tuner_err("Error on line %d: %d\n", __LINE__, _rc); \ |
Devin Heitmueller | 70ca3c4 | 2010-01-19 01:38:45 -0300 | [diff] [blame] | 136 | } else if (priv->ctrl.msleep) \ |
Mauro Carvalho Chehab | e5cc2bf | 2008-01-08 11:26:59 -0300 | [diff] [blame] | 137 | msleep(priv->ctrl.msleep); \ |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 138 | _rc; \ |
| 139 | }) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 140 | |
Devin Heitmueller | 8324402 | 2008-04-17 21:41:16 -0300 | [diff] [blame] | 141 | static int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 142 | { |
Mauro Carvalho Chehab | b873e1a | 2007-11-05 08:41:50 -0300 | [diff] [blame] | 143 | unsigned char buf[2]; |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 144 | unsigned char ibuf[2]; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 145 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 146 | tuner_dbg("%s %04x called\n", __func__, reg); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 147 | |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 148 | buf[0] = reg >> 8; |
Mauro Carvalho Chehab | 80b5220 | 2007-11-05 09:07:13 -0300 | [diff] [blame] | 149 | buf[1] = (unsigned char) reg; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 150 | |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 151 | if (i2c_send_recv(priv, buf, 2, ibuf, 2) != 2) |
| 152 | return -EIO; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 153 | |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 154 | *val = (ibuf[1]) | (ibuf[0] << 8); |
| 155 | return 0; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 156 | } |
| 157 | |
Chris Pascoe | e026268 | 2007-12-02 06:30:50 -0300 | [diff] [blame] | 158 | #define dump_firm_type(t) dump_firm_type_and_int_freq(t, 0) |
Adrian Bunk | 29bec0b | 2008-04-22 14:41:45 -0300 | [diff] [blame] | 159 | static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq) |
Mauro Carvalho Chehab | 43efe70 | 2007-11-14 19:30:28 -0300 | [diff] [blame] | 160 | { |
| 161 | if (type & BASE) |
| 162 | printk("BASE "); |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 163 | if (type & INIT1) |
| 164 | printk("INIT1 "); |
Mauro Carvalho Chehab | 43efe70 | 2007-11-14 19:30:28 -0300 | [diff] [blame] | 165 | if (type & F8MHZ) |
| 166 | printk("F8MHZ "); |
| 167 | if (type & MTS) |
| 168 | printk("MTS "); |
| 169 | if (type & D2620) |
| 170 | printk("D2620 "); |
| 171 | if (type & D2633) |
| 172 | printk("D2633 "); |
| 173 | if (type & DTV6) |
| 174 | printk("DTV6 "); |
| 175 | if (type & QAM) |
| 176 | printk("QAM "); |
| 177 | if (type & DTV7) |
| 178 | printk("DTV7 "); |
| 179 | if (type & DTV78) |
| 180 | printk("DTV78 "); |
| 181 | if (type & DTV8) |
| 182 | printk("DTV8 "); |
| 183 | if (type & FM) |
| 184 | printk("FM "); |
| 185 | if (type & INPUT1) |
| 186 | printk("INPUT1 "); |
| 187 | if (type & LCD) |
| 188 | printk("LCD "); |
| 189 | if (type & NOGD) |
| 190 | printk("NOGD "); |
| 191 | if (type & MONO) |
| 192 | printk("MONO "); |
| 193 | if (type & ATSC) |
| 194 | printk("ATSC "); |
| 195 | if (type & IF) |
| 196 | printk("IF "); |
| 197 | if (type & LG60) |
| 198 | printk("LG60 "); |
| 199 | if (type & ATI638) |
| 200 | printk("ATI638 "); |
| 201 | if (type & OREN538) |
| 202 | printk("OREN538 "); |
| 203 | if (type & OREN36) |
| 204 | printk("OREN36 "); |
| 205 | if (type & TOYOTA388) |
| 206 | printk("TOYOTA388 "); |
| 207 | if (type & TOYOTA794) |
| 208 | printk("TOYOTA794 "); |
| 209 | if (type & DIBCOM52) |
| 210 | printk("DIBCOM52 "); |
| 211 | if (type & ZARLINK456) |
| 212 | printk("ZARLINK456 "); |
| 213 | if (type & CHINA) |
| 214 | printk("CHINA "); |
| 215 | if (type & F6MHZ) |
| 216 | printk("F6MHZ "); |
| 217 | if (type & INPUT2) |
| 218 | printk("INPUT2 "); |
| 219 | if (type & SCODE) |
| 220 | printk("SCODE "); |
Chris Pascoe | e026268 | 2007-12-02 06:30:50 -0300 | [diff] [blame] | 221 | if (type & HAS_IF) |
| 222 | printk("HAS_IF_%d ", int_freq); |
Mauro Carvalho Chehab | 43efe70 | 2007-11-14 19:30:28 -0300 | [diff] [blame] | 223 | } |
| 224 | |
Mauro Carvalho Chehab | ef8c188 | 2007-11-16 16:28:21 -0300 | [diff] [blame] | 225 | static v4l2_std_id parse_audio_std_option(void) |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 226 | { |
Chris Pascoe | e155d90 | 2007-11-19 04:16:47 -0300 | [diff] [blame] | 227 | if (strcasecmp(audio_std, "A2") == 0) |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 228 | return V4L2_STD_A2; |
Chris Pascoe | e155d90 | 2007-11-19 04:16:47 -0300 | [diff] [blame] | 229 | if (strcasecmp(audio_std, "A2/A") == 0) |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 230 | return V4L2_STD_A2_A; |
Chris Pascoe | e155d90 | 2007-11-19 04:16:47 -0300 | [diff] [blame] | 231 | if (strcasecmp(audio_std, "A2/B") == 0) |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 232 | return V4L2_STD_A2_B; |
Chris Pascoe | e155d90 | 2007-11-19 04:16:47 -0300 | [diff] [blame] | 233 | if (strcasecmp(audio_std, "NICAM") == 0) |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 234 | return V4L2_STD_NICAM; |
Chris Pascoe | e155d90 | 2007-11-19 04:16:47 -0300 | [diff] [blame] | 235 | if (strcasecmp(audio_std, "NICAM/A") == 0) |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 236 | return V4L2_STD_NICAM_A; |
Chris Pascoe | e155d90 | 2007-11-19 04:16:47 -0300 | [diff] [blame] | 237 | if (strcasecmp(audio_std, "NICAM/B") == 0) |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 238 | return V4L2_STD_NICAM_B; |
| 239 | |
| 240 | return 0; |
| 241 | } |
| 242 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 243 | static void free_firmware(struct xc2028_data *priv) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 244 | { |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 245 | int i; |
Mauro Carvalho Chehab | 92b75ab | 2008-04-17 21:40:53 -0300 | [diff] [blame] | 246 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 247 | |
| 248 | if (!priv->firm) |
| 249 | return; |
| 250 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 251 | for (i = 0; i < priv->firm_size; i++) |
| 252 | kfree(priv->firm[i].ptr); |
| 253 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 254 | kfree(priv->firm); |
| 255 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 256 | priv->firm = NULL; |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 257 | priv->firm_size = 0; |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 258 | |
| 259 | memset(&priv->cur_fw, 0, sizeof(priv->cur_fw)); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 260 | } |
| 261 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 262 | static int load_all_firmwares(struct dvb_frontend *fe) |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 263 | { |
| 264 | struct xc2028_data *priv = fe->tuner_priv; |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 265 | const struct firmware *fw = NULL; |
David Woodhouse | c63e87e | 2008-05-24 00:13:34 +0100 | [diff] [blame] | 266 | const unsigned char *p, *endp; |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 267 | int rc = 0; |
| 268 | int n, n_array; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 269 | char name[33]; |
Mauro Carvalho Chehab | 5c913c0 | 2008-04-22 14:46:24 -0300 | [diff] [blame] | 270 | char *fname; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 271 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 272 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 273 | |
Mauro Carvalho Chehab | 5c913c0 | 2008-04-22 14:46:24 -0300 | [diff] [blame] | 274 | if (!firmware_name[0]) |
| 275 | fname = priv->ctrl.fname; |
| 276 | else |
| 277 | fname = firmware_name; |
| 278 | |
| 279 | tuner_dbg("Reading firmware %s\n", fname); |
Jean Delvare | e978525 | 2009-04-26 05:43:59 -0300 | [diff] [blame] | 280 | rc = request_firmware(&fw, fname, priv->i2c_props.adap->dev.parent); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 281 | if (rc < 0) { |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 282 | if (rc == -ENOENT) |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 283 | tuner_err("Error: firmware %s not found.\n", |
Mauro Carvalho Chehab | 5c913c0 | 2008-04-22 14:46:24 -0300 | [diff] [blame] | 284 | fname); |
Mauro Carvalho Chehab | 2e4160c | 2007-07-18 13:33:23 -0300 | [diff] [blame] | 285 | else |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 286 | tuner_err("Error %d while requesting firmware %s \n", |
Mauro Carvalho Chehab | 5c913c0 | 2008-04-22 14:46:24 -0300 | [diff] [blame] | 287 | rc, fname); |
Mauro Carvalho Chehab | 2e4160c | 2007-07-18 13:33:23 -0300 | [diff] [blame] | 288 | |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 289 | return rc; |
| 290 | } |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 291 | p = fw->data; |
| 292 | endp = p + fw->size; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 293 | |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 294 | if (fw->size < sizeof(name) - 1 + 2 + 2) { |
| 295 | tuner_err("Error: firmware file %s has invalid size!\n", |
Mauro Carvalho Chehab | 5c913c0 | 2008-04-22 14:46:24 -0300 | [diff] [blame] | 296 | fname); |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 297 | goto corrupt; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 298 | } |
| 299 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 300 | memcpy(name, p, sizeof(name) - 1); |
| 301 | name[sizeof(name) - 1] = 0; |
| 302 | p += sizeof(name) - 1; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 303 | |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 304 | priv->firm_version = get_unaligned_le16(p); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 305 | p += 2; |
| 306 | |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 307 | n_array = get_unaligned_le16(p); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 308 | p += 2; |
| 309 | |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 310 | tuner_info("Loading %d firmware images from %s, type: %s, ver %d.%d\n", |
Mauro Carvalho Chehab | 5c913c0 | 2008-04-22 14:46:24 -0300 | [diff] [blame] | 311 | n_array, fname, name, |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 312 | priv->firm_version >> 8, priv->firm_version & 0xff); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 313 | |
Thomas Meyer | 1b7acf0 | 2011-11-29 17:08:00 -0300 | [diff] [blame] | 314 | priv->firm = kcalloc(n_array, sizeof(*priv->firm), GFP_KERNEL); |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 315 | if (priv->firm == NULL) { |
| 316 | tuner_err("Not enough memory to load firmware file.\n"); |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 317 | rc = -ENOMEM; |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 318 | goto err; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 319 | } |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 320 | priv->firm_size = n_array; |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 321 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 322 | n = -1; |
| 323 | while (p < endp) { |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 324 | __u32 type, size; |
| 325 | v4l2_std_id id; |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 326 | __u16 int_freq = 0; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 327 | |
| 328 | n++; |
| 329 | if (n >= n_array) { |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 330 | tuner_err("More firmware images in file than " |
| 331 | "were expected!\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 332 | goto corrupt; |
| 333 | } |
| 334 | |
| 335 | /* Checks if there's enough bytes to read */ |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 336 | if (endp - p < sizeof(type) + sizeof(id) + sizeof(size)) |
| 337 | goto header; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 338 | |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 339 | type = get_unaligned_le32(p); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 340 | p += sizeof(type); |
| 341 | |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 342 | id = get_unaligned_le64(p); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 343 | p += sizeof(id); |
| 344 | |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 345 | if (type & HAS_IF) { |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 346 | int_freq = get_unaligned_le16(p); |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 347 | p += sizeof(int_freq); |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 348 | if (endp - p < sizeof(size)) |
| 349 | goto header; |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 350 | } |
| 351 | |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 352 | size = get_unaligned_le32(p); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 353 | p += sizeof(size); |
| 354 | |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 355 | if (!size || size > endp - p) { |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 356 | tuner_err("Firmware type "); |
Mauro Carvalho Chehab | 43efe70 | 2007-11-14 19:30:28 -0300 | [diff] [blame] | 357 | dump_firm_type(type); |
Mauro Carvalho Chehab | ef8c188 | 2007-11-16 16:28:21 -0300 | [diff] [blame] | 358 | printk("(%x), id %llx is corrupted " |
| 359 | "(size=%d, expected %d)\n", |
Chris Pascoe | 91240dd | 2007-11-19 04:38:53 -0300 | [diff] [blame] | 360 | type, (unsigned long long)id, |
Mauro Carvalho Chehab | ef8c188 | 2007-11-16 16:28:21 -0300 | [diff] [blame] | 361 | (unsigned)(endp - p), size); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 362 | goto corrupt; |
| 363 | } |
| 364 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 365 | priv->firm[n].ptr = kzalloc(size, GFP_KERNEL); |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 366 | if (priv->firm[n].ptr == NULL) { |
| 367 | tuner_err("Not enough memory to load firmware file.\n"); |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 368 | rc = -ENOMEM; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 369 | goto err; |
| 370 | } |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 371 | tuner_dbg("Reading firmware type "); |
| 372 | if (debug) { |
Chris Pascoe | e026268 | 2007-12-02 06:30:50 -0300 | [diff] [blame] | 373 | dump_firm_type_and_int_freq(type, int_freq); |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 374 | printk("(%x), id %llx, size=%d.\n", |
Chris Pascoe | e026268 | 2007-12-02 06:30:50 -0300 | [diff] [blame] | 375 | type, (unsigned long long)id, size); |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 376 | } |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 377 | |
| 378 | memcpy(priv->firm[n].ptr, p, size); |
| 379 | priv->firm[n].type = type; |
| 380 | priv->firm[n].id = id; |
| 381 | priv->firm[n].size = size; |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 382 | priv->firm[n].int_freq = int_freq; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 383 | |
| 384 | p += size; |
| 385 | } |
| 386 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 387 | if (n + 1 != priv->firm_size) { |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 388 | tuner_err("Firmware file is incomplete!\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 389 | goto corrupt; |
| 390 | } |
| 391 | |
| 392 | goto done; |
| 393 | |
Al Viro | 84a9f33 | 2008-06-22 14:19:29 -0300 | [diff] [blame] | 394 | header: |
| 395 | tuner_err("Firmware header is incomplete!\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 396 | corrupt: |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 397 | rc = -EINVAL; |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 398 | tuner_err("Error: firmware file is corrupted!\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 399 | |
| 400 | err: |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 401 | tuner_info("Releasing partially loaded firmware file.\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 402 | free_firmware(priv); |
| 403 | |
| 404 | done: |
| 405 | release_firmware(fw); |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 406 | if (rc == 0) |
| 407 | tuner_dbg("Firmware files loaded.\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 408 | |
| 409 | return rc; |
| 410 | } |
| 411 | |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 412 | static int seek_firmware(struct dvb_frontend *fe, unsigned int type, |
| 413 | v4l2_std_id *id) |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 414 | { |
| 415 | struct xc2028_data *priv = fe->tuner_priv; |
Chris Pascoe | b153529 | 2007-11-19 10:04:06 -0300 | [diff] [blame] | 416 | int i, best_i = -1, best_nr_matches = 0; |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 417 | unsigned int type_mask = 0; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 418 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 419 | tuner_dbg("%s called, want type=", __func__); |
Chris Pascoe | b153529 | 2007-11-19 10:04:06 -0300 | [diff] [blame] | 420 | if (debug) { |
| 421 | dump_firm_type(type); |
| 422 | printk("(%x), id %016llx.\n", type, (unsigned long long)*id); |
| 423 | } |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 424 | |
| 425 | if (!priv->firm) { |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 426 | tuner_err("Error! firmware not loaded\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 427 | return -EINVAL; |
| 428 | } |
| 429 | |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 430 | if (((type & ~SCODE) == 0) && (*id == 0)) |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 431 | *id = V4L2_STD_PAL; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 432 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 433 | if (type & BASE) |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 434 | type_mask = BASE_TYPES; |
Chris Pascoe | ef207fe | 2007-12-02 09:30:55 -0300 | [diff] [blame] | 435 | else if (type & SCODE) { |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 436 | type &= SCODE_TYPES; |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 437 | type_mask = SCODE_TYPES & ~HAS_IF; |
Chris Pascoe | ef207fe | 2007-12-02 09:30:55 -0300 | [diff] [blame] | 438 | } else if (type & DTV_TYPES) |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 439 | type_mask = DTV_TYPES; |
Chris Pascoe | 11a9eff | 2007-11-19 23:18:36 -0300 | [diff] [blame] | 440 | else if (type & STD_SPECIFIC_TYPES) |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 441 | type_mask = STD_SPECIFIC_TYPES; |
| 442 | |
| 443 | type &= type_mask; |
| 444 | |
Harvey Harrison | 8367fe2 | 2008-04-25 01:28:10 -0300 | [diff] [blame] | 445 | if (!(type & SCODE)) |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 446 | type_mask = ~0; |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 447 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 448 | /* Seek for exact match */ |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 449 | for (i = 0; i < priv->firm_size; i++) { |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 450 | if ((type == (priv->firm[i].type & type_mask)) && |
Chris Pascoe | ef207fe | 2007-12-02 09:30:55 -0300 | [diff] [blame] | 451 | (*id == priv->firm[i].id)) |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 452 | goto found; |
| 453 | } |
| 454 | |
| 455 | /* Seek for generic video standard match */ |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 456 | for (i = 0; i < priv->firm_size; i++) { |
Chris Pascoe | b153529 | 2007-11-19 10:04:06 -0300 | [diff] [blame] | 457 | v4l2_std_id match_mask; |
| 458 | int nr_matches; |
| 459 | |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 460 | if (type != (priv->firm[i].type & type_mask)) |
Chris Pascoe | b153529 | 2007-11-19 10:04:06 -0300 | [diff] [blame] | 461 | continue; |
| 462 | |
| 463 | match_mask = *id & priv->firm[i].id; |
| 464 | if (!match_mask) |
| 465 | continue; |
| 466 | |
| 467 | if ((*id & match_mask) == *id) |
| 468 | goto found; /* Supports all the requested standards */ |
| 469 | |
| 470 | nr_matches = hweight64(match_mask); |
| 471 | if (nr_matches > best_nr_matches) { |
| 472 | best_nr_matches = nr_matches; |
| 473 | best_i = i; |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | if (best_nr_matches > 0) { |
| 478 | tuner_dbg("Selecting best matching firmware (%d bits) for " |
| 479 | "type=", best_nr_matches); |
| 480 | dump_firm_type(type); |
| 481 | printk("(%x), id %016llx:\n", type, (unsigned long long)*id); |
| 482 | i = best_i; |
| 483 | goto found; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | /*FIXME: Would make sense to seek for type "hint" match ? */ |
| 487 | |
Chris Pascoe | b153529 | 2007-11-19 10:04:06 -0300 | [diff] [blame] | 488 | i = -ENOENT; |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 489 | goto ret; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 490 | |
| 491 | found: |
| 492 | *id = priv->firm[i].id; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 493 | |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 494 | ret: |
Chris Pascoe | b153529 | 2007-11-19 10:04:06 -0300 | [diff] [blame] | 495 | tuner_dbg("%s firmware for type=", (i < 0) ? "Can't find" : "Found"); |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 496 | if (debug) { |
| 497 | dump_firm_type(type); |
Chris Pascoe | 91240dd | 2007-11-19 04:38:53 -0300 | [diff] [blame] | 498 | printk("(%x), id %016llx.\n", type, (unsigned long long)*id); |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 499 | } |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 500 | return i; |
| 501 | } |
| 502 | |
Michael Krufky | d7cba04 | 2008-09-12 13:31:45 -0300 | [diff] [blame] | 503 | static inline int do_tuner_callback(struct dvb_frontend *fe, int cmd, int arg) |
| 504 | { |
| 505 | struct xc2028_data *priv = fe->tuner_priv; |
| 506 | |
| 507 | /* analog side (tuner-core) uses i2c_adap->algo_data. |
| 508 | * digital side is not guaranteed to have algo_data defined. |
| 509 | * |
| 510 | * digital side will always have fe->dvb defined. |
| 511 | * analog side (tuner-core) doesn't (yet) define fe->dvb. |
| 512 | */ |
| 513 | |
| 514 | return (!fe->callback) ? -EINVAL : |
| 515 | fe->callback(((fe->dvb) && (fe->dvb->priv)) ? |
| 516 | fe->dvb->priv : priv->i2c_props.adap->algo_data, |
| 517 | DVB_FRONTEND_COMPONENT_TUNER, cmd, arg); |
| 518 | } |
| 519 | |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 520 | static int load_firmware(struct dvb_frontend *fe, unsigned int type, |
| 521 | v4l2_std_id *id) |
| 522 | { |
| 523 | struct xc2028_data *priv = fe->tuner_priv; |
| 524 | int pos, rc; |
Chris Pascoe | 0a196b6 | 2007-11-19 09:29:59 -0300 | [diff] [blame] | 525 | unsigned char *p, *endp, buf[priv->ctrl.max_len]; |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 526 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 527 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 528 | |
| 529 | pos = seek_firmware(fe, type, id); |
| 530 | if (pos < 0) |
| 531 | return pos; |
| 532 | |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 533 | tuner_info("Loading firmware for type="); |
Chris Pascoe | b153529 | 2007-11-19 10:04:06 -0300 | [diff] [blame] | 534 | dump_firm_type(priv->firm[pos].type); |
| 535 | printk("(%x), id %016llx.\n", priv->firm[pos].type, |
| 536 | (unsigned long long)*id); |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 537 | |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 538 | p = priv->firm[pos].ptr; |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 539 | endp = p + priv->firm[pos].size; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 540 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 541 | while (p < endp) { |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 542 | __u16 size; |
| 543 | |
| 544 | /* Checks if there's enough bytes to read */ |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 545 | if (p + sizeof(size) > endp) { |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 546 | tuner_err("Firmware chunk size is wrong\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 547 | return -EINVAL; |
| 548 | } |
| 549 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 550 | size = le16_to_cpu(*(__u16 *) p); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 551 | p += sizeof(size); |
| 552 | |
| 553 | if (size == 0xffff) |
| 554 | return 0; |
| 555 | |
| 556 | if (!size) { |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 557 | /* Special callback command received */ |
Michael Krufky | d7cba04 | 2008-09-12 13:31:45 -0300 | [diff] [blame] | 558 | rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0); |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 559 | if (rc < 0) { |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 560 | tuner_err("Error at RESET code %d\n", |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 561 | (*p) & 0x7f); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 562 | return -EINVAL; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 563 | } |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 564 | continue; |
| 565 | } |
Michel Ludwig | 5403bba | 2007-11-16 07:49:49 -0300 | [diff] [blame] | 566 | if (size >= 0xff00) { |
| 567 | switch (size) { |
| 568 | case 0xff00: |
Michael Krufky | d7cba04 | 2008-09-12 13:31:45 -0300 | [diff] [blame] | 569 | rc = do_tuner_callback(fe, XC2028_RESET_CLK, 0); |
Michel Ludwig | 5403bba | 2007-11-16 07:49:49 -0300 | [diff] [blame] | 570 | if (rc < 0) { |
| 571 | tuner_err("Error at RESET code %d\n", |
| 572 | (*p) & 0x7f); |
| 573 | return -EINVAL; |
| 574 | } |
Chris Pascoe | b32f9fb | 2007-11-19 04:53:50 -0300 | [diff] [blame] | 575 | break; |
Michel Ludwig | 5403bba | 2007-11-16 07:49:49 -0300 | [diff] [blame] | 576 | default: |
| 577 | tuner_info("Invalid RESET code %d\n", |
| 578 | size & 0x7f); |
| 579 | return -EINVAL; |
| 580 | |
| 581 | } |
Mauro Carvalho Chehab | 2d4c0ac | 2007-11-16 09:43:19 -0300 | [diff] [blame] | 582 | continue; |
Michel Ludwig | 5403bba | 2007-11-16 07:49:49 -0300 | [diff] [blame] | 583 | } |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 584 | |
| 585 | /* Checks for a sleep command */ |
| 586 | if (size & 0x8000) { |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 587 | msleep(size & 0x7fff); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 588 | continue; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 589 | } |
| 590 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 591 | if ((size + p > endp)) { |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 592 | tuner_err("missing bytes: need %d, have %d\n", |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 593 | size, (int)(endp - p)); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 594 | return -EINVAL; |
| 595 | } |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 596 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 597 | buf[0] = *p; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 598 | p++; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 599 | size--; |
| 600 | |
| 601 | /* Sends message chunks */ |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 602 | while (size > 0) { |
Chris Pascoe | 0a196b6 | 2007-11-19 09:29:59 -0300 | [diff] [blame] | 603 | int len = (size < priv->ctrl.max_len - 1) ? |
| 604 | size : priv->ctrl.max_len - 1; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 605 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 606 | memcpy(buf + 1, p, len); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 607 | |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 608 | rc = i2c_send(priv, buf, len + 1); |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 609 | if (rc < 0) { |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 610 | tuner_err("%d returned from send\n", rc); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 611 | return -EINVAL; |
| 612 | } |
| 613 | |
| 614 | p += len; |
| 615 | size -= len; |
| 616 | } |
Thierry Reding | 4d37ece | 2011-08-04 04:13:59 -0300 | [diff] [blame] | 617 | |
| 618 | /* silently fail if the frontend doesn't support I2C flush */ |
| 619 | rc = do_tuner_callback(fe, XC2028_I2C_FLUSH, 0); |
| 620 | if ((rc < 0) && (rc != -EINVAL)) { |
| 621 | tuner_err("error executing flush: %d\n", rc); |
| 622 | return rc; |
| 623 | } |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 624 | } |
Mauro Carvalho Chehab | 43efe70 | 2007-11-14 19:30:28 -0300 | [diff] [blame] | 625 | return 0; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 626 | } |
| 627 | |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 628 | static int load_scode(struct dvb_frontend *fe, unsigned int type, |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 629 | v4l2_std_id *id, __u16 int_freq, int scode) |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 630 | { |
| 631 | struct xc2028_data *priv = fe->tuner_priv; |
| 632 | int pos, rc; |
| 633 | unsigned char *p; |
| 634 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 635 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 636 | |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 637 | if (!int_freq) { |
| 638 | pos = seek_firmware(fe, type, id); |
| 639 | if (pos < 0) |
| 640 | return pos; |
| 641 | } else { |
| 642 | for (pos = 0; pos < priv->firm_size; pos++) { |
| 643 | if ((priv->firm[pos].int_freq == int_freq) && |
Chris Pascoe | 9ca01e7 | 2007-12-02 06:54:17 -0300 | [diff] [blame] | 644 | (priv->firm[pos].type & HAS_IF)) |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 645 | break; |
| 646 | } |
| 647 | if (pos == priv->firm_size) |
| 648 | return -ENOENT; |
| 649 | } |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 650 | |
| 651 | p = priv->firm[pos].ptr; |
| 652 | |
Chris Pascoe | 9ca01e7 | 2007-12-02 06:54:17 -0300 | [diff] [blame] | 653 | if (priv->firm[pos].type & HAS_IF) { |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 654 | if (priv->firm[pos].size != 12 * 16 || scode >= 16) |
| 655 | return -EINVAL; |
| 656 | p += 12 * scode; |
| 657 | } else { |
| 658 | /* 16 SCODE entries per file; each SCODE entry is 12 bytes and |
| 659 | * has a 2-byte size header in the firmware format. */ |
| 660 | if (priv->firm[pos].size != 14 * 16 || scode >= 16 || |
| 661 | le16_to_cpu(*(__u16 *)(p + 14 * scode)) != 12) |
| 662 | return -EINVAL; |
| 663 | p += 14 * scode + 2; |
| 664 | } |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 665 | |
Chris Pascoe | d7b22c5 | 2007-11-19 10:12:45 -0300 | [diff] [blame] | 666 | tuner_info("Loading SCODE for type="); |
Chris Pascoe | e026268 | 2007-12-02 06:30:50 -0300 | [diff] [blame] | 667 | dump_firm_type_and_int_freq(priv->firm[pos].type, |
| 668 | priv->firm[pos].int_freq); |
Chris Pascoe | d7b22c5 | 2007-11-19 10:12:45 -0300 | [diff] [blame] | 669 | printk("(%x), id %016llx.\n", priv->firm[pos].type, |
| 670 | (unsigned long long)*id); |
| 671 | |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 672 | if (priv->firm_version < 0x0202) |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 673 | rc = send_seq(priv, {0x20, 0x00, 0x00, 0x00}); |
| 674 | else |
| 675 | rc = send_seq(priv, {0xa0, 0x00, 0x00, 0x00}); |
| 676 | if (rc < 0) |
| 677 | return -EIO; |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 678 | |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 679 | rc = i2c_send(priv, p, 12); |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 680 | if (rc < 0) |
| 681 | return -EIO; |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 682 | |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 683 | rc = send_seq(priv, {0x00, 0x8c}); |
| 684 | if (rc < 0) |
| 685 | return -EIO; |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 686 | |
| 687 | return 0; |
| 688 | } |
| 689 | |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 690 | static int check_firmware(struct dvb_frontend *fe, unsigned int type, |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 691 | v4l2_std_id std, __u16 int_freq) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 692 | { |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 693 | struct xc2028_data *priv = fe->tuner_priv; |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 694 | struct firmware_properties new_fw; |
Alina Friedrichsen | b8bc77d | 2011-01-23 12:27:05 -0300 | [diff] [blame] | 695 | int rc = 0, retry_count = 0; |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 696 | u16 version, hwmodel; |
| 697 | v4l2_std_id std0; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 698 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 699 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 700 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 701 | if (!priv->firm) { |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 702 | if (!priv->ctrl.fname) { |
| 703 | tuner_info("xc2028/3028 firmware name not set!\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 704 | return -EINVAL; |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 705 | } |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 706 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 707 | rc = load_all_firmwares(fe); |
| 708 | if (rc < 0) |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 709 | return rc; |
| 710 | } |
| 711 | |
Mauro Carvalho Chehab | 0f6dac1 | 2008-01-05 16:47:16 -0300 | [diff] [blame] | 712 | if (priv->ctrl.mts && !(type & FM)) |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 713 | type |= MTS; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 714 | |
Chris Pascoe | 8bf799a | 2007-11-19 11:35:45 -0300 | [diff] [blame] | 715 | retry: |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 716 | new_fw.type = type; |
| 717 | new_fw.id = std; |
| 718 | new_fw.std_req = std; |
| 719 | new_fw.scode_table = SCODE | priv->ctrl.scode_table; |
| 720 | new_fw.scode_nr = 0; |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 721 | new_fw.int_freq = int_freq; |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 722 | |
| 723 | tuner_dbg("checking firmware, user requested type="); |
| 724 | if (debug) { |
| 725 | dump_firm_type(new_fw.type); |
Chris Pascoe | e026268 | 2007-12-02 06:30:50 -0300 | [diff] [blame] | 726 | printk("(%x), id %016llx, ", new_fw.type, |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 727 | (unsigned long long)new_fw.std_req); |
Chris Pascoe | e026268 | 2007-12-02 06:30:50 -0300 | [diff] [blame] | 728 | if (!int_freq) { |
| 729 | printk("scode_tbl "); |
| 730 | dump_firm_type(priv->ctrl.scode_table); |
| 731 | printk("(%x), ", priv->ctrl.scode_table); |
| 732 | } else |
| 733 | printk("int_freq %d, ", new_fw.int_freq); |
| 734 | printk("scode_nr %d\n", new_fw.scode_nr); |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | /* No need to reload base firmware if it matches */ |
| 738 | if (((BASE | new_fw.type) & BASE_TYPES) == |
| 739 | (priv->cur_fw.type & BASE_TYPES)) { |
| 740 | tuner_dbg("BASE firmware not changed.\n"); |
| 741 | goto skip_base; |
| 742 | } |
| 743 | |
| 744 | /* Updating BASE - forget about all currently loaded firmware */ |
| 745 | memset(&priv->cur_fw, 0, sizeof(priv->cur_fw)); |
| 746 | |
| 747 | /* Reset is needed before loading firmware */ |
Michael Krufky | d7cba04 | 2008-09-12 13:31:45 -0300 | [diff] [blame] | 748 | rc = do_tuner_callback(fe, XC2028_TUNER_RESET, 0); |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 749 | if (rc < 0) |
| 750 | goto fail; |
| 751 | |
Chris Pascoe | 47bd5bc | 2007-11-19 23:11:37 -0300 | [diff] [blame] | 752 | /* BASE firmwares are all std0 */ |
| 753 | std0 = 0; |
| 754 | rc = load_firmware(fe, BASE | new_fw.type, &std0); |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 755 | if (rc < 0) { |
| 756 | tuner_err("Error %d while loading base firmware\n", |
| 757 | rc); |
| 758 | goto fail; |
| 759 | } |
Michel Ludwig | 5403bba | 2007-11-16 07:49:49 -0300 | [diff] [blame] | 760 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 761 | /* Load INIT1, if needed */ |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 762 | tuner_dbg("Load init1 firmware, if exists\n"); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 763 | |
Chris Pascoe | 47bd5bc | 2007-11-19 23:11:37 -0300 | [diff] [blame] | 764 | rc = load_firmware(fe, BASE | INIT1 | new_fw.type, &std0); |
Chris Pascoe | 1ad0b79 | 2007-11-19 23:43:13 -0300 | [diff] [blame] | 765 | if (rc == -ENOENT) |
| 766 | rc = load_firmware(fe, (BASE | INIT1 | new_fw.type) & ~F8MHZ, |
| 767 | &std0); |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 768 | if (rc < 0 && rc != -ENOENT) { |
| 769 | tuner_err("Error %d while loading init1 firmware\n", |
| 770 | rc); |
| 771 | goto fail; |
Mauro Carvalho Chehab | 2e4160c | 2007-07-18 13:33:23 -0300 | [diff] [blame] | 772 | } |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 773 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 774 | skip_base: |
| 775 | /* |
| 776 | * No need to reload standard specific firmware if base firmware |
| 777 | * was not reloaded and requested video standards have not changed. |
| 778 | */ |
| 779 | if (priv->cur_fw.type == (BASE | new_fw.type) && |
| 780 | priv->cur_fw.std_req == std) { |
| 781 | tuner_dbg("Std-specific firmware already loaded.\n"); |
| 782 | goto skip_std_specific; |
| 783 | } |
Mauro Carvalho Chehab | a82200f | 2007-11-15 11:58:00 -0300 | [diff] [blame] | 784 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 785 | /* Reloading std-specific firmware forces a SCODE update */ |
| 786 | priv->cur_fw.scode_table = 0; |
| 787 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 788 | rc = load_firmware(fe, new_fw.type, &new_fw.id); |
Mauro Carvalho Chehab | cca8379 | 2007-11-22 11:47:18 -0300 | [diff] [blame] | 789 | if (rc == -ENOENT) |
| 790 | rc = load_firmware(fe, new_fw.type & ~F8MHZ, &new_fw.id); |
| 791 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 792 | if (rc < 0) |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 793 | goto fail; |
| 794 | |
| 795 | skip_std_specific: |
| 796 | if (priv->cur_fw.scode_table == new_fw.scode_table && |
| 797 | priv->cur_fw.scode_nr == new_fw.scode_nr) { |
| 798 | tuner_dbg("SCODE firmware already loaded.\n"); |
| 799 | goto check_device; |
| 800 | } |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 801 | |
Mauro Carvalho Chehab | 40ae91a | 2008-02-14 01:52:48 -0300 | [diff] [blame] | 802 | if (new_fw.type & FM) |
| 803 | goto check_device; |
| 804 | |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 805 | /* Load SCODE firmware, if exists */ |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 806 | tuner_dbg("Trying to load scode %d\n", new_fw.scode_nr); |
Mauro Carvalho Chehab | f380e1d | 2007-11-15 08:43:53 -0300 | [diff] [blame] | 807 | |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 808 | rc = load_scode(fe, new_fw.type | new_fw.scode_table, &new_fw.id, |
| 809 | new_fw.int_freq, new_fw.scode_nr); |
Mauro Carvalho Chehab | 43efe70 | 2007-11-14 19:30:28 -0300 | [diff] [blame] | 810 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 811 | check_device: |
Chris Pascoe | 8bf799a | 2007-11-19 11:35:45 -0300 | [diff] [blame] | 812 | if (xc2028_get_reg(priv, 0x0004, &version) < 0 || |
| 813 | xc2028_get_reg(priv, 0x0008, &hwmodel) < 0) { |
| 814 | tuner_err("Unable to read tuner registers.\n"); |
| 815 | goto fail; |
| 816 | } |
Mauro Carvalho Chehab | 80b5220 | 2007-11-05 09:07:13 -0300 | [diff] [blame] | 817 | |
Devin Heitmueller | b37f2d6 | 2008-04-21 07:02:09 -0300 | [diff] [blame] | 818 | tuner_dbg("Device is Xceive %d version %d.%d, " |
| 819 | "firmware version %d.%d\n", |
| 820 | hwmodel, (version & 0xf000) >> 12, (version & 0xf00) >> 8, |
| 821 | (version & 0xf0) >> 4, version & 0xf); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 822 | |
Mauro Carvalho Chehab | 0fb84ce | 2008-12-02 08:30:16 -0300 | [diff] [blame] | 823 | |
| 824 | if (priv->ctrl.read_not_reliable) |
| 825 | goto read_not_reliable; |
| 826 | |
Chris Pascoe | 8bf799a | 2007-11-19 11:35:45 -0300 | [diff] [blame] | 827 | /* Check firmware version against what we downloaded. */ |
| 828 | if (priv->firm_version != ((version & 0xf0) << 4 | (version & 0x0f))) { |
Mauro Carvalho Chehab | 2d5024a | 2009-09-14 10:23:20 -0300 | [diff] [blame] | 829 | if (!priv->ctrl.read_not_reliable) { |
| 830 | tuner_err("Incorrect readback of firmware version.\n"); |
| 831 | goto fail; |
| 832 | } else { |
| 833 | tuner_err("Returned an incorrect version. However, " |
| 834 | "read is not reliable enough. Ignoring it.\n"); |
| 835 | hwmodel = 3028; |
| 836 | } |
Chris Pascoe | 8bf799a | 2007-11-19 11:35:45 -0300 | [diff] [blame] | 837 | } |
| 838 | |
| 839 | /* Check that the tuner hardware model remains consistent over time. */ |
| 840 | if (priv->hwmodel == 0 && (hwmodel == 2028 || hwmodel == 3028)) { |
| 841 | priv->hwmodel = hwmodel; |
| 842 | priv->hwvers = version & 0xff00; |
| 843 | } else if (priv->hwmodel == 0 || priv->hwmodel != hwmodel || |
| 844 | priv->hwvers != (version & 0xff00)) { |
| 845 | tuner_err("Read invalid device hardware information - tuner " |
| 846 | "hung?\n"); |
| 847 | goto fail; |
| 848 | } |
| 849 | |
Mauro Carvalho Chehab | 0fb84ce | 2008-12-02 08:30:16 -0300 | [diff] [blame] | 850 | read_not_reliable: |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 851 | memcpy(&priv->cur_fw, &new_fw, sizeof(priv->cur_fw)); |
| 852 | |
| 853 | /* |
| 854 | * By setting BASE in cur_fw.type only after successfully loading all |
| 855 | * firmwares, we can: |
| 856 | * 1. Identify that BASE firmware with type=0 has been loaded; |
| 857 | * 2. Tell whether BASE firmware was just changed the next time through. |
| 858 | */ |
| 859 | priv->cur_fw.type |= BASE; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 860 | |
| 861 | return 0; |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 862 | |
| 863 | fail: |
| 864 | memset(&priv->cur_fw, 0, sizeof(priv->cur_fw)); |
Alina Friedrichsen | b8bc77d | 2011-01-23 12:27:05 -0300 | [diff] [blame] | 865 | if (retry_count < 8) { |
Chris Pascoe | 8bf799a | 2007-11-19 11:35:45 -0300 | [diff] [blame] | 866 | msleep(50); |
Alina Friedrichsen | b8bc77d | 2011-01-23 12:27:05 -0300 | [diff] [blame] | 867 | retry_count++; |
Chris Pascoe | 8bf799a | 2007-11-19 11:35:45 -0300 | [diff] [blame] | 868 | tuner_dbg("Retrying firmware load\n"); |
| 869 | goto retry; |
| 870 | } |
| 871 | |
Chris Pascoe | e0f0b37 | 2007-11-19 11:22:03 -0300 | [diff] [blame] | 872 | if (rc == -ENOENT) |
| 873 | rc = -EINVAL; |
| 874 | return rc; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 875 | } |
| 876 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 877 | static int xc2028_signal(struct dvb_frontend *fe, u16 *strength) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 878 | { |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 879 | struct xc2028_data *priv = fe->tuner_priv; |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 880 | u16 frq_lock, signal = 0; |
| 881 | int rc; |
Mauro Carvalho Chehab | 3b20532 | 2007-09-27 18:27:03 -0300 | [diff] [blame] | 882 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 883 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 884 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 885 | mutex_lock(&priv->lock); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 886 | |
Mauro Carvalho Chehab | 80b5220 | 2007-11-05 09:07:13 -0300 | [diff] [blame] | 887 | /* Sync Lock Indicator */ |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 888 | rc = xc2028_get_reg(priv, 0x0002, &frq_lock); |
Mauro Carvalho Chehab | b0166ab | 2008-04-24 11:19:55 -0300 | [diff] [blame] | 889 | if (rc < 0) |
Mauro Carvalho Chehab | 3b20532 | 2007-09-27 18:27:03 -0300 | [diff] [blame] | 890 | goto ret; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 891 | |
Mauro Carvalho Chehab | b0166ab | 2008-04-24 11:19:55 -0300 | [diff] [blame] | 892 | /* Frequency is locked */ |
| 893 | if (frq_lock == 1) |
Mauro Carvalho Chehab | 884b051 | 2011-11-29 13:33:52 -0300 | [diff] [blame] | 894 | signal = 1 << 11; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 895 | |
Mauro Carvalho Chehab | 80b5220 | 2007-11-05 09:07:13 -0300 | [diff] [blame] | 896 | /* Get SNR of the video signal */ |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 897 | rc = xc2028_get_reg(priv, 0x0040, &signal); |
| 898 | if (rc < 0) |
Mauro Carvalho Chehab | b0166ab | 2008-04-24 11:19:55 -0300 | [diff] [blame] | 899 | goto ret; |
| 900 | |
| 901 | /* Use both frq_lock and signal to generate the result */ |
| 902 | signal = signal || ((signal & 0x07) << 12); |
Mauro Carvalho Chehab | 3b20532 | 2007-09-27 18:27:03 -0300 | [diff] [blame] | 903 | |
| 904 | ret: |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 905 | mutex_unlock(&priv->lock); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 906 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 907 | *strength = signal; |
| 908 | |
Mauro Carvalho Chehab | b0166ab | 2008-04-24 11:19:55 -0300 | [diff] [blame] | 909 | tuner_dbg("signal strength is %d\n", signal); |
| 910 | |
Chris Pascoe | 7d58d11 | 2007-11-19 04:31:58 -0300 | [diff] [blame] | 911 | return rc; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | #define DIV 15625 |
| 915 | |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 916 | static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */, |
Hans Verkuil | aa40d19 | 2011-03-06 09:24:32 -0300 | [diff] [blame] | 917 | enum v4l2_tuner_type new_type, |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 918 | unsigned int type, |
| 919 | v4l2_std_id std, |
| 920 | u16 int_freq) |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 921 | { |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 922 | struct xc2028_data *priv = fe->tuner_priv; |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 923 | int rc = -EINVAL; |
Chris Pascoe | 2ce4b3a | 2007-11-19 06:20:17 -0300 | [diff] [blame] | 924 | unsigned char buf[4]; |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 925 | u32 div, offset = 0; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 926 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 927 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 928 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 929 | mutex_lock(&priv->lock); |
| 930 | |
Chris Pascoe | 2ce4b3a | 2007-11-19 06:20:17 -0300 | [diff] [blame] | 931 | tuner_dbg("should set frequency %d kHz\n", freq / 1000); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 932 | |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 933 | if (check_firmware(fe, type, std, int_freq) < 0) |
Mauro Carvalho Chehab | 3b20532 | 2007-09-27 18:27:03 -0300 | [diff] [blame] | 934 | goto ret; |
Mauro Carvalho Chehab | 2e4160c | 2007-07-18 13:33:23 -0300 | [diff] [blame] | 935 | |
Mauro Carvalho Chehab | 2800ae9 | 2007-11-22 12:48:04 -0300 | [diff] [blame] | 936 | /* On some cases xc2028 can disable video output, if |
| 937 | * very weak signals are received. By sending a soft |
| 938 | * reset, this is re-enabled. So, it is better to always |
| 939 | * send a soft reset before changing channels, to be sure |
| 940 | * that xc2028 will be in a safe state. |
| 941 | * Maybe this might also be needed for DTV. |
| 942 | */ |
Mauro Carvalho Chehab | fd34cb0 | 2011-08-31 15:12:45 -0300 | [diff] [blame] | 943 | switch (new_type) { |
| 944 | case V4L2_TUNER_ANALOG_TV: |
Mauro Carvalho Chehab | 2800ae9 | 2007-11-22 12:48:04 -0300 | [diff] [blame] | 945 | rc = send_seq(priv, {0x00, 0x00}); |
Mauro Carvalho Chehab | 0a86397 | 2009-06-01 12:18:10 -0300 | [diff] [blame] | 946 | |
Mauro Carvalho Chehab | fd34cb0 | 2011-08-31 15:12:45 -0300 | [diff] [blame] | 947 | /* Analog mode requires offset = 0 */ |
| 948 | break; |
| 949 | case V4L2_TUNER_RADIO: |
| 950 | /* Radio mode requires offset = 0 */ |
| 951 | break; |
| 952 | case V4L2_TUNER_DIGITAL_TV: |
Mauro Carvalho Chehab | 7f2199c | 2010-02-19 02:45:00 -0200 | [diff] [blame] | 953 | /* |
| 954 | * Digital modes require an offset to adjust to the |
| 955 | * proper frequency. The offset depends on what |
| 956 | * firmware version is used. |
| 957 | */ |
| 958 | |
| 959 | /* |
| 960 | * Adjust to the center frequency. This is calculated by the |
| 961 | * formula: offset = 1.25MHz - BW/2 |
| 962 | * For DTV 7/8, the firmware uses BW = 8000, so it needs a |
| 963 | * further adjustment to get the frequency center on VHF |
| 964 | */ |
Mauro Carvalho Chehab | 0a86397 | 2009-06-01 12:18:10 -0300 | [diff] [blame] | 965 | if (priv->cur_fw.type & DTV6) |
| 966 | offset = 1750000; |
| 967 | else if (priv->cur_fw.type & DTV7) |
| 968 | offset = 2250000; |
| 969 | else /* DTV8 or DTV78 */ |
| 970 | offset = 2750000; |
Mauro Carvalho Chehab | 0a86397 | 2009-06-01 12:18:10 -0300 | [diff] [blame] | 971 | if ((priv->cur_fw.type & DTV78) && freq < 470000000) |
Chris Pascoe | a44f1c4 | 2007-11-19 06:35:26 -0300 | [diff] [blame] | 972 | offset -= 500000; |
Mauro Carvalho Chehab | 7f2199c | 2010-02-19 02:45:00 -0200 | [diff] [blame] | 973 | |
| 974 | /* |
| 975 | * xc3028 additional "magic" |
| 976 | * Depending on the firmware version, it needs some adjustments |
| 977 | * to properly centralize the frequency. This seems to be |
| 978 | * needed to compensate the SCODE table adjustments made by |
| 979 | * newer firmwares |
| 980 | */ |
| 981 | |
| 982 | #if 1 |
| 983 | /* |
| 984 | * The proper adjustment would be to do it at s-code table. |
| 985 | * However, this didn't work, as reported by |
| 986 | * Robert Lowery <rglowery@exemail.com.au> |
| 987 | */ |
| 988 | |
| 989 | if (priv->cur_fw.type & DTV7) |
| 990 | offset += 500000; |
| 991 | |
| 992 | #else |
| 993 | /* |
| 994 | * Still need tests for XC3028L (firmware 3.2 or upper) |
| 995 | * So, for now, let's just comment the per-firmware |
| 996 | * version of this change. Reports with xc3028l working |
| 997 | * with and without the lines bellow are welcome |
| 998 | */ |
| 999 | |
| 1000 | if (priv->firm_version < 0x0302) { |
| 1001 | if (priv->cur_fw.type & DTV7) |
| 1002 | offset += 500000; |
| 1003 | } else { |
| 1004 | if (priv->cur_fw.type & DTV7) |
| 1005 | offset -= 300000; |
| 1006 | else if (type != ATSC) /* DVB @6MHz, DTV 8 and DTV 7/8 */ |
| 1007 | offset += 200000; |
| 1008 | } |
| 1009 | #endif |
Chris Pascoe | a44f1c4 | 2007-11-19 06:35:26 -0300 | [diff] [blame] | 1010 | } |
Mauro Carvalho Chehab | 2e4160c | 2007-07-18 13:33:23 -0300 | [diff] [blame] | 1011 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1012 | div = (freq - offset + DIV / 2) / DIV; |
Mauro Carvalho Chehab | 2e4160c | 2007-07-18 13:33:23 -0300 | [diff] [blame] | 1013 | |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 1014 | /* CMD= Set frequency */ |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 1015 | if (priv->firm_version < 0x0202) |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 1016 | rc = send_seq(priv, {0x00, 0x02, 0x00, 0x00}); |
| 1017 | else |
| 1018 | rc = send_seq(priv, {0x80, 0x02, 0x00, 0x00}); |
| 1019 | if (rc < 0) |
| 1020 | goto ret; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1021 | |
Mauro Carvalho Chehab | 1fe87369 | 2008-04-22 14:45:20 -0300 | [diff] [blame] | 1022 | /* Return code shouldn't be checked. |
| 1023 | The reset CLK is needed only with tm6000. |
| 1024 | Driver should work fine even if this fails. |
| 1025 | */ |
Devin Heitmueller | 70ca3c4 | 2010-01-19 01:38:45 -0300 | [diff] [blame] | 1026 | if (priv->ctrl.msleep) |
| 1027 | msleep(priv->ctrl.msleep); |
Michael Krufky | d7cba04 | 2008-09-12 13:31:45 -0300 | [diff] [blame] | 1028 | do_tuner_callback(fe, XC2028_RESET_CLK, 1); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 1029 | |
| 1030 | msleep(10); |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1031 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1032 | buf[0] = 0xff & (div >> 24); |
| 1033 | buf[1] = 0xff & (div >> 16); |
| 1034 | buf[2] = 0xff & (div >> 8); |
| 1035 | buf[3] = 0xff & (div); |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 1036 | |
Chris Pascoe | 47cc5b7 | 2007-11-19 04:14:23 -0300 | [diff] [blame] | 1037 | rc = i2c_send(priv, buf, sizeof(buf)); |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1038 | if (rc < 0) |
Mauro Carvalho Chehab | 3b20532 | 2007-09-27 18:27:03 -0300 | [diff] [blame] | 1039 | goto ret; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 1040 | msleep(100); |
| 1041 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1042 | priv->frequency = freq; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1043 | |
Chris Pascoe | 2ce4b3a | 2007-11-19 06:20:17 -0300 | [diff] [blame] | 1044 | tuner_dbg("divisor= %02x %02x %02x %02x (freq=%d.%03d)\n", |
| 1045 | buf[0], buf[1], buf[2], buf[3], |
| 1046 | freq / 1000000, (freq % 1000000) / 1000); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1047 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1048 | rc = 0; |
Mauro Carvalho Chehab | 3b20532 | 2007-09-27 18:27:03 -0300 | [diff] [blame] | 1049 | |
| 1050 | ret: |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1051 | mutex_unlock(&priv->lock); |
| 1052 | |
| 1053 | return rc; |
Mauro Carvalho Chehab | 6cb4587 | 2007-10-02 11:57:03 -0300 | [diff] [blame] | 1054 | } |
| 1055 | |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 1056 | static int xc2028_set_analog_freq(struct dvb_frontend *fe, |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1057 | struct analog_parameters *p) |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1058 | { |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1059 | struct xc2028_data *priv = fe->tuner_priv; |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 1060 | unsigned int type=0; |
| 1061 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 1062 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | c71d4bc | 2007-11-22 11:47:18 -0300 | [diff] [blame] | 1063 | |
Mauro Carvalho Chehab | d74cb25 | 2007-11-24 10:20:15 -0300 | [diff] [blame] | 1064 | if (p->mode == V4L2_TUNER_RADIO) { |
| 1065 | type |= FM; |
| 1066 | if (priv->ctrl.input1) |
| 1067 | type |= INPUT1; |
| 1068 | return generic_set_freq(fe, (625l * p->frequency) / 10, |
Mauro Carvalho Chehab | 437f5fa | 2011-02-21 21:03:59 -0300 | [diff] [blame] | 1069 | V4L2_TUNER_RADIO, type, 0, 0); |
Mauro Carvalho Chehab | d74cb25 | 2007-11-24 10:20:15 -0300 | [diff] [blame] | 1070 | } |
| 1071 | |
Mauro Carvalho Chehab | a5e9fe1 | 2007-11-23 11:36:18 -0300 | [diff] [blame] | 1072 | /* if std is not defined, choose one */ |
| 1073 | if (!p->std) |
| 1074 | p->std = V4L2_STD_MN; |
| 1075 | |
| 1076 | /* PAL/M, PAL/N, PAL/Nc and NTSC variants should use 6MHz firmware */ |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 1077 | if (!(p->std & V4L2_STD_MN)) |
| 1078 | type |= F8MHZ; |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1079 | |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 1080 | /* Add audio hack to std mask */ |
| 1081 | p->std |= parse_audio_std_option(); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1082 | |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 1083 | return generic_set_freq(fe, 62500l * p->frequency, |
Mauro Carvalho Chehab | 437f5fa | 2011-02-21 21:03:59 -0300 | [diff] [blame] | 1084 | V4L2_TUNER_ANALOG_TV, type, p->std, 0); |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1085 | } |
| 1086 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1087 | static int xc2028_set_params(struct dvb_frontend *fe, |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1088 | struct dvb_frontend_parameters *p) |
| 1089 | { |
Mauro Carvalho Chehab | 506cd71 | 2011-12-21 08:53:22 -0300 | [diff] [blame^] | 1090 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
| 1091 | u32 delsys = c->delivery_system; |
| 1092 | u32 bw = c->bandwidth_hz; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1093 | struct xc2028_data *priv = fe->tuner_priv; |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 1094 | unsigned int type=0; |
Chris Pascoe | ad35ce9 | 2007-12-02 06:36:42 -0300 | [diff] [blame] | 1095 | u16 demod = 0; |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1096 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 1097 | tuner_dbg("%s called\n", __func__); |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1098 | |
Mauro Carvalho Chehab | 506cd71 | 2011-12-21 08:53:22 -0300 | [diff] [blame^] | 1099 | switch (delsys) { |
| 1100 | case SYS_DVBT: |
| 1101 | case SYS_DVBT2: |
Mauro Carvalho Chehab | a1014d7 | 2009-06-01 11:46:08 -0300 | [diff] [blame] | 1102 | /* |
| 1103 | * The only countries with 6MHz seem to be Taiwan/Uruguay. |
| 1104 | * Both seem to require QAM firmware for OFDM decoding |
| 1105 | * Tested in Taiwan by Terry Wu <terrywu2009@gmail.com> |
| 1106 | */ |
Mauro Carvalho Chehab | 506cd71 | 2011-12-21 08:53:22 -0300 | [diff] [blame^] | 1107 | if (bw <= 6000000) |
Mauro Carvalho Chehab | a1014d7 | 2009-06-01 11:46:08 -0300 | [diff] [blame] | 1108 | type |= QAM; |
Mauro Carvalho Chehab | d04aa54 | 2007-11-24 10:47:03 -0300 | [diff] [blame] | 1109 | |
Mauro Carvalho Chehab | 0975fc6 | 2008-09-28 02:24:44 -0300 | [diff] [blame] | 1110 | switch (priv->ctrl.type) { |
| 1111 | case XC2028_D2633: |
| 1112 | type |= D2633; |
| 1113 | break; |
| 1114 | case XC2028_D2620: |
| 1115 | type |= D2620; |
| 1116 | break; |
| 1117 | case XC2028_AUTO: |
| 1118 | default: |
| 1119 | /* Zarlink seems to need D2633 */ |
| 1120 | if (priv->ctrl.demod == XC3028_FE_ZARLINK456) |
| 1121 | type |= D2633; |
| 1122 | else |
| 1123 | type |= D2620; |
| 1124 | } |
Mauro Carvalho Chehab | 506cd71 | 2011-12-21 08:53:22 -0300 | [diff] [blame^] | 1125 | break; |
| 1126 | case SYS_ATSC: |
| 1127 | /* The only ATSC firmware (at least on v2.7) is D2633 */ |
| 1128 | type |= ATSC | D2633; |
| 1129 | break; |
| 1130 | /* DVB-S and pure QAM (FE_QAM) are not supported */ |
| 1131 | default: |
| 1132 | return -EINVAL; |
| 1133 | } |
| 1134 | |
| 1135 | if (bw <= 6000000) { |
| 1136 | type |= DTV6; |
| 1137 | priv->ctrl.vhfbw7 = 0; |
| 1138 | priv->ctrl.uhfbw8 = 0; |
| 1139 | } else if (bw <= 7000000) { |
| 1140 | if (c->frequency < 470000000) |
| 1141 | priv->ctrl.vhfbw7 = 1; |
| 1142 | else |
| 1143 | priv->ctrl.uhfbw8 = 0; |
| 1144 | type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV7; |
| 1145 | type |= F8MHZ; |
| 1146 | } else { |
| 1147 | if (c->frequency < 470000000) |
| 1148 | priv->ctrl.vhfbw7 = 0; |
| 1149 | else |
| 1150 | priv->ctrl.uhfbw8 = 1; |
| 1151 | type |= (priv->ctrl.vhfbw7 && priv->ctrl.uhfbw8) ? DTV78 : DTV8; |
| 1152 | type |= F8MHZ; |
Mauro Carvalho Chehab | 0975fc6 | 2008-09-28 02:24:44 -0300 | [diff] [blame] | 1153 | } |
| 1154 | |
Mauro Carvalho Chehab | 66c2d53 | 2007-11-25 19:26:36 -0300 | [diff] [blame] | 1155 | /* All S-code tables need a 200kHz shift */ |
Andy Walls | 6e707b4 | 2009-06-11 07:57:50 -0300 | [diff] [blame] | 1156 | if (priv->ctrl.demod) { |
Mauro Carvalho Chehab | 7d35028 | 2010-02-19 20:08:06 -0200 | [diff] [blame] | 1157 | demod = priv->ctrl.demod; |
| 1158 | |
Mauro Carvalho Chehab | 7f2199c | 2010-02-19 02:45:00 -0200 | [diff] [blame] | 1159 | /* |
| 1160 | * Newer firmwares require a 200 kHz offset only for ATSC |
| 1161 | */ |
| 1162 | if (type == ATSC || priv->firm_version < 0x0302) |
Mauro Carvalho Chehab | 7d35028 | 2010-02-19 20:08:06 -0200 | [diff] [blame] | 1163 | demod += 200; |
Andy Walls | 6e707b4 | 2009-06-11 07:57:50 -0300 | [diff] [blame] | 1164 | /* |
| 1165 | * The DTV7 S-code table needs a 700 kHz shift. |
Andy Walls | 6e707b4 | 2009-06-11 07:57:50 -0300 | [diff] [blame] | 1166 | * |
| 1167 | * DTV7 is only used in Australia. Germany or Italy may also |
| 1168 | * use this firmware after initialization, but a tune to a UHF |
| 1169 | * channel should then cause DTV78 to be used. |
Mauro Carvalho Chehab | 7f2199c | 2010-02-19 02:45:00 -0200 | [diff] [blame] | 1170 | * |
| 1171 | * Unfortunately, on real-field tests, the s-code offset |
| 1172 | * didn't work as expected, as reported by |
| 1173 | * Robert Lowery <rglowery@exemail.com.au> |
Andy Walls | 6e707b4 | 2009-06-11 07:57:50 -0300 | [diff] [blame] | 1174 | */ |
Andy Walls | 6e707b4 | 2009-06-11 07:57:50 -0300 | [diff] [blame] | 1175 | } |
Mauro Carvalho Chehab | b542dfd | 2007-11-24 11:07:12 -0300 | [diff] [blame] | 1176 | |
Mauro Carvalho Chehab | 506cd71 | 2011-12-21 08:53:22 -0300 | [diff] [blame^] | 1177 | return generic_set_freq(fe, c->frequency, |
Mauro Carvalho Chehab | 437f5fa | 2011-02-21 21:03:59 -0300 | [diff] [blame] | 1178 | V4L2_TUNER_DIGITAL_TV, type, 0, demod); |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1179 | } |
| 1180 | |
Mauro Carvalho Chehab | 74a89b2 | 2008-12-05 10:31:16 -0300 | [diff] [blame] | 1181 | static int xc2028_sleep(struct dvb_frontend *fe) |
| 1182 | { |
| 1183 | struct xc2028_data *priv = fe->tuner_priv; |
| 1184 | int rc = 0; |
| 1185 | |
Devin Heitmueller | 93b9992 | 2009-08-03 22:52:59 -0300 | [diff] [blame] | 1186 | /* Avoid firmware reload on slow devices or if PM disabled */ |
| 1187 | if (no_poweroff || priv->ctrl.disable_power_mgmt) |
Mauro Carvalho Chehab | 10f201a | 2008-12-05 10:49:53 -0300 | [diff] [blame] | 1188 | return 0; |
Mauro Carvalho Chehab | 74a89b2 | 2008-12-05 10:31:16 -0300 | [diff] [blame] | 1189 | |
| 1190 | tuner_dbg("Putting xc2028/3028 into poweroff mode.\n"); |
Mauro Carvalho Chehab | e278e74 | 2008-12-18 06:00:25 -0300 | [diff] [blame] | 1191 | if (debug > 1) { |
| 1192 | tuner_dbg("Printing sleep stack trace:\n"); |
| 1193 | dump_stack(); |
| 1194 | } |
Mauro Carvalho Chehab | 74a89b2 | 2008-12-05 10:31:16 -0300 | [diff] [blame] | 1195 | |
| 1196 | mutex_lock(&priv->lock); |
| 1197 | |
| 1198 | if (priv->firm_version < 0x0202) |
| 1199 | rc = send_seq(priv, {0x00, 0x08, 0x00, 0x00}); |
| 1200 | else |
| 1201 | rc = send_seq(priv, {0x80, 0x08, 0x00, 0x00}); |
| 1202 | |
| 1203 | priv->cur_fw.type = 0; /* need firmware reload */ |
| 1204 | |
| 1205 | mutex_unlock(&priv->lock); |
| 1206 | |
| 1207 | return rc; |
| 1208 | } |
Chris Pascoe | 45819c3 | 2007-11-19 11:41:20 -0300 | [diff] [blame] | 1209 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1210 | static int xc2028_dvb_release(struct dvb_frontend *fe) |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1211 | { |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1212 | struct xc2028_data *priv = fe->tuner_priv; |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1213 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 1214 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1215 | |
Chris Pascoe | aa501be | 2007-11-19 04:45:38 -0300 | [diff] [blame] | 1216 | mutex_lock(&xc2028_list_mutex); |
| 1217 | |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 1218 | /* only perform final cleanup if this is the last instance */ |
| 1219 | if (hybrid_tuner_report_instance_count(priv) == 1) { |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1220 | kfree(priv->ctrl.fname); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1221 | free_firmware(priv); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1222 | } |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1223 | |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 1224 | if (priv) |
| 1225 | hybrid_tuner_release_state(priv); |
| 1226 | |
Chris Pascoe | aa501be | 2007-11-19 04:45:38 -0300 | [diff] [blame] | 1227 | mutex_unlock(&xc2028_list_mutex); |
| 1228 | |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 1229 | fe->tuner_priv = NULL; |
| 1230 | |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1231 | return 0; |
| 1232 | } |
| 1233 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1234 | static int xc2028_get_frequency(struct dvb_frontend *fe, u32 *frequency) |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1235 | { |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1236 | struct xc2028_data *priv = fe->tuner_priv; |
| 1237 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 1238 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1239 | |
| 1240 | *frequency = priv->frequency; |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1241 | |
| 1242 | return 0; |
| 1243 | } |
| 1244 | |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1245 | static int xc2028_set_config(struct dvb_frontend *fe, void *priv_cfg) |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1246 | { |
| 1247 | struct xc2028_data *priv = fe->tuner_priv; |
| 1248 | struct xc2028_ctrl *p = priv_cfg; |
Chris Pascoe | 0a196b6 | 2007-11-19 09:29:59 -0300 | [diff] [blame] | 1249 | int rc = 0; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1250 | |
Harvey Harrison | 7e28adb | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 1251 | tuner_dbg("%s called\n", __func__); |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1252 | |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 1253 | mutex_lock(&priv->lock); |
| 1254 | |
Chris Pascoe | 0a196b6 | 2007-11-19 09:29:59 -0300 | [diff] [blame] | 1255 | memcpy(&priv->ctrl, p, sizeof(priv->ctrl)); |
Mauro Carvalho Chehab | 92b75ab | 2008-04-17 21:40:53 -0300 | [diff] [blame] | 1256 | if (priv->ctrl.max_len < 9) |
| 1257 | priv->ctrl.max_len = 13; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1258 | |
| 1259 | if (p->fname) { |
Mauro Carvalho Chehab | 92b75ab | 2008-04-17 21:40:53 -0300 | [diff] [blame] | 1260 | if (priv->ctrl.fname && strcmp(p->fname, priv->ctrl.fname)) { |
| 1261 | kfree(priv->ctrl.fname); |
| 1262 | free_firmware(priv); |
| 1263 | } |
| 1264 | |
Chris Pascoe | 0a196b6 | 2007-11-19 09:29:59 -0300 | [diff] [blame] | 1265 | priv->ctrl.fname = kstrdup(p->fname, GFP_KERNEL); |
| 1266 | if (priv->ctrl.fname == NULL) |
| 1267 | rc = -ENOMEM; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1268 | } |
| 1269 | |
Chris Pascoe | 06fd82d | 2007-11-19 06:06:08 -0300 | [diff] [blame] | 1270 | mutex_unlock(&priv->lock); |
| 1271 | |
Chris Pascoe | 0a196b6 | 2007-11-19 09:29:59 -0300 | [diff] [blame] | 1272 | return rc; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1273 | } |
| 1274 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1275 | static const struct dvb_tuner_ops xc2028_dvb_tuner_ops = { |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1276 | .info = { |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1277 | .name = "Xceive XC3028", |
| 1278 | .frequency_min = 42000000, |
| 1279 | .frequency_max = 864000000, |
| 1280 | .frequency_step = 50000, |
| 1281 | }, |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1282 | |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1283 | .set_config = xc2028_set_config, |
Mauro Carvalho Chehab | 00deff1 | 2007-11-24 10:13:42 -0300 | [diff] [blame] | 1284 | .set_analog_params = xc2028_set_analog_freq, |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1285 | .release = xc2028_dvb_release, |
| 1286 | .get_frequency = xc2028_get_frequency, |
| 1287 | .get_rf_strength = xc2028_signal, |
| 1288 | .set_params = xc2028_set_params, |
Mauro Carvalho Chehab | 74a89b2 | 2008-12-05 10:31:16 -0300 | [diff] [blame] | 1289 | .sleep = xc2028_sleep, |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1290 | }; |
| 1291 | |
Michael Krufky | 7972f98 | 2007-12-21 16:12:09 -0300 | [diff] [blame] | 1292 | struct dvb_frontend *xc2028_attach(struct dvb_frontend *fe, |
| 1293 | struct xc2028_config *cfg) |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1294 | { |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1295 | struct xc2028_data *priv; |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 1296 | int instance; |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1297 | |
Mauro Carvalho Chehab | 83fb340 | 2007-11-15 09:44:30 -0300 | [diff] [blame] | 1298 | if (debug) |
Michael Krufky | 2756665 | 2008-04-22 14:41:53 -0300 | [diff] [blame] | 1299 | printk(KERN_DEBUG "xc2028: Xcv2028/3028 init called!\n"); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1300 | |
Mauro Carvalho Chehab | b412ba7 | 2008-04-22 14:46:11 -0300 | [diff] [blame] | 1301 | if (NULL == cfg) |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 1302 | return NULL; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1303 | |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 1304 | if (!fe) { |
Michael Krufky | 2756665 | 2008-04-22 14:41:53 -0300 | [diff] [blame] | 1305 | printk(KERN_ERR "xc2028: No frontend!\n"); |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 1306 | return NULL; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1307 | } |
| 1308 | |
Chris Pascoe | aa501be | 2007-11-19 04:45:38 -0300 | [diff] [blame] | 1309 | mutex_lock(&xc2028_list_mutex); |
| 1310 | |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 1311 | instance = hybrid_tuner_request_state(struct xc2028_data, priv, |
| 1312 | hybrid_tuner_instance_list, |
| 1313 | cfg->i2c_adap, cfg->i2c_addr, |
| 1314 | "xc2028"); |
| 1315 | switch (instance) { |
| 1316 | case 0: |
| 1317 | /* memory allocation failure */ |
| 1318 | goto fail; |
| 1319 | break; |
| 1320 | case 1: |
| 1321 | /* new tuner instance */ |
Chris Pascoe | 0a196b6 | 2007-11-19 09:29:59 -0300 | [diff] [blame] | 1322 | priv->ctrl.max_len = 13; |
Mauro Carvalho Chehab | de3fe21 | 2007-10-24 09:22:08 -0300 | [diff] [blame] | 1323 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1324 | mutex_init(&priv->lock); |
| 1325 | |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 1326 | fe->tuner_priv = priv; |
| 1327 | break; |
| 1328 | case 2: |
| 1329 | /* existing tuner instance */ |
| 1330 | fe->tuner_priv = priv; |
| 1331 | break; |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1332 | } |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 1333 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1334 | memcpy(&fe->ops.tuner_ops, &xc2028_dvb_tuner_ops, |
Mauro Carvalho Chehab | ab0b9fc | 2007-11-01 17:47:42 -0300 | [diff] [blame] | 1335 | sizeof(xc2028_dvb_tuner_ops)); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1336 | |
| 1337 | tuner_info("type set to %s\n", "XCeive xc2028/xc3028 tuner"); |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1338 | |
Mauro Carvalho Chehab | 71a2ee3 | 2007-11-22 12:19:37 -0300 | [diff] [blame] | 1339 | if (cfg->ctrl) |
| 1340 | xc2028_set_config(fe, cfg->ctrl); |
| 1341 | |
Chris Pascoe | aa501be | 2007-11-19 04:45:38 -0300 | [diff] [blame] | 1342 | mutex_unlock(&xc2028_list_mutex); |
| 1343 | |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 1344 | return fe; |
Michael Krufky | c663d03 | 2008-04-18 21:22:50 -0300 | [diff] [blame] | 1345 | fail: |
| 1346 | mutex_unlock(&xc2028_list_mutex); |
| 1347 | |
| 1348 | xc2028_dvb_release(fe); |
| 1349 | return NULL; |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1350 | } |
Michel Ludwig | a37b4c9 | 2007-11-16 07:46:14 -0300 | [diff] [blame] | 1351 | |
Michel Ludwig | 701672e | 2007-07-18 10:29:10 -0300 | [diff] [blame] | 1352 | EXPORT_SYMBOL(xc2028_attach); |
| 1353 | |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1354 | MODULE_DESCRIPTION("Xceive xc2028/xc3028 tuner driver"); |
Mauro Carvalho Chehab | 983d214 | 2007-10-29 23:44:18 -0300 | [diff] [blame] | 1355 | MODULE_AUTHOR("Michel Ludwig <michel.ludwig@gmail.com>"); |
Mauro Carvalho Chehab | 215b95b | 2007-10-23 15:24:06 -0300 | [diff] [blame] | 1356 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>"); |
| 1357 | MODULE_LICENSE("GPL"); |