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