blob: 78695ed4549c42fd1cb3939e78a5c87b0d116404 [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
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300866static void xc5000_config_tv(struct dvb_frontend *fe,
867 struct analog_parameters *params)
Steven Toth27c685a2008-01-05 16:50:14 -0300868{
869 struct xc5000_priv *priv = fe->tuner_priv;
Steven Toth27c685a2008-01-05 16:50:14 -0300870
Steven Toth27c685a2008-01-05 16:50:14 -0300871 dprintk(1, "%s() frequency=%d (in units of 62.5khz)\n",
Harvey Harrison271ddbf2008-04-08 23:20:00 -0300872 __func__, params->frequency);
Steven Toth27c685a2008-01-05 16:50:14 -0300873
Mauro Carvalho Chehab1fab14e2009-03-03 14:35:41 -0300874 /* Fix me: it could be air. */
875 priv->rf_mode = params->mode;
876 if (params->mode > XC_RF_MODE_CABLE)
877 priv->rf_mode = XC_RF_MODE_CABLE;
Steven Toth27c685a2008-01-05 16:50:14 -0300878
879 /* params->frequency is in units of 62.5khz */
880 priv->freq_hz = params->frequency * 62500;
881
882 /* FIX ME: Some video standards may have several possible audio
883 standards. We simply default to one of them here.
884 */
Steven Toth8f3cd532008-10-16 20:29:38 -0300885 if (params->std & V4L2_STD_MN) {
Steven Toth27c685a2008-01-05 16:50:14 -0300886 /* default to BTSC audio standard */
887 priv->video_standard = MN_NTSC_PAL_BTSC;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300888 return;
Steven Toth27c685a2008-01-05 16:50:14 -0300889 }
890
Steven Toth8f3cd532008-10-16 20:29:38 -0300891 if (params->std & V4L2_STD_PAL_BG) {
Steven Toth27c685a2008-01-05 16:50:14 -0300892 /* default to NICAM audio standard */
893 priv->video_standard = BG_PAL_NICAM;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300894 return;
Steven Toth27c685a2008-01-05 16:50:14 -0300895 }
896
Steven Toth8f3cd532008-10-16 20:29:38 -0300897 if (params->std & V4L2_STD_PAL_I) {
Steven Toth27c685a2008-01-05 16:50:14 -0300898 /* default to NICAM audio standard */
899 priv->video_standard = I_PAL_NICAM;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300900 return;
Steven Toth27c685a2008-01-05 16:50:14 -0300901 }
902
Steven Toth8f3cd532008-10-16 20:29:38 -0300903 if (params->std & V4L2_STD_PAL_DK) {
Steven Toth27c685a2008-01-05 16:50:14 -0300904 /* default to NICAM audio standard */
905 priv->video_standard = DK_PAL_NICAM;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300906 return;
Steven Toth27c685a2008-01-05 16:50:14 -0300907 }
908
Steven Toth8f3cd532008-10-16 20:29:38 -0300909 if (params->std & V4L2_STD_SECAM_DK) {
Steven Toth27c685a2008-01-05 16:50:14 -0300910 /* default to A2 DK1 audio standard */
911 priv->video_standard = DK_SECAM_A2DK1;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300912 return;
Steven Toth27c685a2008-01-05 16:50:14 -0300913 }
914
Steven Toth8f3cd532008-10-16 20:29:38 -0300915 if (params->std & V4L2_STD_SECAM_L) {
Steven Toth27c685a2008-01-05 16:50:14 -0300916 priv->video_standard = L_SECAM_NICAM;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300917 return;
Steven Toth27c685a2008-01-05 16:50:14 -0300918 }
919
Steven Toth8f3cd532008-10-16 20:29:38 -0300920 if (params->std & V4L2_STD_SECAM_LC) {
Steven Toth27c685a2008-01-05 16:50:14 -0300921 priv->video_standard = LC_SECAM_NICAM;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300922 return;
Steven Toth27c685a2008-01-05 16:50:14 -0300923 }
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300924}
925
926static int xc5000_set_tv_freq(struct dvb_frontend *fe)
927{
928 struct xc5000_priv *priv = fe->tuner_priv;
929 u16 pll_lock_status;
930 int ret;
Steven Toth27c685a2008-01-05 16:50:14 -0300931
932tune_channel:
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300933 ret = xc_set_signal_source(priv, priv->rf_mode);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300934 if (ret != 0) {
Steven Toth8f3cd532008-10-16 20:29:38 -0300935 printk(KERN_ERR
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300936 "xc5000: xc_set_signal_source(%d) failed\n",
Steven Toth27c685a2008-01-05 16:50:14 -0300937 priv->rf_mode);
938 return -EREMOTEIO;
939 }
940
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300941 ret = xc_set_tv_standard(priv,
942 xc5000_standard[priv->video_standard].video_mode,
943 xc5000_standard[priv->video_standard].audio_mode, 0);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300944 if (ret != 0) {
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -0300945 printk(KERN_ERR "xc5000: xc_set_tv_standard failed\n");
Steven Toth27c685a2008-01-05 16:50:14 -0300946 return -EREMOTEIO;
947 }
948
Dmitri Belimov724dcbf2011-02-01 05:25:19 -0300949 xc_write_reg(priv, XREG_OUTPUT_AMP, 0x09);
950
Devin Heitmuellera78baac2008-11-16 20:48:31 -0300951 xc_tune_channel(priv, priv->freq_hz, XC_TUNE_ANALOG);
Steven Toth27c685a2008-01-05 16:50:14 -0300952
953 if (debug)
954 xc_debug_dump(priv);
955
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300956 if (priv->pll_register_no != 0) {
957 msleep(20);
958 xc5000_readreg(priv, priv->pll_register_no, &pll_lock_status);
959 if (pll_lock_status > 63) {
960 /* PLL is unlocked, force reload of the firmware */
961 dprintk(1, "xc5000: PLL not locked (0x%x). Reloading...\n",
962 pll_lock_status);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -0300963 if (xc_load_fw_and_init_tuner(fe, 1) != 0) {
Devin Heitmuellerde49bc62012-08-06 22:47:08 -0300964 printk(KERN_ERR "xc5000: Unable to reload fw\n");
965 return -EREMOTEIO;
966 }
967 goto tune_channel;
968 }
969 }
970
Steven Toth27c685a2008-01-05 16:50:14 -0300971 return 0;
972}
973
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300974static int xc5000_config_radio(struct dvb_frontend *fe,
975 struct analog_parameters *params)
976
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -0300977{
978 struct xc5000_priv *priv = fe->tuner_priv;
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -0300979
980 dprintk(1, "%s() frequency=%d (in units of khz)\n",
981 __func__, params->frequency);
982
Devin Heitmueller496e9052009-09-24 13:27:24 -0300983 if (priv->radio_input == XC5000_RADIO_NOT_CONFIGURED) {
984 dprintk(1, "%s() radio input not configured\n", __func__);
985 return -EINVAL;
986 }
987
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -0300988 priv->freq_hz = params->frequency * 125 / 2;
989 priv->rf_mode = XC_RF_MODE_AIR;
990
991 return 0;
992}
993
994static int xc5000_set_radio_freq(struct dvb_frontend *fe)
995{
996 struct xc5000_priv *priv = fe->tuner_priv;
997 int ret;
998 u8 radio_input;
999
Devin Heitmueller496e9052009-09-24 13:27:24 -03001000 if (priv->radio_input == XC5000_RADIO_FM1)
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001001 radio_input = FM_RADIO_INPUT1;
Devin Heitmueller496e9052009-09-24 13:27:24 -03001002 else if (priv->radio_input == XC5000_RADIO_FM2)
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001003 radio_input = FM_RADIO_INPUT2;
Dmitri Belimov724dcbf2011-02-01 05:25:19 -03001004 else if (priv->radio_input == XC5000_RADIO_FM1_MONO)
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001005 radio_input = FM_RADIO_INPUT1_MONO;
Devin Heitmueller496e9052009-09-24 13:27:24 -03001006 else {
1007 dprintk(1, "%s() unknown radio input %d\n", __func__,
1008 priv->radio_input);
1009 return -EINVAL;
1010 }
1011
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001012 ret = xc_set_tv_standard(priv, xc5000_standard[radio_input].video_mode,
1013 xc5000_standard[radio_input].audio_mode, radio_input);
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001014
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001015 if (ret != 0) {
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001016 printk(KERN_ERR "xc5000: xc_set_tv_standard failed\n");
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001017 return -EREMOTEIO;
1018 }
1019
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001020 ret = xc_set_signal_source(priv, priv->rf_mode);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001021 if (ret != 0) {
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001022 printk(KERN_ERR
Mauro Carvalho Chehab303ddd92014-05-21 13:23:27 -03001023 "xc5000: xc_set_signal_source(%d) failed\n",
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001024 priv->rf_mode);
1025 return -EREMOTEIO;
1026 }
1027
Dmitri Belimov724dcbf2011-02-01 05:25:19 -03001028 if ((priv->radio_input == XC5000_RADIO_FM1) ||
1029 (priv->radio_input == XC5000_RADIO_FM2))
1030 xc_write_reg(priv, XREG_OUTPUT_AMP, 0x09);
1031 else if (priv->radio_input == XC5000_RADIO_FM1_MONO)
1032 xc_write_reg(priv, XREG_OUTPUT_AMP, 0x06);
1033
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001034 xc_tune_channel(priv, priv->freq_hz, XC_TUNE_ANALOG);
1035
1036 return 0;
1037}
1038
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -03001039static int xc5000_apply_params(struct dvb_frontend *fe)
1040{
1041 struct xc5000_priv *priv = fe->tuner_priv;
1042
1043 switch (priv->mode) {
1044 case V4L2_TUNER_RADIO:
1045 return xc5000_set_radio_freq(fe);
1046 case V4L2_TUNER_ANALOG_TV:
1047 return xc5000_set_tv_freq(fe);
1048 case V4L2_TUNER_DIGITAL_TV:
1049 return xc5000_tune_digital(fe);
1050 }
1051
1052 return 0;
1053}
1054
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001055static int xc5000_set_analog_params(struct dvb_frontend *fe,
1056 struct analog_parameters *params)
1057{
1058 struct xc5000_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -03001059 int ret;
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001060
1061 if (priv->i2c_props.adap == NULL)
1062 return -EINVAL;
1063
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001064 if (xc_load_fw_and_init_tuner(fe, 0) != 0) {
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001065 dprintk(1, "Unable to load firmware and init tuner\n");
1066 return -EINVAL;
Devin Heitmueller760c4662009-10-13 23:44:14 -03001067 }
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001068
1069 switch (params->mode) {
1070 case V4L2_TUNER_RADIO:
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -03001071 ret = xc5000_config_radio(fe, params);
1072 if (ret)
1073 return ret;
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001074 break;
1075 case V4L2_TUNER_ANALOG_TV:
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -03001076 xc5000_config_tv(fe, params);
1077 break;
1078 default:
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001079 break;
1080 }
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -03001081 priv->mode = params->mode;
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001082
Mauro Carvalho Chehabc3d66762014-08-09 21:47:22 -03001083 return xc5000_apply_params(fe);
Beholder Intl. Ltd. Dmitry Belimovd7009cd2009-09-24 13:13:28 -03001084}
1085
Steven Tothaacb9d32007-12-18 01:55:51 -03001086static int xc5000_get_frequency(struct dvb_frontend *fe, u32 *freq)
1087{
1088 struct xc5000_priv *priv = fe->tuner_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001089 dprintk(1, "%s()\n", __func__);
Mauro Carvalho Chehaba3eec912014-07-21 14:21:18 -03001090 *freq = priv->freq_hz + priv->freq_offset;
Steven Tothaacb9d32007-12-18 01:55:51 -03001091 return 0;
1092}
1093
Mauro Carvalho Chehab35621032011-09-23 13:03:42 -03001094static int xc5000_get_if_frequency(struct dvb_frontend *fe, u32 *freq)
1095{
1096 struct xc5000_priv *priv = fe->tuner_priv;
1097 dprintk(1, "%s()\n", __func__);
1098 *freq = priv->if_khz * 1000;
1099 return 0;
1100}
1101
Steven Tothaacb9d32007-12-18 01:55:51 -03001102static int xc5000_get_bandwidth(struct dvb_frontend *fe, u32 *bw)
1103{
1104 struct xc5000_priv *priv = fe->tuner_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001105 dprintk(1, "%s()\n", __func__);
Steven Toth27c685a2008-01-05 16:50:14 -03001106
Steven Tothaacb9d32007-12-18 01:55:51 -03001107 *bw = priv->bandwidth;
1108 return 0;
1109}
1110
1111static int xc5000_get_status(struct dvb_frontend *fe, u32 *status)
1112{
1113 struct xc5000_priv *priv = fe->tuner_priv;
Steven Tothe12671cf2007-12-20 01:14:43 -03001114 u16 lock_status = 0;
Steven Tothaacb9d32007-12-18 01:55:51 -03001115
1116 xc_get_lock_status(priv, &lock_status);
1117
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001118 dprintk(1, "%s() lock_status = 0x%08x\n", __func__, lock_status);
Steven Tothaacb9d32007-12-18 01:55:51 -03001119
1120 *status = lock_status;
1121
1122 return 0;
1123}
1124
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001125static int xc_load_fw_and_init_tuner(struct dvb_frontend *fe, int force)
Steven Tothaacb9d32007-12-18 01:55:51 -03001126{
1127 struct xc5000_priv *priv = fe->tuner_priv;
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001128 const struct xc5000_fw_cfg *desired_fw = xc5000_assign_firmware(priv->chip_id);
1129 const struct firmware *fw;
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001130 int ret, i;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001131 u16 pll_lock_status;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001132 u16 fw_ck;
Steven Tothaacb9d32007-12-18 01:55:51 -03001133
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001134 cancel_delayed_work(&priv->timer_sleep);
1135
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001136 if (!force && xc5000_is_firmware_loaded(fe) == 0)
1137 return 0;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001138
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001139 ret = request_firmware(&fw, desired_fw->name,
1140 priv->i2c_props.adap->dev.parent);
1141 if (ret) {
1142 printk(KERN_ERR "xc5000: Upload failed. (file not found?)\n");
1143 return ret;
1144 }
1145
1146 dprintk(1, "firmware read %Zu bytes.\n", fw->size);
1147
1148 if (fw->size != desired_fw->size) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001149 printk(KERN_ERR "xc5000: Firmware file with incorrect size\n");
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001150 ret = -EINVAL;
1151 goto err;
1152 }
1153
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001154 /* Try up to 5 times to load firmware */
1155 for (i = 0; i < 5; i++) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001156 if (i)
1157 printk(KERN_CONT " - retrying to upload firmware.\n");
1158
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001159 ret = xc5000_fwupload(fe, desired_fw, fw);
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001160 if (ret != 0)
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001161 goto err;
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001162
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001163 msleep(20);
1164
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001165 if (priv->fw_checksum_supported) {
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001166 if (xc5000_readreg(priv, XREG_FW_CHECKSUM, &fw_ck)) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001167 printk(KERN_ERR
1168 "xc5000: FW checksum reading failed.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001169 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001170 }
1171
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001172 if (!fw_ck) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001173 printk(KERN_ERR
1174 "xc5000: FW checksum failed = 0x%04x.",
1175 fw_ck);
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001176 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001177 }
1178 }
1179
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001180 /* Start the tuner self-calibration process */
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001181 ret = xc_initialize(priv);
1182 if (ret) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001183 printk(KERN_ERR
1184 "xc5000: Can't request Self-callibration.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001185 continue;
1186 }
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001187
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001188 /* Wait for calibration to complete.
1189 * We could continue but XC5000 will clock stretch subsequent
1190 * I2C transactions until calibration is complete. This way we
1191 * don't have to rely on clock stretching working.
1192 */
Mauro Carvalho Chehabe5bf4a12014-05-21 13:15:17 -03001193 msleep(100);
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001194
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001195 if (priv->init_status_supported) {
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001196 if (xc5000_readreg(priv, XREG_INIT_STATUS, &fw_ck)) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001197 printk(KERN_ERR
1198 "xc5000: FW failed reading init status.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001199 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001200 }
1201
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001202 if (!fw_ck) {
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001203 printk(KERN_ERR
1204 "xc5000: FW init status failed = 0x%04x.",
1205 fw_ck);
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001206 continue;
Devin Heitmueller22d5c6f2012-08-06 22:47:09 -03001207 }
1208 }
1209
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001210 if (priv->pll_register_no) {
1211 xc5000_readreg(priv, priv->pll_register_no,
1212 &pll_lock_status);
1213 if (pll_lock_status > 63) {
1214 /* PLL is unlocked, force reload of the firmware */
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001215 printk(KERN_ERR
1216 "xc5000: PLL not running after fwload.");
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001217 continue;
Devin Heitmuellerde49bc62012-08-06 22:47:08 -03001218 }
1219 }
1220
Devin Heitmuellerfc7a74b2012-08-06 22:47:01 -03001221 /* Default to "CABLE" mode */
Mauro Carvalho Chehab2621c0b2014-07-30 10:36:32 -03001222 ret = xc_write_reg(priv, XREG_SIGNALSOURCE, XC_RF_MODE_CABLE);
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001223 if (!ret)
1224 break;
1225 printk(KERN_ERR "xc5000: can't set to cable mode.");
Steven Tothaacb9d32007-12-18 01:55:51 -03001226 }
1227
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001228err:
Mauro Carvalho Chehabee676742014-07-30 11:17:46 -03001229 if (!ret)
1230 printk(KERN_INFO "xc5000: Firmware %s loaded and running.\n",
1231 desired_fw->name);
1232 else
1233 printk(KERN_CONT " - too many retries. Giving up\n");
1234
Mauro Carvalho Chehab8604f352014-07-30 11:09:15 -03001235 release_firmware(fw);
Steven Tothaacb9d32007-12-18 01:55:51 -03001236 return ret;
1237}
1238
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001239static void xc5000_do_timer_sleep(struct work_struct *timer_sleep)
1240{
1241 struct xc5000_priv *priv =container_of(timer_sleep, struct xc5000_priv,
1242 timer_sleep.work);
1243 struct dvb_frontend *fe = priv->fe;
1244 int ret;
1245
1246 dprintk(1, "%s()\n", __func__);
1247
1248 /* According to Xceive technical support, the "powerdown" register
1249 was removed in newer versions of the firmware. The "supported"
1250 way to sleep the tuner is to pull the reset pin low for 10ms */
1251 ret = xc5000_tuner_reset(fe);
1252 if (ret != 0)
1253 printk(KERN_ERR
1254 "xc5000: %s() unable to shutdown tuner\n",
1255 __func__);
1256}
1257
Steven Tothe12671cf2007-12-20 01:14:43 -03001258static int xc5000_sleep(struct dvb_frontend *fe)
1259{
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001260 struct xc5000_priv *priv = fe->tuner_priv;
Steven Toth27c685a2008-01-05 16:50:14 -03001261
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001262 dprintk(1, "%s()\n", __func__);
Steven Tothe12671cf2007-12-20 01:14:43 -03001263
Devin Heitmuellerb6bd5eb2009-04-28 13:53:38 -03001264 /* Avoid firmware reload on slow devices */
1265 if (no_poweroff)
1266 return 0;
1267
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001268 schedule_delayed_work(&priv->timer_sleep,
1269 msecs_to_jiffies(XC5000_SLEEP_TIME));
1270
1271 return 0;
Steven Tothe12671cf2007-12-20 01:14:43 -03001272}
1273
Mauro Carvalho Chehab91a53072014-08-09 21:47:20 -03001274static int xc5000_suspend(struct dvb_frontend *fe)
1275{
1276 struct xc5000_priv *priv = fe->tuner_priv;
1277 int ret;
1278
1279 dprintk(1, "%s()\n", __func__);
1280
1281 cancel_delayed_work(&priv->timer_sleep);
1282
1283 ret = xc5000_tuner_reset(fe);
1284 if (ret != 0)
1285 printk(KERN_ERR
1286 "xc5000: %s() unable to shutdown tuner\n",
1287 __func__);
1288
1289 return 0;
1290}
1291
Steven Tothaacb9d32007-12-18 01:55:51 -03001292static int xc5000_init(struct dvb_frontend *fe)
1293{
1294 struct xc5000_priv *priv = fe->tuner_priv;
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001295 dprintk(1, "%s()\n", __func__);
Steven Tothaacb9d32007-12-18 01:55:51 -03001296
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001297 if (xc_load_fw_and_init_tuner(fe, 0) != 0) {
Steven Tothe12671cf2007-12-20 01:14:43 -03001298 printk(KERN_ERR "xc5000: Unable to initialise tuner\n");
1299 return -EREMOTEIO;
1300 }
1301
1302 if (debug)
1303 xc_debug_dump(priv);
Steven Tothaacb9d32007-12-18 01:55:51 -03001304
1305 return 0;
1306}
1307
1308static int xc5000_release(struct dvb_frontend *fe)
1309{
Michael Krufky89fd2852008-09-06 11:44:53 -03001310 struct xc5000_priv *priv = fe->tuner_priv;
1311
Harvey Harrison271ddbf2008-04-08 23:20:00 -03001312 dprintk(1, "%s()\n", __func__);
Michael Krufky89fd2852008-09-06 11:44:53 -03001313
1314 mutex_lock(&xc5000_list_mutex);
1315
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001316 if (priv) {
1317 cancel_delayed_work(&priv->timer_sleep);
Michael Krufky89fd2852008-09-06 11:44:53 -03001318 hybrid_tuner_release_state(priv);
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001319 }
Michael Krufky89fd2852008-09-06 11:44:53 -03001320
1321 mutex_unlock(&xc5000_list_mutex);
1322
Steven Tothaacb9d32007-12-18 01:55:51 -03001323 fe->tuner_priv = NULL;
Michael Krufky89fd2852008-09-06 11:44:53 -03001324
Steven Tothaacb9d32007-12-18 01:55:51 -03001325 return 0;
1326}
1327
Dmitri Belimov724dcbf2011-02-01 05:25:19 -03001328static int xc5000_set_config(struct dvb_frontend *fe, void *priv_cfg)
1329{
1330 struct xc5000_priv *priv = fe->tuner_priv;
1331 struct xc5000_config *p = priv_cfg;
1332
1333 dprintk(1, "%s()\n", __func__);
1334
1335 if (p->if_khz)
1336 priv->if_khz = p->if_khz;
1337
1338 if (p->radio_input)
1339 priv->radio_input = p->radio_input;
1340
1341 return 0;
1342}
1343
1344
Steven Tothaacb9d32007-12-18 01:55:51 -03001345static const struct dvb_tuner_ops xc5000_tuner_ops = {
1346 .info = {
1347 .name = "Xceive XC5000",
1348 .frequency_min = 1000000,
1349 .frequency_max = 1023000000,
1350 .frequency_step = 50000,
1351 },
1352
Steven Toth27c685a2008-01-05 16:50:14 -03001353 .release = xc5000_release,
1354 .init = xc5000_init,
1355 .sleep = xc5000_sleep,
Mauro Carvalho Chehab91a53072014-08-09 21:47:20 -03001356 .suspend = xc5000_suspend,
Steven Tothaacb9d32007-12-18 01:55:51 -03001357
Dmitri Belimov724dcbf2011-02-01 05:25:19 -03001358 .set_config = xc5000_set_config,
Steven Toth27c685a2008-01-05 16:50:14 -03001359 .set_params = xc5000_set_params,
1360 .set_analog_params = xc5000_set_analog_params,
1361 .get_frequency = xc5000_get_frequency,
Mauro Carvalho Chehab35621032011-09-23 13:03:42 -03001362 .get_if_frequency = xc5000_get_if_frequency,
Steven Toth27c685a2008-01-05 16:50:14 -03001363 .get_bandwidth = xc5000_get_bandwidth,
1364 .get_status = xc5000_get_status
Steven Tothaacb9d32007-12-18 01:55:51 -03001365};
1366
Michael Krufky48723542008-05-10 14:34:09 -03001367struct dvb_frontend *xc5000_attach(struct dvb_frontend *fe,
1368 struct i2c_adapter *i2c,
lawrence rust2e4e98e2010-08-25 09:50:20 -03001369 const struct xc5000_config *cfg)
Steven Tothaacb9d32007-12-18 01:55:51 -03001370{
1371 struct xc5000_priv *priv = NULL;
Michael Krufky89fd2852008-09-06 11:44:53 -03001372 int instance;
Steven Tothaacb9d32007-12-18 01:55:51 -03001373 u16 id = 0;
1374
Michael Krufky89fd2852008-09-06 11:44:53 -03001375 dprintk(1, "%s(%d-%04x)\n", __func__,
1376 i2c ? i2c_adapter_id(i2c) : -1,
1377 cfg ? cfg->i2c_address : -1);
Steven Tothaacb9d32007-12-18 01:55:51 -03001378
Michael Krufky89fd2852008-09-06 11:44:53 -03001379 mutex_lock(&xc5000_list_mutex);
Steven Tothaacb9d32007-12-18 01:55:51 -03001380
Michael Krufky89fd2852008-09-06 11:44:53 -03001381 instance = hybrid_tuner_request_state(struct xc5000_priv, priv,
1382 hybrid_tuner_instance_list,
1383 i2c, cfg->i2c_address, "xc5000");
1384 switch (instance) {
1385 case 0:
1386 goto fail;
Michael Krufky89fd2852008-09-06 11:44:53 -03001387 case 1:
1388 /* new tuner instance */
Mauro Carvalho Chehabc6f56e72011-12-26 20:02:28 -03001389 priv->bandwidth = 6000000;
Michael Krufky89fd2852008-09-06 11:44:53 -03001390 fe->tuner_priv = priv;
Mauro Carvalho Chehabf7a27ff2014-05-21 13:57:30 -03001391 priv->fe = fe;
1392 INIT_DELAYED_WORK(&priv->timer_sleep, xc5000_do_timer_sleep);
Michael Krufky89fd2852008-09-06 11:44:53 -03001393 break;
1394 default:
1395 /* existing tuner instance */
1396 fe->tuner_priv = priv;
1397 break;
1398 }
Steven Tothaacb9d32007-12-18 01:55:51 -03001399
Devin Heitmuellerea227862009-03-11 02:58:53 -03001400 if (priv->if_khz == 0) {
1401 /* If the IF hasn't been set yet, use the value provided by
1402 the caller (occurs in hybrid devices where the analog
1403 call to xc5000_attach occurs before the digital side) */
1404 priv->if_khz = cfg->if_khz;
1405 }
1406
Michael Krufky7d3d0d82012-04-16 14:59:32 -03001407 if (priv->xtal_khz == 0)
1408 priv->xtal_khz = cfg->xtal_khz;
1409
Devin Heitmueller496e9052009-09-24 13:27:24 -03001410 if (priv->radio_input == 0)
1411 priv->radio_input = cfg->radio_input;
1412
Michael Krufky6fab81d2012-02-08 14:57:39 -03001413 /* don't override chip id if it's already been set
Michael Krufky76efb0ba2012-02-06 19:40:32 -03001414 unless explicitly specified */
Michael Krufky6fab81d2012-02-08 14:57:39 -03001415 if ((priv->chip_id == 0) || (cfg->chip_id))
1416 /* use default chip id if none specified, set to 0 so
1417 it can be overridden if this is a hybrid driver */
1418 priv->chip_id = (cfg->chip_id) ? cfg->chip_id : 0;
Michael Krufky76efb0ba2012-02-06 19:40:32 -03001419
Steven Toth27c685a2008-01-05 16:50:14 -03001420 /* Check if firmware has been loaded. It is possible that another
1421 instance of the driver has loaded the firmware.
1422 */
Mauro Carvalho Chehab859ae7f2014-05-21 13:08:18 -03001423 if (xc5000_readreg(priv, XREG_PRODUCT_ID, &id) != 0)
Michael Krufky89fd2852008-09-06 11:44:53 -03001424 goto fail;
Steven Tothaacb9d32007-12-18 01:55:51 -03001425
Steven Toth8f3cd532008-10-16 20:29:38 -03001426 switch (id) {
Steven Toth27c685a2008-01-05 16:50:14 -03001427 case XC_PRODUCT_ID_FW_LOADED:
1428 printk(KERN_INFO
1429 "xc5000: Successfully identified at address 0x%02x\n",
1430 cfg->i2c_address);
1431 printk(KERN_INFO
1432 "xc5000: Firmware has been loaded previously\n");
Steven Toth27c685a2008-01-05 16:50:14 -03001433 break;
1434 case XC_PRODUCT_ID_FW_NOT_LOADED:
1435 printk(KERN_INFO
1436 "xc5000: Successfully identified at address 0x%02x\n",
1437 cfg->i2c_address);
1438 printk(KERN_INFO
1439 "xc5000: Firmware has not been loaded previously\n");
Steven Toth27c685a2008-01-05 16:50:14 -03001440 break;
1441 default:
Steven Tothaacb9d32007-12-18 01:55:51 -03001442 printk(KERN_ERR
1443 "xc5000: Device not found at addr 0x%02x (0x%x)\n",
1444 cfg->i2c_address, id);
Michael Krufky89fd2852008-09-06 11:44:53 -03001445 goto fail;
Steven Tothaacb9d32007-12-18 01:55:51 -03001446 }
1447
Michael Krufky89fd2852008-09-06 11:44:53 -03001448 mutex_unlock(&xc5000_list_mutex);
1449
Steven Tothaacb9d32007-12-18 01:55:51 -03001450 memcpy(&fe->ops.tuner_ops, &xc5000_tuner_ops,
1451 sizeof(struct dvb_tuner_ops));
1452
Steven Tothaacb9d32007-12-18 01:55:51 -03001453 return fe;
Michael Krufky89fd2852008-09-06 11:44:53 -03001454fail:
1455 mutex_unlock(&xc5000_list_mutex);
1456
1457 xc5000_release(fe);
1458 return NULL;
Steven Tothaacb9d32007-12-18 01:55:51 -03001459}
1460EXPORT_SYMBOL(xc5000_attach);
1461
1462MODULE_AUTHOR("Steven Toth");
Steven Tothe12671cf2007-12-20 01:14:43 -03001463MODULE_DESCRIPTION("Xceive xc5000 silicon tuner driver");
Steven Tothaacb9d32007-12-18 01:55:51 -03001464MODULE_LICENSE("GPL");
Tim Gardner3422f2a62012-07-25 09:15:19 -03001465MODULE_FIRMWARE(XC5000A_FIRMWARE);
1466MODULE_FIRMWARE(XC5000C_FIRMWARE);