blob: 064d14c8d7b294fbf218b34d0477455868a3fc13 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/delay.h>
Hans Verkuil7f6adea2009-02-19 17:31:17 -030025#include <linux/videodev2.h>
Michael Krufkyab166052007-12-09 02:26:48 -030026#include "tuner-i2c.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030027#include "tda8290.h"
Michael Krufky746d97322007-08-25 19:08:45 -030028#include "tda827x.h"
Michael Krufky5bea1cd2007-10-22 09:56:38 -030029#include "tda18271.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030030
Michael Krufkyab166052007-12-09 02:26:48 -030031static int debug;
32module_param(debug, int, 0644);
Michael Krufky910bb3e2007-08-27 21:22:20 -030033MODULE_PARM_DESC(debug, "enable verbose debug messages");
34
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -030035static int deemphasis_50;
36MODULE_PARM_DESC(deemphasis_50, "0 - 75us deemphasis; 1 - 50us deemphasis");
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/* ---------------------------------------------------------------------- */
39
Michael Krufkyb2083192007-05-29 22:54:06 -030040struct tda8290_priv {
Michael Krufkydb8a6952007-08-21 01:24:42 -030041 struct tuner_i2c_props i2c_props;
42
Michael Krufkyb2083192007-05-29 22:54:06 -030043 unsigned char tda8290_easy_mode;
Michael Krufky746d97322007-08-25 19:08:45 -030044
Michael Krufkyb2083192007-05-29 22:54:06 -030045 unsigned char tda827x_addr;
Michael Krufky8c125f2c2007-10-27 02:00:57 -030046
47 unsigned char ver;
48#define TDA8290 1
49#define TDA8295 2
50#define TDA8275 4
51#define TDA8275A 8
52#define TDA18271 16
Michael Krufky910bb3e2007-08-27 21:22:20 -030053
Michael Krufky746d97322007-08-25 19:08:45 -030054 struct tda827x_config cfg;
Michael Krufkyb2083192007-05-29 22:54:06 -030055};
56
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080057/*---------------------------------------------------------------------*/
58
Michael Krufkya72dd302007-10-24 09:30:17 -030059static int tda8290_i2c_bridge(struct dvb_frontend *fe, int close)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080060{
Michael Krufky4e9154b2007-10-21 19:39:50 -030061 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -030062
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080063 unsigned char enable[2] = { 0x21, 0xC0 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -020064 unsigned char disable[2] = { 0x21, 0x00 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080065 unsigned char *msg;
Michael Krufkya72dd302007-10-24 09:30:17 -030066
67 if (close) {
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080068 msg = enable;
Michael Krufkydb8a6952007-08-21 01:24:42 -030069 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080070 /* let the bridge stabilize */
71 msleep(20);
72 } else {
73 msg = disable;
Michael Krufkydb8a6952007-08-21 01:24:42 -030074 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080075 }
Michael Krufkya72dd302007-10-24 09:30:17 -030076
77 return 0;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080078}
79
Michael Krufkya72dd302007-10-24 09:30:17 -030080static int tda8295_i2c_bridge(struct dvb_frontend *fe, int close)
Michael Krufky5bea1cd2007-10-22 09:56:38 -030081{
Michael Krufky4e9154b2007-10-21 19:39:50 -030082 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -030083
84 unsigned char enable[2] = { 0x45, 0xc1 };
85 unsigned char disable[2] = { 0x46, 0x00 };
86 unsigned char buf[3] = { 0x45, 0x01, 0x00 };
87 unsigned char *msg;
Michael Krufkya72dd302007-10-24 09:30:17 -030088
Michael Krufky5bea1cd2007-10-22 09:56:38 -030089 if (close) {
90 msg = enable;
91 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
92 /* let the bridge stabilize */
93 msleep(20);
94 } else {
95 msg = disable;
96 tuner_i2c_xfer_send(&priv->i2c_props, msg, 1);
97 tuner_i2c_xfer_recv(&priv->i2c_props, &msg[1], 1);
98
99 buf[2] = msg[1];
100 buf[2] &= ~0x04;
101 tuner_i2c_xfer_send(&priv->i2c_props, buf, 3);
102 msleep(5);
103
104 msg[1] |= 0x04;
105 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
106 }
Michael Krufkya72dd302007-10-24 09:30:17 -0300107
108 return 0;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300109}
110
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800111/*---------------------------------------------------------------------*/
112
Michael Krufkyc7919d52007-12-08 17:06:30 -0300113static void set_audio(struct dvb_frontend *fe,
114 struct analog_parameters *params)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800115{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300116 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300117 char* mode;
118
Michael Krufkyc7919d52007-12-08 17:06:30 -0300119 if (params->std & V4L2_STD_MN) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300120 priv->tda8290_easy_mode = 0x01;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300121 mode = "MN";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300122 } else if (params->std & V4L2_STD_B) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300123 priv->tda8290_easy_mode = 0x02;
124 mode = "B";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300125 } else if (params->std & V4L2_STD_GH) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300126 priv->tda8290_easy_mode = 0x04;
127 mode = "GH";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300128 } else if (params->std & V4L2_STD_PAL_I) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300129 priv->tda8290_easy_mode = 0x08;
130 mode = "I";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300131 } else if (params->std & V4L2_STD_DK) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300132 priv->tda8290_easy_mode = 0x10;
133 mode = "DK";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300134 } else if (params->std & V4L2_STD_SECAM_L) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300135 priv->tda8290_easy_mode = 0x20;
136 mode = "L";
Michael Krufkyc7919d52007-12-08 17:06:30 -0300137 } else if (params->std & V4L2_STD_SECAM_LC) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300138 priv->tda8290_easy_mode = 0x40;
139 mode = "LC";
140 } else {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300141 priv->tda8290_easy_mode = 0x10;
142 mode = "xx";
143 }
144
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300145 if (params->mode == V4L2_TUNER_RADIO) {
146 priv->tda8290_easy_mode = 0x01; /* Start with MN values */
147 tuner_dbg("setting to radio FM\n");
148 } else {
149 tuner_dbg("setting tda829x to system %s\n", mode);
150 }
Michael Krufky910bb3e2007-08-27 21:22:20 -0300151}
152
Mauro Carvalho Chehab4c27f1a2009-01-05 01:23:50 -0300153static struct {
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300154 unsigned char seq[2];
155} fm_mode[] = {
156 { { 0x01, 0x81} }, /* Put device into expert mode */
157 { { 0x03, 0x48} }, /* Disable NOTCH and VIDEO filters */
158 { { 0x04, 0x04} }, /* Disable color carrier filter (SSIF) */
159 { { 0x05, 0x04} }, /* ADC headroom */
160 { { 0x06, 0x10} }, /* group delay flat */
161
162 { { 0x07, 0x00} }, /* use the same radio DTO values as a tda8295 */
163 { { 0x08, 0x00} },
164 { { 0x09, 0x80} },
165 { { 0x0a, 0xda} },
166 { { 0x0b, 0x4b} },
167 { { 0x0c, 0x68} },
168
169 { { 0x0d, 0x00} }, /* PLL off, no video carrier detect */
170 { { 0x14, 0x00} }, /* disable auto mute if no video */
171};
172
Michael Krufkyc7919d52007-12-08 17:06:30 -0300173static void tda8290_set_params(struct dvb_frontend *fe,
174 struct analog_parameters *params)
Michael Krufky910bb3e2007-08-27 21:22:20 -0300175{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300176 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300177
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800178 unsigned char soft_reset[] = { 0x00, 0x00 };
Michael Krufkyb2083192007-05-29 22:54:06 -0300179 unsigned char easy_mode[] = { 0x01, priv->tda8290_easy_mode };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800180 unsigned char expert_mode[] = { 0x01, 0x80 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -0200181 unsigned char agc_out_on[] = { 0x02, 0x00 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800182 unsigned char gainset_off[] = { 0x28, 0x14 };
183 unsigned char if_agc_spd[] = { 0x0f, 0x88 };
184 unsigned char adc_head_6[] = { 0x05, 0x04 };
185 unsigned char adc_head_9[] = { 0x05, 0x02 };
186 unsigned char adc_head_12[] = { 0x05, 0x01 };
187 unsigned char pll_bw_nom[] = { 0x0d, 0x47 };
188 unsigned char pll_bw_low[] = { 0x0d, 0x27 };
189 unsigned char gainset_2[] = { 0x28, 0x64 };
190 unsigned char agc_rst_on[] = { 0x0e, 0x0b };
191 unsigned char agc_rst_off[] = { 0x0e, 0x09 };
192 unsigned char if_agc_set[] = { 0x0f, 0x81 };
193 unsigned char addr_adc_sat = 0x1a;
194 unsigned char addr_agc_stat = 0x1d;
195 unsigned char addr_pll_stat = 0x1b;
196 unsigned char adc_sat, agc_stat,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800197 pll_stat;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300198 int i;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800199
Michael Krufkyc7919d52007-12-08 17:06:30 -0300200 set_audio(fe, params);
Michael Krufky746d97322007-08-25 19:08:45 -0300201
Michael Krufkyab166052007-12-09 02:26:48 -0300202 if (priv->cfg.config)
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300203 tuner_dbg("tda827xa config is 0x%02x\n", priv->cfg.config);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300204 tuner_i2c_xfer_send(&priv->i2c_props, easy_mode, 2);
205 tuner_i2c_xfer_send(&priv->i2c_props, agc_out_on, 2);
206 tuner_i2c_xfer_send(&priv->i2c_props, soft_reset, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800207 msleep(1);
208
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300209 if (params->mode == V4L2_TUNER_RADIO) {
Mauro Carvalho Chehab9af0ef22008-12-08 10:36:57 -0300210 unsigned char deemphasis[] = { 0x13, 1 };
211
212 /* FIXME: allow using a different deemphasis */
213
214 if (deemphasis_50)
215 deemphasis[1] = 2;
216
217 for (i = 0; i < ARRAY_SIZE(fm_mode); i++)
218 tuner_i2c_xfer_send(&priv->i2c_props, fm_mode[i].seq, 2);
219
220 tuner_i2c_xfer_send(&priv->i2c_props, deemphasis, 2);
221 } else {
222 expert_mode[1] = priv->tda8290_easy_mode + 0x80;
223 tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);
224 tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);
225 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);
226 if (priv->tda8290_easy_mode & 0x60)
227 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
228 else
229 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
230 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
231 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800232
Michael Krufky4e9154b2007-10-21 19:39:50 -0300233 tda8290_i2c_bridge(fe, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300234
Michael Krufky4e9154b2007-10-21 19:39:50 -0300235 if (fe->ops.tuner_ops.set_analog_params)
Michael Krufkyc7919d52007-12-08 17:06:30 -0300236 fe->ops.tuner_ops.set_analog_params(fe, params);
Michael Krufky746d97322007-08-25 19:08:45 -0300237
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300238 for (i = 0; i < 3; i++) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300239 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
240 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300241 if (pll_stat & 0x80) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300242 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
243 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
244 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
245 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300246 tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
247 break;
248 } else {
249 tuner_dbg("tda8290 not locked, no signal?\n");
250 msleep(100);
251 }
252 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800253 /* adjust headroom resp. gain */
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800254 if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {
255 tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
256 agc_stat, adc_sat, pll_stat & 0x80);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300257 tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800258 msleep(100);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300259 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
260 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
261 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
262 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800263 if ((agc_stat > 115) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800264 tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
265 agc_stat, pll_stat & 0x80);
Michael Krufky746d97322007-08-25 19:08:45 -0300266 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300267 priv->cfg.agcf(fe);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800268 msleep(100);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300269 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
270 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
271 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
272 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800273 if((agc_stat > 115) || !(pll_stat & 0x80)) {
274 tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300275 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
276 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800277 msleep(100);
278 }
279 }
280 }
281
282 /* l/ l' deadlock? */
Michael Krufkyb2083192007-05-29 22:54:06 -0300283 if(priv->tda8290_easy_mode & 0x60) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300284 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
285 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
286 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
287 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800288 if ((adc_sat > 20) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800289 tuner_dbg("trying to resolve SECAM L deadlock\n");
Michael Krufkydb8a6952007-08-21 01:24:42 -0300290 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800291 msleep(40);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300292 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800293 }
294 }
295
Michael Krufky4e9154b2007-10-21 19:39:50 -0300296 tda8290_i2c_bridge(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300297 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800298}
299
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800300/*---------------------------------------------------------------------*/
301
Michael Krufky4e9154b2007-10-21 19:39:50 -0300302static void tda8295_power(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300303{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300304 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300305 unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */
306
307 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
308 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
309
310 if (enable)
311 buf[1] = 0x01;
312 else
313 buf[1] = 0x03;
314
315 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
316}
317
Michael Krufky4e9154b2007-10-21 19:39:50 -0300318static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300319{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300320 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300321 unsigned char buf[] = { 0x01, 0x00 };
322
323 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
324 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
325
326 if (enable)
327 buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
328 else
329 buf[1] = 0x00; /* reset active bit */
330
331 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
332}
333
Michael Krufky4e9154b2007-10-21 19:39:50 -0300334static void tda8295_set_video_std(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300335{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300336 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300337 unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };
338
339 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
340
Michael Krufky4e9154b2007-10-21 19:39:50 -0300341 tda8295_set_easy_mode(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300342 msleep(20);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300343 tda8295_set_easy_mode(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300344}
345
346/*---------------------------------------------------------------------*/
347
Michael Krufky4e9154b2007-10-21 19:39:50 -0300348static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300349{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300350 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300351 unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */
352
353 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
354 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
355
356 if (enable)
357 buf[1] &= ~0x40;
358 else
359 buf[1] |= 0x40;
360
361 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
362}
363
Michael Krufky4e9154b2007-10-21 19:39:50 -0300364static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300365{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300366 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300367 unsigned char set_gpio_cf[] = { 0x44, 0x00 };
368 unsigned char set_gpio_val[] = { 0x46, 0x00 };
369
370 tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_cf[0], 1);
371 tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_cf[1], 1);
372 tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_val[0], 1);
373 tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_val[1], 1);
374
375 set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
376
377 if (enable) {
378 set_gpio_cf[1] |= 0x01; /* config GPIO_0 as Open Drain Out */
379 set_gpio_val[1] &= 0xfe; /* set GPIO_0 pin low */
380 }
381 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
382 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
383}
384
Michael Krufky4e9154b2007-10-21 19:39:50 -0300385static int tda8295_has_signal(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300386{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300387 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300388
389 unsigned char hvpll_stat = 0x26;
390 unsigned char ret;
391
392 tuner_i2c_xfer_send(&priv->i2c_props, &hvpll_stat, 1);
393 tuner_i2c_xfer_recv(&priv->i2c_props, &ret, 1);
394 return (ret & 0x01) ? 65535 : 0;
395}
396
397/*---------------------------------------------------------------------*/
398
Michael Krufkyc7919d52007-12-08 17:06:30 -0300399static void tda8295_set_params(struct dvb_frontend *fe,
400 struct analog_parameters *params)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300401{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300402 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300403
404 unsigned char blanking_mode[] = { 0x1d, 0x00 };
405
Michael Krufkyc7919d52007-12-08 17:06:30 -0300406 set_audio(fe, params);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300407
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300408 tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300409
Michael Krufky4e9154b2007-10-21 19:39:50 -0300410 tda8295_power(fe, 1);
411 tda8295_agc1_out(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300412
413 tuner_i2c_xfer_send(&priv->i2c_props, &blanking_mode[0], 1);
414 tuner_i2c_xfer_recv(&priv->i2c_props, &blanking_mode[1], 1);
415
Michael Krufky4e9154b2007-10-21 19:39:50 -0300416 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300417
418 blanking_mode[1] = 0x03;
419 tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
420 msleep(20);
421
Michael Krufky4e9154b2007-10-21 19:39:50 -0300422 tda8295_i2c_bridge(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300423
Michael Krufky4e9154b2007-10-21 19:39:50 -0300424 if (fe->ops.tuner_ops.set_analog_params)
Michael Krufkyc7919d52007-12-08 17:06:30 -0300425 fe->ops.tuner_ops.set_analog_params(fe, params);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300426
427 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300428 priv->cfg.agcf(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300429
Michael Krufky4e9154b2007-10-21 19:39:50 -0300430 if (tda8295_has_signal(fe))
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300431 tuner_dbg("tda8295 is locked\n");
432 else
433 tuner_dbg("tda8295 not locked, no signal?\n");
434
Michael Krufky4e9154b2007-10-21 19:39:50 -0300435 tda8295_i2c_bridge(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300436}
437
438/*---------------------------------------------------------------------*/
439
Michael Krufky4e9154b2007-10-21 19:39:50 -0300440static int tda8290_has_signal(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300442 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 unsigned char i2c_get_afc[1] = { 0x1B };
445 unsigned char afc = 0;
446
Michael Krufkydb8a6952007-08-21 01:24:42 -0300447 tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));
448 tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300449 return (afc & 0x80)? 65535:0;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300450}
451
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800452/*---------------------------------------------------------------------*/
453
Michael Krufky4e9154b2007-10-21 19:39:50 -0300454static void tda8290_standby(struct dvb_frontend *fe)
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700455{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300456 struct tda8290_priv *priv = fe->analog_demod_priv;
457
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800458 unsigned char cb1[] = { 0x30, 0xD0 };
459 unsigned char tda8290_standby[] = { 0x00, 0x02 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -0200460 unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
Michael Krufkyb2083192007-05-29 22:54:06 -0300461 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800462
Michael Krufky4e9154b2007-10-21 19:39:50 -0300463 tda8290_i2c_bridge(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300464 if (priv->ver & TDA8275A)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800465 cb1[1] = 0x90;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300466 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300467 tda8290_i2c_bridge(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300468 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
469 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700470}
471
Michael Krufky4e9154b2007-10-21 19:39:50 -0300472static void tda8295_standby(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300473{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300474 tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300475
Michael Krufky4e9154b2007-10-21 19:39:50 -0300476 tda8295_power(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300477}
478
Michael Krufky4e9154b2007-10-21 19:39:50 -0300479static void tda8290_init_if(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800480{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300481 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300482
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800483 unsigned char set_VS[] = { 0x30, 0x6F };
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300484 unsigned char set_GP00_CF[] = { 0x20, 0x01 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800485 unsigned char set_GP01_CF[] = { 0x20, 0x0B };
486
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300487 if ((priv->cfg.config == 1) || (priv->cfg.config == 2))
Michael Krufkydb8a6952007-08-21 01:24:42 -0300488 tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300489 else
Michael Krufkydb8a6952007-08-21 01:24:42 -0300490 tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
491 tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800492}
493
Michael Krufky4e9154b2007-10-21 19:39:50 -0300494static void tda8295_init_if(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300495{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300496 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300497
498 static unsigned char set_adc_ctl[] = { 0x33, 0x14 };
499 static unsigned char set_adc_ctl2[] = { 0x34, 0x00 };
500 static unsigned char set_pll_reg6[] = { 0x3e, 0x63 };
501 static unsigned char set_pll_reg0[] = { 0x38, 0x23 };
502 static unsigned char set_pll_reg7[] = { 0x3f, 0x01 };
503 static unsigned char set_pll_reg10[] = { 0x42, 0x61 };
504 static unsigned char set_gpio_reg0[] = { 0x44, 0x0b };
505
Michael Krufky4e9154b2007-10-21 19:39:50 -0300506 tda8295_power(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300507
Michael Krufky4e9154b2007-10-21 19:39:50 -0300508 tda8295_set_easy_mode(fe, 0);
509 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300510
511 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl, 2);
512 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl2, 2);
513 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg6, 2);
514 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg0, 2);
515 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg7, 2);
516 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg10, 2);
517 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_reg0, 2);
518
Michael Krufky4e9154b2007-10-21 19:39:50 -0300519 tda8295_agc1_out(fe, 0);
520 tda8295_agc2_out(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300521}
522
Michael Krufky4e9154b2007-10-21 19:39:50 -0300523static void tda8290_init_tuner(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800524{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300525 struct tda8290_priv *priv = fe->analog_demod_priv;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800526 unsigned char tda8275_init[] = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800527 0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800528 unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800529 0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
Michael Krufkyb2083192007-05-29 22:54:06 -0300530 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
Ricardo Cerqueirac2f6f9d2005-11-08 21:37:51 -0800531 .buf=tda8275_init, .len = 14};
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300532 if (priv->ver & TDA8275A)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800533 msg.buf = tda8275a_init;
534
Michael Krufky4e9154b2007-10-21 19:39:50 -0300535 tda8290_i2c_bridge(fe, 1);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300536 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300537 tda8290_i2c_bridge(fe, 0);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800538}
539
540/*---------------------------------------------------------------------*/
541
Michael Krufky4e9154b2007-10-21 19:39:50 -0300542static void tda829x_release(struct dvb_frontend *fe)
Michael Krufky024cf532007-06-04 15:20:11 -0300543{
Michael Krufkya4f263b2008-01-06 15:52:56 -0300544 struct tda8290_priv *priv = fe->analog_demod_priv;
545
Michael Krufky006ed1e2008-01-09 10:44:27 -0300546 /* only try to release the tuner if we've
547 * attached it from within this module */
548 if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
Michael Krufkya4f263b2008-01-06 15:52:56 -0300549 if (fe->ops.tuner_ops.release)
550 fe->ops.tuner_ops.release(fe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300551
Michael Krufky4e9154b2007-10-21 19:39:50 -0300552 kfree(fe->analog_demod_priv);
553 fe->analog_demod_priv = NULL;
Michael Krufky024cf532007-06-04 15:20:11 -0300554}
555
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300556static struct tda18271_config tda829x_tda18271_config = {
557 .gate = TDA18271_GATE_ANALOG,
558};
559
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300560static int tda829x_find_tuner(struct dvb_frontend *fe)
561{
562 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300563 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300564 int i, ret, tuners_found;
565 u32 tuner_addrs;
566 u8 data;
567 struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
568
Mauro Carvalho Chehab31063812009-02-08 08:42:29 -0300569 if (!analog_ops->i2c_gate_ctrl) {
570 printk(KERN_ERR "tda8290: no gate control were provided!\n");
571
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300572 return -EINVAL;
Mauro Carvalho Chehab31063812009-02-08 08:42:29 -0300573 }
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300574
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300575 analog_ops->i2c_gate_ctrl(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300576
577 /* probe for tuner chip */
578 tuners_found = 0;
579 tuner_addrs = 0;
580 for (i = 0x60; i <= 0x63; i++) {
581 msg.addr = i;
582 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
583 if (ret == 1) {
584 tuners_found++;
585 tuner_addrs = (tuner_addrs << 8) + i;
586 }
587 }
588 /* if there is more than one tuner, we expect the right one is
589 behind the bridge and we choose the highest address that doesn't
590 give a response now
591 */
592
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300593 analog_ops->i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300594
595 if (tuners_found > 1)
596 for (i = 0; i < tuners_found; i++) {
597 msg.addr = tuner_addrs & 0xff;
598 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
599 if (ret == 1)
600 tuner_addrs = tuner_addrs >> 8;
601 else
602 break;
603 }
604
605 if (tuner_addrs == 0) {
606 tuner_addrs = 0x60;
607 tuner_info("could not clearly identify tuner address, "
608 "defaulting to %x\n", tuner_addrs);
609 } else {
610 tuner_addrs = tuner_addrs & 0xff;
611 tuner_info("setting tuner address to %x\n", tuner_addrs);
612 }
613 priv->tda827x_addr = tuner_addrs;
614 msg.addr = tuner_addrs;
615
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300616 analog_ops->i2c_gate_ctrl(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300617 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
618
619 if (ret != 1) {
620 tuner_warn("tuner access failed!\n");
Mauro Carvalho Chehab31063812009-02-08 08:42:29 -0300621 analog_ops->i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300622 return -EREMOTEIO;
623 }
624
Michael Krufky255b5112008-01-01 22:52:09 -0300625 if ((data == 0x83) || (data == 0x84)) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300626 priv->ver |= TDA18271;
Michael Krufkyadcc4b32009-03-04 19:42:06 -0300627 tda829x_tda18271_config.config = priv->cfg.config;
Michael Krufkya07c8772008-04-29 03:54:19 -0300628 dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
629 priv->i2c_props.adap, &tda829x_tda18271_config);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300630 } else {
631 if ((data & 0x3c) == 0)
632 priv->ver |= TDA8275;
633 else
634 priv->ver |= TDA8275A;
635
Michael Krufkya07c8772008-04-29 03:54:19 -0300636 dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
637 priv->i2c_props.adap, &priv->cfg);
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300638 priv->cfg.switch_addr = priv->i2c_props.addr;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300639 }
Michael Krufky68816472007-12-08 16:25:41 -0300640 if (fe->ops.tuner_ops.init)
641 fe->ops.tuner_ops.init(fe);
Michael Krufky63c25482007-11-23 15:08:11 -0300642
Michael Krufky68816472007-12-08 16:25:41 -0300643 if (fe->ops.tuner_ops.sleep)
644 fe->ops.tuner_ops.sleep(fe);
Michael Krufky63c25482007-11-23 15:08:11 -0300645
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300646 analog_ops->i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300647
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300648 return 0;
649}
650
Michael Krufkyf1f32842007-11-03 22:14:54 -0300651static int tda8290_probe(struct tuner_i2c_props *i2c_props)
652{
653#define TDA8290_ID 0x89
654 unsigned char tda8290_id[] = { 0x1f, 0x00 };
655
656 /* detect tda8290 */
657 tuner_i2c_xfer_send(i2c_props, &tda8290_id[0], 1);
658 tuner_i2c_xfer_recv(i2c_props, &tda8290_id[1], 1);
659
660 if (tda8290_id[1] == TDA8290_ID) {
Michael Krufkyab166052007-12-09 02:26:48 -0300661 if (debug)
Michael Krufkyf1f32842007-11-03 22:14:54 -0300662 printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300663 __func__, i2c_adapter_id(i2c_props->adap),
Michael Krufkyf1f32842007-11-03 22:14:54 -0300664 i2c_props->addr);
665 return 0;
666 }
667
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300668 return -ENODEV;
Michael Krufkyf1f32842007-11-03 22:14:54 -0300669}
670
671static int tda8295_probe(struct tuner_i2c_props *i2c_props)
672{
673#define TDA8295_ID 0x8a
674 unsigned char tda8295_id[] = { 0x2f, 0x00 };
675
676 /* detect tda8295 */
677 tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1);
678 tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1);
679
680 if (tda8295_id[1] == TDA8295_ID) {
Michael Krufkyab166052007-12-09 02:26:48 -0300681 if (debug)
Michael Krufkyf1f32842007-11-03 22:14:54 -0300682 printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300683 __func__, i2c_adapter_id(i2c_props->adap),
Michael Krufkyf1f32842007-11-03 22:14:54 -0300684 i2c_props->addr);
685 return 0;
686 }
687
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300688 return -ENODEV;
Michael Krufkyf1f32842007-11-03 22:14:54 -0300689}
690
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300691static struct analog_demod_ops tda8290_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300692 .set_params = tda8290_set_params,
Michael Krufky746d97322007-08-25 19:08:45 -0300693 .has_signal = tda8290_has_signal,
694 .standby = tda8290_standby,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300695 .release = tda829x_release,
Michael Krufkya72dd302007-10-24 09:30:17 -0300696 .i2c_gate_ctrl = tda8290_i2c_bridge,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300697};
698
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300699static struct analog_demod_ops tda8295_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300700 .set_params = tda8295_set_params,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300701 .has_signal = tda8295_has_signal,
702 .standby = tda8295_standby,
703 .release = tda829x_release,
Michael Krufkya72dd302007-10-24 09:30:17 -0300704 .i2c_gate_ctrl = tda8295_i2c_bridge,
Michael Krufky7fd8b262007-06-06 16:15:15 -0300705};
706
Michael Krufkyab166052007-12-09 02:26:48 -0300707struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
708 struct i2c_adapter *i2c_adap, u8 i2c_addr,
709 struct tda829x_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Michael Krufkyb2083192007-05-29 22:54:06 -0300711 struct tda8290_priv *priv = NULL;
Michael Krufkyab166052007-12-09 02:26:48 -0300712 char *name;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300713
Michael Krufkyb2083192007-05-29 22:54:06 -0300714 priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
715 if (priv == NULL)
Michael Krufkyab166052007-12-09 02:26:48 -0300716 return NULL;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300717 fe->analog_demod_priv = priv;
Michael Krufkyb2083192007-05-29 22:54:06 -0300718
Michael Krufkyab166052007-12-09 02:26:48 -0300719 priv->i2c_props.addr = i2c_addr;
720 priv->i2c_props.adap = i2c_adap;
Michael Krufky27566652008-04-22 14:41:53 -0300721 priv->i2c_props.name = "tda829x";
Michael Krufkyd7cba042008-09-12 13:31:45 -0300722 if (cfg)
Michael Krufkyab166052007-12-09 02:26:48 -0300723 priv->cfg.config = cfg->lna_cfg;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300724
Michael Krufkyf1f32842007-11-03 22:14:54 -0300725 if (tda8290_probe(&priv->i2c_props) == 0) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300726 priv->ver = TDA8290;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300727 memcpy(&fe->ops.analog_ops, &tda8290_ops,
728 sizeof(struct analog_demod_ops));
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800729 }
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300730
Michael Krufkyf1f32842007-11-03 22:14:54 -0300731 if (tda8295_probe(&priv->i2c_props) == 0) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300732 priv->ver = TDA8295;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300733 memcpy(&fe->ops.analog_ops, &tda8295_ops,
734 sizeof(struct analog_demod_ops));
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800735 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800736
Michael Krufkyc9076272007-12-24 04:36:14 -0300737 if ((!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) &&
738 (tda829x_find_tuner(fe) < 0))
Michael Krufkyfa746aee2007-12-09 05:16:10 -0300739 goto fail;
Michael Krufky746d97322007-08-25 19:08:45 -0300740
Michael Krufkyab166052007-12-09 02:26:48 -0300741 switch (priv->ver) {
Michael Krufkyc9076272007-12-24 04:36:14 -0300742 case TDA8290:
743 name = "tda8290";
744 break;
745 case TDA8295:
746 name = "tda8295";
747 break;
Michael Krufkyab166052007-12-09 02:26:48 -0300748 case TDA8290 | TDA8275:
749 name = "tda8290+75";
750 break;
751 case TDA8295 | TDA8275:
752 name = "tda8295+75";
753 break;
754 case TDA8290 | TDA8275A:
755 name = "tda8290+75a";
756 break;
757 case TDA8295 | TDA8275A:
758 name = "tda8295+75a";
759 break;
760 case TDA8290 | TDA18271:
761 name = "tda8290+18271";
762 break;
763 case TDA8295 | TDA18271:
764 name = "tda8295+18271";
765 break;
766 default:
767 goto fail;
768 }
769 tuner_info("type set to %s\n", name);
770
Michael Krufky0f2ce982008-01-21 10:55:37 -0300771 fe->ops.analog_ops.info.name = name;
772
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300773 if (priv->ver & TDA8290) {
Michael Krufky439b72b2009-01-05 18:25:04 -0300774 if (priv->ver & (TDA8275 | TDA8275A))
775 tda8290_init_tuner(fe);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300776 tda8290_init_if(fe);
777 } else if (priv->ver & TDA8295)
778 tda8295_init_if(fe);
Michael Krufky746d97322007-08-25 19:08:45 -0300779
Michael Krufkyab166052007-12-09 02:26:48 -0300780 return fe;
Michael Krufkyfa746aee2007-12-09 05:16:10 -0300781
782fail:
783 tda829x_release(fe);
Michael Krufkyab166052007-12-09 02:26:48 -0300784 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300786EXPORT_SYMBOL_GPL(tda829x_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Michael Krufkyab166052007-12-09 02:26:48 -0300788int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
Hartmut Hackmann95736032005-11-08 21:38:00 -0800789{
Michael Krufky910bb3e2007-08-27 21:22:20 -0300790 struct tuner_i2c_props i2c_props = {
Michael Krufkyab166052007-12-09 02:26:48 -0300791 .adap = i2c_adap,
792 .addr = i2c_addr,
Michael Krufky910bb3e2007-08-27 21:22:20 -0300793 };
Michael Krufkydb8a6952007-08-21 01:24:42 -0300794
Hartmut Hackmann44fd06f2006-02-27 00:09:11 -0300795 unsigned char soft_reset[] = { 0x00, 0x00 };
796 unsigned char easy_mode_b[] = { 0x01, 0x02 };
797 unsigned char easy_mode_g[] = { 0x01, 0x04 };
798 unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };
Hartmut Hackmann95736032005-11-08 21:38:00 -0800799 unsigned char addr_dto_lsb = 0x07;
800 unsigned char data;
Michael Krufkya818e1c2007-11-04 11:03:22 -0300801#define PROBE_BUFFER_SIZE 8
802 unsigned char buf[PROBE_BUFFER_SIZE];
803 int i;
804
805 /* rule out tda9887, which would return the same byte repeatedly */
806 tuner_i2c_xfer_send(&i2c_props, soft_reset, 1);
807 tuner_i2c_xfer_recv(&i2c_props, buf, PROBE_BUFFER_SIZE);
808 for (i = 1; i < PROBE_BUFFER_SIZE; i++) {
Michael Krufkybbe1e0b2007-11-05 09:54:42 -0300809 if (buf[i] != buf[0])
810 break;
Michael Krufkya818e1c2007-11-04 11:03:22 -0300811 }
812
813 /* all bytes are equal, not a tda829x - probably a tda9887 */
814 if (i == PROBE_BUFFER_SIZE)
815 return -ENODEV;
Hartmut Hackmann95736032005-11-08 21:38:00 -0800816
Michael Krufkyf1f32842007-11-03 22:14:54 -0300817 if ((tda8290_probe(&i2c_props) == 0) ||
818 (tda8295_probe(&i2c_props) == 0))
819 return 0;
820
821 /* fall back to old probing method */
Michael Krufky910bb3e2007-08-27 21:22:20 -0300822 tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);
823 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
824 tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
825 tuner_i2c_xfer_recv(&i2c_props, &data, 1);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800826 if (data == 0) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300827 tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 2);
828 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
829 tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
830 tuner_i2c_xfer_recv(&i2c_props, &data, 1);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800831 if (data == 0x7b) {
832 return 0;
833 }
834 }
Michael Krufky910bb3e2007-08-27 21:22:20 -0300835 tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300836 return -ENODEV;
Hartmut Hackmann95736032005-11-08 21:38:00 -0800837}
Michael Krufkyf1f32842007-11-03 22:14:54 -0300838EXPORT_SYMBOL_GPL(tda829x_probe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300839
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300840MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300841MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
Michael Krufky910bb3e2007-08-27 21:22:20 -0300842MODULE_LICENSE("GPL");
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844/*
845 * Overrides for Emacs so that we follow Linus's tabbing style.
846 * ---------------------------------------------------------------------------
847 * Local variables:
848 * c-basic-offset: 8
849 * End:
850 */