tea5767.c 8.8 KB
Newer Older
1 2 3 4
/*
 * For Philips TEA5767 FM Chip used on some TV Cards like Prolink Pixelview
 * I2C address is allways 0xC0.
 *
M
Mauro Carvalho Chehab 已提交
5
 * $Id: tea5767.c,v 1.18 2005/07/07 03:02:55 mchehab Exp $
6 7 8 9 10 11 12 13 14
 *
 * Copyright (c) 2005 Mauro Carvalho Chehab (mchehab@brturbo.com.br)
 * This code is placed under the terms of the GNU General Public License
 *
 * tea5767 autodetection thanks to Torsten Seeboth and Atsushi Nakagawa
 * from their contributions on DScaler.
 */

#include <linux/i2c.h>
M
Mauro Carvalho Chehab 已提交
15 16 17
#include <linux/videodev.h>
#include <linux/delay.h>
#include <media/tuner.h>
18 19 20 21 22 23 24 25 26 27 28
#include <media/tuner.h>

#define PREFIX "TEA5767 "

/*****************************************************************************/

/******************************
 * Write mode register values *
 ******************************/

/* First register */
M
Mauro Carvalho Chehab 已提交
29 30
#define TEA5767_MUTE		0x80	/* Mutes output */
#define TEA5767_SEARCH		0x40	/* Activates station search */
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
/* Bits 0-5 for divider MSB */

/* Second register */
/* Bits 0-7 for divider LSB */

/* Third register */

/* Station search from botton to up */
#define TEA5767_SEARCH_UP	0x80

/* Searches with ADC output = 10 */
#define TEA5767_SRCH_HIGH_LVL	0x60

/* Searches with ADC output = 10 */
#define TEA5767_SRCH_MID_LVL	0x40

/* Searches with ADC output = 5 */
#define TEA5767_SRCH_LOW_LVL	0x20

/* if on, div=4*(Frf+Fif)/Fref otherwise, div=4*(Frf-Fif)/Freq) */
#define TEA5767_HIGH_LO_INJECT	0x10

/* Disable stereo */
#define TEA5767_MONO		0x08

/* Disable right channel and turns to mono */
#define TEA5767_MUTE_RIGHT	0x04

/* Disable left channel and turns to mono */
#define TEA5767_MUTE_LEFT	0x02

#define TEA5767_PORT1_HIGH	0x01

/* Forth register */
#define TEA5767_PORT2_HIGH	0x80
/* Chips stops working. Only I2C bus remains on */
#define TEA5767_STDBY		0x40

/* Japan freq (76-108 MHz. If disabled, 87.5-108 MHz */
#define TEA5767_JAPAN_BAND	0x20

/* Unselected means 32.768 KHz freq as reference. Otherwise Xtal at 13 MHz */
#define TEA5767_XTAL_32768	0x10

/* Cuts weak signals */
#define TEA5767_SOFT_MUTE	0x08

/* Activates high cut control */
#define TEA5767_HIGH_CUT_CTRL	0x04

/* Activates stereo noise control */
#define TEA5767_ST_NOISE_CTL	0x02

/* If activate PORT 1 indicates SEARCH or else it is used as PORT1 */
#define TEA5767_SRCH_IND	0x01

/* Fiveth register */

/* By activating, it will use Xtal at 13 MHz as reference for divider */
#define TEA5767_PLLREF_ENABLE	0x80

/* By activating, deemphasis=50, or else, deemphasis of 50us */
#define TEA5767_DEEMPH_75	0X40

/*****************************
 * Read mode register values *
 *****************************/

/* First register */
#define TEA5767_READY_FLAG_MASK	0x80
#define TEA5767_BAND_LIMIT_MASK	0X40
/* Bits 0-5 for divider MSB after search or preset */

/* Second register */
/* Bits 0-7 for divider LSB after search or preset */

/* Third register */
#define TEA5767_STEREO_MASK	0x80
#define TEA5767_IF_CNTR_MASK	0x7f

/* Four register */
#define TEA5767_ADC_LEVEL_MASK	0xf0

/* should be 0 */
#define TEA5767_CHIP_ID_MASK	0x0f

/* Fiveth register */
/* Reserved for future extensions */
#define TEA5767_RESERVED_MASK	0xff

M
Mauro Carvalho Chehab 已提交
121 122 123 124 125 126 127 128
enum tea5767_xtal_freq {
        TEA5767_LOW_LO_32768    = 0,
        TEA5767_HIGH_LO_32768   = 1,
        TEA5767_LOW_LO_13MHz    = 2,
        TEA5767_HIGH_LO_13MHz   = 3,
};


129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
/*****************************************************************************/

static void set_tv_freq(struct i2c_client *c, unsigned int freq)
{
	struct tuner *t = i2c_get_clientdata(c);

	tuner_warn("This tuner doesn't support TV freq.\n");
}

static void tea5767_status_dump(unsigned char *buffer)
{
	unsigned int div, frq;

	if (TEA5767_READY_FLAG_MASK & buffer[0])
		printk(PREFIX "Ready Flag ON\n");
	else
		printk(PREFIX "Ready Flag OFF\n");

	if (TEA5767_BAND_LIMIT_MASK & buffer[0])
		printk(PREFIX "Tuner at band limit\n");
	else
		printk(PREFIX "Tuner not at band limit\n");

M
Mauro Carvalho Chehab 已提交
152
	div = ((buffer[0] & 0x3f) << 8) | buffer[1];
153 154 155

	switch (TEA5767_HIGH_LO_32768) {
	case TEA5767_HIGH_LO_13MHz:
M
Mauro Carvalho Chehab 已提交
156
		frq = 1000 * (div * 50 - 700 - 225) / 4;	/* Freq in KHz */
157 158
		break;
	case TEA5767_LOW_LO_13MHz:
M
Mauro Carvalho Chehab 已提交
159
		frq = 1000 * (div * 50 + 700 + 225) / 4;	/* Freq in KHz */
160 161
		break;
	case TEA5767_LOW_LO_32768:
M
Mauro Carvalho Chehab 已提交
162
		frq = 1000 * (div * 32768 / 1000 + 700 + 225) / 4;	/* Freq in KHz */
163 164 165
		break;
	case TEA5767_HIGH_LO_32768:
	default:
M
Mauro Carvalho Chehab 已提交
166
		frq = 1000 * (div * 32768 / 1000 - 700 - 225) / 4;	/* Freq in KHz */
167 168
		break;
	}
M
Mauro Carvalho Chehab 已提交
169 170
	buffer[0] = (div >> 8) & 0x3f;
	buffer[1] = div & 0xff;
171 172

	printk(PREFIX "Frequency %d.%03d KHz (divider = 0x%04x)\n",
M
Mauro Carvalho Chehab 已提交
173
	       frq / 1000, frq % 1000, div);
174 175 176 177 178 179

	if (TEA5767_STEREO_MASK & buffer[2])
		printk(PREFIX "Stereo\n");
	else
		printk(PREFIX "Mono\n");

M
Mauro Carvalho Chehab 已提交
180
	printk(PREFIX "IF Counter = %d\n", buffer[2] & TEA5767_IF_CNTR_MASK);
181

M
Mauro Carvalho Chehab 已提交
182 183
	printk(PREFIX "ADC Level = %d\n",
	       (buffer[3] & TEA5767_ADC_LEVEL_MASK) >> 4);
184

M
Mauro Carvalho Chehab 已提交
185
	printk(PREFIX "Chip ID = %d\n", (buffer[3] & TEA5767_CHIP_ID_MASK));
186

M
Mauro Carvalho Chehab 已提交
187 188
	printk(PREFIX "Reserved = 0x%02x\n",
	       (buffer[4] & TEA5767_RESERVED_MASK));
189 190 191 192 193 194
}

/* Freq should be specifyed at 62.5 Hz */
static void set_radio_freq(struct i2c_client *c, unsigned int frq)
{
	struct tuner *t = i2c_get_clientdata(c);
M
Mauro Carvalho Chehab 已提交
195
	unsigned char buffer[5];
196 197 198
	unsigned div;
	int rc;

M
Mauro Carvalho Chehab 已提交
199
	tuner_dbg (PREFIX "radio freq counter %d\n", frq);
200 201 202 203 204

	/* Rounds freq to next decimal value - for 62.5 KHz step */
	/* frq = 20*(frq/16)+radio_frq[frq%16]; */

	buffer[2] = TEA5767_PORT1_HIGH;
M
Mauro Carvalho Chehab 已提交
205 206 207 208 209 210 211 212
	buffer[3] = TEA5767_PORT2_HIGH | TEA5767_HIGH_CUT_CTRL |
		    TEA5767_ST_NOISE_CTL | TEA5767_JAPAN_BAND;
	buffer[4] = 0;

	if (t->mode == T_STANDBY) {
		tuner_dbg("TEA5767 set to standby mode\n");
		buffer[3] |= TEA5767_STDBY;
	}
213 214 215 216

	if (t->audmode == V4L2_TUNER_MODE_MONO) {
		tuner_dbg("TEA5767 set to mono\n");
		buffer[2] |= TEA5767_MONO;
M
Mauro Carvalho Chehab 已提交
217 218 219
	} else {
		tuner_dbg("TEA5767 set to stereo\n");
	}
220

M
Mauro Carvalho Chehab 已提交
221 222
	/* Should be replaced */
	switch (TEA5767_HIGH_LO_32768) {
223
	case TEA5767_HIGH_LO_13MHz:
M
Mauro Carvalho Chehab 已提交
224
		tuner_dbg ("TEA5767 radio HIGH LO inject xtal @ 13 MHz\n");
225 226
		buffer[2] |= TEA5767_HIGH_LO_INJECT;
		buffer[4] |= TEA5767_PLLREF_ENABLE;
M
Mauro Carvalho Chehab 已提交
227
		div = (frq * 4 / 16 + 700 + 225 + 25) / 50;
228 229
		break;
	case TEA5767_LOW_LO_13MHz:
M
Mauro Carvalho Chehab 已提交
230
		tuner_dbg ("TEA5767 radio LOW LO inject xtal @ 13 MHz\n");
231 232

		buffer[4] |= TEA5767_PLLREF_ENABLE;
M
Mauro Carvalho Chehab 已提交
233
		div = (frq * 4 / 16 - 700 - 225 + 25) / 50;
234 235
		break;
	case TEA5767_LOW_LO_32768:
M
Mauro Carvalho Chehab 已提交
236
		tuner_dbg ("TEA5767 radio LOW LO inject xtal @ 32,768 MHz\n");
237 238
		buffer[3] |= TEA5767_XTAL_32768;
		/* const 700=4000*175 Khz - to adjust freq to right value */
M
Mauro Carvalho Chehab 已提交
239
		div = (1000 * (frq * 4 / 16 - 700 - 225) + 16384) >> 15;
240 241 242
		break;
	case TEA5767_HIGH_LO_32768:
	default:
M
Mauro Carvalho Chehab 已提交
243
		tuner_dbg ("TEA5767 radio HIGH LO inject xtal @ 32,768 MHz\n");
244 245 246

		buffer[2] |= TEA5767_HIGH_LO_INJECT;
		buffer[3] |= TEA5767_XTAL_32768;
M
Mauro Carvalho Chehab 已提交
247
		div = (1000 * (frq * 4 / 16 + 700 + 225) + 16384) >> 15;
248 249
		break;
	}
M
Mauro Carvalho Chehab 已提交
250 251
	buffer[0] = (div >> 8) & 0x3f;
	buffer[1] = div & 0xff;
252

M
Mauro Carvalho Chehab 已提交
253
	if (tuner_debug)
254 255
		tea5767_status_dump(buffer);

M
Mauro Carvalho Chehab 已提交
256 257
	if (5 != (rc = i2c_master_send(c, buffer, 5)))
		tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc);
258 259 260 261 262 263 264 265
}

static int tea5767_signal(struct i2c_client *c)
{
	unsigned char buffer[5];
	int rc;
	struct tuner *t = i2c_get_clientdata(c);

M
Mauro Carvalho Chehab 已提交
266 267 268
	memset(buffer, 0, sizeof(buffer));
	if (5 != (rc = i2c_master_recv(c, buffer, 5)))
		tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc);
269

M
Mauro Carvalho Chehab 已提交
270
	return ((buffer[3] & TEA5767_ADC_LEVEL_MASK) << (13 - 4));
271 272 273 274 275 276 277 278
}

static int tea5767_stereo(struct i2c_client *c)
{
	unsigned char buffer[5];
	int rc;
	struct tuner *t = i2c_get_clientdata(c);

M
Mauro Carvalho Chehab 已提交
279 280 281
	memset(buffer, 0, sizeof(buffer));
	if (5 != (rc = i2c_master_recv(c, buffer, 5)))
		tuner_warn("i2c i/o error: rc == %d (should be 5)\n", rc);
282 283 284

	rc = buffer[2] & TEA5767_STEREO_MASK;

M
Mauro Carvalho Chehab 已提交
285
	tuner_dbg("TEA5767 radio ST GET = %02x\n", rc);
286

M
Mauro Carvalho Chehab 已提交
287
	return ((buffer[2] & TEA5767_STEREO_MASK) ? V4L2_TUNER_SUB_STEREO : 0);
288 289
}

M
Mauro Carvalho Chehab 已提交
290
int tea5767_autodetection(struct i2c_client *c)
291
{
M
Mauro Carvalho Chehab 已提交
292
	unsigned char buffer[5] = { 0xff, 0xff, 0xff, 0xff, 0xff };
293 294 295
	int rc;
	struct tuner *t = i2c_get_clientdata(c);

M
Mauro Carvalho Chehab 已提交
296 297
	if (5 != (rc = i2c_master_recv(c, buffer, 5))) {
		tuner_warn("it is not a TEA5767. Received %i chars.\n", rc);
298 299 300 301
		return EINVAL;
	}

	/* If all bytes are the same then it's a TV tuner and not a tea5767 chip. */
M
Mauro Carvalho Chehab 已提交
302 303 304
	if (buffer[0] == buffer[1] && buffer[0] == buffer[2] &&
	    buffer[0] == buffer[3] && buffer[0] == buffer[4]) {
		tuner_warn("All bytes are equal. It is not a TEA5767\n");
305 306 307 308 309
		return EINVAL;
	}

	/*  Status bytes:
	 *  Byte 4: bit 3:1 : CI (Chip Identification) == 0
M
Mauro Carvalho Chehab 已提交
310
	 *          bit 0   : internally set to 0
311 312 313 314
	 *  Byte 5: bit 7:0 : == 0
	 */

	if (!((buffer[3] & 0x0f) == 0x00) && (buffer[4] == 0x00)) {
M
Mauro Carvalho Chehab 已提交
315
		tuner_warn("Chip ID is not zero. It is not a TEA5767\n");
316 317
		return EINVAL;
	}
M
Mauro Carvalho Chehab 已提交
318
	tuner_warn("TEA5767 detected.\n");
319 320 321 322 323 324 325
	return 0;
}

int tea5767_tuner_init(struct i2c_client *c)
{
	struct tuner *t = i2c_get_clientdata(c);

M
Mauro Carvalho Chehab 已提交
326 327
	if (tea5767_autodetection(c) == EINVAL)
		return EINVAL;
328

M
Mauro Carvalho Chehab 已提交
329 330
	tuner_info("type set to %d (%s)\n", t->type, "Philips TEA5767HN FM Radio");
	strlcpy(c->name, "tea5767", sizeof(c->name));
331

M
Mauro Carvalho Chehab 已提交
332
	t->tv_freq = set_tv_freq;
333 334
	t->radio_freq = set_radio_freq;
	t->has_signal = tea5767_signal;
M
Mauro Carvalho Chehab 已提交
335
	t->is_stereo = tea5767_stereo;
336 337 338

	return (0);
}