blob: ab4106c17b4cf8f8987ac0743c2a2117486e50a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -08002
3 i2c tv tuner chip device driver
4 controls the philips tda8290+75 tuner chip combo.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Michael Krufky910bb3e2007-08-27 21:22:20 -030019
20 This "tda8290" module was split apart from the original "tuner" module.
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080021*/
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
Hans Verkuil7f6adea2009-02-19 17:31:17 -030026#include <linux/videodev2.h>
Michael Krufkyab166052007-12-09 02:26:48 -030027#include "tuner-i2c.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030028#include "tda8290.h"
Michael Krufky746d97322007-08-25 19:08:45 -030029#include "tda827x.h"
Michael Krufky5bea1cd2007-10-22 09:56:38 -030030#include "tda18271.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030031
Michael Krufkyab166052007-12-09 02:26:48 -030032static int debug;
33module_param(debug, int, 0644);
Michael Krufky910bb3e2007-08-27 21:22:20 -030034MODULE_PARM_DESC(debug, "enable verbose debug messages");
35
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -030036static int deemphasis_50;
Henk Vergonetb450b922009-09-27 18:19:58 -030037module_param(deemphasis_50, int, 0644);
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -030038MODULE_PARM_DESC(deemphasis_50, "0 - 75us deemphasis; 1 - 50us deemphasis");
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* ---------------------------------------------------------------------- */
41
Michael Krufkyb2083192007-05-29 22:54:06 -030042struct tda8290_priv {
Michael Krufkydb8a6952007-08-21 01:24:42 -030043 struct tuner_i2c_props i2c_props;
44
Michael Krufkyb2083192007-05-29 22:54:06 -030045 unsigned char tda8290_easy_mode;
Michael Krufky746d97322007-08-25 19:08:45 -030046
Michael Krufkyb2083192007-05-29 22:54:06 -030047 unsigned char tda827x_addr;
Michael Krufky8c125f2c2007-10-27 02:00:57 -030048
49 unsigned char ver;
50#define TDA8290 1
51#define TDA8295 2
52#define TDA8275 4
53#define TDA8275A 8
54#define TDA18271 16
Michael Krufky910bb3e2007-08-27 21:22:20 -030055
Michael Krufky746d97322007-08-25 19:08:45 -030056 struct tda827x_config cfg;
Ondrej Zary5b0e5352013-02-03 22:48:56 -030057 struct tda18271_std_map *tda18271_std_map;
Michael Krufkyb2083192007-05-29 22:54:06 -030058};
59
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080060/*---------------------------------------------------------------------*/
61
Michael Krufkya72dd302007-10-24 09:30:17 -030062static int tda8290_i2c_bridge(struct dvb_frontend *fe, int close)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080063{
Michael Krufky4e9154b2007-10-21 19:39:50 -030064 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -030065
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080066 unsigned char enable[2] = { 0x21, 0xC0 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -020067 unsigned char disable[2] = { 0x21, 0x00 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080068 unsigned char *msg;
Michael Krufkya72dd302007-10-24 09:30:17 -030069
70 if (close) {
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080071 msg = enable;
Michael Krufkydb8a6952007-08-21 01:24:42 -030072 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080073 /* let the bridge stabilize */
74 msleep(20);
75 } else {
76 msg = disable;
Michael Krufkydb8a6952007-08-21 01:24:42 -030077 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080078 }
Michael Krufkya72dd302007-10-24 09:30:17 -030079
80 return 0;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080081}
82
Michael Krufkya72dd302007-10-24 09:30:17 -030083static int tda8295_i2c_bridge(struct dvb_frontend *fe, int close)
Michael Krufky5bea1cd2007-10-22 09:56:38 -030084{
Michael Krufky4e9154b2007-10-21 19:39:50 -030085 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -030086
87 unsigned char enable[2] = { 0x45, 0xc1 };
88 unsigned char disable[2] = { 0x46, 0x00 };
89 unsigned char buf[3] = { 0x45, 0x01, 0x00 };
90 unsigned char *msg;
Michael Krufkya72dd302007-10-24 09:30:17 -030091
Michael Krufky5bea1cd2007-10-22 09:56:38 -030092 if (close) {
93 msg = enable;
94 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
95 /* let the bridge stabilize */
96 msleep(20);
97 } else {
98 msg = disable;
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -030099 tuner_i2c_xfer_send_recv(&priv->i2c_props, msg, 1, &msg[1], 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300100
101 buf[2] = msg[1];
102 buf[2] &= ~0x04;
103 tuner_i2c_xfer_send(&priv->i2c_props, buf, 3);
104 msleep(5);
105
106 msg[1] |= 0x04;
107 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
108 }
Michael Krufkya72dd302007-10-24 09:30:17 -0300109
110 return 0;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300111}
112
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800113/*---------------------------------------------------------------------*/
114
Michael Krufkyc7919d52007-12-08 17:06:30 -0300115static void set_audio(struct dvb_frontend *fe,
116 struct analog_parameters *params)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800117{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300118 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300119 char* mode;
120
Michael Krufkyc7919d52007-12-08 17:06:30 -0300121 if (params->std & V4L2_STD_MN) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300122 priv->tda8290_easy_mode = 0x01;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300123 mode = "MN";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300124 } else if (params->std & V4L2_STD_B) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300125 priv->tda8290_easy_mode = 0x02;
126 mode = "B";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300127 } else if (params->std & V4L2_STD_GH) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300128 priv->tda8290_easy_mode = 0x04;
129 mode = "GH";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300130 } else if (params->std & V4L2_STD_PAL_I) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300131 priv->tda8290_easy_mode = 0x08;
132 mode = "I";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300133 } else if (params->std & V4L2_STD_DK) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300134 priv->tda8290_easy_mode = 0x10;
135 mode = "DK";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300136 } else if (params->std & V4L2_STD_SECAM_L) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300137 priv->tda8290_easy_mode = 0x20;
138 mode = "L";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300139 } else if (params->std & V4L2_STD_SECAM_LC) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300140 priv->tda8290_easy_mode = 0x40;
141 mode = "LC";
142 } else {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300143 priv->tda8290_easy_mode = 0x10;
144 mode = "xx";
145 }
146
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300147 if (params->mode == V4L2_TUNER_RADIO) {
Michael Krufky3f76cf82010-01-10 18:13:33 -0300148 /* Set TDA8295 to FM radio; Start TDA8290 with MN values */
149 priv->tda8290_easy_mode = (priv->ver & TDA8295) ? 0x80 : 0x01;
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300150 tuner_dbg("setting to radio FM\n");
151 } else {
152 tuner_dbg("setting tda829x to system %s\n", mode);
153 }
Michael Krufky910bb3e2007-08-27 21:22:20 -0300154}
155
Mauro Carvalho Chehab4c27f1a2009-01-05 01:23:50 -0300156static struct {
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300157 unsigned char seq[2];
158} fm_mode[] = {
159 { { 0x01, 0x81} }, /* Put device into expert mode */
160 { { 0x03, 0x48} }, /* Disable NOTCH and VIDEO filters */
161 { { 0x04, 0x04} }, /* Disable color carrier filter (SSIF) */
162 { { 0x05, 0x04} }, /* ADC headroom */
163 { { 0x06, 0x10} }, /* group delay flat */
164
165 { { 0x07, 0x00} }, /* use the same radio DTO values as a tda8295 */
166 { { 0x08, 0x00} },
167 { { 0x09, 0x80} },
168 { { 0x0a, 0xda} },
169 { { 0x0b, 0x4b} },
170 { { 0x0c, 0x68} },
171
172 { { 0x0d, 0x00} }, /* PLL off, no video carrier detect */
173 { { 0x14, 0x00} }, /* disable auto mute if no video */
174};
175
Michael Krufkyc7919d52007-12-08 17:06:30 -0300176static void tda8290_set_params(struct dvb_frontend *fe,
177 struct analog_parameters *params)
Michael Krufky910bb3e2007-08-27 21:22:20 -0300178{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300179 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300180
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800181 unsigned char soft_reset[] = { 0x00, 0x00 };
Michael Krufkyb2083192007-05-29 22:54:06 -0300182 unsigned char easy_mode[] = { 0x01, priv->tda8290_easy_mode };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800183 unsigned char expert_mode[] = { 0x01, 0x80 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -0200184 unsigned char agc_out_on[] = { 0x02, 0x00 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800185 unsigned char gainset_off[] = { 0x28, 0x14 };
186 unsigned char if_agc_spd[] = { 0x0f, 0x88 };
187 unsigned char adc_head_6[] = { 0x05, 0x04 };
188 unsigned char adc_head_9[] = { 0x05, 0x02 };
189 unsigned char adc_head_12[] = { 0x05, 0x01 };
190 unsigned char pll_bw_nom[] = { 0x0d, 0x47 };
191 unsigned char pll_bw_low[] = { 0x0d, 0x27 };
192 unsigned char gainset_2[] = { 0x28, 0x64 };
193 unsigned char agc_rst_on[] = { 0x0e, 0x0b };
194 unsigned char agc_rst_off[] = { 0x0e, 0x09 };
195 unsigned char if_agc_set[] = { 0x0f, 0x81 };
196 unsigned char addr_adc_sat = 0x1a;
197 unsigned char addr_agc_stat = 0x1d;
198 unsigned char addr_pll_stat = 0x1b;
199 unsigned char adc_sat, agc_stat,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800200 pll_stat;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300201 int i;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800202
Michael Krufkyc7919d52007-12-08 17:06:30 -0300203 set_audio(fe, params);
Michael Krufky746d97322007-08-25 19:08:45 -0300204
Michael Krufkyab166052007-12-09 02:26:48 -0300205 if (priv->cfg.config)
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300206 tuner_dbg("tda827xa config is 0x%02x\n", priv->cfg.config);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300207 tuner_i2c_xfer_send(&priv->i2c_props, easy_mode, 2);
208 tuner_i2c_xfer_send(&priv->i2c_props, agc_out_on, 2);
209 tuner_i2c_xfer_send(&priv->i2c_props, soft_reset, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800210 msleep(1);
211
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300212 if (params->mode == V4L2_TUNER_RADIO) {
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300213 unsigned char deemphasis[] = { 0x13, 1 };
214
215 /* FIXME: allow using a different deemphasis */
216
217 if (deemphasis_50)
218 deemphasis[1] = 2;
219
220 for (i = 0; i < ARRAY_SIZE(fm_mode); i++)
221 tuner_i2c_xfer_send(&priv->i2c_props, fm_mode[i].seq, 2);
222
223 tuner_i2c_xfer_send(&priv->i2c_props, deemphasis, 2);
224 } else {
225 expert_mode[1] = priv->tda8290_easy_mode + 0x80;
226 tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);
227 tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);
228 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);
229 if (priv->tda8290_easy_mode & 0x60)
230 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
231 else
232 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
233 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
234 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800235
Mauro Carvalho Chehabecb71d22011-01-14 12:03:03 -0300236
Ondrej Zary2f719f72013-02-03 22:47:38 -0300237 if (fe->ops.analog_ops.i2c_gate_ctrl)
238 fe->ops.analog_ops.i2c_gate_ctrl(fe, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300239
Michael Krufky4e9154b2007-10-21 19:39:50 -0300240 if (fe->ops.tuner_ops.set_analog_params)
Michael Krufkyc7919d52007-12-08 17:06:30 -0300241 fe->ops.tuner_ops.set_analog_params(fe, params);
Michael Krufky746d97322007-08-25 19:08:45 -0300242
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300243 for (i = 0; i < 3; i++) {
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300244 tuner_i2c_xfer_send_recv(&priv->i2c_props,
245 &addr_pll_stat, 1, &pll_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300246 if (pll_stat & 0x80) {
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300247 tuner_i2c_xfer_send_recv(&priv->i2c_props,
248 &addr_adc_sat, 1,
249 &adc_sat, 1);
250 tuner_i2c_xfer_send_recv(&priv->i2c_props,
251 &addr_agc_stat, 1,
252 &agc_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300253 tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
254 break;
255 } else {
256 tuner_dbg("tda8290 not locked, no signal?\n");
257 msleep(100);
258 }
259 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800260 /* adjust headroom resp. gain */
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800261 if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {
262 tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
263 agc_stat, adc_sat, pll_stat & 0x80);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300264 tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800265 msleep(100);
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300266 tuner_i2c_xfer_send_recv(&priv->i2c_props,
267 &addr_agc_stat, 1, &agc_stat, 1);
268 tuner_i2c_xfer_send_recv(&priv->i2c_props,
269 &addr_pll_stat, 1, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800270 if ((agc_stat > 115) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800271 tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
272 agc_stat, pll_stat & 0x80);
Michael Krufky746d97322007-08-25 19:08:45 -0300273 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300274 priv->cfg.agcf(fe);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800275 msleep(100);
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300276 tuner_i2c_xfer_send_recv(&priv->i2c_props,
277 &addr_agc_stat, 1,
278 &agc_stat, 1);
279 tuner_i2c_xfer_send_recv(&priv->i2c_props,
280 &addr_pll_stat, 1,
281 &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800282 if((agc_stat > 115) || !(pll_stat & 0x80)) {
283 tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300284 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
285 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800286 msleep(100);
287 }
288 }
289 }
290
291 /* l/ l' deadlock? */
Michael Krufkyb2083192007-05-29 22:54:06 -0300292 if(priv->tda8290_easy_mode & 0x60) {
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300293 tuner_i2c_xfer_send_recv(&priv->i2c_props,
294 &addr_adc_sat, 1,
295 &adc_sat, 1);
296 tuner_i2c_xfer_send_recv(&priv->i2c_props,
297 &addr_pll_stat, 1,
298 &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800299 if ((adc_sat > 20) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800300 tuner_dbg("trying to resolve SECAM L deadlock\n");
Michael Krufkydb8a6952007-08-21 01:24:42 -0300301 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800302 msleep(40);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300303 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800304 }
305 }
306
Ondrej Zary2f719f72013-02-03 22:47:38 -0300307 if (fe->ops.analog_ops.i2c_gate_ctrl)
308 fe->ops.analog_ops.i2c_gate_ctrl(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300309 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800310}
311
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800312/*---------------------------------------------------------------------*/
313
Michael Krufky4e9154b2007-10-21 19:39:50 -0300314static void tda8295_power(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300315{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300316 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300317 unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */
318
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300319 tuner_i2c_xfer_send_recv(&priv->i2c_props, &buf[0], 1, &buf[1], 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300320
321 if (enable)
322 buf[1] = 0x01;
323 else
324 buf[1] = 0x03;
325
326 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
327}
328
Michael Krufky4e9154b2007-10-21 19:39:50 -0300329static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300330{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300331 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300332 unsigned char buf[] = { 0x01, 0x00 };
333
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300334 tuner_i2c_xfer_send_recv(&priv->i2c_props, &buf[0], 1, &buf[1], 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300335
336 if (enable)
337 buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
338 else
339 buf[1] = 0x00; /* reset active bit */
340
341 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
342}
343
Michael Krufky4e9154b2007-10-21 19:39:50 -0300344static void tda8295_set_video_std(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300345{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300346 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300347 unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };
348
349 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
350
Michael Krufky4e9154b2007-10-21 19:39:50 -0300351 tda8295_set_easy_mode(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300352 msleep(20);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300353 tda8295_set_easy_mode(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300354}
355
356/*---------------------------------------------------------------------*/
357
Michael Krufky4e9154b2007-10-21 19:39:50 -0300358static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300359{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300360 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300361 unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */
362
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300363 tuner_i2c_xfer_send_recv(&priv->i2c_props, &buf[0], 1, &buf[1], 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300364
365 if (enable)
366 buf[1] &= ~0x40;
367 else
368 buf[1] |= 0x40;
369
370 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
371}
372
Michael Krufky4e9154b2007-10-21 19:39:50 -0300373static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300374{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300375 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300376 unsigned char set_gpio_cf[] = { 0x44, 0x00 };
377 unsigned char set_gpio_val[] = { 0x46, 0x00 };
378
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300379 tuner_i2c_xfer_send_recv(&priv->i2c_props,
380 &set_gpio_cf[0], 1, &set_gpio_cf[1], 1);
381 tuner_i2c_xfer_send_recv(&priv->i2c_props,
382 &set_gpio_val[0], 1, &set_gpio_val[1], 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300383
384 set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
385
386 if (enable) {
387 set_gpio_cf[1] |= 0x01; /* config GPIO_0 as Open Drain Out */
388 set_gpio_val[1] &= 0xfe; /* set GPIO_0 pin low */
389 }
390 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
391 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
392}
393
Hans Verkuildfc2e122013-04-06 04:41:29 -0300394static int tda8295_has_signal(struct dvb_frontend *fe, u16 *signal)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300395{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300396 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300397
398 unsigned char hvpll_stat = 0x26;
399 unsigned char ret;
400
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300401 tuner_i2c_xfer_send_recv(&priv->i2c_props, &hvpll_stat, 1, &ret, 1);
Hans Verkuildfc2e122013-04-06 04:41:29 -0300402 *signal = (ret & 0x01) ? 65535 : 0;
403 return 0;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300404}
405
406/*---------------------------------------------------------------------*/
407
Michael Krufkyc7919d52007-12-08 17:06:30 -0300408static void tda8295_set_params(struct dvb_frontend *fe,
409 struct analog_parameters *params)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300410{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300411 struct tda8290_priv *priv = fe->analog_demod_priv;
Hans Verkuildfc2e122013-04-06 04:41:29 -0300412 u16 signal = 0;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300413 unsigned char blanking_mode[] = { 0x1d, 0x00 };
414
Michael Krufkyc7919d52007-12-08 17:06:30 -0300415 set_audio(fe, params);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300416
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300417 tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300418
Michael Krufky4e9154b2007-10-21 19:39:50 -0300419 tda8295_power(fe, 1);
420 tda8295_agc1_out(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300421
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300422 tuner_i2c_xfer_send_recv(&priv->i2c_props,
423 &blanking_mode[0], 1, &blanking_mode[1], 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300424
Michael Krufky4e9154b2007-10-21 19:39:50 -0300425 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300426
427 blanking_mode[1] = 0x03;
428 tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
429 msleep(20);
430
Ondrej Zary2f719f72013-02-03 22:47:38 -0300431 if (fe->ops.analog_ops.i2c_gate_ctrl)
432 fe->ops.analog_ops.i2c_gate_ctrl(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300433
Michael Krufky4e9154b2007-10-21 19:39:50 -0300434 if (fe->ops.tuner_ops.set_analog_params)
Michael Krufkyc7919d52007-12-08 17:06:30 -0300435 fe->ops.tuner_ops.set_analog_params(fe, params);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300436
437 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300438 priv->cfg.agcf(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300439
Hans Verkuildfc2e122013-04-06 04:41:29 -0300440 tda8295_has_signal(fe, &signal);
441 if (signal)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300442 tuner_dbg("tda8295 is locked\n");
443 else
444 tuner_dbg("tda8295 not locked, no signal?\n");
445
Ondrej Zary2f719f72013-02-03 22:47:38 -0300446 if (fe->ops.analog_ops.i2c_gate_ctrl)
447 fe->ops.analog_ops.i2c_gate_ctrl(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300448}
449
450/*---------------------------------------------------------------------*/
451
Hans Verkuildfc2e122013-04-06 04:41:29 -0300452static int tda8290_has_signal(struct dvb_frontend *fe, u16 *signal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300454 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 unsigned char i2c_get_afc[1] = { 0x1B };
457 unsigned char afc = 0;
458
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300459 tuner_i2c_xfer_send_recv(&priv->i2c_props,
460 i2c_get_afc, ARRAY_SIZE(i2c_get_afc), &afc, 1);
Hans Verkuildfc2e122013-04-06 04:41:29 -0300461 *signal = (afc & 0x80) ? 65535 : 0;
462 return 0;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300463}
464
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800465/*---------------------------------------------------------------------*/
466
Michael Krufky4e9154b2007-10-21 19:39:50 -0300467static void tda8290_standby(struct dvb_frontend *fe)
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700468{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300469 struct tda8290_priv *priv = fe->analog_demod_priv;
470
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800471 unsigned char cb1[] = { 0x30, 0xD0 };
472 unsigned char tda8290_standby[] = { 0x00, 0x02 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -0200473 unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
Michael Krufkyb2083192007-05-29 22:54:06 -0300474 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800475
Ondrej Zary2f719f72013-02-03 22:47:38 -0300476 if (fe->ops.analog_ops.i2c_gate_ctrl)
477 fe->ops.analog_ops.i2c_gate_ctrl(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300478 if (priv->ver & TDA8275A)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800479 cb1[1] = 0x90;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300480 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Ondrej Zary2f719f72013-02-03 22:47:38 -0300481 if (fe->ops.analog_ops.i2c_gate_ctrl)
482 fe->ops.analog_ops.i2c_gate_ctrl(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300483 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
484 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700485}
486
Michael Krufky4e9154b2007-10-21 19:39:50 -0300487static void tda8295_standby(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300488{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300489 tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300490
Michael Krufky4e9154b2007-10-21 19:39:50 -0300491 tda8295_power(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300492}
493
Michael Krufky4e9154b2007-10-21 19:39:50 -0300494static void tda8290_init_if(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800495{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300496 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300497
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800498 unsigned char set_VS[] = { 0x30, 0x6F };
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300499 unsigned char set_GP00_CF[] = { 0x20, 0x01 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800500 unsigned char set_GP01_CF[] = { 0x20, 0x0B };
501
Ondrej Zary1bacb2d2013-04-06 14:29:29 -0300502 if ((priv->cfg.config == TDA8290_LNA_GP0_HIGH_ON) ||
503 (priv->cfg.config == TDA8290_LNA_GP0_HIGH_OFF))
Michael Krufkydb8a6952007-08-21 01:24:42 -0300504 tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300505 else
Michael Krufkydb8a6952007-08-21 01:24:42 -0300506 tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
507 tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800508}
509
Michael Krufky4e9154b2007-10-21 19:39:50 -0300510static void tda8295_init_if(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300511{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300512 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300513
514 static unsigned char set_adc_ctl[] = { 0x33, 0x14 };
515 static unsigned char set_adc_ctl2[] = { 0x34, 0x00 };
516 static unsigned char set_pll_reg6[] = { 0x3e, 0x63 };
517 static unsigned char set_pll_reg0[] = { 0x38, 0x23 };
518 static unsigned char set_pll_reg7[] = { 0x3f, 0x01 };
519 static unsigned char set_pll_reg10[] = { 0x42, 0x61 };
520 static unsigned char set_gpio_reg0[] = { 0x44, 0x0b };
521
Michael Krufky4e9154b2007-10-21 19:39:50 -0300522 tda8295_power(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300523
Michael Krufky4e9154b2007-10-21 19:39:50 -0300524 tda8295_set_easy_mode(fe, 0);
525 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300526
527 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl, 2);
528 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl2, 2);
529 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg6, 2);
530 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg0, 2);
531 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg7, 2);
532 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg10, 2);
533 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_reg0, 2);
534
Michael Krufky4e9154b2007-10-21 19:39:50 -0300535 tda8295_agc1_out(fe, 0);
536 tda8295_agc2_out(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300537}
538
Michael Krufky4e9154b2007-10-21 19:39:50 -0300539static void tda8290_init_tuner(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800540{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300541 struct tda8290_priv *priv = fe->analog_demod_priv;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800542 unsigned char tda8275_init[] = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800543 0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800544 unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800545 0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
Michael Krufkyb2083192007-05-29 22:54:06 -0300546 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
Ricardo Cerqueirac2f6f9d2005-11-08 21:37:51 -0800547 .buf=tda8275_init, .len = 14};
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300548 if (priv->ver & TDA8275A)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800549 msg.buf = tda8275a_init;
550
Ondrej Zary2f719f72013-02-03 22:47:38 -0300551 if (fe->ops.analog_ops.i2c_gate_ctrl)
552 fe->ops.analog_ops.i2c_gate_ctrl(fe, 1);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300553 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Ondrej Zary2f719f72013-02-03 22:47:38 -0300554 if (fe->ops.analog_ops.i2c_gate_ctrl)
555 fe->ops.analog_ops.i2c_gate_ctrl(fe, 0);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800556}
557
558/*---------------------------------------------------------------------*/
559
Michael Krufky4e9154b2007-10-21 19:39:50 -0300560static void tda829x_release(struct dvb_frontend *fe)
Michael Krufky024cf532007-06-04 15:20:11 -0300561{
Michael Krufkya4f263b2008-01-06 15:52:56 -0300562 struct tda8290_priv *priv = fe->analog_demod_priv;
563
Michael Krufky006ed1e2008-01-09 10:44:27 -0300564 /* only try to release the tuner if we've
565 * attached it from within this module */
566 if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
Michael Krufkya4f263b2008-01-06 15:52:56 -0300567 if (fe->ops.tuner_ops.release)
568 fe->ops.tuner_ops.release(fe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300569
Michael Krufky4e9154b2007-10-21 19:39:50 -0300570 kfree(fe->analog_demod_priv);
571 fe->analog_demod_priv = NULL;
Michael Krufky024cf532007-06-04 15:20:11 -0300572}
573
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300574static struct tda18271_config tda829x_tda18271_config = {
575 .gate = TDA18271_GATE_ANALOG,
576};
577
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300578static int tda829x_find_tuner(struct dvb_frontend *fe)
579{
580 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300581 int i, ret, tuners_found;
582 u32 tuner_addrs;
583 u8 data;
584 struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
585
Ondrej Zary2f719f72013-02-03 22:47:38 -0300586 if (fe->ops.analog_ops.i2c_gate_ctrl)
587 fe->ops.analog_ops.i2c_gate_ctrl(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300588
589 /* probe for tuner chip */
590 tuners_found = 0;
591 tuner_addrs = 0;
592 for (i = 0x60; i <= 0x63; i++) {
593 msg.addr = i;
594 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
595 if (ret == 1) {
596 tuners_found++;
597 tuner_addrs = (tuner_addrs << 8) + i;
598 }
599 }
600 /* if there is more than one tuner, we expect the right one is
601 behind the bridge and we choose the highest address that doesn't
602 give a response now
603 */
604
Ondrej Zary2f719f72013-02-03 22:47:38 -0300605 if (fe->ops.analog_ops.i2c_gate_ctrl)
606 fe->ops.analog_ops.i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300607
608 if (tuners_found > 1)
609 for (i = 0; i < tuners_found; i++) {
610 msg.addr = tuner_addrs & 0xff;
611 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
612 if (ret == 1)
613 tuner_addrs = tuner_addrs >> 8;
614 else
615 break;
616 }
617
618 if (tuner_addrs == 0) {
619 tuner_addrs = 0x60;
620 tuner_info("could not clearly identify tuner address, "
621 "defaulting to %x\n", tuner_addrs);
622 } else {
623 tuner_addrs = tuner_addrs & 0xff;
624 tuner_info("setting tuner address to %x\n", tuner_addrs);
625 }
626 priv->tda827x_addr = tuner_addrs;
627 msg.addr = tuner_addrs;
628
Ondrej Zary2f719f72013-02-03 22:47:38 -0300629 if (fe->ops.analog_ops.i2c_gate_ctrl)
630 fe->ops.analog_ops.i2c_gate_ctrl(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300631 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
632
633 if (ret != 1) {
634 tuner_warn("tuner access failed!\n");
Ondrej Zary2f719f72013-02-03 22:47:38 -0300635 if (fe->ops.analog_ops.i2c_gate_ctrl)
636 fe->ops.analog_ops.i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300637 return -EREMOTEIO;
638 }
639
Michael Krufky255b5112008-01-01 22:52:09 -0300640 if ((data == 0x83) || (data == 0x84)) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300641 priv->ver |= TDA18271;
Michael Krufkyadcc4b32009-03-04 19:42:06 -0300642 tda829x_tda18271_config.config = priv->cfg.config;
Ondrej Zary5b0e5352013-02-03 22:48:56 -0300643 tda829x_tda18271_config.std_map = priv->tda18271_std_map;
Michael Krufkya07c8772008-04-29 03:54:19 -0300644 dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
645 priv->i2c_props.adap, &tda829x_tda18271_config);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300646 } else {
647 if ((data & 0x3c) == 0)
648 priv->ver |= TDA8275;
649 else
650 priv->ver |= TDA8275A;
651
Michael Krufkya07c8772008-04-29 03:54:19 -0300652 dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
653 priv->i2c_props.adap, &priv->cfg);
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300654 priv->cfg.switch_addr = priv->i2c_props.addr;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300655 }
Michael Krufky68816472007-12-08 16:25:41 -0300656 if (fe->ops.tuner_ops.init)
657 fe->ops.tuner_ops.init(fe);
Michael Krufky63c25482007-11-23 15:08:11 -0300658
Michael Krufky68816472007-12-08 16:25:41 -0300659 if (fe->ops.tuner_ops.sleep)
660 fe->ops.tuner_ops.sleep(fe);
Michael Krufky63c25482007-11-23 15:08:11 -0300661
Ondrej Zary2f719f72013-02-03 22:47:38 -0300662 if (fe->ops.analog_ops.i2c_gate_ctrl)
663 fe->ops.analog_ops.i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300664
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300665 return 0;
666}
667
Michael Krufkyf1f32842007-11-03 22:14:54 -0300668static int tda8290_probe(struct tuner_i2c_props *i2c_props)
669{
670#define TDA8290_ID 0x89
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300671 u8 reg = 0x1f, id;
672 struct i2c_msg msg_read[] = {
Jarod Wilson89a89692011-03-01 12:38:48 -0300673 { .addr = i2c_props->addr, .flags = 0, .len = 1, .buf = &reg },
674 { .addr = i2c_props->addr, .flags = I2C_M_RD, .len = 1, .buf = &id },
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300675 };
Michael Krufkyf1f32842007-11-03 22:14:54 -0300676
677 /* detect tda8290 */
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300678 if (i2c_transfer(i2c_props->adap, msg_read, 2) != 2) {
Jarod Wilson89a89692011-03-01 12:38:48 -0300679 printk(KERN_WARNING "%s: couldn't read register 0x%02x\n",
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300680 __func__, reg);
681 return -ENODEV;
682 }
Michael Krufkyf1f32842007-11-03 22:14:54 -0300683
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300684 if (id == TDA8290_ID) {
Michael Krufkyab166052007-12-09 02:26:48 -0300685 if (debug)
Michael Krufkyf1f32842007-11-03 22:14:54 -0300686 printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300687 __func__, i2c_adapter_id(i2c_props->adap),
Michael Krufkyf1f32842007-11-03 22:14:54 -0300688 i2c_props->addr);
689 return 0;
690 }
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300691 return -ENODEV;
Michael Krufkyf1f32842007-11-03 22:14:54 -0300692}
693
694static int tda8295_probe(struct tuner_i2c_props *i2c_props)
695{
696#define TDA8295_ID 0x8a
Michael Krufky19f8a6c2009-12-31 04:32:29 -0300697#define TDA8295C2_ID 0x8b
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300698 u8 reg = 0x2f, id;
699 struct i2c_msg msg_read[] = {
Jarod Wilson89a89692011-03-01 12:38:48 -0300700 { .addr = i2c_props->addr, .flags = 0, .len = 1, .buf = &reg },
701 { .addr = i2c_props->addr, .flags = I2C_M_RD, .len = 1, .buf = &id },
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300702 };
Michael Krufkyf1f32842007-11-03 22:14:54 -0300703
Jarod Wilson89a89692011-03-01 12:38:48 -0300704 /* detect tda8295 */
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300705 if (i2c_transfer(i2c_props->adap, msg_read, 2) != 2) {
Jarod Wilson89a89692011-03-01 12:38:48 -0300706 printk(KERN_WARNING "%s: couldn't read register 0x%02x\n",
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300707 __func__, reg);
708 return -ENODEV;
709 }
Michael Krufkyf1f32842007-11-03 22:14:54 -0300710
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300711 if ((id & 0xfe) == TDA8295_ID) {
Michael Krufkyab166052007-12-09 02:26:48 -0300712 if (debug)
Michael Krufky19f8a6c2009-12-31 04:32:29 -0300713 printk(KERN_DEBUG "%s: %s detected @ %d-%04x\n",
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300714 __func__, (id == TDA8295_ID) ?
Michael Krufky19f8a6c2009-12-31 04:32:29 -0300715 "tda8295c1" : "tda8295c2",
716 i2c_adapter_id(i2c_props->adap),
Michael Krufkyf1f32842007-11-03 22:14:54 -0300717 i2c_props->addr);
718 return 0;
719 }
720
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300721 return -ENODEV;
Michael Krufkyf1f32842007-11-03 22:14:54 -0300722}
723
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300724static struct analog_demod_ops tda8290_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300725 .set_params = tda8290_set_params,
Michael Krufky746d97322007-08-25 19:08:45 -0300726 .has_signal = tda8290_has_signal,
727 .standby = tda8290_standby,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300728 .release = tda829x_release,
Michael Krufkya72dd302007-10-24 09:30:17 -0300729 .i2c_gate_ctrl = tda8290_i2c_bridge,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300730};
731
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300732static struct analog_demod_ops tda8295_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300733 .set_params = tda8295_set_params,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300734 .has_signal = tda8295_has_signal,
735 .standby = tda8295_standby,
736 .release = tda829x_release,
Michael Krufkya72dd302007-10-24 09:30:17 -0300737 .i2c_gate_ctrl = tda8295_i2c_bridge,
Michael Krufky7fd8b262007-06-06 16:15:15 -0300738};
739
Michael Krufkyab166052007-12-09 02:26:48 -0300740struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
741 struct i2c_adapter *i2c_adap, u8 i2c_addr,
742 struct tda829x_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Michael Krufkyb2083192007-05-29 22:54:06 -0300744 struct tda8290_priv *priv = NULL;
Michael Krufkyab166052007-12-09 02:26:48 -0300745 char *name;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300746
Michael Krufkyb2083192007-05-29 22:54:06 -0300747 priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
748 if (priv == NULL)
Michael Krufkyab166052007-12-09 02:26:48 -0300749 return NULL;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300750 fe->analog_demod_priv = priv;
Michael Krufkyb2083192007-05-29 22:54:06 -0300751
Michael Krufkyab166052007-12-09 02:26:48 -0300752 priv->i2c_props.addr = i2c_addr;
753 priv->i2c_props.adap = i2c_adap;
Michael Krufky27566652008-04-22 14:41:53 -0300754 priv->i2c_props.name = "tda829x";
Ondrej Zary5b0e5352013-02-03 22:48:56 -0300755 if (cfg) {
756 priv->cfg.config = cfg->lna_cfg;
757 priv->tda18271_std_map = cfg->tda18271_std_map;
758 }
Michael Krufkydb8a6952007-08-21 01:24:42 -0300759
Michael Krufkyf1f32842007-11-03 22:14:54 -0300760 if (tda8290_probe(&priv->i2c_props) == 0) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300761 priv->ver = TDA8290;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300762 memcpy(&fe->ops.analog_ops, &tda8290_ops,
763 sizeof(struct analog_demod_ops));
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800764 }
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300765
Michael Krufkyf1f32842007-11-03 22:14:54 -0300766 if (tda8295_probe(&priv->i2c_props) == 0) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300767 priv->ver = TDA8295;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300768 memcpy(&fe->ops.analog_ops, &tda8295_ops,
769 sizeof(struct analog_demod_ops));
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800770 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800771
Ondrej Zary2f719f72013-02-03 22:47:38 -0300772 if (cfg && cfg->no_i2c_gate)
773 fe->ops.analog_ops.i2c_gate_ctrl = NULL;
774
Mauro Carvalho Chehab9d700a02011-01-13 14:01:39 -0300775 if (!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) {
776 tda8295_power(fe, 1);
777 if (tda829x_find_tuner(fe) < 0)
778 goto fail;
Mauro Carvalho Chehab47ab2852011-01-13 12:02:00 -0300779 }
Michael Krufky746d97322007-08-25 19:08:45 -0300780
Michael Krufkyab166052007-12-09 02:26:48 -0300781 switch (priv->ver) {
Michael Krufkyc9076272007-12-24 04:36:14 -0300782 case TDA8290:
783 name = "tda8290";
784 break;
785 case TDA8295:
786 name = "tda8295";
787 break;
Michael Krufkyab166052007-12-09 02:26:48 -0300788 case TDA8290 | TDA8275:
789 name = "tda8290+75";
790 break;
791 case TDA8295 | TDA8275:
792 name = "tda8295+75";
793 break;
794 case TDA8290 | TDA8275A:
795 name = "tda8290+75a";
796 break;
797 case TDA8295 | TDA8275A:
798 name = "tda8295+75a";
799 break;
800 case TDA8290 | TDA18271:
801 name = "tda8290+18271";
802 break;
803 case TDA8295 | TDA18271:
804 name = "tda8295+18271";
805 break;
806 default:
807 goto fail;
808 }
809 tuner_info("type set to %s\n", name);
810
Michael Krufky0f2ce982008-01-21 10:55:37 -0300811 fe->ops.analog_ops.info.name = name;
812
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300813 if (priv->ver & TDA8290) {
Michael Krufky439b72b2009-01-05 18:25:04 -0300814 if (priv->ver & (TDA8275 | TDA8275A))
815 tda8290_init_tuner(fe);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300816 tda8290_init_if(fe);
817 } else if (priv->ver & TDA8295)
818 tda8295_init_if(fe);
Michael Krufky746d97322007-08-25 19:08:45 -0300819
Michael Krufkyab166052007-12-09 02:26:48 -0300820 return fe;
Michael Krufkyfa746aee2007-12-09 05:16:10 -0300821
822fail:
Mauro Carvalho Chehab9d700a02011-01-13 14:01:39 -0300823 memset(&fe->ops.analog_ops, 0, sizeof(struct analog_demod_ops));
824
Michael Krufkyfa746aee2007-12-09 05:16:10 -0300825 tda829x_release(fe);
Michael Krufkyab166052007-12-09 02:26:48 -0300826 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300828EXPORT_SYMBOL_GPL(tda829x_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Michael Krufkyab166052007-12-09 02:26:48 -0300830int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
Hartmut Hackmann95736032005-11-08 21:38:00 -0800831{
Michael Krufky910bb3e2007-08-27 21:22:20 -0300832 struct tuner_i2c_props i2c_props = {
Michael Krufkyab166052007-12-09 02:26:48 -0300833 .adap = i2c_adap,
834 .addr = i2c_addr,
Michael Krufky910bb3e2007-08-27 21:22:20 -0300835 };
Michael Krufkydb8a6952007-08-21 01:24:42 -0300836
Hartmut Hackmann44fd06f2006-02-27 00:09:11 -0300837 unsigned char soft_reset[] = { 0x00, 0x00 };
838 unsigned char easy_mode_b[] = { 0x01, 0x02 };
839 unsigned char easy_mode_g[] = { 0x01, 0x04 };
840 unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };
Hartmut Hackmann95736032005-11-08 21:38:00 -0800841 unsigned char addr_dto_lsb = 0x07;
842 unsigned char data;
Michael Krufkya818e1c2007-11-04 11:03:22 -0300843#define PROBE_BUFFER_SIZE 8
844 unsigned char buf[PROBE_BUFFER_SIZE];
845 int i;
846
847 /* rule out tda9887, which would return the same byte repeatedly */
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300848 tuner_i2c_xfer_send_recv(&i2c_props,
849 soft_reset, 1, buf, PROBE_BUFFER_SIZE);
Michael Krufkya818e1c2007-11-04 11:03:22 -0300850 for (i = 1; i < PROBE_BUFFER_SIZE; i++) {
Michael Krufkybbe1e0b2007-11-05 09:54:42 -0300851 if (buf[i] != buf[0])
852 break;
Michael Krufkya818e1c2007-11-04 11:03:22 -0300853 }
854
855 /* all bytes are equal, not a tda829x - probably a tda9887 */
856 if (i == PROBE_BUFFER_SIZE)
857 return -ENODEV;
Hartmut Hackmann95736032005-11-08 21:38:00 -0800858
Michael Krufkyf1f32842007-11-03 22:14:54 -0300859 if ((tda8290_probe(&i2c_props) == 0) ||
860 (tda8295_probe(&i2c_props) == 0))
861 return 0;
862
863 /* fall back to old probing method */
Michael Krufky910bb3e2007-08-27 21:22:20 -0300864 tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);
865 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300866 tuner_i2c_xfer_send_recv(&i2c_props, &addr_dto_lsb, 1, &data, 1);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800867 if (data == 0) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300868 tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 2);
869 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
Mauro Carvalho Chehab567aba02011-01-13 11:58:36 -0300870 tuner_i2c_xfer_send_recv(&i2c_props,
871 &addr_dto_lsb, 1, &data, 1);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800872 if (data == 0x7b) {
873 return 0;
874 }
875 }
Michael Krufky910bb3e2007-08-27 21:22:20 -0300876 tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300877 return -ENODEV;
Hartmut Hackmann95736032005-11-08 21:38:00 -0800878}
Michael Krufkyf1f32842007-11-03 22:14:54 -0300879EXPORT_SYMBOL_GPL(tda829x_probe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300880
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300881MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300882MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
Michael Krufky910bb3e2007-08-27 21:22:20 -0300883MODULE_LICENSE("GPL");
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885/*
886 * Overrides for Emacs so that we follow Linus's tabbing style.
887 * ---------------------------------------------------------------------------
888 * Local variables:
889 * c-basic-offset: 8
890 * End:
891 */