em28xx-i2c.c 13.5 KB
Newer Older
1
/*
2
   em28xx-i2c.c - driver for Empia EM2800/EM2820/2840 USB video capture devices
3

4 5
   Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
		      Markus Rechberger <mrechberger@gmail.com>
6
		      Mauro Carvalho Chehab <mchehab@infradead.org>
7
		      Sascha Sommer <saschasommer@freenet.de>
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/usb.h>
#include <linux/i2c.h>

29
#include "em28xx.h"
30
#include "tuner-xc2028.h"
31
#include <media/v4l2-common.h>
32
#include <media/tuner.h>
33 34 35

/* ----------------------------------------------------------- */

36
static unsigned int i2c_scan;
37 38 39
module_param(i2c_scan, int, 0444);
MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time");

40
static unsigned int i2c_debug;
41 42 43
module_param(i2c_debug, int, 0644);
MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");

44 45 46 47 48 49 50
#define dprintk2(lvl, fmt, args...)			\
do {							\
	if (i2c_debug >= lvl) {				\
		printk(KERN_DEBUG "%s at %s: " fmt,	\
		       dev->name, __func__ , ##args);	\
      } 						\
} while (0)
51 52

/*
53 54
 * em2800_i2c_send_bytes()
 * send up to 4 bytes to the em2800 i2c device
55
 */
56
static int em2800_i2c_send_bytes(struct em28xx *dev, u8 addr, u8 *buf, u16 len)
57 58 59
{
	int ret;
	int write_timeout;
60
	u8 b2[6];
61 62 63 64

	if (len < 1 || len > 4)
		return -EOPNOTSUPP;

65 66 67 68 69 70 71 72 73 74 75
	BUG_ON(len < 1 || len > 4);
	b2[5] = 0x80 + len - 1;
	b2[4] = addr;
	b2[3] = buf[0];
	if (len > 1)
		b2[2] = buf[1];
	if (len > 2)
		b2[1] = buf[2];
	if (len > 3)
		b2[0] = buf[3];

76
	/* trigger write */
77
	ret = dev->em28xx_write_regs(dev, 4 - len, &b2[4 - len], 2 + len);
78
	if (ret != 2 + len) {
79
		em28xx_warn("writing to i2c device failed (error=%i)\n", ret);
80 81
		return -EIO;
	}
82 83
	/* wait for completion */
	for (write_timeout = EM2800_I2C_XFER_TIMEOUT; write_timeout > 0;
84
	     write_timeout -= 5) {
85
		ret = dev->em28xx_read_reg(dev, 0x05);
86 87
		if (ret == 0x80 + len - 1)
			return len;
88
		msleep(5);
89
	}
90
	em28xx_warn("i2c write timed out\n");
91 92 93 94
	return -EIO;
}

/*
95 96
 * em2800_i2c_recv_bytes()
 * read up to 4 bytes from the em2800 i2c device
97
 */
98
static int em2800_i2c_recv_bytes(struct em28xx *dev, u8 addr, u8 *buf, u16 len)
99
{
100
	u8 buf2[4];
101
	int ret;
102 103 104 105 106 107 108 109 110 111 112 113 114 115
	int read_timeout;
	int i;

	if (len < 1 || len > 4)
		return -EOPNOTSUPP;

	/* trigger read */
	buf2[1] = 0x84 + len - 1;
	buf2[0] = addr;
	ret = dev->em28xx_write_regs(dev, 0x04, buf2, 2);
	if (ret != 2) {
		em28xx_warn("failed to trigger read from i2c address 0x%x "
			    "(error=%i)\n", addr, ret);
		return (ret < 0) ? ret : -EIO;
116
	}
117

118 119 120 121 122 123 124
	/* wait for completion */
	for (read_timeout = EM2800_I2C_XFER_TIMEOUT; read_timeout > 0;
	     read_timeout -= 5) {
		ret = dev->em28xx_read_reg(dev, 0x05);
		if (ret == 0x84 + len - 1) {
			break;
		} else if (ret == 0x94 + len - 1) {
125
			return -ENODEV;
126 127 128 129 130
		} else if (ret < 0) {
			em28xx_warn("failed to get i2c transfer status from "
				    "bridge register (error=%i)\n", ret);
			return ret;
		}
131
		msleep(5);
132
	}
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
	if (ret != 0x84 + len - 1)
		em28xx_warn("read from i2c device at 0x%x timed out\n", addr);

	/* get the received message */
	ret = dev->em28xx_read_reg_req_len(dev, 0x00, 4-len, buf2, len);
	if (ret != len) {
		em28xx_warn("reading from i2c device at 0x%x failed: "
			    "couldn't get the received message from the bridge "
			    "(error=%i)\n", addr, ret);
		return (ret < 0) ? ret : -EIO;
	}
	for (i = 0; i < len; i++)
		buf[i] = buf2[len - 1 - i];

	return ret;
148 149 150
}

/*
151 152
 * em2800_i2c_check_for_device()
 * check if there is an i2c device at the supplied address
153
 */
154
static int em2800_i2c_check_for_device(struct em28xx *dev, u8 addr)
155
{
156
	u8 buf;
157
	int ret;
158

159 160 161 162
	ret = em2800_i2c_recv_bytes(dev, addr, &buf, 1);
	if (ret == 1)
		return 0;
	return (ret < 0) ? ret : -EIO;
163 164 165
}

/*
166
 * em28xx_i2c_send_bytes()
167
 */
168 169
static int em28xx_i2c_send_bytes(struct em28xx *dev, u16 addr, u8 *buf,
				 u16 len, int stop)
170 171
{
	int wrcount = 0;
172
	int write_timeout, ret;
173

174 175 176
	if (len < 1 || len > 64)
		return -EOPNOTSUPP;

177
	wrcount = dev->em28xx_write_regs_req(dev, stop ? 2 : 3, addr, buf, len);
178

179
	/* Seems to be required after a write */
180
	for (write_timeout = EM2800_I2C_XFER_TIMEOUT; write_timeout > 0;
181 182 183 184 185 186 187
	     write_timeout -= 5) {
		ret = dev->em28xx_read_reg(dev, 0x05);
		if (!ret)
			break;
		msleep(5);
	}

188 189 190 191
	return wrcount;
}

/*
192
 * em28xx_i2c_recv_bytes()
193 194
 * read a byte from the i2c device
 */
195
static int em28xx_i2c_recv_bytes(struct em28xx *dev, u16 addr, u8 *buf, u16 len)
196 197
{
	int ret;
198 199 200 201

	if (len < 1 || len > 64)
		return -EOPNOTSUPP;

202
	ret = dev->em28xx_read_reg_req_len(dev, 2, addr, buf, len);
203
	if (ret < 0) {
204
		em28xx_warn("reading i2c device failed (error=%i)\n", ret);
205 206
		return ret;
	}
207
	if (dev->em28xx_read_reg(dev, 0x5) != 0)
208 209 210 211 212
		return -ENODEV;
	return ret;
}

/*
213
 * em28xx_i2c_check_for_device()
214 215
 * check if there is a i2c_device at the supplied address
 */
216
static int em28xx_i2c_check_for_device(struct em28xx *dev, u16 addr)
217 218 219
{
	int ret;

220
	ret = dev->em28xx_read_reg_req(dev, 2, addr);
221
	if (ret < 0) {
222
		em28xx_warn("reading from i2c device failed (error=%i)\n", ret);
223 224
		return ret;
	}
225
	if (dev->em28xx_read_reg(dev, 0x5) != 0)
226 227 228 229 230
		return -ENODEV;
	return 0;
}

/*
231
 * em28xx_i2c_xfer()
232 233
 * the main i2c transfer function
 */
234
static int em28xx_i2c_xfer(struct i2c_adapter *i2c_adap,
235 236
			   struct i2c_msg msgs[], int num)
{
237
	struct em28xx *dev = i2c_adap->algo_data;
238 239 240 241 242 243
	int addr, rc, i, byte;

	if (num <= 0)
		return 0;
	for (i = 0; i < num; i++) {
		addr = msgs[i].addr << 1;
244
		dprintk2(2, "%s %s addr=%x len=%d:",
245 246
			 (msgs[i].flags & I2C_M_RD) ? "read" : "write",
			 i == num - 1 ? "stop" : "nonstop", addr, msgs[i].len);
247
		if (!msgs[i].len) { /* no len: check only for device presence */
248
			if (dev->board.is_em2800)
249 250
				rc = em2800_i2c_check_for_device(dev, addr);
			else
251
				rc = em28xx_i2c_check_for_device(dev, addr);
252
			if (rc < 0) {
253
				dprintk2(2, " no device\n");
254 255 256
				return rc;
			}

257
		} else if (msgs[i].flags & I2C_M_RD) {
258
			/* read bytes */
259
			if (dev->board.is_em2800)
260 261 262 263
				rc = em2800_i2c_recv_bytes(dev, addr,
							   msgs[i].buf,
							   msgs[i].len);
			else
264
				rc = em28xx_i2c_recv_bytes(dev, addr,
265 266
							   msgs[i].buf,
							   msgs[i].len);
267 268
			if (i2c_debug >= 2) {
				for (byte = 0; byte < msgs[i].len; byte++)
269 270 271 272
					printk(" %02x", msgs[i].buf[byte]);
			}
		} else {
			/* write bytes */
273
			if (i2c_debug >= 2) {
274 275 276
				for (byte = 0; byte < msgs[i].len; byte++)
					printk(" %02x", msgs[i].buf[byte]);
			}
277
			if (dev->board.is_em2800)
278 279 280 281
				rc = em2800_i2c_send_bytes(dev, addr,
							   msgs[i].buf,
							   msgs[i].len);
			else
282
				rc = em28xx_i2c_send_bytes(dev, addr,
283 284 285
							   msgs[i].buf,
							   msgs[i].len,
							   i == num - 1);
286
		}
287 288
		if (rc < 0)
			goto err;
289
		if (i2c_debug >= 2)
290 291 292 293
			printk("\n");
	}

	return num;
294 295
err:
	dprintk2(2, " ERROR: %i\n", rc);
296 297 298
	return rc;
}

299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
/* based on linux/sunrpc/svcauth.h and linux/hash.h
 * The original hash function returns a different value, if arch is x86_64
 *  or i386.
 */
static inline unsigned long em28xx_hash_mem(char *buf, int length, int bits)
{
	unsigned long hash = 0;
	unsigned long l = 0;
	int len = 0;
	unsigned char c;
	do {
		if (len == length) {
			c = (char)len;
			len = -1;
		} else
			c = *buf++;
		l = (l << 8) | c;
		len++;
		if ((len & (32 / 8 - 1)) == 0)
			hash = ((hash^l) * 0x9e370001UL);
	} while (len);

	return (hash >> (32 - bits)) & 0xffffffffUL;
}

324
static int em28xx_i2c_eeprom(struct em28xx *dev, unsigned char *eedata, int len)
325 326
{
	unsigned char buf, *p = eedata;
327
	struct em28xx_eeprom *em_eeprom = (void *)eedata;
328 329
	int i, err, size = len, block;

330 331 332
	if (dev->chip_id == CHIP_ID_EM2874 ||
	    dev->chip_id == CHIP_ID_EM28174 ||
	    dev->chip_id == CHIP_ID_EM2884) {
333 334 335 336 337 338 339 340 341 342
		/* Empia switched to a 16-bit addressable eeprom in newer
		   devices.  While we could certainly write a routine to read
		   the eeprom, there is nothing of use in there that cannot be
		   accessed through registers, and there is the risk that we
		   could corrupt the eeprom (since a 16-bit read call is
		   interpreted as a write call by 8-bit eeproms).
		*/
		return 0;
	}

343
	dev->i2c_client.addr = 0xa0 >> 1;
344 345 346

	/* Check if board has eeprom */
	err = i2c_master_recv(&dev->i2c_client, &buf, 0);
347
	if (err < 0) {
348 349 350
		em28xx_errdev("board has no eeprom\n");
		memset(eedata, 0, len);
		return -ENODEV;
351
	}
352

353
	buf = 0;
354 355 356

	err = i2c_master_send(&dev->i2c_client, &buf, 1);
	if (err != 1) {
357 358
		printk(KERN_INFO "%s: Huh, no eeprom present (err=%d)?\n",
		       dev->name, err);
359
		return err;
360 361 362 363 364 365 366 367 368 369 370 371
	}
	while (size > 0) {
		if (size > 16)
			block = 16;
		else
			block = size;

		if (block !=
		    (err = i2c_master_recv(&dev->i2c_client, p, block))) {
			printk(KERN_WARNING
			       "%s: i2c eeprom read error (err=%d)\n",
			       dev->name, err);
372
			return err;
373 374 375 376 377 378 379 380 381 382 383 384
		}
		size -= block;
		p += block;
	}
	for (i = 0; i < len; i++) {
		if (0 == (i % 16))
			printk(KERN_INFO "%s: i2c eeprom %02x:", dev->name, i);
		printk(" %02x", eedata[i]);
		if (15 == (i % 16))
			printk("\n");
	}

385 386 387
	if (em_eeprom->id == 0x9567eb1a)
		dev->hash = em28xx_hash_mem(eedata, len, 32);

388 389 390 391
	printk(KERN_INFO "%s: EEPROM ID= 0x%08x, EEPROM hash = 0x%08lx\n",
	       dev->name, em_eeprom->id, dev->hash);

	printk(KERN_INFO "%s: EEPROM info:\n", dev->name);
392 393 394

	switch (em_eeprom->chip_conf >> 4 & 0x3) {
	case 0:
395
		printk(KERN_INFO "%s:\tNo audio on board.\n", dev->name);
396 397
		break;
	case 1:
398 399
		printk(KERN_INFO "%s:\tAC97 audio (5 sample rates)\n",
				 dev->name);
400 401
		break;
	case 2:
402 403
		printk(KERN_INFO "%s:\tI2S audio, sample rate=32k\n",
				 dev->name);
404 405
		break;
	case 3:
406 407
		printk(KERN_INFO "%s:\tI2S audio, 3 sample rates\n",
				 dev->name);
408 409 410 411
		break;
	}

	if (em_eeprom->chip_conf & 1 << 3)
412
		printk(KERN_INFO "%s:\tUSB Remote wakeup capable\n", dev->name);
413 414

	if (em_eeprom->chip_conf & 1 << 2)
415
		printk(KERN_INFO "%s:\tUSB Self power capable\n", dev->name);
416 417 418

	switch (em_eeprom->chip_conf & 0x3) {
	case 0:
419
		printk(KERN_INFO "%s:\t500mA max power\n", dev->name);
420 421
		break;
	case 1:
422
		printk(KERN_INFO "%s:\t400mA max power\n", dev->name);
423 424
		break;
	case 2:
425
		printk(KERN_INFO "%s:\t300mA max power\n", dev->name);
426 427
		break;
	case 3:
428
		printk(KERN_INFO "%s:\t200mA max power\n", dev->name);
429 430
		break;
	}
431 432
	printk(KERN_INFO "%s:\tTable at 0x%02x, strings=0x%04x, 0x%04x, 0x%04x\n",
				dev->name,
433 434 435 436
				em_eeprom->string_idx_table,
				em_eeprom->string1,
				em_eeprom->string2,
				em_eeprom->string3);
437 438 439 440 441 442 443 444 445 446 447 448 449 450

	return 0;
}

/* ----------------------------------------------------------- */

/*
 * functionality()
 */
static u32 functionality(struct i2c_adapter *adap)
{
	return I2C_FUNC_SMBUS_EMUL;
}

451 452
static struct i2c_algorithm em28xx_algo = {
	.master_xfer   = em28xx_i2c_xfer,
453 454 455
	.functionality = functionality,
};

456
static struct i2c_adapter em28xx_adap_template = {
457
	.owner = THIS_MODULE,
458 459
	.name = "em28xx",
	.algo = &em28xx_algo,
460 461
};

462 463
static struct i2c_client em28xx_client_template = {
	.name = "em28xx internal",
464 465 466 467 468 469 470 471 472 473
};

/* ----------------------------------------------------------- */

/*
 * i2c_devs
 * incomplete list of known devices
 */
static char *i2c_devs[128] = {
	[0x4a >> 1] = "saa7113h",
474
	[0x52 >> 1] = "drxk",
475
	[0x60 >> 1] = "remote IR sensor",
476
	[0x8e >> 1] = "remote IR sensor",
477 478 479 480
	[0x86 >> 1] = "tda9887",
	[0x80 >> 1] = "msp34xx",
	[0x88 >> 1] = "msp34xx",
	[0xa0 >> 1] = "eeprom",
481
	[0xb0 >> 1] = "tda9874",
482
	[0xb8 >> 1] = "tvp5150a",
483
	[0xba >> 1] = "webcam sensor or tvp5150a",
484 485 486 487 488 489 490 491 492 493
	[0xc0 >> 1] = "tuner (analog)",
	[0xc2 >> 1] = "tuner (analog)",
	[0xc4 >> 1] = "tuner (analog)",
	[0xc6 >> 1] = "tuner (analog)",
};

/*
 * do_i2c_scan()
 * check i2c address range for devices
 */
494
void em28xx_do_i2c_scan(struct em28xx *dev)
495
{
496
	u8 i2c_devicelist[128];
497 498 499
	unsigned char buf;
	int i, rc;

500 501
	memset(i2c_devicelist, 0, ARRAY_SIZE(i2c_devicelist));

502
	for (i = 0; i < ARRAY_SIZE(i2c_devs); i++) {
503 504
		dev->i2c_client.addr = i;
		rc = i2c_master_recv(&dev->i2c_client, &buf, 0);
505 506
		if (rc < 0)
			continue;
507 508 509
		i2c_devicelist[i] = i;
		printk(KERN_INFO "%s: found i2c device @ 0x%x [%s]\n",
		       dev->name, i << 1, i2c_devs[i] ? i2c_devs[i] : "???");
510
	}
511 512 513

	dev->i2c_hash = em28xx_hash_mem(i2c_devicelist,
					ARRAY_SIZE(i2c_devicelist), 32);
514 515 516
}

/*
517
 * em28xx_i2c_register()
518 519
 * register i2c bus
 */
520
int em28xx_i2c_register(struct em28xx *dev)
521
{
522 523
	int retval;

524 525 526
	BUG_ON(!dev->em28xx_write_regs || !dev->em28xx_read_reg);
	BUG_ON(!dev->em28xx_write_regs_req || !dev->em28xx_read_reg_req);
	dev->i2c_adap = em28xx_adap_template;
527 528 529
	dev->i2c_adap.dev.parent = &dev->udev->dev;
	strcpy(dev->i2c_adap.name, dev->name);
	dev->i2c_adap.algo_data = dev;
530
	i2c_set_adapdata(&dev->i2c_adap, &dev->v4l2_dev);
531 532 533 534 535 536 537

	retval = i2c_add_adapter(&dev->i2c_adap);
	if (retval < 0) {
		em28xx_errdev("%s: i2c_add_adapter failed! retval [%d]\n",
			__func__, retval);
		return retval;
	}
538

539
	dev->i2c_client = em28xx_client_template;
540 541
	dev->i2c_client.adapter = &dev->i2c_adap;

542
	retval = em28xx_i2c_eeprom(dev, dev->eedata, sizeof(dev->eedata));
543
	if ((retval < 0) && (retval != -ENODEV)) {
544 545
		em28xx_errdev("%s: em28xx_i2_eeprom failed! retval [%d]\n",
			__func__, retval);
546

547 548
		return retval;
	}
549 550

	if (i2c_scan)
551
		em28xx_do_i2c_scan(dev);
552

553 554 555 556
	return 0;
}

/*
557
 * em28xx_i2c_unregister()
558 559
 * unregister i2c_bus
 */
560
int em28xx_i2c_unregister(struct em28xx *dev)
561 562 563 564
{
	i2c_del_adapter(&dev->i2c_adap);
	return 0;
}