blob: 3293fd8df59bc2c413df48ebe09d4e5d8d7be9ff [file] [log] [blame]
Steven Tothaacb9d32007-12-18 01:55:51 -03001/*
2 * Driver for Xceive XC5000 "QAM/8VSB single chip tuner"
3 *
4 * Copyright (c) 2007 Xceive Corporation
Steven Toth6d897612008-09-03 17:12:12 -03005 * Copyright (c) 2007 Steven Toth <stoth@linuxtv.org>
Devin Heitmuellere80858e2009-05-14 21:31:11 -03006 * Copyright (c) 2009 Devin Heitmueller <dheitmueller@kernellabs.com>
Steven Tothaacb9d32007-12-18 01:55:51 -03007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 *
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24#include <linux/module.h>
25#include <linux/moduleparam.h>
Steven Toth49170192008-01-15 21:57:14 -030026#include <linux/videodev2.h>
Steven Tothaacb9d32007-12-18 01:55:51 -030027#include <linux/delay.h>
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -030028#include <linux/workqueue.h>
Steven Tothaacb9d32007-12-18 01:55:51 -030029#include <linux/dvb/frontend.h>
30#include <linux/i2c.h>
31
32#include "dvb_frontend.h"
33
34#include "xc5000.h"
Michael Krufky89fd2852008-09-06 11:44:53 -030035#include "tuner-i2c.h"
Steven Tothaacb9d32007-12-18 01:55:51 -030036
37static int debug;
38module_param(debug, int, 0644);
39MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off).");
40
Devin Heitmuellerb6bd5eb2009-04-28 13:53:38 -030041static int no_poweroff;
42module_param(no_poweroff, int, 0644);
43MODULE_PARM_DESC(no_poweroff, "0 (default) powers device off when not used.\n"
44 "\t\t1 keep device energized and with tuner ready all the times.\n"
45 "\t\tFaster, but consumes more power and keeps the device hotter");
46
Michael Krufky89fd2852008-09-06 11:44:53 -030047static DEFINE_MUTEX(xc5000_list_mutex);
48static LIST_HEAD(hybrid_tuner_instance_list);
49
Steven Toth8f3cd532008-10-16 20:29:38 -030050#define dprintk(level, fmt, arg...) if (debug >= level) \
Steven Tothaacb9d32007-12-18 01:55:51 -030051 printk(KERN_INFO "%s: " fmt, "xc5000", ## arg)
52
Michael Krufkyffb41232008-09-06 10:52:30 -030053struct xc5000_priv {
Michael Krufky89fd2852008-09-06 11:44:53 -030054 struct tuner_i2c_props i2c_props;
55 struct list_head hybrid_tuner_instance_list;
Michael Krufkyffb41232008-09-06 10:52:30 -030056
Michael Krufky2a6003c2008-09-06 13:54:45 -030057 u32 if_khz;
Michael Krufky409328a2012-04-16 15:21:51 -030058 u16 xtal_khz;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -030059 u32 freq_hz, freq_offset;
Michael Krufkyffb41232008-09-06 10:52:30 -030060 u32 bandwidth;
61 u8 video_standard;
Mauro Carvalho Chehab16435202014-08-09 21:47:21 -030062 unsigned int mode;
Michael Krufkyffb41232008-09-06 10:52:30 -030063 u8 rf_mode;
Devin Heitmueller496e9052009-09-24 13:27:24 -030064 u8 radio_input;
Michael Krufky76efb0ba2012-02-06 19:40:32 -030065
Michael Krufky6fab81d2012-02-08 14:57:39 -030066 int chip_id;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -030067 u16 pll_register_no;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -030068 u8 init_status_supported;
69 u8 fw_checksum_supported;
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -030070
71 struct dvb_frontend *fe;
72 struct delayed_work timer_sleep;
Michael Krufkyffb41232008-09-06 10:52:30 -030073};
74
Steven Tothaacb9d32007-12-18 01:55:51 -030075/* Misc Defines */
Dmitri Belimov724dcbf2011-02-01 05:25:19 -030076#define MAX_TV_STANDARD 24
Steven Tothaacb9d32007-12-18 01:55:51 -030077#define XC_MAX_I2C_WRITE_LENGTH 64
78
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -030079/* Time to suspend after the .sleep callback is called */
80#define XC5000_SLEEP_TIME 5000 /* ms */
81
Steven Tothaacb9d32007-12-18 01:55:51 -030082/* Signal Types */
83#define XC_RF_MODE_AIR 0
84#define XC_RF_MODE_CABLE 1
85
Steven Toth27c685a2008-01-05 16:50:14 -030086/* Product id */
87#define XC_PRODUCT_ID_FW_NOT_LOADED 0x2000
Mauro Carvalho Chehab5015c272014-05-21 13:41:01 -030088#define XC_PRODUCT_ID_FW_LOADED 0x1388
Steven Toth27c685a2008-01-05 16:50:14 -030089
Steven Tothaacb9d32007-12-18 01:55:51 -030090/* Registers */
91#define XREG_INIT 0x00
92#define XREG_VIDEO_MODE 0x01
93#define XREG_AUDIO_MODE 0x02
94#define XREG_RF_FREQ 0x03
95#define XREG_D_CODE 0x04
96#define XREG_IF_OUT 0x05
97#define XREG_SEEK_MODE 0x07
Devin Heitmueller7f05b532009-04-02 22:02:39 -030098#define XREG_POWER_DOWN 0x0A /* Obsolete */
Dmitri Belimov724dcbf2011-02-01 05:25:19 -030099/* Set the output amplitude - SIF for analog, DTVP/DTVN for digital */
100#define XREG_OUTPUT_AMP 0x0B
Steven Tothaacb9d32007-12-18 01:55:51 -0300101#define XREG_SIGNALSOURCE 0x0D /* 0=Air, 1=Cable */
102#define XREG_SMOOTHEDCVBS 0x0E
103#define XREG_XTALFREQ 0x0F
Devin Heitmueller81c4dfe2009-04-02 22:40:29 -0300104#define XREG_FINERFREQ 0x10
Steven Tothaacb9d32007-12-18 01:55:51 -0300105#define XREG_DDIMODE 0x11
106
107#define XREG_ADC_ENV 0x00
108#define XREG_QUALITY 0x01
109#define XREG_FRAME_LINES 0x02
110#define XREG_HSYNC_FREQ 0x03
111#define XREG_LOCK 0x04
112#define XREG_FREQ_ERROR 0x05
113#define XREG_SNR 0x06
114#define XREG_VERSION 0x07
115#define XREG_PRODUCT_ID 0x08
116#define XREG_BUSY 0x09
Devin Heitmuellerbae7b7d2009-04-02 22:24:38 -0300117#define XREG_BUILD 0x0D
Devin Heitmueller7c287f12012-08-06 22:46:56 -0300118#define XREG_TOTALGAIN 0x0F
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -0300119#define XREG_FW_CHECKSUM 0x12
120#define XREG_INIT_STATUS 0x13
Steven Tothaacb9d32007-12-18 01:55:51 -0300121
122/*
123 Basic firmware description. This will remain with
124 the driver for documentation purposes.
125
126 This represents an I2C firmware file encoded as a
127 string of unsigned char. Format is as follows:
128
129 char[0 ]=len0_MSB -> len = len_MSB * 256 + len_LSB
130 char[1 ]=len0_LSB -> length of first write transaction
131 char[2 ]=data0 -> first byte to be sent
132 char[3 ]=data1
133 char[4 ]=data2
134 char[ ]=...
135 char[M ]=dataN -> last byte to be sent
136 char[M+1]=len1_MSB -> len = len_MSB * 256 + len_LSB
137 char[M+2]=len1_LSB -> length of second write transaction
138 char[M+3]=data0
139 char[M+4]=data1
140 ...
141 etc.
142
143 The [len] value should be interpreted as follows:
144
145 len= len_MSB _ len_LSB
146 len=1111_1111_1111_1111 : End of I2C_SEQUENCE
147 len=0000_0000_0000_0000 : Reset command: Do hardware reset
148 len=0NNN_NNNN_NNNN_NNNN : Normal transaction: number of bytes = {1:32767)
149 len=1WWW_WWWW_WWWW_WWWW : Wait command: wait for {1:32767} ms
150
151 For the RESET and WAIT commands, the two following bytes will contain
152 immediately the length of the following transaction.
153
154*/
Steven Toth8f3cd532008-10-16 20:29:38 -0300155struct XC_TV_STANDARD {
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300156 char *name;
157 u16 audio_mode;
158 u16 video_mode;
Steven Toth8f3cd532008-10-16 20:29:38 -0300159};
Steven Tothaacb9d32007-12-18 01:55:51 -0300160
161/* Tuner standards */
Steven Toth27c685a2008-01-05 16:50:14 -0300162#define MN_NTSC_PAL_BTSC 0
163#define MN_NTSC_PAL_A2 1
164#define MN_NTSC_PAL_EIAJ 2
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300165#define MN_NTSC_PAL_MONO 3
Steven Toth27c685a2008-01-05 16:50:14 -0300166#define BG_PAL_A2 4
167#define BG_PAL_NICAM 5
168#define BG_PAL_MONO 6
169#define I_PAL_NICAM 7
170#define I_PAL_NICAM_MONO 8
171#define DK_PAL_A2 9
172#define DK_PAL_NICAM 10
173#define DK_PAL_MONO 11
174#define DK_SECAM_A2DK1 12
Mauro Carvalho Chehab5015c272014-05-21 13:41:01 -0300175#define DK_SECAM_A2LDK3 13
176#define DK_SECAM_A2MONO 14
Steven Toth27c685a2008-01-05 16:50:14 -0300177#define L_SECAM_NICAM 15
178#define LC_SECAM_NICAM 16
179#define DTV6 17
180#define DTV8 18
181#define DTV7_8 19
182#define DTV7 20
Mauro Carvalho Chehab5015c272014-05-21 13:41:01 -0300183#define FM_RADIO_INPUT2 21
184#define FM_RADIO_INPUT1 22
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300185#define FM_RADIO_INPUT1_MONO 23
Steven Tothaacb9d32007-12-18 01:55:51 -0300186
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300187static struct XC_TV_STANDARD xc5000_standard[MAX_TV_STANDARD] = {
Steven Tothaacb9d32007-12-18 01:55:51 -0300188 {"M/N-NTSC/PAL-BTSC", 0x0400, 0x8020},
189 {"M/N-NTSC/PAL-A2", 0x0600, 0x8020},
190 {"M/N-NTSC/PAL-EIAJ", 0x0440, 0x8020},
191 {"M/N-NTSC/PAL-Mono", 0x0478, 0x8020},
192 {"B/G-PAL-A2", 0x0A00, 0x8049},
193 {"B/G-PAL-NICAM", 0x0C04, 0x8049},
194 {"B/G-PAL-MONO", 0x0878, 0x8059},
195 {"I-PAL-NICAM", 0x1080, 0x8009},
196 {"I-PAL-NICAM-MONO", 0x0E78, 0x8009},
197 {"D/K-PAL-A2", 0x1600, 0x8009},
198 {"D/K-PAL-NICAM", 0x0E80, 0x8009},
199 {"D/K-PAL-MONO", 0x1478, 0x8009},
200 {"D/K-SECAM-A2 DK1", 0x1200, 0x8009},
Steven Toth8f3cd532008-10-16 20:29:38 -0300201 {"D/K-SECAM-A2 L/DK3", 0x0E00, 0x8009},
Steven Tothaacb9d32007-12-18 01:55:51 -0300202 {"D/K-SECAM-A2 MONO", 0x1478, 0x8009},
203 {"L-SECAM-NICAM", 0x8E82, 0x0009},
204 {"L'-SECAM-NICAM", 0x8E82, 0x4009},
205 {"DTV6", 0x00C0, 0x8002},
206 {"DTV8", 0x00C0, 0x800B},
207 {"DTV7/8", 0x00C0, 0x801B},
208 {"DTV7", 0x00C0, 0x8007},
209 {"FM Radio-INPUT2", 0x9802, 0x9002},
Dmitri Belimov724dcbf2011-02-01 05:25:19 -0300210 {"FM Radio-INPUT1", 0x0208, 0x9002},
211 {"FM Radio-INPUT1_MONO", 0x0278, 0x9002}
Steven Tothaacb9d32007-12-18 01:55:51 -0300212};
213
Michael Krufkyddea4272012-02-07 02:39:36 -0300214
215struct xc5000_fw_cfg {
216 char *name;
217 u16 size;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300218 u16 pll_reg;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -0300219 u8 init_status_supported;
220 u8 fw_checksum_supported;
Michael Krufkyddea4272012-02-07 02:39:36 -0300221};
222
Tim Gardner3422f2a62012-07-25 09:15:19 -0300223#define XC5000A_FIRMWARE "dvb-fe-xc5000-1.6.114.fw"
Michael Krufkya3db60b2012-02-08 15:03:07 -0300224static const struct xc5000_fw_cfg xc5000a_1_6_114 = {
Tim Gardner3422f2a62012-07-25 09:15:19 -0300225 .name = XC5000A_FIRMWARE,
Michael Krufky76efb0ba2012-02-06 19:40:32 -0300226 .size = 12401,
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300227 .pll_reg = 0x806c,
Michael Krufky76efb0ba2012-02-06 19:40:32 -0300228};
229
Devin Heitmueller3de5bff2012-08-06 22:47:14 -0300230#define XC5000C_FIRMWARE "dvb-fe-xc5000c-4.1.30.7.fw"
Michael Krufky7d3d0d82012-04-16 14:59:32 -0300231static const struct xc5000_fw_cfg xc5000c_41_024_5 = {
Tim Gardner3422f2a62012-07-25 09:15:19 -0300232 .name = XC5000C_FIRMWARE,
Michael Krufky7d3d0d82012-04-16 14:59:32 -0300233 .size = 16497,
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300234 .pll_reg = 0x13,
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -0300235 .init_status_supported = 1,
236 .fw_checksum_supported = 1,
Michael Krufkyd8398802012-02-07 01:16:27 -0300237};
238
Michael Krufkya3db60b2012-02-08 15:03:07 -0300239static inline const struct xc5000_fw_cfg *xc5000_assign_firmware(int chip_id)
Michael Krufkyddea4272012-02-07 02:39:36 -0300240{
Michael Krufky6fab81d2012-02-08 14:57:39 -0300241 switch (chip_id) {
Michael Krufkyddea4272012-02-07 02:39:36 -0300242 default:
Michael Krufky6fab81d2012-02-08 14:57:39 -0300243 case XC5000A:
Michael Krufkyddea4272012-02-07 02:39:36 -0300244 return &xc5000a_1_6_114;
Michael Krufky6fab81d2012-02-08 14:57:39 -0300245 case XC5000C:
Michael Krufky7d3d0d82012-04-16 14:59:32 -0300246 return &xc5000c_41_024_5;
Michael Krufkyddea4272012-02-07 02:39:36 -0300247 }
248}
249
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300250static int xc_load_fw_and_init_tuner(struct dvb_frontend *fe, int force);
Devin Heitmueller91bd6252008-11-15 23:29:11 -0300251static int xc5000_is_firmware_loaded(struct dvb_frontend *fe);
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300252static int xc5000_readreg(struct xc5000_priv *priv, u16 reg, u16 *val);
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300253static int xc5000_tuner_reset(struct dvb_frontend *fe);
Steven Tothaacb9d32007-12-18 01:55:51 -0300254
Steven Tothe12671cf2007-12-20 01:14:43 -0300255static int xc_send_i2c_data(struct xc5000_priv *priv, u8 *buf, int len)
Steven Tothaacb9d32007-12-18 01:55:51 -0300256{
Devin Heitmuellerd7800d42008-11-16 20:20:06 -0300257 struct i2c_msg msg = { .addr = priv->i2c_props.addr,
258 .flags = 0, .buf = buf, .len = len };
259
260 if (i2c_transfer(priv->i2c_props.adap, &msg, 1) != 1) {
261 printk(KERN_ERR "xc5000: I2C write failed (len=%i)\n", len);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300262 return -EREMOTEIO;
Devin Heitmuellerd7800d42008-11-16 20:20:06 -0300263 }
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300264 return 0;
Steven Tothaacb9d32007-12-18 01:55:51 -0300265}
266
Mauro Carvalho Chehab1cdffda2010-07-05 18:38:46 -0300267#if 0
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300268/* This routine is never used because the only time we read data from the
269 i2c bus is when we read registers, and we want that to be an atomic i2c
270 transaction in case we are on a multi-master bus */
Steven Tothe12671cf2007-12-20 01:14:43 -0300271static int xc_read_i2c_data(struct xc5000_priv *priv, u8 *buf, int len)
Steven Tothaacb9d32007-12-18 01:55:51 -0300272{
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300273 struct i2c_msg msg = { .addr = priv->i2c_props.addr,
274 .flags = I2C_M_RD, .buf = buf, .len = len };
275
276 if (i2c_transfer(priv->i2c_props.adap, &msg, 1) != 1) {
277 printk(KERN_ERR "xc5000 I2C read failed (len=%i)\n", len);
278 return -EREMOTEIO;
279 }
280 return 0;
Steven Tothaacb9d32007-12-18 01:55:51 -0300281}
Mauro Carvalho Chehab1cdffda2010-07-05 18:38:46 -0300282#endif
Steven Tothaacb9d32007-12-18 01:55:51 -0300283
Dmitri Belimov47433192010-05-18 04:30:11 -0300284static int xc5000_readreg(struct xc5000_priv *priv, u16 reg, u16 *val)
285{
286 u8 buf[2] = { reg >> 8, reg & 0xff };
287 u8 bval[2] = { 0, 0 };
288 struct i2c_msg msg[2] = {
289 { .addr = priv->i2c_props.addr,
290 .flags = 0, .buf = &buf[0], .len = 2 },
291 { .addr = priv->i2c_props.addr,
292 .flags = I2C_M_RD, .buf = &bval[0], .len = 2 },
293 };
294
295 if (i2c_transfer(priv->i2c_props.adap, msg, 2) != 2) {
296 printk(KERN_WARNING "xc5000: I2C read failed\n");
297 return -EREMOTEIO;
298 }
299
300 *val = (bval[0] << 8) | bval[1];
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300301 return 0;
Dmitri Belimov47433192010-05-18 04:30:11 -0300302}
303
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300304static int xc5000_tuner_reset(struct dvb_frontend *fe)
Steven Tothaacb9d32007-12-18 01:55:51 -0300305{
306 struct xc5000_priv *priv = fe->tuner_priv;
307 int ret;
308
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300309 dprintk(1, "%s()\n", __func__);
Steven Tothaacb9d32007-12-18 01:55:51 -0300310
Michael Krufkyd7cba042008-09-12 13:31:45 -0300311 if (fe->callback) {
312 ret = fe->callback(((fe->dvb) && (fe->dvb->priv)) ?
Michael Krufky30650962008-09-06 14:56:58 -0300313 fe->dvb->priv :
314 priv->i2c_props.adap->algo_data,
Michael Krufkyd7cba042008-09-12 13:31:45 -0300315 DVB_FRONTEND_COMPONENT_TUNER,
Michael Krufky30650962008-09-06 14:56:58 -0300316 XC5000_TUNER_RESET, 0);
Devin Heitmueller91bd6252008-11-15 23:29:11 -0300317 if (ret) {
Steven Tothaacb9d32007-12-18 01:55:51 -0300318 printk(KERN_ERR "xc5000: reset failed\n");
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300319 return ret;
Devin Heitmueller91bd6252008-11-15 23:29:11 -0300320 }
321 } else {
Steven Toth27c685a2008-01-05 16:50:14 -0300322 printk(KERN_ERR "xc5000: no tuner reset callback function, fatal\n");
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300323 return -EINVAL;
Devin Heitmueller91bd6252008-11-15 23:29:11 -0300324 }
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300325 return 0;
Steven Tothaacb9d32007-12-18 01:55:51 -0300326}
327
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300328static int xc_write_reg(struct xc5000_priv *priv, u16 reg_addr, u16 i2c_data)
Steven Tothaacb9d32007-12-18 01:55:51 -0300329{
Steven Tothe12671cf2007-12-20 01:14:43 -0300330 u8 buf[4];
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300331 int watch_dog_timer = 100;
Steven Tothaacb9d32007-12-18 01:55:51 -0300332 int result;
333
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300334 buf[0] = (reg_addr >> 8) & 0xFF;
335 buf[1] = reg_addr & 0xFF;
336 buf[2] = (i2c_data >> 8) & 0xFF;
337 buf[3] = i2c_data & 0xFF;
Steven Tothaacb9d32007-12-18 01:55:51 -0300338 result = xc_send_i2c_data(priv, buf, 4);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300339 if (result == 0) {
Steven Tothaacb9d32007-12-18 01:55:51 -0300340 /* wait for busy flag to clear */
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300341 while ((watch_dog_timer > 0) && (result == 0)) {
Mauro Carvalho Chehab1cdffda2010-07-05 18:38:46 -0300342 result = xc5000_readreg(priv, XREG_BUSY, (u16 *)buf);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300343 if (result == 0) {
Dmitri Belimov47433192010-05-18 04:30:11 -0300344 if ((buf[0] == 0) && (buf[1] == 0)) {
345 /* busy flag cleared */
Steven Tothaacb9d32007-12-18 01:55:51 -0300346 break;
Dmitri Belimov47433192010-05-18 04:30:11 -0300347 } else {
Mauro Carvalho Chehabe5bf4a12014-05-21 13:15:17 -0300348 msleep(5); /* wait 5 ms */
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300349 watch_dog_timer--;
Steven Tothaacb9d32007-12-18 01:55:51 -0300350 }
351 }
352 }
353 }
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300354 if (watch_dog_timer <= 0)
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300355 result = -EREMOTEIO;
Steven Tothaacb9d32007-12-18 01:55:51 -0300356
357 return result;
358}
359
David Woodhousec63e87e2008-05-24 00:13:34 +0100360static int xc_load_i2c_sequence(struct dvb_frontend *fe, const u8 *i2c_sequence)
Steven Tothaacb9d32007-12-18 01:55:51 -0300361{
362 struct xc5000_priv *priv = fe->tuner_priv;
363
364 int i, nbytes_to_send, result;
365 unsigned int len, pos, index;
Steven Tothe12671cf2007-12-20 01:14:43 -0300366 u8 buf[XC_MAX_I2C_WRITE_LENGTH];
Steven Tothaacb9d32007-12-18 01:55:51 -0300367
Steven Toth8f3cd532008-10-16 20:29:38 -0300368 index = 0;
369 while ((i2c_sequence[index] != 0xFF) ||
370 (i2c_sequence[index + 1] != 0xFF)) {
371 len = i2c_sequence[index] * 256 + i2c_sequence[index+1];
Steven Tothe12671cf2007-12-20 01:14:43 -0300372 if (len == 0x0000) {
Steven Tothaacb9d32007-12-18 01:55:51 -0300373 /* RESET command */
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300374 result = xc5000_tuner_reset(fe);
Steven Tothaacb9d32007-12-18 01:55:51 -0300375 index += 2;
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300376 if (result != 0)
Steven Tothaacb9d32007-12-18 01:55:51 -0300377 return result;
378 } else if (len & 0x8000) {
379 /* WAIT command */
Mauro Carvalho Chehabe5bf4a12014-05-21 13:15:17 -0300380 msleep(len & 0x7FFF);
Steven Tothaacb9d32007-12-18 01:55:51 -0300381 index += 2;
382 } else {
383 /* Send i2c data whilst ensuring individual transactions
384 * do not exceed XC_MAX_I2C_WRITE_LENGTH bytes.
385 */
386 index += 2;
387 buf[0] = i2c_sequence[index];
388 buf[1] = i2c_sequence[index + 1];
389 pos = 2;
390 while (pos < len) {
Steven Toth8f3cd532008-10-16 20:29:38 -0300391 if ((len - pos) > XC_MAX_I2C_WRITE_LENGTH - 2)
392 nbytes_to_send =
393 XC_MAX_I2C_WRITE_LENGTH;
394 else
Steven Tothaacb9d32007-12-18 01:55:51 -0300395 nbytes_to_send = (len - pos + 2);
Steven Toth8f3cd532008-10-16 20:29:38 -0300396 for (i = 2; i < nbytes_to_send; i++) {
397 buf[i] = i2c_sequence[index + pos +
398 i - 2];
Steven Tothaacb9d32007-12-18 01:55:51 -0300399 }
Steven Toth8f3cd532008-10-16 20:29:38 -0300400 result = xc_send_i2c_data(priv, buf,
401 nbytes_to_send);
Steven Tothaacb9d32007-12-18 01:55:51 -0300402
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300403 if (result != 0)
Steven Tothaacb9d32007-12-18 01:55:51 -0300404 return result;
405
406 pos += nbytes_to_send - 2;
407 }
408 index += len;
409 }
410 }
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300411 return 0;
Steven Tothaacb9d32007-12-18 01:55:51 -0300412}
413
Steven Tothe12671cf2007-12-20 01:14:43 -0300414static int xc_initialize(struct xc5000_priv *priv)
Steven Tothaacb9d32007-12-18 01:55:51 -0300415{
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300416 dprintk(1, "%s()\n", __func__);
Steven Tothaacb9d32007-12-18 01:55:51 -0300417 return xc_write_reg(priv, XREG_INIT, 0);
418}
419
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300420static int xc_set_tv_standard(struct xc5000_priv *priv,
421 u16 video_mode, u16 audio_mode, u8 radio_mode)
Steven Tothaacb9d32007-12-18 01:55:51 -0300422{
423 int ret;
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300424 dprintk(1, "%s(0x%04x,0x%04x)\n", __func__, video_mode, audio_mode);
425 if (radio_mode) {
Dmitri Belimov01ae7282013-03-13 00:23:36 -0300426 dprintk(1, "%s() Standard = %s\n",
427 __func__,
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300428 xc5000_standard[radio_mode].name);
Dmitri Belimov01ae7282013-03-13 00:23:36 -0300429 } else {
430 dprintk(1, "%s() Standard = %s\n",
431 __func__,
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300432 xc5000_standard[priv->video_standard].name);
Dmitri Belimov01ae7282013-03-13 00:23:36 -0300433 }
Steven Tothaacb9d32007-12-18 01:55:51 -0300434
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300435 ret = xc_write_reg(priv, XREG_VIDEO_MODE, video_mode);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300436 if (ret == 0)
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300437 ret = xc_write_reg(priv, XREG_AUDIO_MODE, audio_mode);
Steven Tothaacb9d32007-12-18 01:55:51 -0300438
439 return ret;
440}
441
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300442static int xc_set_signal_source(struct xc5000_priv *priv, u16 rf_mode)
Steven Tothaacb9d32007-12-18 01:55:51 -0300443{
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300444 dprintk(1, "%s(%d) Source = %s\n", __func__, rf_mode,
Steven Tothaacb9d32007-12-18 01:55:51 -0300445 rf_mode == XC_RF_MODE_AIR ? "ANTENNA" : "CABLE");
446
Steven Toth8f3cd532008-10-16 20:29:38 -0300447 if ((rf_mode != XC_RF_MODE_AIR) && (rf_mode != XC_RF_MODE_CABLE)) {
Steven Tothaacb9d32007-12-18 01:55:51 -0300448 rf_mode = XC_RF_MODE_CABLE;
449 printk(KERN_ERR
450 "%s(), Invalid mode, defaulting to CABLE",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300451 __func__);
Steven Tothaacb9d32007-12-18 01:55:51 -0300452 }
453 return xc_write_reg(priv, XREG_SIGNALSOURCE, rf_mode);
454}
455
Steven Tothe12671cf2007-12-20 01:14:43 -0300456static const struct dvb_tuner_ops xc5000_tuner_ops;
457
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300458static int xc_set_rf_frequency(struct xc5000_priv *priv, u32 freq_hz)
Steven Tothaacb9d32007-12-18 01:55:51 -0300459{
Steven Tothe12671cf2007-12-20 01:14:43 -0300460 u16 freq_code;
Steven Tothaacb9d32007-12-18 01:55:51 -0300461
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300462 dprintk(1, "%s(%u)\n", __func__, freq_hz);
Steven Tothaacb9d32007-12-18 01:55:51 -0300463
Steven Tothe12671cf2007-12-20 01:14:43 -0300464 if ((freq_hz > xc5000_tuner_ops.info.frequency_max) ||
465 (freq_hz < xc5000_tuner_ops.info.frequency_min))
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300466 return -EINVAL;
Steven Tothaacb9d32007-12-18 01:55:51 -0300467
Steven Tothe12671cf2007-12-20 01:14:43 -0300468 freq_code = (u16)(freq_hz / 15625);
469
Devin Heitmueller81c4dfe2009-04-02 22:40:29 -0300470 /* Starting in firmware version 1.1.44, Xceive recommends using the
471 FINERFREQ for all normal tuning (the doc indicates reg 0x03 should
472 only be used for fast scanning for channel lock) */
473 return xc_write_reg(priv, XREG_FINERFREQ, freq_code);
Steven Tothaacb9d32007-12-18 01:55:51 -0300474}
475
Steven Tothe12671cf2007-12-20 01:14:43 -0300476
477static int xc_set_IF_frequency(struct xc5000_priv *priv, u32 freq_khz)
Steven Tothaacb9d32007-12-18 01:55:51 -0300478{
Steven Tothe12671cf2007-12-20 01:14:43 -0300479 u32 freq_code = (freq_khz * 1024)/1000;
480 dprintk(1, "%s(freq_khz = %d) freq_code = 0x%x\n",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300481 __func__, freq_khz, freq_code);
Steven Tothe12671cf2007-12-20 01:14:43 -0300482
483 return xc_write_reg(priv, XREG_IF_OUT, freq_code);
Steven Tothaacb9d32007-12-18 01:55:51 -0300484}
485
Steven Tothe12671cf2007-12-20 01:14:43 -0300486
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300487static int xc_get_adc_envelope(struct xc5000_priv *priv, u16 *adc_envelope)
Steven Tothaacb9d32007-12-18 01:55:51 -0300488{
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300489 return xc5000_readreg(priv, XREG_ADC_ENV, adc_envelope);
Steven Tothaacb9d32007-12-18 01:55:51 -0300490}
491
Steven Tothe12671cf2007-12-20 01:14:43 -0300492static int xc_get_frequency_error(struct xc5000_priv *priv, u32 *freq_error_hz)
Steven Tothaacb9d32007-12-18 01:55:51 -0300493{
494 int result;
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300495 u16 reg_data;
Steven Tothaacb9d32007-12-18 01:55:51 -0300496 u32 tmp;
497
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300498 result = xc5000_readreg(priv, XREG_FREQ_ERROR, &reg_data);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300499 if (result != 0)
Steven Tothaacb9d32007-12-18 01:55:51 -0300500 return result;
501
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300502 tmp = (u32)reg_data;
Steven Tothe12671cf2007-12-20 01:14:43 -0300503 (*freq_error_hz) = (tmp * 15625) / 1000;
Steven Tothaacb9d32007-12-18 01:55:51 -0300504 return result;
505}
506
Steven Tothe12671cf2007-12-20 01:14:43 -0300507static int xc_get_lock_status(struct xc5000_priv *priv, u16 *lock_status)
Steven Tothaacb9d32007-12-18 01:55:51 -0300508{
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300509 return xc5000_readreg(priv, XREG_LOCK, lock_status);
Steven Tothaacb9d32007-12-18 01:55:51 -0300510}
511
Steven Tothe12671cf2007-12-20 01:14:43 -0300512static int xc_get_version(struct xc5000_priv *priv,
513 u8 *hw_majorversion, u8 *hw_minorversion,
514 u8 *fw_majorversion, u8 *fw_minorversion)
Steven Tothaacb9d32007-12-18 01:55:51 -0300515{
Steven Tothe12671cf2007-12-20 01:14:43 -0300516 u16 data;
Steven Tothaacb9d32007-12-18 01:55:51 -0300517 int result;
518
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300519 result = xc5000_readreg(priv, XREG_VERSION, &data);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300520 if (result != 0)
Steven Tothaacb9d32007-12-18 01:55:51 -0300521 return result;
522
Steven Tothe12671cf2007-12-20 01:14:43 -0300523 (*hw_majorversion) = (data >> 12) & 0x0F;
524 (*hw_minorversion) = (data >> 8) & 0x0F;
525 (*fw_majorversion) = (data >> 4) & 0x0F;
526 (*fw_minorversion) = data & 0x0F;
Steven Tothaacb9d32007-12-18 01:55:51 -0300527
528 return 0;
529}
530
Devin Heitmuellerbae7b7d2009-04-02 22:24:38 -0300531static int xc_get_buildversion(struct xc5000_priv *priv, u16 *buildrev)
532{
533 return xc5000_readreg(priv, XREG_BUILD, buildrev);
534}
535
Steven Tothe12671cf2007-12-20 01:14:43 -0300536static int xc_get_hsync_freq(struct xc5000_priv *priv, u32 *hsync_freq_hz)
Steven Tothaacb9d32007-12-18 01:55:51 -0300537{
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300538 u16 reg_data;
Steven Tothaacb9d32007-12-18 01:55:51 -0300539 int result;
540
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300541 result = xc5000_readreg(priv, XREG_HSYNC_FREQ, &reg_data);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300542 if (result != 0)
Steven Tothaacb9d32007-12-18 01:55:51 -0300543 return result;
544
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300545 (*hsync_freq_hz) = ((reg_data & 0x0fff) * 763)/100;
Steven Tothaacb9d32007-12-18 01:55:51 -0300546 return result;
547}
548
Steven Tothe12671cf2007-12-20 01:14:43 -0300549static int xc_get_frame_lines(struct xc5000_priv *priv, u16 *frame_lines)
Steven Tothaacb9d32007-12-18 01:55:51 -0300550{
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300551 return xc5000_readreg(priv, XREG_FRAME_LINES, frame_lines);
Steven Tothaacb9d32007-12-18 01:55:51 -0300552}
553
Steven Tothe12671cf2007-12-20 01:14:43 -0300554static int xc_get_quality(struct xc5000_priv *priv, u16 *quality)
Steven Tothaacb9d32007-12-18 01:55:51 -0300555{
Devin Heitmuellerbdd33562008-11-16 20:17:14 -0300556 return xc5000_readreg(priv, XREG_QUALITY, quality);
Steven Tothaacb9d32007-12-18 01:55:51 -0300557}
558
Devin Heitmueller7c287f12012-08-06 22:46:56 -0300559static int xc_get_analogsnr(struct xc5000_priv *priv, u16 *snr)
560{
561 return xc5000_readreg(priv, XREG_SNR, snr);
562}
563
564static int xc_get_totalgain(struct xc5000_priv *priv, u16 *totalgain)
565{
566 return xc5000_readreg(priv, XREG_TOTALGAIN, totalgain);
567}
568
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300569static u16 wait_for_lock(struct xc5000_priv *priv)
Steven Tothaacb9d32007-12-18 01:55:51 -0300570{
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300571 u16 lock_state = 0;
572 int watch_dog_count = 40;
Steven Tothe12671cf2007-12-20 01:14:43 -0300573
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300574 while ((lock_state == 0) && (watch_dog_count > 0)) {
575 xc_get_lock_status(priv, &lock_state);
576 if (lock_state != 1) {
Mauro Carvalho Chehabe5bf4a12014-05-21 13:15:17 -0300577 msleep(5);
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300578 watch_dog_count--;
Steven Tothaacb9d32007-12-18 01:55:51 -0300579 }
580 }
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300581 return lock_state;
Steven Tothaacb9d32007-12-18 01:55:51 -0300582}
583
Devin Heitmuellera78baac2008-11-16 20:48:31 -0300584#define XC_TUNE_ANALOG 0
585#define XC_TUNE_DIGITAL 1
586static int xc_tune_channel(struct xc5000_priv *priv, u32 freq_hz, int mode)
Steven Tothaacb9d32007-12-18 01:55:51 -0300587{
588 int found = 0;
589
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300590 dprintk(1, "%s(%u)\n", __func__, freq_hz);
Steven Tothaacb9d32007-12-18 01:55:51 -0300591
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300592 if (xc_set_rf_frequency(priv, freq_hz) != 0)
Steven Tothaacb9d32007-12-18 01:55:51 -0300593 return 0;
594
Devin Heitmuellera78baac2008-11-16 20:48:31 -0300595 if (mode == XC_TUNE_ANALOG) {
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300596 if (wait_for_lock(priv) == 1)
Devin Heitmuellera78baac2008-11-16 20:48:31 -0300597 found = 1;
598 }
Steven Tothaacb9d32007-12-18 01:55:51 -0300599
600 return found;
601}
602
Michael Krufky7d3d0d82012-04-16 14:59:32 -0300603static int xc_set_xtal(struct dvb_frontend *fe)
604{
605 struct xc5000_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300606 int ret = 0;
Michael Krufky7d3d0d82012-04-16 14:59:32 -0300607
608 switch (priv->chip_id) {
609 default:
610 case XC5000A:
611 /* 32.000 MHz xtal is default */
612 break;
613 case XC5000C:
614 switch (priv->xtal_khz) {
615 default:
616 case 32000:
617 /* 32.000 MHz xtal is default */
618 break;
619 case 31875:
620 /* 31.875 MHz xtal configuration */
621 ret = xc_write_reg(priv, 0x000f, 0x8081);
622 break;
623 }
624 break;
625 }
626 return ret;
627}
Steven Tothaacb9d32007-12-18 01:55:51 -0300628
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -0300629static int xc5000_fwupload(struct dvb_frontend *fe,
630 const struct xc5000_fw_cfg *desired_fw,
631 const struct firmware *fw)
Steven Tothaacb9d32007-12-18 01:55:51 -0300632{
633 struct xc5000_priv *priv = fe->tuner_priv;
Steven Tothaacb9d32007-12-18 01:55:51 -0300634 int ret;
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -0300635
636 /* request the firmware, this will block and timeout */
637 dprintk(1, "waiting for firmware upload (%s)...\n",
638 desired_fw->name);
639
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300640 priv->pll_register_no = desired_fw->pll_reg;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -0300641 priv->init_status_supported = desired_fw->init_status_supported;
642 priv->fw_checksum_supported = desired_fw->fw_checksum_supported;
Steven Tothaacb9d32007-12-18 01:55:51 -0300643
Steven Tothe12671cf2007-12-20 01:14:43 -0300644
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -0300645 dprintk(1, "firmware uploading...\n");
646 ret = xc_load_i2c_sequence(fe, fw->data);
647 if (!ret) {
648 ret = xc_set_xtal(fe);
649 dprintk(1, "Firmware upload complete...\n");
650 } else
651 printk(KERN_ERR "xc5000: firmware upload failed...\n");
Steven Tothaacb9d32007-12-18 01:55:51 -0300652
Steven Tothaacb9d32007-12-18 01:55:51 -0300653 return ret;
654}
655
Steven Tothe12671cf2007-12-20 01:14:43 -0300656static void xc_debug_dump(struct xc5000_priv *priv)
Steven Tothaacb9d32007-12-18 01:55:51 -0300657{
Steven Tothe12671cf2007-12-20 01:14:43 -0300658 u16 adc_envelope;
659 u32 freq_error_hz = 0;
660 u16 lock_status;
661 u32 hsync_freq_hz = 0;
662 u16 frame_lines;
663 u16 quality;
Devin Heitmueller7c287f12012-08-06 22:46:56 -0300664 u16 snr;
665 u16 totalgain;
Steven Tothe12671cf2007-12-20 01:14:43 -0300666 u8 hw_majorversion = 0, hw_minorversion = 0;
667 u8 fw_majorversion = 0, fw_minorversion = 0;
Devin Heitmuellerbae7b7d2009-04-02 22:24:38 -0300668 u16 fw_buildversion = 0;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300669 u16 regval;
Steven Tothaacb9d32007-12-18 01:55:51 -0300670
671 /* Wait for stats to stabilize.
672 * Frame Lines needs two frame times after initial lock
673 * before it is valid.
674 */
Mauro Carvalho Chehabe5bf4a12014-05-21 13:15:17 -0300675 msleep(100);
Steven Tothaacb9d32007-12-18 01:55:51 -0300676
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300677 xc_get_adc_envelope(priv, &adc_envelope);
Steven Tothe12671cf2007-12-20 01:14:43 -0300678 dprintk(1, "*** ADC envelope (0-1023) = %d\n", adc_envelope);
Steven Tothaacb9d32007-12-18 01:55:51 -0300679
Steven Tothe12671cf2007-12-20 01:14:43 -0300680 xc_get_frequency_error(priv, &freq_error_hz);
681 dprintk(1, "*** Frequency error = %d Hz\n", freq_error_hz);
Steven Tothaacb9d32007-12-18 01:55:51 -0300682
Steven Tothe12671cf2007-12-20 01:14:43 -0300683 xc_get_lock_status(priv, &lock_status);
684 dprintk(1, "*** Lock status (0-Wait, 1-Locked, 2-No-signal) = %d\n",
Steven Tothaacb9d32007-12-18 01:55:51 -0300685 lock_status);
686
687 xc_get_version(priv, &hw_majorversion, &hw_minorversion,
Steven Tothe12671cf2007-12-20 01:14:43 -0300688 &fw_majorversion, &fw_minorversion);
Devin Heitmuellerbae7b7d2009-04-02 22:24:38 -0300689 xc_get_buildversion(priv, &fw_buildversion);
Devin Heitmuellerca60a45d2012-08-06 22:47:11 -0300690 dprintk(1, "*** HW: V%d.%d, FW: V %d.%d.%d\n",
Steven Tothaacb9d32007-12-18 01:55:51 -0300691 hw_majorversion, hw_minorversion,
Devin Heitmuellerbae7b7d2009-04-02 22:24:38 -0300692 fw_majorversion, fw_minorversion, fw_buildversion);
Steven Tothaacb9d32007-12-18 01:55:51 -0300693
Steven Tothe12671cf2007-12-20 01:14:43 -0300694 xc_get_hsync_freq(priv, &hsync_freq_hz);
695 dprintk(1, "*** Horizontal sync frequency = %d Hz\n", hsync_freq_hz);
Steven Tothaacb9d32007-12-18 01:55:51 -0300696
Steven Tothe12671cf2007-12-20 01:14:43 -0300697 xc_get_frame_lines(priv, &frame_lines);
698 dprintk(1, "*** Frame lines = %d\n", frame_lines);
Steven Tothaacb9d32007-12-18 01:55:51 -0300699
Steven Tothe12671cf2007-12-20 01:14:43 -0300700 xc_get_quality(priv, &quality);
Devin Heitmueller1aa9c4872012-08-06 22:46:55 -0300701 dprintk(1, "*** Quality (0:<8dB, 7:>56dB) = %d\n", quality & 0x07);
Devin Heitmueller7c287f12012-08-06 22:46:56 -0300702
703 xc_get_analogsnr(priv, &snr);
704 dprintk(1, "*** Unweighted analog SNR = %d dB\n", snr & 0x3f);
705
706 xc_get_totalgain(priv, &totalgain);
707 dprintk(1, "*** Total gain = %d.%d dB\n", totalgain / 256,
708 (totalgain % 256) * 100 / 256);
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300709
710 if (priv->pll_register_no) {
711 xc5000_readreg(priv, priv->pll_register_no, &regval);
712 dprintk(1, "*** PLL lock status = 0x%04x\n", regval);
713 }
Steven Tothaacb9d32007-12-18 01:55:51 -0300714}
715
Mauro Carvalho Chehab16435202014-08-09 21:47:21 -0300716static int xc5000_tune_digital(struct dvb_frontend *fe)
717{
718 struct xc5000_priv *priv = fe->tuner_priv;
719 int ret;
720 u32 bw = fe->dtv_property_cache.bandwidth_hz;
721
722 ret = xc_set_signal_source(priv, priv->rf_mode);
723 if (ret != 0) {
724 printk(KERN_ERR
725 "xc5000: xc_set_signal_source(%d) failed\n",
726 priv->rf_mode);
727 return -EREMOTEIO;
728 }
729
730 ret = xc_set_tv_standard(priv,
731 xc5000_standard[priv->video_standard].video_mode,
732 xc5000_standard[priv->video_standard].audio_mode, 0);
733 if (ret != 0) {
734 printk(KERN_ERR "xc5000: xc_set_tv_standard failed\n");
735 return -EREMOTEIO;
736 }
737
738 ret = xc_set_IF_frequency(priv, priv->if_khz);
739 if (ret != 0) {
740 printk(KERN_ERR "xc5000: xc_Set_IF_frequency(%d) failed\n",
741 priv->if_khz);
742 return -EIO;
743 }
744
745 xc_write_reg(priv, XREG_OUTPUT_AMP, 0x8a);
746
747 xc_tune_channel(priv, priv->freq_hz, XC_TUNE_DIGITAL);
748
749 if (debug)
750 xc_debug_dump(priv);
751
752 priv->bandwidth = bw;
753
754 return 0;
755}
756
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300757static int xc5000_set_params(struct dvb_frontend *fe)
Steven Tothaacb9d32007-12-18 01:55:51 -0300758{
Mauro Carvalho Chehab16435202014-08-09 21:47:21 -0300759 int b;
Steven Tothaacb9d32007-12-18 01:55:51 -0300760 struct xc5000_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300761 u32 bw = fe->dtv_property_cache.bandwidth_hz;
762 u32 freq = fe->dtv_property_cache.frequency;
763 u32 delsys = fe->dtv_property_cache.delivery_system;
Steven Tothaacb9d32007-12-18 01:55:51 -0300764
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300765 if (xc_load_fw_and_init_tuner(fe, 0) != 0) {
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -0300766 dprintk(1, "Unable to load firmware and init tuner\n");
767 return -EINVAL;
Devin Heitmueller760c4662009-10-13 23:44:14 -0300768 }
Devin Heitmueller8e4c6792008-11-16 20:41:07 -0300769
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300770 dprintk(1, "%s() frequency=%d (Hz)\n", __func__, freq);
Steven Tothaacb9d32007-12-18 01:55:51 -0300771
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300772 switch (delsys) {
773 case SYS_ATSC:
774 dprintk(1, "%s() VSB modulation\n", __func__);
775 priv->rf_mode = XC_RF_MODE_AIR;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300776 priv->freq_offset = 1750000;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300777 priv->video_standard = DTV6;
778 break;
779 case SYS_DVBC_ANNEX_B:
780 dprintk(1, "%s() QAM modulation\n", __func__);
781 priv->rf_mode = XC_RF_MODE_CABLE;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300782 priv->freq_offset = 1750000;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300783 priv->video_standard = DTV6;
784 break;
Mauro Carvalho Chehab5cf73ce2012-07-05 14:07:59 -0300785 case SYS_ISDBT:
786 /* All ISDB-T are currently for 6 MHz bw */
787 if (!bw)
788 bw = 6000000;
789 /* fall to OFDM handling */
790 case SYS_DMBTH:
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300791 case SYS_DVBT:
792 case SYS_DVBT2:
David T.L. Wong6c990802009-05-04 22:59:58 -0300793 dprintk(1, "%s() OFDM\n", __func__);
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300794 switch (bw) {
795 case 6000000:
David T.L. Wong6c990802009-05-04 22:59:58 -0300796 priv->video_standard = DTV6;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300797 priv->freq_offset = 1750000;
David T.L. Wong6c990802009-05-04 22:59:58 -0300798 break;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300799 case 7000000:
Mauro Carvalho Chehab0433cd22011-12-09 08:01:01 -0200800 priv->video_standard = DTV7;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300801 priv->freq_offset = 2250000;
Mauro Carvalho Chehab0433cd22011-12-09 08:01:01 -0200802 break;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300803 case 8000000:
David T.L. Wong6c990802009-05-04 22:59:58 -0300804 priv->video_standard = DTV8;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300805 priv->freq_offset = 2750000;
David T.L. Wong6c990802009-05-04 22:59:58 -0300806 break;
807 default:
808 printk(KERN_ERR "xc5000 bandwidth not set!\n");
809 return -EINVAL;
810 }
Steven Tothaacb9d32007-12-18 01:55:51 -0300811 priv->rf_mode = XC_RF_MODE_AIR;
Dan Carpentercf1364b2013-01-13 15:31:33 -0300812 break;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300813 case SYS_DVBC_ANNEX_A:
814 case SYS_DVBC_ANNEX_C:
815 dprintk(1, "%s() QAM modulation\n", __func__);
816 priv->rf_mode = XC_RF_MODE_CABLE;
817 if (bw <= 6000000) {
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300818 priv->video_standard = DTV6;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300819 priv->freq_offset = 1750000;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300820 b = 6;
821 } else if (bw <= 7000000) {
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300822 priv->video_standard = DTV7;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300823 priv->freq_offset = 2250000;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300824 b = 7;
825 } else {
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300826 priv->video_standard = DTV7_8;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300827 priv->freq_offset = 2750000;
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300828 b = 8;
Igor M. Liplianine80edce2011-01-25 17:03:00 -0300829 }
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300830 dprintk(1, "%s() Bandwidth %dMHz (%d)\n", __func__,
831 b, bw);
832 break;
833 default:
834 printk(KERN_ERR "xc5000: delivery system is not supported!\n");
Steven Tothaacb9d32007-12-18 01:55:51 -0300835 return -EINVAL;
836 }
837
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300838 priv->freq_hz = freq - priv->freq_offset;
Mauro Carvalho Chehab16435202014-08-09 21:47:21 -0300839 priv->mode = V4L2_TUNER_DIGITAL_TV;
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -0300840
Mauro Carvalho Chehabfd66c452011-12-17 20:36:57 -0300841 dprintk(1, "%s() frequency=%d (compensated to %d)\n",
842 __func__, freq, priv->freq_hz);
Steven Tothaacb9d32007-12-18 01:55:51 -0300843
Mauro Carvalho Chehab16435202014-08-09 21:47:21 -0300844 return xc5000_tune_digital(fe);
Steven Tothaacb9d32007-12-18 01:55:51 -0300845}
846
Steven Tothe470d812008-06-21 21:06:02 -0300847static int xc5000_is_firmware_loaded(struct dvb_frontend *fe)
848{
849 struct xc5000_priv *priv = fe->tuner_priv;
850 int ret;
851 u16 id;
852
853 ret = xc5000_readreg(priv, XREG_PRODUCT_ID, &id);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300854 if (ret == 0) {
Steven Tothe470d812008-06-21 21:06:02 -0300855 if (id == XC_PRODUCT_ID_FW_NOT_LOADED)
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300856 ret = -ENOENT;
Steven Tothe470d812008-06-21 21:06:02 -0300857 else
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300858 ret = 0;
Steven Tothe470d812008-06-21 21:06:02 -0300859 }
860
861 dprintk(1, "%s() returns %s id = 0x%x\n", __func__,
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300862 ret == 0 ? "True" : "False", id);
Steven Tothe470d812008-06-21 21:06:02 -0300863 return ret;
864}
865
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -0300866static int xc5000_set_tv_freq(struct dvb_frontend *fe,
Steven Toth27c685a2008-01-05 16:50:14 -0300867 struct analog_parameters *params)
868{
869 struct xc5000_priv *priv = fe->tuner_priv;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300870 u16 pll_lock_status;
Steven Toth27c685a2008-01-05 16:50:14 -0300871 int ret;
872
Steven Toth27c685a2008-01-05 16:50:14 -0300873 dprintk(1, "%s() frequency=%d (in units of 62.5khz)\n",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300874 __func__, params->frequency);
Steven Toth27c685a2008-01-05 16:50:14 -0300875
Mauro Carvalho Chehab1fab14e2009-03-03 14:35:41 -0300876 /* Fix me: it could be air. */
877 priv->rf_mode = params->mode;
878 if (params->mode > XC_RF_MODE_CABLE)
879 priv->rf_mode = XC_RF_MODE_CABLE;
Steven Toth27c685a2008-01-05 16:50:14 -0300880
881 /* params->frequency is in units of 62.5khz */
882 priv->freq_hz = params->frequency * 62500;
883
884 /* FIX ME: Some video standards may have several possible audio
885 standards. We simply default to one of them here.
886 */
Steven Toth8f3cd532008-10-16 20:29:38 -0300887 if (params->std & V4L2_STD_MN) {
Steven Toth27c685a2008-01-05 16:50:14 -0300888 /* default to BTSC audio standard */
889 priv->video_standard = MN_NTSC_PAL_BTSC;
890 goto tune_channel;
891 }
892
Steven Toth8f3cd532008-10-16 20:29:38 -0300893 if (params->std & V4L2_STD_PAL_BG) {
Steven Toth27c685a2008-01-05 16:50:14 -0300894 /* default to NICAM audio standard */
895 priv->video_standard = BG_PAL_NICAM;
896 goto tune_channel;
897 }
898
Steven Toth8f3cd532008-10-16 20:29:38 -0300899 if (params->std & V4L2_STD_PAL_I) {
Steven Toth27c685a2008-01-05 16:50:14 -0300900 /* default to NICAM audio standard */
901 priv->video_standard = I_PAL_NICAM;
902 goto tune_channel;
903 }
904
Steven Toth8f3cd532008-10-16 20:29:38 -0300905 if (params->std & V4L2_STD_PAL_DK) {
Steven Toth27c685a2008-01-05 16:50:14 -0300906 /* default to NICAM audio standard */
907 priv->video_standard = DK_PAL_NICAM;
908 goto tune_channel;
909 }
910
Steven Toth8f3cd532008-10-16 20:29:38 -0300911 if (params->std & V4L2_STD_SECAM_DK) {
Steven Toth27c685a2008-01-05 16:50:14 -0300912 /* default to A2 DK1 audio standard */
913 priv->video_standard = DK_SECAM_A2DK1;
914 goto tune_channel;
915 }
916
Steven Toth8f3cd532008-10-16 20:29:38 -0300917 if (params->std & V4L2_STD_SECAM_L) {
Steven Toth27c685a2008-01-05 16:50:14 -0300918 priv->video_standard = L_SECAM_NICAM;
919 goto tune_channel;
920 }
921
Steven Toth8f3cd532008-10-16 20:29:38 -0300922 if (params->std & V4L2_STD_SECAM_LC) {
Steven Toth27c685a2008-01-05 16:50:14 -0300923 priv->video_standard = LC_SECAM_NICAM;
924 goto tune_channel;
925 }
926
927tune_channel:
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300928 ret = xc_set_signal_source(priv, priv->rf_mode);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300929 if (ret != 0) {
Steven Toth8f3cd532008-10-16 20:29:38 -0300930 printk(KERN_ERR
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300931 "xc5000: xc_set_signal_source(%d) failed\n",
Steven Toth27c685a2008-01-05 16:50:14 -0300932 priv->rf_mode);
933 return -EREMOTEIO;
934 }
935
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300936 ret = xc_set_tv_standard(priv,
937 xc5000_standard[priv->video_standard].video_mode,
938 xc5000_standard[priv->video_standard].audio_mode, 0);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300939 if (ret != 0) {
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300940 printk(KERN_ERR "xc5000: xc_set_tv_standard failed\n");
Steven Toth27c685a2008-01-05 16:50:14 -0300941 return -EREMOTEIO;
942 }
943
Dmitri Belimov724dcbf2011-02-01 05:25:19 -0300944 xc_write_reg(priv, XREG_OUTPUT_AMP, 0x09);
945
Devin Heitmuellera78baac2008-11-16 20:48:31 -0300946 xc_tune_channel(priv, priv->freq_hz, XC_TUNE_ANALOG);
Steven Toth27c685a2008-01-05 16:50:14 -0300947
948 if (debug)
949 xc_debug_dump(priv);
950
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300951 if (priv->pll_register_no != 0) {
952 msleep(20);
953 xc5000_readreg(priv, priv->pll_register_no, &pll_lock_status);
954 if (pll_lock_status > 63) {
955 /* PLL is unlocked, force reload of the firmware */
956 dprintk(1, "xc5000: PLL not locked (0x%x). Reloading...\n",
957 pll_lock_status);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300958 if (xc_load_fw_and_init_tuner(fe, 1) != 0) {
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300959 printk(KERN_ERR "xc5000: Unable to reload fw\n");
960 return -EREMOTEIO;
961 }
962 goto tune_channel;
963 }
964 }
965
Steven Toth27c685a2008-01-05 16:50:14 -0300966 return 0;
967}
968
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -0300969static int xc5000_set_radio_freq(struct dvb_frontend *fe,
970 struct analog_parameters *params)
971{
972 struct xc5000_priv *priv = fe->tuner_priv;
973 int ret = -EINVAL;
Devin Heitmueller496e9052009-09-24 13:27:24 -0300974 u8 radio_input;
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -0300975
976 dprintk(1, "%s() frequency=%d (in units of khz)\n",
977 __func__, params->frequency);
978
Devin Heitmueller496e9052009-09-24 13:27:24 -0300979 if (priv->radio_input == XC5000_RADIO_NOT_CONFIGURED) {
980 dprintk(1, "%s() radio input not configured\n", __func__);
981 return -EINVAL;
982 }
983
984 if (priv->radio_input == XC5000_RADIO_FM1)
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300985 radio_input = FM_RADIO_INPUT1;
Devin Heitmueller496e9052009-09-24 13:27:24 -0300986 else if (priv->radio_input == XC5000_RADIO_FM2)
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300987 radio_input = FM_RADIO_INPUT2;
Dmitri Belimov724dcbf2011-02-01 05:25:19 -0300988 else if (priv->radio_input == XC5000_RADIO_FM1_MONO)
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300989 radio_input = FM_RADIO_INPUT1_MONO;
Devin Heitmueller496e9052009-09-24 13:27:24 -0300990 else {
991 dprintk(1, "%s() unknown radio input %d\n", __func__,
992 priv->radio_input);
993 return -EINVAL;
994 }
995
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -0300996 priv->freq_hz = params->frequency * 125 / 2;
997
998 priv->rf_mode = XC_RF_MODE_AIR;
999
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001000 ret = xc_set_tv_standard(priv, xc5000_standard[radio_input].video_mode,
1001 xc5000_standard[radio_input].audio_mode, radio_input);
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001002
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001003 if (ret != 0) {
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001004 printk(KERN_ERR "xc5000: xc_set_tv_standard failed\n");
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001005 return -EREMOTEIO;
1006 }
1007
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001008 ret = xc_set_signal_source(priv, priv->rf_mode);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001009 if (ret != 0) {
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001010 printk(KERN_ERR
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001011 "xc5000: xc_set_signal_source(%d) failed\n",
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001012 priv->rf_mode);
1013 return -EREMOTEIO;
1014 }
1015
Dmitri Belimov724dcbf2011-02-01 05:25:19 -03001016 if ((priv->radio_input == XC5000_RADIO_FM1) ||
1017 (priv->radio_input == XC5000_RADIO_FM2))
1018 xc_write_reg(priv, XREG_OUTPUT_AMP, 0x09);
1019 else if (priv->radio_input == XC5000_RADIO_FM1_MONO)
1020 xc_write_reg(priv, XREG_OUTPUT_AMP, 0x06);
1021
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001022 xc_tune_channel(priv, priv->freq_hz, XC_TUNE_ANALOG);
1023
1024 return 0;
1025}
1026
1027static int xc5000_set_analog_params(struct dvb_frontend *fe,
1028 struct analog_parameters *params)
1029{
1030 struct xc5000_priv *priv = fe->tuner_priv;
1031 int ret = -EINVAL;
1032
1033 if (priv->i2c_props.adap == NULL)
1034 return -EINVAL;
1035
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001036 if (xc_load_fw_and_init_tuner(fe, 0) != 0) {
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001037 dprintk(1, "Unable to load firmware and init tuner\n");
1038 return -EINVAL;
Devin Heitmueller760c4662009-10-13 23:44:14 -03001039 }
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001040
1041 switch (params->mode) {
1042 case V4L2_TUNER_RADIO:
1043 ret = xc5000_set_radio_freq(fe, params);
1044 break;
1045 case V4L2_TUNER_ANALOG_TV:
1046 case V4L2_TUNER_DIGITAL_TV:
1047 ret = xc5000_set_tv_freq(fe, params);
1048 break;
1049 }
1050
1051 return ret;
1052}
1053
1054
Steven Tothaacb9d32007-12-18 01:55:51 -03001055static int xc5000_get_frequency(struct dvb_frontend *fe, u32 *freq)
1056{
1057 struct xc5000_priv *priv = fe->tuner_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001058 dprintk(1, "%s()\n", __func__);
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -03001059 *freq = priv->freq_hz + priv->freq_offset;
Steven Tothaacb9d32007-12-18 01:55:51 -03001060 return 0;
1061}
1062
Mauro Carvalho Chehab35621032011-09-23 13:03:42 -03001063static int xc5000_get_if_frequency(struct dvb_frontend *fe, u32 *freq)
1064{
1065 struct xc5000_priv *priv = fe->tuner_priv;
1066 dprintk(1, "%s()\n", __func__);
1067 *freq = priv->if_khz * 1000;
1068 return 0;
1069}
1070
Steven Tothaacb9d32007-12-18 01:55:51 -03001071static int xc5000_get_bandwidth(struct dvb_frontend *fe, u32 *bw)
1072{
1073 struct xc5000_priv *priv = fe->tuner_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001074 dprintk(1, "%s()\n", __func__);
Steven Toth27c685a2008-01-05 16:50:14 -03001075
Steven Tothaacb9d32007-12-18 01:55:51 -03001076 *bw = priv->bandwidth;
1077 return 0;
1078}
1079
1080static int xc5000_get_status(struct dvb_frontend *fe, u32 *status)
1081{
1082 struct xc5000_priv *priv = fe->tuner_priv;
Steven Tothe12671cf2007-12-20 01:14:43 -03001083 u16 lock_status = 0;
Steven Tothaacb9d32007-12-18 01:55:51 -03001084
1085 xc_get_lock_status(priv, &lock_status);
1086
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001087 dprintk(1, "%s() lock_status = 0x%08x\n", __func__, lock_status);
Steven Tothaacb9d32007-12-18 01:55:51 -03001088
1089 *status = lock_status;
1090
1091 return 0;
1092}
1093
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001094static int xc_load_fw_and_init_tuner(struct dvb_frontend *fe, int force)
Steven Tothaacb9d32007-12-18 01:55:51 -03001095{
1096 struct xc5000_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001097 const struct xc5000_fw_cfg *desired_fw = xc5000_assign_firmware(priv->chip_id);
1098 const struct firmware *fw;
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001099 int ret, i;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001100 u16 pll_lock_status;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001101 u16 fw_ck;
Steven Tothaacb9d32007-12-18 01:55:51 -03001102
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001103 cancel_delayed_work(&priv->timer_sleep);
1104
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001105 if (!force && xc5000_is_firmware_loaded(fe) == 0)
1106 return 0;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001107
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001108 ret = request_firmware(&fw, desired_fw->name,
1109 priv->i2c_props.adap->dev.parent);
1110 if (ret) {
1111 printk(KERN_ERR "xc5000: Upload failed. (file not found?)\n");
1112 return ret;
1113 }
1114
1115 dprintk(1, "firmware read %Zu bytes.\n", fw->size);
1116
1117 if (fw->size != desired_fw->size) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001118 printk(KERN_ERR "xc5000: Firmware file with incorrect size\n");
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001119 ret = -EINVAL;
1120 goto err;
1121 }
1122
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001123 /* Try up to 5 times to load firmware */
1124 for (i = 0; i < 5; i++) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001125 if (i)
1126 printk(KERN_CONT " - retrying to upload firmware.\n");
1127
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001128 ret = xc5000_fwupload(fe, desired_fw, fw);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001129 if (ret != 0)
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001130 goto err;
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001131
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001132 msleep(20);
1133
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001134 if (priv->fw_checksum_supported) {
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001135 if (xc5000_readreg(priv, XREG_FW_CHECKSUM, &fw_ck)) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001136 printk(KERN_ERR
1137 "xc5000: FW checksum reading failed.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001138 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001139 }
1140
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001141 if (!fw_ck) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001142 printk(KERN_ERR
1143 "xc5000: FW checksum failed = 0x%04x.",
1144 fw_ck);
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001145 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001146 }
1147 }
1148
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001149 /* Start the tuner self-calibration process */
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001150 ret = xc_initialize(priv);
1151 if (ret) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001152 printk(KERN_ERR
1153 "xc5000: Can't request Self-callibration.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001154 continue;
1155 }
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001156
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001157 /* Wait for calibration to complete.
1158 * We could continue but XC5000 will clock stretch subsequent
1159 * I2C transactions until calibration is complete. This way we
1160 * don't have to rely on clock stretching working.
1161 */
Mauro Carvalho Chehabe5bf4a12014-05-21 13:15:17 -03001162 msleep(100);
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001163
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001164 if (priv->init_status_supported) {
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001165 if (xc5000_readreg(priv, XREG_INIT_STATUS, &fw_ck)) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001166 printk(KERN_ERR
1167 "xc5000: FW failed reading init status.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001168 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001169 }
1170
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001171 if (!fw_ck) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001172 printk(KERN_ERR
1173 "xc5000: FW init status failed = 0x%04x.",
1174 fw_ck);
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001175 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001176 }
1177 }
1178
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001179 if (priv->pll_register_no) {
1180 xc5000_readreg(priv, priv->pll_register_no,
1181 &pll_lock_status);
1182 if (pll_lock_status > 63) {
1183 /* PLL is unlocked, force reload of the firmware */
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001184 printk(KERN_ERR
1185 "xc5000: PLL not running after fwload.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001186 continue;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001187 }
1188 }
1189
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001190 /* Default to "CABLE" mode */
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001191 ret = xc_write_reg(priv, XREG_SIGNALSOURCE, XC_RF_MODE_CABLE);
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001192 if (!ret)
1193 break;
1194 printk(KERN_ERR "xc5000: can't set to cable mode.");
Steven Tothaacb9d32007-12-18 01:55:51 -03001195 }
1196
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001197err:
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001198 if (!ret)
1199 printk(KERN_INFO "xc5000: Firmware %s loaded and running.\n",
1200 desired_fw->name);
1201 else
1202 printk(KERN_CONT " - too many retries. Giving up\n");
1203
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001204 release_firmware(fw);
Steven Tothaacb9d32007-12-18 01:55:51 -03001205 return ret;
1206}
1207
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001208static void xc5000_do_timer_sleep(struct work_struct *timer_sleep)
1209{
1210 struct xc5000_priv *priv =container_of(timer_sleep, struct xc5000_priv,
1211 timer_sleep.work);
1212 struct dvb_frontend *fe = priv->fe;
1213 int ret;
1214
1215 dprintk(1, "%s()\n", __func__);
1216
1217 /* According to Xceive technical support, the "powerdown" register
1218 was removed in newer versions of the firmware. The "supported"
1219 way to sleep the tuner is to pull the reset pin low for 10ms */
1220 ret = xc5000_tuner_reset(fe);
1221 if (ret != 0)
1222 printk(KERN_ERR
1223 "xc5000: %s() unable to shutdown tuner\n",
1224 __func__);
1225}
1226
Steven Tothe12671cf2007-12-20 01:14:43 -03001227static int xc5000_sleep(struct dvb_frontend *fe)
1228{
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001229 struct xc5000_priv *priv = fe->tuner_priv;
Steven Toth27c685a2008-01-05 16:50:14 -03001230
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001231 dprintk(1, "%s()\n", __func__);
Steven Tothe12671cf2007-12-20 01:14:43 -03001232
Devin Heitmuellerb6bd5eb2009-04-28 13:53:38 -03001233 /* Avoid firmware reload on slow devices */
1234 if (no_poweroff)
1235 return 0;
1236
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001237 schedule_delayed_work(&priv->timer_sleep,
1238 msecs_to_jiffies(XC5000_SLEEP_TIME));
1239
1240 return 0;
Steven Tothe12671cf2007-12-20 01:14:43 -03001241}
1242
Mauro Carvalho Chehab91a53072014-08-09 21:47:20 -03001243static int xc5000_suspend(struct dvb_frontend *fe)
1244{
1245 struct xc5000_priv *priv = fe->tuner_priv;
1246 int ret;
1247
1248 dprintk(1, "%s()\n", __func__);
1249
1250 cancel_delayed_work(&priv->timer_sleep);
1251
1252 ret = xc5000_tuner_reset(fe);
1253 if (ret != 0)
1254 printk(KERN_ERR
1255 "xc5000: %s() unable to shutdown tuner\n",
1256 __func__);
1257
1258 return 0;
1259}
1260
Steven Tothaacb9d32007-12-18 01:55:51 -03001261static int xc5000_init(struct dvb_frontend *fe)
1262{
1263 struct xc5000_priv *priv = fe->tuner_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001264 dprintk(1, "%s()\n", __func__);
Steven Tothaacb9d32007-12-18 01:55:51 -03001265
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001266 if (xc_load_fw_and_init_tuner(fe, 0) != 0) {
Steven Tothe12671cf2007-12-20 01:14:43 -03001267 printk(KERN_ERR "xc5000: Unable to initialise tuner\n");
1268 return -EREMOTEIO;
1269 }
1270
1271 if (debug)
1272 xc_debug_dump(priv);
Steven Tothaacb9d32007-12-18 01:55:51 -03001273
1274 return 0;
1275}
1276
1277static int xc5000_release(struct dvb_frontend *fe)
1278{
Michael Krufky89fd2852008-09-06 11:44:53 -03001279 struct xc5000_priv *priv = fe->tuner_priv;
1280
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001281 dprintk(1, "%s()\n", __func__);
Michael Krufky89fd2852008-09-06 11:44:53 -03001282
1283 mutex_lock(&xc5000_list_mutex);
1284
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001285 if (priv) {
1286 cancel_delayed_work(&priv->timer_sleep);
Michael Krufky89fd2852008-09-06 11:44:53 -03001287 hybrid_tuner_release_state(priv);
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001288 }
Michael Krufky89fd2852008-09-06 11:44:53 -03001289
1290 mutex_unlock(&xc5000_list_mutex);
1291
Steven Tothaacb9d32007-12-18 01:55:51 -03001292 fe->tuner_priv = NULL;
Michael Krufky89fd2852008-09-06 11:44:53 -03001293
Steven Tothaacb9d32007-12-18 01:55:51 -03001294 return 0;
1295}
1296
Dmitri Belimov724dcbf2011-02-01 05:25:19 -03001297static int xc5000_set_config(struct dvb_frontend *fe, void *priv_cfg)
1298{
1299 struct xc5000_priv *priv = fe->tuner_priv;
1300 struct xc5000_config *p = priv_cfg;
1301
1302 dprintk(1, "%s()\n", __func__);
1303
1304 if (p->if_khz)
1305 priv->if_khz = p->if_khz;
1306
1307 if (p->radio_input)
1308 priv->radio_input = p->radio_input;
1309
1310 return 0;
1311}
1312
1313
Steven Tothaacb9d32007-12-18 01:55:51 -03001314static const struct dvb_tuner_ops xc5000_tuner_ops = {
1315 .info = {
1316 .name = "Xceive XC5000",
1317 .frequency_min = 1000000,
1318 .frequency_max = 1023000000,
1319 .frequency_step = 50000,
1320 },
1321
Steven Toth27c685a2008-01-05 16:50:14 -03001322 .release = xc5000_release,
1323 .init = xc5000_init,
1324 .sleep = xc5000_sleep,
Mauro Carvalho Chehab91a53072014-08-09 21:47:20 -03001325 .suspend = xc5000_suspend,
Steven Tothaacb9d32007-12-18 01:55:51 -03001326
Dmitri Belimov724dcbf2011-02-01 05:25:19 -03001327 .set_config = xc5000_set_config,
Steven Toth27c685a2008-01-05 16:50:14 -03001328 .set_params = xc5000_set_params,
1329 .set_analog_params = xc5000_set_analog_params,
1330 .get_frequency = xc5000_get_frequency,
Mauro Carvalho Chehab35621032011-09-23 13:03:42 -03001331 .get_if_frequency = xc5000_get_if_frequency,
Steven Toth27c685a2008-01-05 16:50:14 -03001332 .get_bandwidth = xc5000_get_bandwidth,
1333 .get_status = xc5000_get_status
Steven Tothaacb9d32007-12-18 01:55:51 -03001334};
1335
Michael Krufky48723542008-05-10 14:34:09 -03001336struct dvb_frontend *xc5000_attach(struct dvb_frontend *fe,
1337 struct i2c_adapter *i2c,
lawrence rust2e4e98e2010-08-25 09:50:20 -03001338 const struct xc5000_config *cfg)
Steven Tothaacb9d32007-12-18 01:55:51 -03001339{
1340 struct xc5000_priv *priv = NULL;
Michael Krufky89fd2852008-09-06 11:44:53 -03001341 int instance;
Steven Tothaacb9d32007-12-18 01:55:51 -03001342 u16 id = 0;
1343
Michael Krufky89fd2852008-09-06 11:44:53 -03001344 dprintk(1, "%s(%d-%04x)\n", __func__,
1345 i2c ? i2c_adapter_id(i2c) : -1,
1346 cfg ? cfg->i2c_address : -1);
Steven Tothaacb9d32007-12-18 01:55:51 -03001347
Michael Krufky89fd2852008-09-06 11:44:53 -03001348 mutex_lock(&xc5000_list_mutex);
Steven Tothaacb9d32007-12-18 01:55:51 -03001349
Michael Krufky89fd2852008-09-06 11:44:53 -03001350 instance = hybrid_tuner_request_state(struct xc5000_priv, priv,
1351 hybrid_tuner_instance_list,
1352 i2c, cfg->i2c_address, "xc5000");
1353 switch (instance) {
1354 case 0:
1355 goto fail;
Michael Krufky89fd2852008-09-06 11:44:53 -03001356 case 1:
1357 /* new tuner instance */
Mauro Carvalho Chehabc6f56e72011-12-26 20:02:28 -03001358 priv->bandwidth = 6000000;
Michael Krufky89fd2852008-09-06 11:44:53 -03001359 fe->tuner_priv = priv;
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001360 priv->fe = fe;
1361 INIT_DELAYED_WORK(&priv->timer_sleep, xc5000_do_timer_sleep);
Michael Krufky89fd2852008-09-06 11:44:53 -03001362 break;
1363 default:
1364 /* existing tuner instance */
1365 fe->tuner_priv = priv;
1366 break;
1367 }
Steven Tothaacb9d32007-12-18 01:55:51 -03001368
Devin Heitmuellerea227862009-03-11 02:58:53 -03001369 if (priv->if_khz == 0) {
1370 /* If the IF hasn't been set yet, use the value provided by
1371 the caller (occurs in hybrid devices where the analog
1372 call to xc5000_attach occurs before the digital side) */
1373 priv->if_khz = cfg->if_khz;
1374 }
1375
Michael Krufky7d3d0d82012-04-16 14:59:32 -03001376 if (priv->xtal_khz == 0)
1377 priv->xtal_khz = cfg->xtal_khz;
1378
Devin Heitmueller496e9052009-09-24 13:27:24 -03001379 if (priv->radio_input == 0)
1380 priv->radio_input = cfg->radio_input;
1381
Michael Krufky6fab81d2012-02-08 14:57:39 -03001382 /* don't override chip id if it's already been set
Michael Krufky76efb0ba2012-02-06 19:40:32 -03001383 unless explicitly specified */
Michael Krufky6fab81d2012-02-08 14:57:39 -03001384 if ((priv->chip_id == 0) || (cfg->chip_id))
1385 /* use default chip id if none specified, set to 0 so
1386 it can be overridden if this is a hybrid driver */
1387 priv->chip_id = (cfg->chip_id) ? cfg->chip_id : 0;
Michael Krufky76efb0ba2012-02-06 19:40:32 -03001388
Steven Toth27c685a2008-01-05 16:50:14 -03001389 /* Check if firmware has been loaded. It is possible that another
1390 instance of the driver has loaded the firmware.
1391 */
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001392 if (xc5000_readreg(priv, XREG_PRODUCT_ID, &id) != 0)
Michael Krufky89fd2852008-09-06 11:44:53 -03001393 goto fail;
Steven Tothaacb9d32007-12-18 01:55:51 -03001394
Steven Toth8f3cd532008-10-16 20:29:38 -03001395 switch (id) {
Steven Toth27c685a2008-01-05 16:50:14 -03001396 case XC_PRODUCT_ID_FW_LOADED:
1397 printk(KERN_INFO
1398 "xc5000: Successfully identified at address 0x%02x\n",
1399 cfg->i2c_address);
1400 printk(KERN_INFO
1401 "xc5000: Firmware has been loaded previously\n");
Steven Toth27c685a2008-01-05 16:50:14 -03001402 break;
1403 case XC_PRODUCT_ID_FW_NOT_LOADED:
1404 printk(KERN_INFO
1405 "xc5000: Successfully identified at address 0x%02x\n",
1406 cfg->i2c_address);
1407 printk(KERN_INFO
1408 "xc5000: Firmware has not been loaded previously\n");
Steven Toth27c685a2008-01-05 16:50:14 -03001409 break;
1410 default:
Steven Tothaacb9d32007-12-18 01:55:51 -03001411 printk(KERN_ERR
1412 "xc5000: Device not found at addr 0x%02x (0x%x)\n",
1413 cfg->i2c_address, id);
Michael Krufky89fd2852008-09-06 11:44:53 -03001414 goto fail;
Steven Tothaacb9d32007-12-18 01:55:51 -03001415 }
1416
Michael Krufky89fd2852008-09-06 11:44:53 -03001417 mutex_unlock(&xc5000_list_mutex);
1418
Steven Tothaacb9d32007-12-18 01:55:51 -03001419 memcpy(&fe->ops.tuner_ops, &xc5000_tuner_ops,
1420 sizeof(struct dvb_tuner_ops));
1421
Steven Tothaacb9d32007-12-18 01:55:51 -03001422 return fe;
Michael Krufky89fd2852008-09-06 11:44:53 -03001423fail:
1424 mutex_unlock(&xc5000_list_mutex);
1425
1426 xc5000_release(fe);
1427 return NULL;
Steven Tothaacb9d32007-12-18 01:55:51 -03001428}
1429EXPORT_SYMBOL(xc5000_attach);
1430
1431MODULE_AUTHOR("Steven Toth");
Steven Tothe12671cf2007-12-20 01:14:43 -03001432MODULE_DESCRIPTION("Xceive xc5000 silicon tuner driver");
Steven Tothaacb9d32007-12-18 01:55:51 -03001433MODULE_LICENSE("GPL");
Tim Gardner3422f2a62012-07-25 09:15:19 -03001434MODULE_FIRMWARE(XC5000A_FIRMWARE);
1435MODULE_FIRMWARE(XC5000C_FIRMWARE);