blob: 288865c3c714284381500f4d59e1c32ce1b0eebb [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 Krufky910bb3e2007-08-27 21:22:20 -030026#include "tda8290.h"
Michael Krufky746d97322007-08-25 19:08:45 -030027#include "tda827x.h"
Michael Krufky5bea1cd2007-10-22 09:56:38 -030028#include "tda18271.h"
Michael Krufky910bb3e2007-08-27 21:22:20 -030029
Michael Krufky5bea1cd2007-10-22 09:56:38 -030030static int tuner_debug;
Michael Krufky746d97322007-08-25 19:08:45 -030031module_param_named(debug, tuner_debug, int, 0644);
Michael Krufky910bb3e2007-08-27 21:22:20 -030032MODULE_PARM_DESC(debug, "enable verbose debug messages");
33
34#define PREFIX "tda8290 "
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* ---------------------------------------------------------------------- */
37
Michael Krufkyb2083192007-05-29 22:54:06 -030038struct tda8290_priv {
Michael Krufkydb8a6952007-08-21 01:24:42 -030039 struct tuner_i2c_props i2c_props;
40
Michael Krufkyb2083192007-05-29 22:54:06 -030041 unsigned char tda8290_easy_mode;
Michael Krufky746d97322007-08-25 19:08:45 -030042
Michael Krufkyb2083192007-05-29 22:54:06 -030043 unsigned char tda827x_addr;
44 unsigned char tda827x_ver;
Michael Krufky910bb3e2007-08-27 21:22:20 -030045
Michael Krufky746d97322007-08-25 19:08:45 -030046 struct tda827x_config cfg;
Michael Krufky4e9154b2007-10-21 19:39:50 -030047
48 struct tuner *t;
Michael Krufkyb2083192007-05-29 22:54:06 -030049};
50
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080051/*---------------------------------------------------------------------*/
52
Michael Krufky4e9154b2007-10-21 19:39:50 -030053static void tda8290_i2c_bridge(struct dvb_frontend *fe, int close)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080054{
Michael Krufky4e9154b2007-10-21 19:39:50 -030055 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -030056
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080057 unsigned char enable[2] = { 0x21, 0xC0 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -020058 unsigned char disable[2] = { 0x21, 0x00 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080059 unsigned char *msg;
60 if(close) {
61 msg = enable;
Michael Krufkydb8a6952007-08-21 01:24:42 -030062 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080063 /* let the bridge stabilize */
64 msleep(20);
65 } else {
66 msg = disable;
Michael Krufkydb8a6952007-08-21 01:24:42 -030067 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080068 }
69}
70
Michael Krufky4e9154b2007-10-21 19:39:50 -030071static void tda8295_i2c_bridge(struct dvb_frontend *fe, int close)
Michael Krufky5bea1cd2007-10-22 09:56:38 -030072{
Michael Krufky4e9154b2007-10-21 19:39:50 -030073 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -030074
75 unsigned char enable[2] = { 0x45, 0xc1 };
76 unsigned char disable[2] = { 0x46, 0x00 };
77 unsigned char buf[3] = { 0x45, 0x01, 0x00 };
78 unsigned char *msg;
79 if (close) {
80 msg = enable;
81 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
82 /* let the bridge stabilize */
83 msleep(20);
84 } else {
85 msg = disable;
86 tuner_i2c_xfer_send(&priv->i2c_props, msg, 1);
87 tuner_i2c_xfer_recv(&priv->i2c_props, &msg[1], 1);
88
89 buf[2] = msg[1];
90 buf[2] &= ~0x04;
91 tuner_i2c_xfer_send(&priv->i2c_props, buf, 3);
92 msleep(5);
93
94 msg[1] |= 0x04;
95 tuner_i2c_xfer_send(&priv->i2c_props, msg, 2);
96 }
97}
98
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -080099/*---------------------------------------------------------------------*/
100
Michael Krufky4e9154b2007-10-21 19:39:50 -0300101static void set_audio(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800102{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300103 struct tda8290_priv *priv = fe->analog_demod_priv;
104 struct tuner *t = priv->t;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300105 char* mode;
106
Michael Krufky746d97322007-08-25 19:08:45 -0300107 priv->cfg.tda827x_lpsel = 0;
108 if (t->std & V4L2_STD_MN) {
109 priv->cfg.sgIF = 92;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300110 priv->tda8290_easy_mode = 0x01;
Michael Krufky746d97322007-08-25 19:08:45 -0300111 priv->cfg.tda827x_lpsel = 1;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300112 mode = "MN";
Michael Krufky746d97322007-08-25 19:08:45 -0300113 } else if (t->std & V4L2_STD_B) {
114 priv->cfg.sgIF = 108;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300115 priv->tda8290_easy_mode = 0x02;
116 mode = "B";
Michael Krufky746d97322007-08-25 19:08:45 -0300117 } else if (t->std & V4L2_STD_GH) {
118 priv->cfg.sgIF = 124;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300119 priv->tda8290_easy_mode = 0x04;
120 mode = "GH";
Michael Krufky746d97322007-08-25 19:08:45 -0300121 } else if (t->std & V4L2_STD_PAL_I) {
122 priv->cfg.sgIF = 124;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300123 priv->tda8290_easy_mode = 0x08;
124 mode = "I";
Michael Krufky746d97322007-08-25 19:08:45 -0300125 } else if (t->std & V4L2_STD_DK) {
126 priv->cfg.sgIF = 124;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300127 priv->tda8290_easy_mode = 0x10;
128 mode = "DK";
Michael Krufky746d97322007-08-25 19:08:45 -0300129 } else if (t->std & V4L2_STD_SECAM_L) {
130 priv->cfg.sgIF = 124;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300131 priv->tda8290_easy_mode = 0x20;
132 mode = "L";
Michael Krufky746d97322007-08-25 19:08:45 -0300133 } else if (t->std & V4L2_STD_SECAM_LC) {
134 priv->cfg.sgIF = 20;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300135 priv->tda8290_easy_mode = 0x40;
136 mode = "LC";
137 } else {
Michael Krufky746d97322007-08-25 19:08:45 -0300138 priv->cfg.sgIF = 124;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300139 priv->tda8290_easy_mode = 0x10;
140 mode = "xx";
141 }
142
Michael Krufky746d97322007-08-25 19:08:45 -0300143 if (t->mode == V4L2_TUNER_RADIO)
144 priv->cfg.sgIF = 88; /* if frequency is 5.5 MHz */
Michael Krufky910bb3e2007-08-27 21:22:20 -0300145
146 tuner_dbg("setting tda8290 to system %s\n", mode);
147}
148
Michael Krufky4e9154b2007-10-21 19:39:50 -0300149static void tda8290_set_freq(struct dvb_frontend *fe, unsigned int freq)
Michael Krufky910bb3e2007-08-27 21:22:20 -0300150{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300151 struct tda8290_priv *priv = fe->analog_demod_priv;
152 struct tuner *t = priv->t;
153
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800154 unsigned char soft_reset[] = { 0x00, 0x00 };
Michael Krufkyb2083192007-05-29 22:54:06 -0300155 unsigned char easy_mode[] = { 0x01, priv->tda8290_easy_mode };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800156 unsigned char expert_mode[] = { 0x01, 0x80 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -0200157 unsigned char agc_out_on[] = { 0x02, 0x00 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800158 unsigned char gainset_off[] = { 0x28, 0x14 };
159 unsigned char if_agc_spd[] = { 0x0f, 0x88 };
160 unsigned char adc_head_6[] = { 0x05, 0x04 };
161 unsigned char adc_head_9[] = { 0x05, 0x02 };
162 unsigned char adc_head_12[] = { 0x05, 0x01 };
163 unsigned char pll_bw_nom[] = { 0x0d, 0x47 };
164 unsigned char pll_bw_low[] = { 0x0d, 0x27 };
165 unsigned char gainset_2[] = { 0x28, 0x64 };
166 unsigned char agc_rst_on[] = { 0x0e, 0x0b };
167 unsigned char agc_rst_off[] = { 0x0e, 0x09 };
168 unsigned char if_agc_set[] = { 0x0f, 0x81 };
169 unsigned char addr_adc_sat = 0x1a;
170 unsigned char addr_agc_stat = 0x1d;
171 unsigned char addr_pll_stat = 0x1b;
172 unsigned char adc_sat, agc_stat,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800173 pll_stat;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300174 int i;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800175
Michael Krufky746d97322007-08-25 19:08:45 -0300176 struct analog_parameters params = {
177 .frequency = freq,
178 .mode = t->mode,
179 .audmode = t->audmode,
180 .std = t->std
181 };
Michael Krufky910bb3e2007-08-27 21:22:20 -0300182
Michael Krufky4e9154b2007-10-21 19:39:50 -0300183 set_audio(fe);
Michael Krufky746d97322007-08-25 19:08:45 -0300184
185 tuner_dbg("tda827xa config is 0x%02x\n", t->config);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300186 tuner_i2c_xfer_send(&priv->i2c_props, easy_mode, 2);
187 tuner_i2c_xfer_send(&priv->i2c_props, agc_out_on, 2);
188 tuner_i2c_xfer_send(&priv->i2c_props, soft_reset, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800189 msleep(1);
190
Michael Krufkyb2083192007-05-29 22:54:06 -0300191 expert_mode[1] = priv->tda8290_easy_mode + 0x80;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300192 tuner_i2c_xfer_send(&priv->i2c_props, expert_mode, 2);
193 tuner_i2c_xfer_send(&priv->i2c_props, gainset_off, 2);
194 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_spd, 2);
Michael Krufkyb2083192007-05-29 22:54:06 -0300195 if (priv->tda8290_easy_mode & 0x60)
Michael Krufkydb8a6952007-08-21 01:24:42 -0300196 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_9, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800197 else
Michael Krufkydb8a6952007-08-21 01:24:42 -0300198 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_6, 2);
199 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_nom, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800200
Michael Krufky4e9154b2007-10-21 19:39:50 -0300201 tda8290_i2c_bridge(fe, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300202
Michael Krufky4e9154b2007-10-21 19:39:50 -0300203 if (fe->ops.tuner_ops.set_analog_params)
204 fe->ops.tuner_ops.set_analog_params(fe, &params);
Michael Krufky746d97322007-08-25 19:08:45 -0300205
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300206 for (i = 0; i < 3; i++) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300207 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
208 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300209 if (pll_stat & 0x80) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300210 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
211 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
212 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
213 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300214 tuner_dbg("tda8290 is locked, AGC: %d\n", agc_stat);
215 break;
216 } else {
217 tuner_dbg("tda8290 not locked, no signal?\n");
218 msleep(100);
219 }
220 }
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800221 /* adjust headroom resp. gain */
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800222 if ((agc_stat > 115) || (!(pll_stat & 0x80) && (adc_sat < 20))) {
223 tuner_dbg("adjust gain, step 1. Agc: %d, ADC stat: %d, lock: %d\n",
224 agc_stat, adc_sat, pll_stat & 0x80);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300225 tuner_i2c_xfer_send(&priv->i2c_props, gainset_2, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800226 msleep(100);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300227 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
228 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
229 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
230 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800231 if ((agc_stat > 115) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800232 tuner_dbg("adjust gain, step 2. Agc: %d, lock: %d\n",
233 agc_stat, pll_stat & 0x80);
Michael Krufky746d97322007-08-25 19:08:45 -0300234 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300235 priv->cfg.agcf(fe);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800236 msleep(100);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300237 tuner_i2c_xfer_send(&priv->i2c_props, &addr_agc_stat, 1);
238 tuner_i2c_xfer_recv(&priv->i2c_props, &agc_stat, 1);
239 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
240 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800241 if((agc_stat > 115) || !(pll_stat & 0x80)) {
242 tuner_dbg("adjust gain, step 3. Agc: %d\n", agc_stat);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300243 tuner_i2c_xfer_send(&priv->i2c_props, adc_head_12, 2);
244 tuner_i2c_xfer_send(&priv->i2c_props, pll_bw_low, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800245 msleep(100);
246 }
247 }
248 }
249
250 /* l/ l' deadlock? */
Michael Krufkyb2083192007-05-29 22:54:06 -0300251 if(priv->tda8290_easy_mode & 0x60) {
Michael Krufkydb8a6952007-08-21 01:24:42 -0300252 tuner_i2c_xfer_send(&priv->i2c_props, &addr_adc_sat, 1);
253 tuner_i2c_xfer_recv(&priv->i2c_props, &adc_sat, 1);
254 tuner_i2c_xfer_send(&priv->i2c_props, &addr_pll_stat, 1);
255 tuner_i2c_xfer_recv(&priv->i2c_props, &pll_stat, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800256 if ((adc_sat > 20) || !(pll_stat & 0x80)) {
Hartmut Hackmann4ac95af2005-11-08 21:38:38 -0800257 tuner_dbg("trying to resolve SECAM L deadlock\n");
Michael Krufkydb8a6952007-08-21 01:24:42 -0300258 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_on, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800259 msleep(40);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300260 tuner_i2c_xfer_send(&priv->i2c_props, agc_rst_off, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800261 }
262 }
263
Michael Krufky4e9154b2007-10-21 19:39:50 -0300264 tda8290_i2c_bridge(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300265 tuner_i2c_xfer_send(&priv->i2c_props, if_agc_set, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800266}
267
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800268/*---------------------------------------------------------------------*/
269
Michael Krufky4e9154b2007-10-21 19:39:50 -0300270static void tda8295_power(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300271{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300272 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300273 unsigned char buf[] = { 0x30, 0x00 }; /* clb_stdbt */
274
275 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
276 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
277
278 if (enable)
279 buf[1] = 0x01;
280 else
281 buf[1] = 0x03;
282
283 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
284}
285
Michael Krufky4e9154b2007-10-21 19:39:50 -0300286static void tda8295_set_easy_mode(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300287{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300288 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300289 unsigned char buf[] = { 0x01, 0x00 };
290
291 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
292 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
293
294 if (enable)
295 buf[1] = 0x01; /* rising edge sets regs 0x02 - 0x23 */
296 else
297 buf[1] = 0x00; /* reset active bit */
298
299 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
300}
301
Michael Krufky4e9154b2007-10-21 19:39:50 -0300302static void tda8295_set_video_std(struct dvb_frontend *fe)
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[] = { 0x00, priv->tda8290_easy_mode };
306
307 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
308
Michael Krufky4e9154b2007-10-21 19:39:50 -0300309 tda8295_set_easy_mode(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300310 msleep(20);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300311 tda8295_set_easy_mode(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300312}
313
314/*---------------------------------------------------------------------*/
315
Michael Krufky4e9154b2007-10-21 19:39:50 -0300316static void tda8295_agc1_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300317{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300318 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300319 unsigned char buf[] = { 0x02, 0x00 }; /* DIV_FUNC */
320
321 tuner_i2c_xfer_send(&priv->i2c_props, &buf[0], 1);
322 tuner_i2c_xfer_recv(&priv->i2c_props, &buf[1], 1);
323
324 if (enable)
325 buf[1] &= ~0x40;
326 else
327 buf[1] |= 0x40;
328
329 tuner_i2c_xfer_send(&priv->i2c_props, buf, 2);
330}
331
Michael Krufky4e9154b2007-10-21 19:39:50 -0300332static void tda8295_agc2_out(struct dvb_frontend *fe, int enable)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300333{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300334 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300335 unsigned char set_gpio_cf[] = { 0x44, 0x00 };
336 unsigned char set_gpio_val[] = { 0x46, 0x00 };
337
338 tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_cf[0], 1);
339 tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_cf[1], 1);
340 tuner_i2c_xfer_send(&priv->i2c_props, &set_gpio_val[0], 1);
341 tuner_i2c_xfer_recv(&priv->i2c_props, &set_gpio_val[1], 1);
342
343 set_gpio_cf[1] &= 0xf0; /* clear GPIO_0 bits 3-0 */
344
345 if (enable) {
346 set_gpio_cf[1] |= 0x01; /* config GPIO_0 as Open Drain Out */
347 set_gpio_val[1] &= 0xfe; /* set GPIO_0 pin low */
348 }
349 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_cf, 2);
350 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_val, 2);
351}
352
Michael Krufky4e9154b2007-10-21 19:39:50 -0300353static int tda8295_has_signal(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300354{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300355 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300356
357 unsigned char hvpll_stat = 0x26;
358 unsigned char ret;
359
360 tuner_i2c_xfer_send(&priv->i2c_props, &hvpll_stat, 1);
361 tuner_i2c_xfer_recv(&priv->i2c_props, &ret, 1);
362 return (ret & 0x01) ? 65535 : 0;
363}
364
365/*---------------------------------------------------------------------*/
366
Michael Krufky4e9154b2007-10-21 19:39:50 -0300367static void tda8295_set_freq(struct dvb_frontend *fe, unsigned int freq)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300368{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300369 struct tda8290_priv *priv = fe->analog_demod_priv;
370 struct tuner *t = priv->t;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300371 u16 ifc;
372
373 unsigned char blanking_mode[] = { 0x1d, 0x00 };
374
375 struct analog_parameters params = {
376 .frequency = freq,
377 .mode = t->mode,
378 .audmode = t->audmode,
379 .std = t->std
380 };
381
Michael Krufky4e9154b2007-10-21 19:39:50 -0300382 set_audio(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300383
384 ifc = priv->cfg.sgIF; /* FIXME */
385
386 tuner_dbg("%s: ifc = %u, freq = %d\n", __FUNCTION__, ifc, freq);
387
Michael Krufky4e9154b2007-10-21 19:39:50 -0300388 tda8295_power(fe, 1);
389 tda8295_agc1_out(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300390
391 tuner_i2c_xfer_send(&priv->i2c_props, &blanking_mode[0], 1);
392 tuner_i2c_xfer_recv(&priv->i2c_props, &blanking_mode[1], 1);
393
Michael Krufky4e9154b2007-10-21 19:39:50 -0300394 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300395
396 blanking_mode[1] = 0x03;
397 tuner_i2c_xfer_send(&priv->i2c_props, blanking_mode, 2);
398 msleep(20);
399
Michael Krufky4e9154b2007-10-21 19:39:50 -0300400 tda8295_i2c_bridge(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300401
Michael Krufky4e9154b2007-10-21 19:39:50 -0300402 if (fe->ops.tuner_ops.set_analog_params)
403 fe->ops.tuner_ops.set_analog_params(fe, &params);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300404
405 if (priv->cfg.agcf)
Michael Krufky4e9154b2007-10-21 19:39:50 -0300406 priv->cfg.agcf(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300407
Michael Krufky4e9154b2007-10-21 19:39:50 -0300408 if (tda8295_has_signal(fe))
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300409 tuner_dbg("tda8295 is locked\n");
410 else
411 tuner_dbg("tda8295 not locked, no signal?\n");
412
Michael Krufky4e9154b2007-10-21 19:39:50 -0300413 tda8295_i2c_bridge(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300414}
415
416/*---------------------------------------------------------------------*/
417
Michael Krufky4e9154b2007-10-21 19:39:50 -0300418static int tda8290_has_signal(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300420 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 unsigned char i2c_get_afc[1] = { 0x1B };
423 unsigned char afc = 0;
424
Michael Krufkydb8a6952007-08-21 01:24:42 -0300425 tuner_i2c_xfer_send(&priv->i2c_props, i2c_get_afc, ARRAY_SIZE(i2c_get_afc));
426 tuner_i2c_xfer_recv(&priv->i2c_props, &afc, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300427 return (afc & 0x80)? 65535:0;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300428}
429
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800430/*---------------------------------------------------------------------*/
431
Michael Krufky4e9154b2007-10-21 19:39:50 -0300432static void tda8290_standby(struct dvb_frontend *fe)
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700433{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300434 struct tda8290_priv *priv = fe->analog_demod_priv;
435
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800436 unsigned char cb1[] = { 0x30, 0xD0 };
437 unsigned char tda8290_standby[] = { 0x00, 0x02 };
Hartmut Hackmann0157a9c2006-02-07 06:49:09 -0200438 unsigned char tda8290_agc_tri[] = { 0x02, 0x20 };
Michael Krufkyb2083192007-05-29 22:54:06 -0300439 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0, .buf=cb1, .len = 2};
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800440
Michael Krufky4e9154b2007-10-21 19:39:50 -0300441 tda8290_i2c_bridge(fe, 1);
Michael Krufkyb2083192007-05-29 22:54:06 -0300442 if (priv->tda827x_ver != 0)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800443 cb1[1] = 0x90;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300444 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300445 tda8290_i2c_bridge(fe, 0);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300446 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_agc_tri, 2);
447 tuner_i2c_xfer_send(&priv->i2c_props, tda8290_standby, 2);
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700448}
449
Michael Krufky4e9154b2007-10-21 19:39:50 -0300450static void tda8295_standby(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300451{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300452 tda8295_agc1_out(fe, 0); /* Put AGC in tri-state */
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300453
Michael Krufky4e9154b2007-10-21 19:39:50 -0300454 tda8295_power(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300455}
456
Michael Krufky4e9154b2007-10-21 19:39:50 -0300457static void tda8290_init_if(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800458{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300459 struct tda8290_priv *priv = fe->analog_demod_priv;
460 struct tuner *t = priv->t;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300461
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800462 unsigned char set_VS[] = { 0x30, 0x6F };
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300463 unsigned char set_GP00_CF[] = { 0x20, 0x01 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800464 unsigned char set_GP01_CF[] = { 0x20, 0x0B };
465
Michael Krufky746d97322007-08-25 19:08:45 -0300466 if ((t->config == 1) || (t->config == 2))
Michael Krufkydb8a6952007-08-21 01:24:42 -0300467 tuner_i2c_xfer_send(&priv->i2c_props, set_GP00_CF, 2);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300468 else
Michael Krufkydb8a6952007-08-21 01:24:42 -0300469 tuner_i2c_xfer_send(&priv->i2c_props, set_GP01_CF, 2);
470 tuner_i2c_xfer_send(&priv->i2c_props, set_VS, 2);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800471}
472
Michael Krufky4e9154b2007-10-21 19:39:50 -0300473static void tda8295_init_if(struct dvb_frontend *fe)
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300474{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300475 struct tda8290_priv *priv = fe->analog_demod_priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300476
477 static unsigned char set_adc_ctl[] = { 0x33, 0x14 };
478 static unsigned char set_adc_ctl2[] = { 0x34, 0x00 };
479 static unsigned char set_pll_reg6[] = { 0x3e, 0x63 };
480 static unsigned char set_pll_reg0[] = { 0x38, 0x23 };
481 static unsigned char set_pll_reg7[] = { 0x3f, 0x01 };
482 static unsigned char set_pll_reg10[] = { 0x42, 0x61 };
483 static unsigned char set_gpio_reg0[] = { 0x44, 0x0b };
484
Michael Krufky4e9154b2007-10-21 19:39:50 -0300485 tda8295_power(fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300486
Michael Krufky4e9154b2007-10-21 19:39:50 -0300487 tda8295_set_easy_mode(fe, 0);
488 tda8295_set_video_std(fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300489
490 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl, 2);
491 tuner_i2c_xfer_send(&priv->i2c_props, set_adc_ctl2, 2);
492 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg6, 2);
493 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg0, 2);
494 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg7, 2);
495 tuner_i2c_xfer_send(&priv->i2c_props, set_pll_reg10, 2);
496 tuner_i2c_xfer_send(&priv->i2c_props, set_gpio_reg0, 2);
497
Michael Krufky4e9154b2007-10-21 19:39:50 -0300498 tda8295_agc1_out(fe, 0);
499 tda8295_agc2_out(fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300500}
501
Michael Krufky4e9154b2007-10-21 19:39:50 -0300502static void tda8290_init_tuner(struct dvb_frontend *fe)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800503{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300504 struct tda8290_priv *priv = fe->analog_demod_priv;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800505 unsigned char tda8275_init[] = { 0x00, 0x00, 0x00, 0x40, 0xdC, 0x04, 0xAf,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800506 0x3F, 0x2A, 0x04, 0xFF, 0x00, 0x00, 0x40 };
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800507 unsigned char tda8275a_init[] = { 0x00, 0x00, 0x00, 0x00, 0xdC, 0x05, 0x8b,
Nickolay V. Shmyrev9a741ec2005-11-08 21:37:50 -0800508 0x0c, 0x04, 0x20, 0xFF, 0x00, 0x00, 0x4b };
Michael Krufkyb2083192007-05-29 22:54:06 -0300509 struct i2c_msg msg = {.addr = priv->tda827x_addr, .flags=0,
Ricardo Cerqueirac2f6f9d2005-11-08 21:37:51 -0800510 .buf=tda8275_init, .len = 14};
Michael Krufkyb2083192007-05-29 22:54:06 -0300511 if (priv->tda827x_ver != 0)
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800512 msg.buf = tda8275a_init;
513
Michael Krufky4e9154b2007-10-21 19:39:50 -0300514 tda8290_i2c_bridge(fe, 1);
Michael Krufkydb8a6952007-08-21 01:24:42 -0300515 i2c_transfer(priv->i2c_props.adap, &msg, 1);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300516 tda8290_i2c_bridge(fe, 0);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800517}
518
519/*---------------------------------------------------------------------*/
520
Michael Krufky4e9154b2007-10-21 19:39:50 -0300521static void tda829x_release(struct dvb_frontend *fe)
Michael Krufky024cf532007-06-04 15:20:11 -0300522{
Michael Krufky4e9154b2007-10-21 19:39:50 -0300523 if (fe->ops.tuner_ops.release)
524 fe->ops.tuner_ops.release(fe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300525
Michael Krufky4e9154b2007-10-21 19:39:50 -0300526 kfree(fe->analog_demod_priv);
527 fe->analog_demod_priv = NULL;
Michael Krufky024cf532007-06-04 15:20:11 -0300528}
529
Michael Krufky1dde7a42007-10-21 13:40:56 -0300530static struct analog_tuner_ops tda8290_tuner_ops = {
Michael Krufky746d97322007-08-25 19:08:45 -0300531 .set_tv_freq = tda8290_set_freq,
532 .set_radio_freq = tda8290_set_freq,
533 .has_signal = tda8290_has_signal,
534 .standby = tda8290_standby,
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300535 .release = tda829x_release,
536};
537
Michael Krufky1dde7a42007-10-21 13:40:56 -0300538static struct analog_tuner_ops tda8295_tuner_ops = {
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300539 .set_tv_freq = tda8295_set_freq,
540 .set_radio_freq = tda8295_set_freq,
541 .has_signal = tda8295_has_signal,
542 .standby = tda8295_standby,
543 .release = tda829x_release,
Michael Krufky7fd8b262007-06-06 16:15:15 -0300544};
545
Michael Krufky746d97322007-08-25 19:08:45 -0300546int tda8290_attach(struct tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Michael Krufkyb2083192007-05-29 22:54:06 -0300548 struct tda8290_priv *priv = NULL;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800549 u8 data;
550 int i, ret, tuners_found;
551 u32 tuner_addrs;
552 struct i2c_msg msg = {.flags=I2C_M_RD, .buf=&data, .len = 1};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Michael Krufkyb2083192007-05-29 22:54:06 -0300554 priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
555 if (priv == NULL)
Michael Krufky746d97322007-08-25 19:08:45 -0300556 return -ENOMEM;
Michael Krufky16f29162007-10-21 15:22:25 -0300557 t->fe.analog_demod_priv = priv;
Michael Krufkyb2083192007-05-29 22:54:06 -0300558
Michael Krufky746d97322007-08-25 19:08:45 -0300559 priv->i2c_props.addr = t->i2c.addr;
560 priv->i2c_props.adap = t->i2c.adapter;
561 priv->cfg.config = &t->config;
562 priv->cfg.tuner_callback = t->tuner_callback;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300563 priv->t = t;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300564
Michael Krufky4e9154b2007-10-21 19:39:50 -0300565 tda8290_i2c_bridge(&t->fe, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800566 /* probe for tuner chip */
567 tuners_found = 0;
568 tuner_addrs = 0;
569 for (i=0x60; i<= 0x63; i++) {
570 msg.addr = i;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300571 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800572 if (ret == 1) {
573 tuners_found++;
574 tuner_addrs = (tuner_addrs << 8) + i;
575 }
576 }
577 /* if there is more than one tuner, we expect the right one is
578 behind the bridge and we choose the highest address that doesn't
579 give a response now
580 */
Michael Krufky4e9154b2007-10-21 19:39:50 -0300581 tda8290_i2c_bridge(&t->fe, 0);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800582 if(tuners_found > 1)
583 for (i = 0; i < tuners_found; i++) {
584 msg.addr = tuner_addrs & 0xff;
Michael Krufkydb8a6952007-08-21 01:24:42 -0300585 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800586 if(ret == 1)
587 tuner_addrs = tuner_addrs >> 8;
588 else
589 break;
590 }
591 if (tuner_addrs == 0) {
592 tuner_addrs = 0x61;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300593 tuner_info("could not clearly identify tuner address, defaulting to %x\n",
Nickolay V. Shmyrev01cb9632005-11-08 21:38:00 -0800594 tuner_addrs);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800595 } else {
596 tuner_addrs = tuner_addrs & 0xff;
Michael Krufky910bb3e2007-08-27 21:22:20 -0300597 tuner_info("setting tuner address to %x\n", tuner_addrs);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800598 }
Michael Krufkyb2083192007-05-29 22:54:06 -0300599 priv->tda827x_addr = tuner_addrs;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800600 msg.addr = tuner_addrs;
601
Michael Krufky4e9154b2007-10-21 19:39:50 -0300602 tda8290_i2c_bridge(&t->fe, 1);
Michael Krufky746d97322007-08-25 19:08:45 -0300603
Michael Krufkydb8a6952007-08-21 01:24:42 -0300604 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800605 if( ret != 1)
Michael Krufky910bb3e2007-08-27 21:22:20 -0300606 tuner_warn("TDA827x access failed!\n");
607
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800608 if ((data & 0x3c) == 0) {
Michael Krufky746d97322007-08-25 19:08:45 -0300609 strlcpy(t->i2c.name, "tda8290+75", sizeof(t->i2c.name));
Michael Krufkyb2083192007-05-29 22:54:06 -0300610 priv->tda827x_ver = 0;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800611 } else {
Michael Krufky746d97322007-08-25 19:08:45 -0300612 strlcpy(t->i2c.name, "tda8290+75a", sizeof(t->i2c.name));
Michael Krufkyb2083192007-05-29 22:54:06 -0300613 priv->tda827x_ver = 2;
Hartmut Hackmannde48eeb2005-11-08 21:37:48 -0800614 }
Michael Krufky746d97322007-08-25 19:08:45 -0300615 tda827x_attach(&t->fe, priv->tda827x_addr,
616 priv->i2c_props.adap, &priv->cfg);
Michael Krufky7fd8b262007-06-06 16:15:15 -0300617
Michael Krufky746d97322007-08-25 19:08:45 -0300618 /* FIXME: tda827x module doesn't probe the tuner until
619 * tda827x_initial_sleep is called
620 */
621 if (t->fe.ops.tuner_ops.sleep)
622 t->fe.ops.tuner_ops.sleep(&t->fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Michael Krufky1dde7a42007-10-21 13:40:56 -0300624 t->fe.ops.analog_demod_ops = &tda8290_tuner_ops;
Michael Krufky746d97322007-08-25 19:08:45 -0300625
626 tuner_info("type set to %s\n", t->i2c.name);
627
628 priv->cfg.tda827x_lpsel = 0;
629 t->mode = V4L2_TUNER_ANALOG_TV;
630
Michael Krufky4e9154b2007-10-21 19:39:50 -0300631 tda8290_init_tuner(&t->fe);
632 tda8290_init_if(&t->fe);
Michael Krufky746d97322007-08-25 19:08:45 -0300633 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300635EXPORT_SYMBOL_GPL(tda8290_attach);
636
637int tda8295_attach(struct tuner *t)
638{
639 struct tda8290_priv *priv = NULL;
640 u8 data;
641 int i, ret, tuners_found;
642 u32 tuner_addrs;
643 struct i2c_msg msg = { .flags = I2C_M_RD, .buf = &data, .len = 1 };
644
645 priv = kzalloc(sizeof(struct tda8290_priv), GFP_KERNEL);
646 if (priv == NULL)
647 return -ENOMEM;
Michael Krufky16f29162007-10-21 15:22:25 -0300648 t->fe.analog_demod_priv = priv;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300649
650 priv->i2c_props.addr = t->i2c.addr;
651 priv->i2c_props.adap = t->i2c.adapter;
Michael Krufky4e9154b2007-10-21 19:39:50 -0300652 priv->t = t;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300653
Michael Krufky4e9154b2007-10-21 19:39:50 -0300654 tda8295_i2c_bridge(&t->fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300655 /* probe for tuner chip */
656 tuners_found = 0;
657 tuner_addrs = 0;
658 for (i = 0x60; i <= 0x63; i++) {
659 msg.addr = i;
660 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
661 if (ret == 1) {
662 tuners_found++;
663 tuner_addrs = (tuner_addrs << 8) + i;
664 }
665 }
666 /* if there is more than one tuner, we expect the right one is
667 behind the bridge and we choose the highest address that doesn't
668 give a response now
669 */
Michael Krufky4e9154b2007-10-21 19:39:50 -0300670 tda8295_i2c_bridge(&t->fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300671 if (tuners_found > 1)
672 for (i = 0; i < tuners_found; i++) {
673 msg.addr = tuner_addrs & 0xff;
674 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
675 if (ret == 1)
676 tuner_addrs = tuner_addrs >> 8;
677 else
678 break;
679 }
680 if (tuner_addrs == 0) {
681 tuner_addrs = 0x60;
682 tuner_info("could not clearly identify tuner address, "
683 "defaulting to %x\n", tuner_addrs);
684 } else {
685 tuner_addrs = tuner_addrs & 0xff;
686 tuner_info("setting tuner address to %x\n", tuner_addrs);
687 }
688 priv->tda827x_addr = tuner_addrs;
689 msg.addr = tuner_addrs;
690
Michael Krufky4e9154b2007-10-21 19:39:50 -0300691 tda8295_i2c_bridge(&t->fe, 1);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300692 ret = i2c_transfer(priv->i2c_props.adap, &msg, 1);
Michael Krufky4e9154b2007-10-21 19:39:50 -0300693 tda8295_i2c_bridge(&t->fe, 0);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300694 if (ret != 1)
695 tuner_warn("TDA827x access failed!\n");
696 if ((data & 0x3c) == 0) {
697 strlcpy(t->i2c.name, "tda8295+18271", sizeof(t->i2c.name));
698 tda18271_attach(&t->fe, priv->tda827x_addr,
699 priv->i2c_props.adap);
700 priv->tda827x_ver = 4;
701 } else {
702 strlcpy(t->i2c.name, "tda8295+75a", sizeof(t->i2c.name));
703 tda827x_attach(&t->fe, priv->tda827x_addr,
704 priv->i2c_props.adap, &priv->cfg);
705
706 /* FIXME: tda827x module doesn't probe the tuner until
707 * tda827x_initial_sleep is called
708 */
709 if (t->fe.ops.tuner_ops.sleep)
710 t->fe.ops.tuner_ops.sleep(&t->fe);
711 priv->tda827x_ver = 2;
712 }
713 priv->tda827x_ver |= 1; /* signifies 8295 vs 8290 */
714 tuner_info("type set to %s\n", t->i2c.name);
715
Michael Krufky1dde7a42007-10-21 13:40:56 -0300716 t->fe.ops.analog_demod_ops = &tda8295_tuner_ops;
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300717
718 priv->cfg.tda827x_lpsel = 0;
719 t->mode = V4L2_TUNER_ANALOG_TV;
720
Michael Krufky4e9154b2007-10-21 19:39:50 -0300721 tda8295_init_if(&t->fe);
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300722 return 0;
723}
724EXPORT_SYMBOL_GPL(tda8295_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Michael Krufky746d97322007-08-25 19:08:45 -0300726int tda8290_probe(struct tuner *t)
Hartmut Hackmann95736032005-11-08 21:38:00 -0800727{
Michael Krufky910bb3e2007-08-27 21:22:20 -0300728 struct tuner_i2c_props i2c_props = {
Michael Krufky746d97322007-08-25 19:08:45 -0300729 .adap = t->i2c.adapter,
730 .addr = t->i2c.addr
Michael Krufky910bb3e2007-08-27 21:22:20 -0300731 };
Michael Krufkydb8a6952007-08-21 01:24:42 -0300732
Hartmut Hackmann44fd06f2006-02-27 00:09:11 -0300733 unsigned char soft_reset[] = { 0x00, 0x00 };
734 unsigned char easy_mode_b[] = { 0x01, 0x02 };
735 unsigned char easy_mode_g[] = { 0x01, 0x04 };
736 unsigned char restore_9886[] = { 0x00, 0xd6, 0x30 };
Hartmut Hackmann95736032005-11-08 21:38:00 -0800737 unsigned char addr_dto_lsb = 0x07;
738 unsigned char data;
739
Michael Krufky910bb3e2007-08-27 21:22:20 -0300740 tuner_i2c_xfer_send(&i2c_props, easy_mode_b, 2);
741 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
742 tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
743 tuner_i2c_xfer_recv(&i2c_props, &data, 1);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800744 if (data == 0) {
Michael Krufky910bb3e2007-08-27 21:22:20 -0300745 tuner_i2c_xfer_send(&i2c_props, easy_mode_g, 2);
746 tuner_i2c_xfer_send(&i2c_props, soft_reset, 2);
747 tuner_i2c_xfer_send(&i2c_props, &addr_dto_lsb, 1);
748 tuner_i2c_xfer_recv(&i2c_props, &data, 1);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800749 if (data == 0x7b) {
750 return 0;
751 }
752 }
Michael Krufky910bb3e2007-08-27 21:22:20 -0300753 tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
Hartmut Hackmann95736032005-11-08 21:38:00 -0800754 return -1;
755}
Michael Krufky910bb3e2007-08-27 21:22:20 -0300756EXPORT_SYMBOL_GPL(tda8290_probe);
Michael Krufky910bb3e2007-08-27 21:22:20 -0300757
758MODULE_DESCRIPTION("Philips TDA8290 + TDA8275 / TDA8275a tuner driver");
Michael Krufky5bea1cd2007-10-22 09:56:38 -0300759MODULE_AUTHOR("Gerd Knorr, Hartmut Hackmann, Michael Krufky");
Michael Krufky910bb3e2007-08-27 21:22:20 -0300760MODULE_LICENSE("GPL");
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762/*
763 * Overrides for Emacs so that we follow Linus's tabbing style.
764 * ---------------------------------------------------------------------------
765 * Local variables:
766 * c-basic-offset: 8
767 * End:
768 */