blob: 0ee79fd7c7a95825b8903a21bc23ff01589d0652 [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>
Michael Krufkyffbb8072007-08-21 01:14:12 -030025#include <linux/videodev.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 Chehab9af0ef22008-12-08 10:36:57 -0300153struct {
154 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) {
210 int i;
211 unsigned char deemphasis[] = { 0x13, 1 };
212
213 /* FIXME: allow using a different deemphasis */
214
215 if (deemphasis_50)
216 deemphasis[1] = 2;
217
218 for (i = 0; i < ARRAY_SIZE(fm_mode); i++)
219 tuner_i2c_xfer_send(&priv->i2c_props, fm_mode[i].seq, 2);
220
221 tuner_i2c_xfer_send(&priv->i2c_props, deemphasis, 2);
222 } else {
223 expert_mode[1] = priv->tda8290_easy_mode + 0x80;
224 tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);
225 tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);
226 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);
227 if (priv->tda8290_easy_mode & 0x60)
228 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
229 else
230 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
231 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
232 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800233
Michael Krufky4e9154b2007-10-21 19:39:50 -0300234 tda8290_i2c_bridge(fe, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300235
Michael Krufky4e9154b2007-10-21 19:39:50 -0300236 if (fe->ops.tuner_ops.set_analog_params)
Michael Krufkyc7919d52007-12-08 17:06:30 -0300237 fe->ops.tuner_ops.set_analog_params(fe, params);
Michael Krufky746d97322007-08-25 19:08:45 -0300238
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300239 for (i = 0; i < 3; i++) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300240 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
241 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300242 if (pll_stat & 0x80) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300243 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
244 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
245 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
246 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300247 tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
248 break;
249 } else {
250 tuner_dbg("tda8290 not locked, no signal?\n");
251 msleep(100);
252 }
253 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800254 /* adjust headroom resp. gain */
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800255 if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {
256 tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
257 agc_stat, adc_sat, pll_stat & 0x80);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300258 tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800259 msleep(100);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300260 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
261 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
262 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
263 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800264 if ((agc_stat > 115) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800265 tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
266 agc_stat, pll_stat & 0x80);
Michael Krufky746d97322007-08-25 19:08:45 -0300267 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300268 priv->cfg.agcf(fe);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800269 msleep(100);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300270 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
271 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
272 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
273 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800274 if((agc_stat > 115) || !(pll_stat & 0x80)) {
275 tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300276 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
277 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800278 msleep(100);
279 }
280 }
281 }
282
283 /* l/ l' deadlock? */
Michael Krufkyb2083192007-05-29 22:54:06 -0300284 if(priv->tda8290_easy_mode & 0x60) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300285 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
286 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
287 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
288 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800289 if ((adc_sat > 20) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800290 tuner_dbg("trying to resolve SECAM L deadlock\n");
Michael Krufkydb8a6952007-08-21 01:24:42 -0300291 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800292 msleep(40);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300293 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800294 }
295 }
296
Michael Krufky4e9154b2007-10-21 19:39:50 -0300297 tda8290_i2c_bridge(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300298 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800299}
300
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800301/*---------------------------------------------------------------------*/
302
Michael Krufky4e9154b2007-10-21 19:39:50 -0300303static void tda8295_power(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300304{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300305 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300306 unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */
307
308 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
309 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
310
311 if (enable)
312 buf[1] = 0x01;
313 else
314 buf[1] = 0x03;
315
316 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
317}
318
Michael Krufky4e9154b2007-10-21 19:39:50 -0300319static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300320{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300321 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300322 unsigned char buf[] = { 0x01, 0x00 };
323
324 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
325 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
326
327 if (enable)
328 buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
329 else
330 buf[1] = 0x00; /* reset active bit */
331
332 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
333}
334
Michael Krufky4e9154b2007-10-21 19:39:50 -0300335static void tda8295_set_video_std(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300336{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300337 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300338 unsigned char buf[] = { 0x00, priv->tda8290_easy_mode };
339
340 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
341
Michael Krufky4e9154b2007-10-21 19:39:50 -0300342 tda8295_set_easy_mode(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300343 msleep(20);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300344 tda8295_set_easy_mode(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300345}
346
347/*---------------------------------------------------------------------*/
348
Michael Krufky4e9154b2007-10-21 19:39:50 -0300349static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300350{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300351 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300352 unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */
353
354 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
355 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
356
357 if (enable)
358 buf[1] &= ~0x40;
359 else
360 buf[1] |= 0x40;
361
362 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
363}
364
Michael Krufky4e9154b2007-10-21 19:39:50 -0300365static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300366{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300367 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300368 unsigned char set_gpio_cf[] = { 0x44, 0x00 };
369 unsigned char set_gpio_val[] = { 0x46, 0x00 };
370
371 tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_cf[0], 1);
372 tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_cf[1], 1);
373 tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_val[0], 1);
374 tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_val[1], 1);
375
376 set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
377
378 if (enable) {
379 set_gpio_cf[1] |= 0x01; /* config GPIO_0 as Open Drain Out */
380 set_gpio_val[1] &= 0xfe; /* set GPIO_0 pin low */
381 }
382 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
383 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
384}
385
Michael Krufky4e9154b2007-10-21 19:39:50 -0300386static int tda8295_has_signal(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300387{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300388 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300389
390 unsigned char hvpll_stat = 0x26;
391 unsigned char ret;
392
393 tuner_i2c_xfer_send(&priv->i2c_props, &hvpll_stat, 1);
394 tuner_i2c_xfer_recv(&priv->i2c_props, &ret, 1);
395 return (ret & 0x01) ? 65535 : 0;
396}
397
398/*---------------------------------------------------------------------*/
399
Michael Krufkyc7919d52007-12-08 17:06:30 -0300400static void tda8295_set_params(struct dvb_frontend *fe,
401 struct analog_parameters *params)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300402{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300403 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300404
405 unsigned char blanking_mode[] = { 0x1d, 0x00 };
406
Michael Krufkyc7919d52007-12-08 17:06:30 -0300407 set_audio(fe, params);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300408
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300409 tuner_dbg("%s: freq = %d\n", __func__, params->frequency);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300410
Michael Krufky4e9154b2007-10-21 19:39:50 -0300411 tda8295_power(fe, 1);
412 tda8295_agc1_out(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300413
414 tuner_i2c_xfer_send(&priv->i2c_props, &blanking_mode[0], 1);
415 tuner_i2c_xfer_recv(&priv->i2c_props, &blanking_mode[1], 1);
416
Michael Krufky4e9154b2007-10-21 19:39:50 -0300417 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300418
419 blanking_mode[1] = 0x03;
420 tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
421 msleep(20);
422
Michael Krufky4e9154b2007-10-21 19:39:50 -0300423 tda8295_i2c_bridge(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300424
Michael Krufky4e9154b2007-10-21 19:39:50 -0300425 if (fe->ops.tuner_ops.set_analog_params)
Michael Krufkyc7919d52007-12-08 17:06:30 -0300426 fe->ops.tuner_ops.set_analog_params(fe, params);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300427
428 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300429 priv->cfg.agcf(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300430
Michael Krufky4e9154b2007-10-21 19:39:50 -0300431 if (tda8295_has_signal(fe))
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300432 tuner_dbg("tda8295 is locked\n");
433 else
434 tuner_dbg("tda8295 not locked, no signal?\n");
435
Michael Krufky4e9154b2007-10-21 19:39:50 -0300436 tda8295_i2c_bridge(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300437}
438
439/*---------------------------------------------------------------------*/
440
Michael Krufky4e9154b2007-10-21 19:39:50 -0300441static int tda8290_has_signal(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300443 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned char i2c_get_afc[1] = { 0x1B };
446 unsigned char afc = 0;
447
Michael Krufkydb8a6952007-08-21 01:24:42 -0300448 tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));
449 tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300450 return (afc & 0x80)? 65535:0;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300451}
452
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800453/*---------------------------------------------------------------------*/
454
Michael Krufky4e9154b2007-10-21 19:39:50 -0300455static void tda8290_standby(struct dvb_frontend *fe)
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700456{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300457 struct tda8290_priv *priv = fe->analog_demod_priv;
458
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800459 unsigned char cb1[] = { 0x30, 0xD0 };
460 unsigned char tda8290_standby[] = { 0x00, 0x02 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -0200461 unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
Michael Krufkyb2083192007-05-29 22:54:06 -0300462 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800463
Michael Krufky4e9154b2007-10-21 19:39:50 -0300464 tda8290_i2c_bridge(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300465 if (priv->ver & TDA8275A)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800466 cb1[1] = 0x90;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300467 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300468 tda8290_i2c_bridge(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300469 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
470 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700471}
472
Michael Krufky4e9154b2007-10-21 19:39:50 -0300473static void tda8295_standby(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300474{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300475 tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300476
Michael Krufky4e9154b2007-10-21 19:39:50 -0300477 tda8295_power(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300478}
479
Michael Krufky4e9154b2007-10-21 19:39:50 -0300480static void tda8290_init_if(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800481{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300482 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300483
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800484 unsigned char set_VS[] = { 0x30, 0x6F };
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300485 unsigned char set_GP00_CF[] = { 0x20, 0x01 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800486 unsigned char set_GP01_CF[] = { 0x20, 0x0B };
487
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300488 if ((priv->cfg.config == 1) || (priv->cfg.config == 2))
Michael Krufkydb8a6952007-08-21 01:24:42 -0300489 tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300490 else
Michael Krufkydb8a6952007-08-21 01:24:42 -0300491 tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
492 tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800493}
494
Michael Krufky4e9154b2007-10-21 19:39:50 -0300495static void tda8295_init_if(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300496{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300497 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300498
499 static unsigned char set_adc_ctl[] = { 0x33, 0x14 };
500 static unsigned char set_adc_ctl2[] = { 0x34, 0x00 };
501 static unsigned char set_pll_reg6[] = { 0x3e, 0x63 };
502 static unsigned char set_pll_reg0[] = { 0x38, 0x23 };
503 static unsigned char set_pll_reg7[] = { 0x3f, 0x01 };
504 static unsigned char set_pll_reg10[] = { 0x42, 0x61 };
505 static unsigned char set_gpio_reg0[] = { 0x44, 0x0b };
506
Michael Krufky4e9154b2007-10-21 19:39:50 -0300507 tda8295_power(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300508
Michael Krufky4e9154b2007-10-21 19:39:50 -0300509 tda8295_set_easy_mode(fe, 0);
510 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300511
512 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl, 2);
513 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl2, 2);
514 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg6, 2);
515 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg0, 2);
516 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg7, 2);
517 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg10, 2);
518 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_reg0, 2);
519
Michael Krufky4e9154b2007-10-21 19:39:50 -0300520 tda8295_agc1_out(fe, 0);
521 tda8295_agc2_out(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300522}
523
Michael Krufky4e9154b2007-10-21 19:39:50 -0300524static void tda8290_init_tuner(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800525{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300526 struct tda8290_priv *priv = fe->analog_demod_priv;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800527 unsigned char tda8275_init[] = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800528 0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800529 unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800530 0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
Michael Krufkyb2083192007-05-29 22:54:06 -0300531 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
Ricardo Cerqueirac2f6f9d2005-11-08 21:37:51 -0800532 .buf=tda8275_init, .len = 14};
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300533 if (priv->ver & TDA8275A)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800534 msg.buf = tda8275a_init;
535
Michael Krufky4e9154b2007-10-21 19:39:50 -0300536 tda8290_i2c_bridge(fe, 1);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300537 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300538 tda8290_i2c_bridge(fe, 0);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800539}
540
541/*---------------------------------------------------------------------*/
542
Michael Krufky4e9154b2007-10-21 19:39:50 -0300543static void tda829x_release(struct dvb_frontend *fe)
Michael Krufky024cf532007-06-04 15:20:11 -0300544{
Michael Krufkya4f263b2008-01-06 15:52:56 -0300545 struct tda8290_priv *priv = fe->analog_demod_priv;
546
Michael Krufky006ed1e2008-01-09 10:44:27 -0300547 /* only try to release the tuner if we've
548 * attached it from within this module */
549 if (priv->ver & (TDA18271 | TDA8275 | TDA8275A))
Michael Krufkya4f263b2008-01-06 15:52:56 -0300550 if (fe->ops.tuner_ops.release)
551 fe->ops.tuner_ops.release(fe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300552
Michael Krufky4e9154b2007-10-21 19:39:50 -0300553 kfree(fe->analog_demod_priv);
554 fe->analog_demod_priv = NULL;
Michael Krufky024cf532007-06-04 15:20:11 -0300555}
556
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300557static struct tda18271_config tda829x_tda18271_config = {
558 .gate = TDA18271_GATE_ANALOG,
559};
560
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300561static int tda829x_find_tuner(struct dvb_frontend *fe)
562{
563 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300564 struct analog_demod_ops *analog_ops = &fe->ops.analog_ops;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300565 int i, ret, tuners_found;
566 u32 tuner_addrs;
567 u8 data;
568 struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
569
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300570 if (NULL == analog_ops->i2c_gate_ctrl)
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300571 return -EINVAL;
572
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300573 analog_ops->i2c_gate_ctrl(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300574
575 /* probe for tuner chip */
576 tuners_found = 0;
577 tuner_addrs = 0;
578 for (i = 0x60; i <= 0x63; i++) {
579 msg.addr = i;
580 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
581 if (ret == 1) {
582 tuners_found++;
583 tuner_addrs = (tuner_addrs << 8) + i;
584 }
585 }
586 /* if there is more than one tuner, we expect the right one is
587 behind the bridge and we choose the highest address that doesn't
588 give a response now
589 */
590
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300591 analog_ops->i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300592
593 if (tuners_found > 1)
594 for (i = 0; i < tuners_found; i++) {
595 msg.addr = tuner_addrs & 0xff;
596 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
597 if (ret == 1)
598 tuner_addrs = tuner_addrs >> 8;
599 else
600 break;
601 }
602
603 if (tuner_addrs == 0) {
604 tuner_addrs = 0x60;
605 tuner_info("could not clearly identify tuner address, "
606 "defaulting to %x\n", tuner_addrs);
607 } else {
608 tuner_addrs = tuner_addrs & 0xff;
609 tuner_info("setting tuner address to %x\n", tuner_addrs);
610 }
611 priv->tda827x_addr = tuner_addrs;
612 msg.addr = tuner_addrs;
613
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300614 analog_ops->i2c_gate_ctrl(fe, 1);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300615 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
616
617 if (ret != 1) {
618 tuner_warn("tuner access failed!\n");
619 return -EREMOTEIO;
620 }
621
Michael Krufky255b5112008-01-01 22:52:09 -0300622 if ((data == 0x83) || (data == 0x84)) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300623 priv->ver |= TDA18271;
Michael Krufkya07c8772008-04-29 03:54:19 -0300624 dvb_attach(tda18271_attach, fe, priv->tda827x_addr,
625 priv->i2c_props.adap, &tda829x_tda18271_config);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300626 } else {
627 if ((data & 0x3c) == 0)
628 priv->ver |= TDA8275;
629 else
630 priv->ver |= TDA8275A;
631
Michael Krufkya07c8772008-04-29 03:54:19 -0300632 dvb_attach(tda827x_attach, fe, priv->tda827x_addr,
633 priv->i2c_props.adap, &priv->cfg);
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300634 priv->cfg.switch_addr = priv->i2c_props.addr;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300635 }
Michael Krufky68816472007-12-08 16:25:41 -0300636 if (fe->ops.tuner_ops.init)
637 fe->ops.tuner_ops.init(fe);
Michael Krufky63c25482007-11-23 15:08:11 -0300638
Michael Krufky68816472007-12-08 16:25:41 -0300639 if (fe->ops.tuner_ops.sleep)
640 fe->ops.tuner_ops.sleep(fe);
Michael Krufky63c25482007-11-23 15:08:11 -0300641
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300642 analog_ops->i2c_gate_ctrl(fe, 0);
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300643
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300644 return 0;
645}
646
Michael Krufkyf1f32842007-11-03 22:14:54 -0300647static int tda8290_probe(struct tuner_i2c_props *i2c_props)
648{
649#define TDA8290_ID 0x89
650 unsigned char tda8290_id[] = { 0x1f, 0x00 };
651
652 /* detect tda8290 */
653 tuner_i2c_xfer_send(i2c_props, &tda8290_id[0], 1);
654 tuner_i2c_xfer_recv(i2c_props, &tda8290_id[1], 1);
655
656 if (tda8290_id[1] == TDA8290_ID) {
Michael Krufkyab166052007-12-09 02:26:48 -0300657 if (debug)
Michael Krufkyf1f32842007-11-03 22:14:54 -0300658 printk(KERN_DEBUG "%s: tda8290 detected @ %d-%04x\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300659 __func__, i2c_adapter_id(i2c_props->adap),
Michael Krufkyf1f32842007-11-03 22:14:54 -0300660 i2c_props->addr);
661 return 0;
662 }
663
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300664 return -ENODEV;
Michael Krufkyf1f32842007-11-03 22:14:54 -0300665}
666
667static int tda8295_probe(struct tuner_i2c_props *i2c_props)
668{
669#define TDA8295_ID 0x8a
670 unsigned char tda8295_id[] = { 0x2f, 0x00 };
671
672 /* detect tda8295 */
673 tuner_i2c_xfer_send(i2c_props, &tda8295_id[0], 1);
674 tuner_i2c_xfer_recv(i2c_props, &tda8295_id[1], 1);
675
676 if (tda8295_id[1] == TDA8295_ID) {
Michael Krufkyab166052007-12-09 02:26:48 -0300677 if (debug)
Michael Krufkyf1f32842007-11-03 22:14:54 -0300678 printk(KERN_DEBUG "%s: tda8295 detected @ %d-%04x\n",
Harvey Harrison7e28adb2008-04-08 23:20:00 -0300679 __func__, i2c_adapter_id(i2c_props->adap),
Michael Krufkyf1f32842007-11-03 22:14:54 -0300680 i2c_props->addr);
681 return 0;
682 }
683
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300684 return -ENODEV;
Michael Krufkyf1f32842007-11-03 22:14:54 -0300685}
686
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300687static struct analog_demod_ops tda8290_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300688 .set_params = tda8290_set_params,
Michael Krufky746d97322007-08-25 19:08:45 -0300689 .has_signal = tda8290_has_signal,
690 .standby = tda8290_standby,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300691 .release = tda829x_release,
Michael Krufkya72dd302007-10-24 09:30:17 -0300692 .i2c_gate_ctrl = tda8290_i2c_bridge,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300693};
694
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300695static struct analog_demod_ops tda8295_ops = {
Michael Krufkyc7919d52007-12-08 17:06:30 -0300696 .set_params = tda8295_set_params,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300697 .has_signal = tda8295_has_signal,
698 .standby = tda8295_standby,
699 .release = tda829x_release,
Michael Krufkya72dd302007-10-24 09:30:17 -0300700 .i2c_gate_ctrl = tda8295_i2c_bridge,
Michael Krufky7fd8b262007-06-06 16:15:15 -0300701};
702
Michael Krufkyab166052007-12-09 02:26:48 -0300703struct dvb_frontend *tda829x_attach(struct dvb_frontend *fe,
704 struct i2c_adapter *i2c_adap, u8 i2c_addr,
705 struct tda829x_config *cfg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Michael Krufkyb2083192007-05-29 22:54:06 -0300707 struct tda8290_priv *priv = NULL;
Michael Krufkyab166052007-12-09 02:26:48 -0300708 char *name;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300709
Michael Krufkyb2083192007-05-29 22:54:06 -0300710 priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
711 if (priv == NULL)
Michael Krufkyab166052007-12-09 02:26:48 -0300712 return NULL;
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300713 fe->analog_demod_priv = priv;
Michael Krufkyb2083192007-05-29 22:54:06 -0300714
Michael Krufkyab166052007-12-09 02:26:48 -0300715 priv->i2c_props.addr = i2c_addr;
716 priv->i2c_props.adap = i2c_adap;
Michael Krufky27566652008-04-22 14:41:53 -0300717 priv->i2c_props.name = "tda829x";
Michael Krufkyd7cba042008-09-12 13:31:45 -0300718 if (cfg)
Michael Krufkyab166052007-12-09 02:26:48 -0300719 priv->cfg.config = cfg->lna_cfg;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300720
Michael Krufkyf1f32842007-11-03 22:14:54 -0300721 if (tda8290_probe(&priv->i2c_props) == 0) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300722 priv->ver = TDA8290;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300723 memcpy(&fe->ops.analog_ops, &tda8290_ops,
724 sizeof(struct analog_demod_ops));
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800725 }
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300726
Michael Krufkyf1f32842007-11-03 22:14:54 -0300727 if (tda8295_probe(&priv->i2c_props) == 0) {
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300728 priv->ver = TDA8295;
Michael Krufkybc3e5c72007-12-21 11:18:32 -0300729 memcpy(&fe->ops.analog_ops, &tda8295_ops,
730 sizeof(struct analog_demod_ops));
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800731 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800732
Michael Krufkyc9076272007-12-24 04:36:14 -0300733 if ((!(cfg) || (TDA829X_PROBE_TUNER == cfg->probe_tuner)) &&
734 (tda829x_find_tuner(fe) < 0))
Michael Krufkyfa746aee2007-12-09 05:16:10 -0300735 goto fail;
Michael Krufky746d97322007-08-25 19:08:45 -0300736
Michael Krufkyab166052007-12-09 02:26:48 -0300737 switch (priv->ver) {
Michael Krufkyc9076272007-12-24 04:36:14 -0300738 case TDA8290:
739 name = "tda8290";
740 break;
741 case TDA8295:
742 name = "tda8295";
743 break;
Michael Krufkyab166052007-12-09 02:26:48 -0300744 case TDA8290 | TDA8275:
745 name = "tda8290+75";
746 break;
747 case TDA8295 | TDA8275:
748 name = "tda8295+75";
749 break;
750 case TDA8290 | TDA8275A:
751 name = "tda8290+75a";
752 break;
753 case TDA8295 | TDA8275A:
754 name = "tda8295+75a";
755 break;
756 case TDA8290 | TDA18271:
757 name = "tda8290+18271";
758 break;
759 case TDA8295 | TDA18271:
760 name = "tda8295+18271";
761 break;
762 default:
763 goto fail;
764 }
765 tuner_info("type set to %s\n", name);
766
Michael Krufky0f2ce982008-01-21 10:55:37 -0300767 fe->ops.analog_ops.info.name = name;
768
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300769 if (priv->ver & TDA8290) {
770 tda8290_init_tuner(fe);
771 tda8290_init_if(fe);
772 } else if (priv->ver & TDA8295)
773 tda8295_init_if(fe);
Michael Krufky746d97322007-08-25 19:08:45 -0300774
Michael Krufkyab166052007-12-09 02:26:48 -0300775 return fe;
Michael Krufkyfa746aee2007-12-09 05:16:10 -0300776
777fail:
778 tda829x_release(fe);
Michael Krufkyab166052007-12-09 02:26:48 -0300779 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300781EXPORT_SYMBOL_GPL(tda829x_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Michael Krufkyab166052007-12-09 02:26:48 -0300783int tda829x_probe(struct i2c_adapter *i2c_adap, u8 i2c_addr)
Hartmut Hackmann95736032005-11-08 21:38:00 -0800784{
Michael Krufky910bb3e2007-08-27 21:22:20 -0300785 struct tuner_i2c_props i2c_props = {
Michael Krufkyab166052007-12-09 02:26:48 -0300786 .adap = i2c_adap,
787 .addr = i2c_addr,
Michael Krufky910bb3e2007-08-27 21:22:20 -0300788 };
Michael Krufkydb8a6952007-08-21 01:24:42 -0300789
Hartmut Hackmann44fd06f2006-02-27 00:09:11 -0300790 unsigned char soft_reset[] = { 0x00, 0x00 };
791 unsigned char easy_mode_b[] = { 0x01, 0x02 };
792 unsigned char easy_mode_g[] = { 0x01, 0x04 };
793 unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };
Hartmut Hackmann95736032005-11-08 21:38:00 -0800794 unsigned char addr_dto_lsb = 0x07;
795 unsigned char data;
Michael Krufkya818e1c2007-11-04 11:03:22 -0300796#define PROBE_BUFFER_SIZE 8
797 unsigned char buf[PROBE_BUFFER_SIZE];
798 int i;
799
800 /* rule out tda9887, which would return the same byte repeatedly */
801 tuner_i2c_xfer_send(&i2c_props, soft_reset, 1);
802 tuner_i2c_xfer_recv(&i2c_props, buf, PROBE_BUFFER_SIZE);
803 for (i = 1; i < PROBE_BUFFER_SIZE; i++) {
Michael Krufkybbe1e0b2007-11-05 09:54:42 -0300804 if (buf[i] != buf[0])
805 break;
Michael Krufkya818e1c2007-11-04 11:03:22 -0300806 }
807
808 /* all bytes are equal, not a tda829x - probably a tda9887 */
809 if (i == PROBE_BUFFER_SIZE)
810 return -ENODEV;
Hartmut Hackmann95736032005-11-08 21:38:00 -0800811
Michael Krufkyf1f32842007-11-03 22:14:54 -0300812 if ((tda8290_probe(&i2c_props) == 0) ||
813 (tda8295_probe(&i2c_props) == 0))
814 return 0;
815
816 /* fall back to old probing method */
Michael Krufky910bb3e2007-08-27 21:22:20 -0300817 tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);
818 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
819 tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
820 tuner_i2c_xfer_recv(&i2c_props, &data, 1);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800821 if (data == 0) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300822 tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 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 == 0x7b) {
827 return 0;
828 }
829 }
Michael Krufky910bb3e2007-08-27 21:22:20 -0300830 tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
Michael Krufky1f3a4e322007-11-04 10:51:28 -0300831 return -ENODEV;
Hartmut Hackmann95736032005-11-08 21:38:00 -0800832}
Michael Krufkyf1f32842007-11-03 22:14:54 -0300833EXPORT_SYMBOL_GPL(tda829x_probe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300834
Michael Krufky8c125f2c2007-10-27 02:00:57 -0300835MODULE_DESCRIPTION("Philips/NXP TDA8290/TDA8295 analog IF demodulator driver");
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300836MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
Michael Krufky910bb3e2007-08-27 21:22:20 -0300837MODULE_LICENSE("GPL");
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*
840 * Overrides for Emacs so that we follow Linus's tabbing style.
841 * ---------------------------------------------------------------------------
842 * Local variables:
843 * c-basic-offset: 8
844 * End:
845 */