blob: 71a8aa60b3fe5354eacf227dc370cc01be137946 [file] [log] [blame]
Hans Verkuil1a0adaf2007-04-27 12:31:25 -03001/*
2 I2C functions
3 Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com>
4 Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl>
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21/*
22 This file includes an i2c implementation that was reverse engineered
23 from the Hauppauge windows driver. Older ivtv versions used i2c-algo-bit,
24 which whilst fine under most circumstances, had trouble with the Zilog
25 CPU on the PVR-150 which handles IR functions (occasional inability to
26 communicate with the chip until it was reset) and also with the i2c
27 bus being completely unreachable when multiple PVR cards were present.
28
29 The implementation is very similar to i2c-algo-bit, but there are enough
30 subtle differences that the two are hard to merge. The general strategy
31 employed by i2c-algo-bit is to use udelay() to implement the timing
32 when putting out bits on the scl/sda lines. The general strategy taken
33 here is to poll the lines for state changes (see ivtv_waitscl and
34 ivtv_waitsda). In addition there are small delays at various locations
35 which poll the SCL line 5 times (ivtv_scldelay). I would guess that
36 since this is memory mapped I/O that the length of those delays is tied
37 to the PCI bus clock. There is some extra code to do with recovery
38 and retries. Since it is not known what causes the actual i2c problems
39 in the first place, the only goal if one was to attempt to use
40 i2c-algo-bit would be to try to make it follow the same code path.
41 This would be a lot of work, and I'm also not convinced that it would
42 provide a generic benefit to i2c-algo-bit. Therefore consider this
43 an engineering solution -- not pretty, but it works.
44
45 Some more general comments about what we are doing:
46
47 The i2c bus is a 2 wire serial bus, with clock (SCL) and data (SDA)
48 lines. To communicate on the bus (as a master, we don't act as a slave),
49 we first initiate a start condition (ivtv_start). We then write the
50 address of the device that we want to communicate with, along with a flag
51 that indicates whether this is a read or a write. The slave then issues
52 an ACK signal (ivtv_ack), which tells us that it is ready for reading /
53 writing. We then proceed with reading or writing (ivtv_read/ivtv_write),
54 and finally issue a stop condition (ivtv_stop) to make the bus available
55 to other masters.
56
57 There is an additional form of transaction where a write may be
58 immediately followed by a read. In this case, there is no intervening
59 stop condition. (Only the msp3400 chip uses this method of data transfer).
60 */
61
62#include "ivtv-driver.h"
63#include "ivtv-cards.h"
64#include "ivtv-gpio.h"
Hans Verkuil83df8e72007-03-10 06:54:58 -030065#include "ivtv-i2c.h"
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030066
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030067/* i2c implementation for cx23415/6 chip, ivtv project.
68 * Author: Kevin Thayer (nufan_wfk at yahoo.com)
69 */
70/* i2c stuff */
71#define IVTV_REG_I2C_SETSCL_OFFSET 0x7000
72#define IVTV_REG_I2C_SETSDA_OFFSET 0x7004
73#define IVTV_REG_I2C_GETSCL_OFFSET 0x7008
74#define IVTV_REG_I2C_GETSDA_OFFSET 0x700c
75
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030076#define IVTV_CS53L32A_I2C_ADDR 0x11
Hans Verkuile2a17742007-10-30 05:50:03 -030077#define IVTV_M52790_I2C_ADDR 0x48
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030078#define IVTV_CX25840_I2C_ADDR 0x44
79#define IVTV_SAA7115_I2C_ADDR 0x21
80#define IVTV_SAA7127_I2C_ADDR 0x44
81#define IVTV_SAA717x_I2C_ADDR 0x21
82#define IVTV_MSP3400_I2C_ADDR 0x40
83#define IVTV_HAUPPAUGE_I2C_ADDR 0x50
84#define IVTV_WM8739_I2C_ADDR 0x1a
85#define IVTV_WM8775_I2C_ADDR 0x1b
86#define IVTV_TEA5767_I2C_ADDR 0x60
87#define IVTV_UPD64031A_I2C_ADDR 0x12
88#define IVTV_UPD64083_I2C_ADDR 0x5c
Hans Verkuild9009202007-12-07 21:01:15 -030089#define IVTV_VP27SMPX_I2C_ADDR 0x5b
90#define IVTV_M52790_I2C_ADDR 0x48
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030091
92/* This array should match the IVTV_HW_ defines */
Hans Verkuild9009202007-12-07 21:01:15 -030093static const u8 hw_addrs[] = {
94 IVTV_CX25840_I2C_ADDR,
95 IVTV_SAA7115_I2C_ADDR,
96 IVTV_SAA7127_I2C_ADDR,
97 IVTV_MSP3400_I2C_ADDR,
98 0,
99 IVTV_WM8775_I2C_ADDR,
100 IVTV_CS53L32A_I2C_ADDR,
101 0,
102 IVTV_SAA7115_I2C_ADDR,
103 IVTV_UPD64031A_I2C_ADDR,
104 IVTV_UPD64083_I2C_ADDR,
105 IVTV_SAA717x_I2C_ADDR,
106 IVTV_WM8739_I2C_ADDR,
107 IVTV_VP27SMPX_I2C_ADDR,
108 IVTV_M52790_I2C_ADDR,
109 0 /* IVTV_HW_GPIO dummy driver ID */
110};
111
112/* This array should match the IVTV_HW_ defines */
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300113static const char *hw_modules[] = {
114 "cx25840",
115 "saa7115",
116 "saa7127",
117 "msp3400",
118 "tuner",
119 "wm8775",
120 "cs53l32a",
121 NULL,
122 "saa7115",
123 "upd64031a",
124 "upd64083",
125 "saa717x",
126 "wm8739",
127 "vp27smpx",
128 "m52790",
129 NULL
130};
131
132/* This array should match the IVTV_HW_ defines */
Jean Delvareaf294862008-05-18 20:49:40 +0200133static const char * const hw_devicenames[] = {
Hans Verkuild9009202007-12-07 21:01:15 -0300134 "cx25840",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300135 "saa7115",
Jean Delvare5daed072008-07-17 13:18:31 -0300136 "saa7127_auto", /* saa7127 or saa7129 */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300137 "msp3400",
138 "tuner",
139 "wm8775",
140 "cs53l32a",
141 "tveeprom",
Jean Delvareaf294862008-05-18 20:49:40 +0200142 "saa7114",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300143 "upd64031a",
144 "upd64083",
145 "saa717x",
146 "wm8739",
Hans Verkuilac247432007-07-27 06:56:50 -0300147 "vp27smpx",
Hans Verkuile2a17742007-10-30 05:50:03 -0300148 "m52790",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300149 "gpio",
150};
151
Andy Wallsbfbde8e2009-11-21 11:41:33 -0300152/* Instantiate the IR receiver device using probing -- undesirable */
153struct i2c_client *ivtv_i2c_new_ir_legacy(struct ivtv *itv)
154{
155 struct i2c_board_info info;
156 /*
157 * The external IR receiver is at i2c address 0x34.
158 * The internal IR receiver is at i2c address 0x30.
159 *
160 * In theory, both can be fitted, and Hauppauge suggests an external
161 * overrides an internal. That's why we probe 0x1a (~0x34) first. CB
162 *
163 * Some of these addresses we probe may collide with other i2c address
164 * allocations, so this function must be called after all other i2c
165 * devices we care about are registered.
166 */
167 const unsigned short addr_list[] = {
168 0x1a, /* Hauppauge IR external - collides with WM8739 */
169 0x18, /* Hauppauge IR internal */
170 0x71, /* Hauppauge IR (PVR150) */
171 0x64, /* Pixelview IR */
172 0x30, /* KNC ONE IR */
173 0x6b, /* Adaptec IR */
174 I2C_CLIENT_END
175 };
176
177 memset(&info, 0, sizeof(struct i2c_board_info));
178 strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
179 return i2c_new_probed_device(&itv->i2c_adap, &info, addr_list);
180}
181
Hans Verkuild9009202007-12-07 21:01:15 -0300182int ivtv_i2c_register(struct ivtv *itv, unsigned idx)
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300183{
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300184 struct v4l2_subdev *sd;
185 struct i2c_adapter *adap = &itv->i2c_adap;
186 const char *mod = hw_modules[idx];
187 const char *type = hw_devicenames[idx];
188 u32 hw = 1 << idx;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300189
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300190 if (idx >= ARRAY_SIZE(hw_addrs))
Hans Verkuild9009202007-12-07 21:01:15 -0300191 return -1;
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300192 if (hw == IVTV_HW_TUNER) {
193 /* special tuner handling */
Hans Verkuil53dacb12009-08-10 02:49:08 -0300194 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
Hans Verkuile6574f22009-04-01 03:57:53 -0300195 adap, mod, type,
Hans Verkuil53dacb12009-08-10 02:49:08 -0300196 0, itv->card_i2c->radio);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300197 if (sd)
198 sd->grp_id = 1 << idx;
Hans Verkuil53dacb12009-08-10 02:49:08 -0300199 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
Hans Verkuile6574f22009-04-01 03:57:53 -0300200 adap, mod, type,
Hans Verkuil53dacb12009-08-10 02:49:08 -0300201 0, itv->card_i2c->demod);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300202 if (sd)
203 sd->grp_id = 1 << idx;
Hans Verkuil53dacb12009-08-10 02:49:08 -0300204 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
Hans Verkuile6574f22009-04-01 03:57:53 -0300205 adap, mod, type,
Hans Verkuil53dacb12009-08-10 02:49:08 -0300206 0, itv->card_i2c->tv);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300207 if (sd)
208 sd->grp_id = 1 << idx;
209 return sd ? 0 : -1;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300210 }
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300211 if (!hw_addrs[idx])
212 return -1;
213 if (hw == IVTV_HW_UPD64031A || hw == IVTV_HW_UPD6408X) {
Hans Verkuil53dacb12009-08-10 02:49:08 -0300214 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
215 adap, mod, type, 0, I2C_ADDRS(hw_addrs[idx]));
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300216 } else {
Hans Verkuile6574f22009-04-01 03:57:53 -0300217 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
Hans Verkuil53dacb12009-08-10 02:49:08 -0300218 adap, mod, type, hw_addrs[idx], NULL);
Hans Verkuild9009202007-12-07 21:01:15 -0300219 }
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300220 if (sd)
221 sd->grp_id = 1 << idx;
222 return sd ? 0 : -1;
Hans Verkuild9009202007-12-07 21:01:15 -0300223}
224
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300225struct v4l2_subdev *ivtv_find_hw(struct ivtv *itv, u32 hw)
Hans Verkuild9009202007-12-07 21:01:15 -0300226{
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300227 struct v4l2_subdev *result = NULL;
228 struct v4l2_subdev *sd;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300229
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300230 spin_lock(&itv->v4l2_dev.lock);
231 v4l2_device_for_each_subdev(sd, &itv->v4l2_dev) {
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300232 if (sd->grp_id == hw) {
233 result = sd;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300234 break;
235 }
236 }
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300237 spin_unlock(&itv->v4l2_dev.lock);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300238 return result;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300239}
240
241/* Set the serial clock line to the desired state */
242static void ivtv_setscl(struct ivtv *itv, int state)
243{
244 /* write them out */
245 /* write bits are inverted */
246 write_reg(~state, IVTV_REG_I2C_SETSCL_OFFSET);
247}
248
249/* Set the serial data line to the desired state */
250static void ivtv_setsda(struct ivtv *itv, int state)
251{
252 /* write them out */
253 /* write bits are inverted */
254 write_reg(~state & 1, IVTV_REG_I2C_SETSDA_OFFSET);
255}
256
257/* Read the serial clock line */
258static int ivtv_getscl(struct ivtv *itv)
259{
260 return read_reg(IVTV_REG_I2C_GETSCL_OFFSET) & 1;
261}
262
263/* Read the serial data line */
264static int ivtv_getsda(struct ivtv *itv)
265{
266 return read_reg(IVTV_REG_I2C_GETSDA_OFFSET) & 1;
267}
268
269/* Implement a short delay by polling the serial clock line */
270static void ivtv_scldelay(struct ivtv *itv)
271{
272 int i;
273
274 for (i = 0; i < 5; ++i)
275 ivtv_getscl(itv);
276}
277
278/* Wait for the serial clock line to become set to a specific value */
279static int ivtv_waitscl(struct ivtv *itv, int val)
280{
281 int i;
282
283 ivtv_scldelay(itv);
284 for (i = 0; i < 1000; ++i) {
285 if (ivtv_getscl(itv) == val)
286 return 1;
287 }
288 return 0;
289}
290
291/* Wait for the serial data line to become set to a specific value */
292static int ivtv_waitsda(struct ivtv *itv, int val)
293{
294 int i;
295
296 ivtv_scldelay(itv);
297 for (i = 0; i < 1000; ++i) {
298 if (ivtv_getsda(itv) == val)
299 return 1;
300 }
301 return 0;
302}
303
304/* Wait for the slave to issue an ACK */
305static int ivtv_ack(struct ivtv *itv)
306{
307 int ret = 0;
308
309 if (ivtv_getscl(itv) == 1) {
Hans Verkuil11d28762007-07-17 12:47:38 -0300310 IVTV_DEBUG_HI_I2C("SCL was high starting an ack\n");
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300311 ivtv_setscl(itv, 0);
312 if (!ivtv_waitscl(itv, 0)) {
313 IVTV_DEBUG_I2C("Could not set SCL low starting an ack\n");
314 return -EREMOTEIO;
315 }
316 }
317 ivtv_setsda(itv, 1);
318 ivtv_scldelay(itv);
319 ivtv_setscl(itv, 1);
320 if (!ivtv_waitsda(itv, 0)) {
321 IVTV_DEBUG_I2C("Slave did not ack\n");
322 ret = -EREMOTEIO;
323 }
324 ivtv_setscl(itv, 0);
325 if (!ivtv_waitscl(itv, 0)) {
326 IVTV_DEBUG_I2C("Failed to set SCL low after ACK\n");
327 ret = -EREMOTEIO;
328 }
329 return ret;
330}
331
332/* Write a single byte to the i2c bus and wait for the slave to ACK */
333static int ivtv_sendbyte(struct ivtv *itv, unsigned char byte)
334{
335 int i, bit;
336
Hans Verkuil11d28762007-07-17 12:47:38 -0300337 IVTV_DEBUG_HI_I2C("write %x\n",byte);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300338 for (i = 0; i < 8; ++i, byte<<=1) {
339 ivtv_setscl(itv, 0);
340 if (!ivtv_waitscl(itv, 0)) {
341 IVTV_DEBUG_I2C("Error setting SCL low\n");
342 return -EREMOTEIO;
343 }
344 bit = (byte>>7)&1;
345 ivtv_setsda(itv, bit);
346 if (!ivtv_waitsda(itv, bit)) {
347 IVTV_DEBUG_I2C("Error setting SDA\n");
348 return -EREMOTEIO;
349 }
350 ivtv_setscl(itv, 1);
351 if (!ivtv_waitscl(itv, 1)) {
352 IVTV_DEBUG_I2C("Slave not ready for bit\n");
353 return -EREMOTEIO;
354 }
355 }
356 ivtv_setscl(itv, 0);
357 if (!ivtv_waitscl(itv, 0)) {
358 IVTV_DEBUG_I2C("Error setting SCL low\n");
359 return -EREMOTEIO;
360 }
361 return ivtv_ack(itv);
362}
363
364/* Read a byte from the i2c bus and send a NACK if applicable (i.e. for the
365 final byte) */
366static int ivtv_readbyte(struct ivtv *itv, unsigned char *byte, int nack)
367{
368 int i;
369
370 *byte = 0;
371
372 ivtv_setsda(itv, 1);
373 ivtv_scldelay(itv);
374 for (i = 0; i < 8; ++i) {
375 ivtv_setscl(itv, 0);
376 ivtv_scldelay(itv);
377 ivtv_setscl(itv, 1);
378 if (!ivtv_waitscl(itv, 1)) {
379 IVTV_DEBUG_I2C("Error setting SCL high\n");
380 return -EREMOTEIO;
381 }
382 *byte = ((*byte)<<1)|ivtv_getsda(itv);
383 }
384 ivtv_setscl(itv, 0);
385 ivtv_scldelay(itv);
386 ivtv_setsda(itv, nack);
387 ivtv_scldelay(itv);
388 ivtv_setscl(itv, 1);
389 ivtv_scldelay(itv);
390 ivtv_setscl(itv, 0);
391 ivtv_scldelay(itv);
Hans Verkuil11d28762007-07-17 12:47:38 -0300392 IVTV_DEBUG_HI_I2C("read %x\n",*byte);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300393 return 0;
394}
395
396/* Issue a start condition on the i2c bus to alert slaves to prepare for
397 an address write */
398static int ivtv_start(struct ivtv *itv)
399{
400 int sda;
401
402 sda = ivtv_getsda(itv);
403 if (sda != 1) {
Hans Verkuil11d28762007-07-17 12:47:38 -0300404 IVTV_DEBUG_HI_I2C("SDA was low at start\n");
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300405 ivtv_setsda(itv, 1);
406 if (!ivtv_waitsda(itv, 1)) {
407 IVTV_DEBUG_I2C("SDA stuck low\n");
408 return -EREMOTEIO;
409 }
410 }
411 if (ivtv_getscl(itv) != 1) {
412 ivtv_setscl(itv, 1);
413 if (!ivtv_waitscl(itv, 1)) {
414 IVTV_DEBUG_I2C("SCL stuck low at start\n");
415 return -EREMOTEIO;
416 }
417 }
418 ivtv_setsda(itv, 0);
419 ivtv_scldelay(itv);
420 return 0;
421}
422
423/* Issue a stop condition on the i2c bus to release it */
424static int ivtv_stop(struct ivtv *itv)
425{
426 int i;
427
428 if (ivtv_getscl(itv) != 0) {
Hans Verkuil11d28762007-07-17 12:47:38 -0300429 IVTV_DEBUG_HI_I2C("SCL not low when stopping\n");
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300430 ivtv_setscl(itv, 0);
431 if (!ivtv_waitscl(itv, 0)) {
432 IVTV_DEBUG_I2C("SCL could not be set low\n");
433 }
434 }
435 ivtv_setsda(itv, 0);
436 ivtv_scldelay(itv);
437 ivtv_setscl(itv, 1);
438 if (!ivtv_waitscl(itv, 1)) {
439 IVTV_DEBUG_I2C("SCL could not be set high\n");
440 return -EREMOTEIO;
441 }
442 ivtv_scldelay(itv);
443 ivtv_setsda(itv, 1);
444 if (!ivtv_waitsda(itv, 1)) {
445 IVTV_DEBUG_I2C("resetting I2C\n");
446 for (i = 0; i < 16; ++i) {
447 ivtv_setscl(itv, 0);
448 ivtv_scldelay(itv);
449 ivtv_setscl(itv, 1);
450 ivtv_scldelay(itv);
451 ivtv_setsda(itv, 1);
452 }
453 ivtv_waitsda(itv, 1);
454 return -EREMOTEIO;
455 }
456 return 0;
457}
458
459/* Write a message to the given i2c slave. do_stop may be 0 to prevent
460 issuing the i2c stop condition (when following with a read) */
461static int ivtv_write(struct ivtv *itv, unsigned char addr, unsigned char *data, u32 len, int do_stop)
462{
463 int retry, ret = -EREMOTEIO;
464 u32 i;
465
466 for (retry = 0; ret != 0 && retry < 8; ++retry) {
467 ret = ivtv_start(itv);
468
469 if (ret == 0) {
470 ret = ivtv_sendbyte(itv, addr<<1);
471 for (i = 0; ret == 0 && i < len; ++i)
472 ret = ivtv_sendbyte(itv, data[i]);
473 }
474 if (ret != 0 || do_stop) {
475 ivtv_stop(itv);
476 }
477 }
478 if (ret)
479 IVTV_DEBUG_I2C("i2c write to %x failed\n", addr);
480 return ret;
481}
482
483/* Read data from the given i2c slave. A stop condition is always issued. */
484static int ivtv_read(struct ivtv *itv, unsigned char addr, unsigned char *data, u32 len)
485{
486 int retry, ret = -EREMOTEIO;
487 u32 i;
488
489 for (retry = 0; ret != 0 && retry < 8; ++retry) {
490 ret = ivtv_start(itv);
491 if (ret == 0)
492 ret = ivtv_sendbyte(itv, (addr << 1) | 1);
493 for (i = 0; ret == 0 && i < len; ++i) {
494 ret = ivtv_readbyte(itv, &data[i], i == len - 1);
495 }
496 ivtv_stop(itv);
497 }
498 if (ret)
499 IVTV_DEBUG_I2C("i2c read from %x failed\n", addr);
500 return ret;
501}
502
503/* Kernel i2c transfer implementation. Takes a number of messages to be read
504 or written. If a read follows a write, this will occur without an
505 intervening stop condition */
506static int ivtv_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num)
507{
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300508 struct v4l2_device *v4l2_dev = i2c_get_adapdata(i2c_adap);
509 struct ivtv *itv = to_ivtv(v4l2_dev);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300510 int retval;
511 int i;
512
513 mutex_lock(&itv->i2c_bus_lock);
514 for (i = retval = 0; retval == 0 && i < num; i++) {
515 if (msgs[i].flags & I2C_M_RD)
516 retval = ivtv_read(itv, msgs[i].addr, msgs[i].buf, msgs[i].len);
517 else {
518 /* if followed by a read, don't stop */
519 int stop = !(i + 1 < num && msgs[i + 1].flags == I2C_M_RD);
520
521 retval = ivtv_write(itv, msgs[i].addr, msgs[i].buf, msgs[i].len, stop);
522 }
523 }
524 mutex_unlock(&itv->i2c_bus_lock);
525 return retval ? retval : num;
526}
527
528/* Kernel i2c capabilities */
529static u32 ivtv_functionality(struct i2c_adapter *adap)
530{
531 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
532}
533
534static struct i2c_algorithm ivtv_algo = {
535 .master_xfer = ivtv_xfer,
536 .functionality = ivtv_functionality,
537};
538
539/* template for our-bit banger */
540static struct i2c_adapter ivtv_i2c_adap_hw_template = {
541 .name = "ivtv i2c driver",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300542 .algo = &ivtv_algo,
543 .algo_data = NULL, /* filled from template */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300544 .owner = THIS_MODULE,
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300545};
546
547static void ivtv_setscl_old(void *data, int state)
548{
549 struct ivtv *itv = (struct ivtv *)data;
550
551 if (state)
552 itv->i2c_state |= 0x01;
553 else
554 itv->i2c_state &= ~0x01;
555
556 /* write them out */
557 /* write bits are inverted */
558 write_reg(~itv->i2c_state, IVTV_REG_I2C_SETSCL_OFFSET);
559}
560
561static void ivtv_setsda_old(void *data, int state)
562{
563 struct ivtv *itv = (struct ivtv *)data;
564
565 if (state)
566 itv->i2c_state |= 0x01;
567 else
568 itv->i2c_state &= ~0x01;
569
570 /* write them out */
571 /* write bits are inverted */
572 write_reg(~itv->i2c_state, IVTV_REG_I2C_SETSDA_OFFSET);
573}
574
575static int ivtv_getscl_old(void *data)
576{
577 struct ivtv *itv = (struct ivtv *)data;
578
579 return read_reg(IVTV_REG_I2C_GETSCL_OFFSET) & 1;
580}
581
582static int ivtv_getsda_old(void *data)
583{
584 struct ivtv *itv = (struct ivtv *)data;
585
586 return read_reg(IVTV_REG_I2C_GETSDA_OFFSET) & 1;
587}
588
589/* template for i2c-bit-algo */
590static struct i2c_adapter ivtv_i2c_adap_template = {
591 .name = "ivtv i2c driver",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300592 .algo = NULL, /* set by i2c-algo-bit */
593 .algo_data = NULL, /* filled from template */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300594 .owner = THIS_MODULE,
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300595};
596
Andy Wallsf412d362009-11-21 01:47:45 -0300597#define IVTV_ALGO_BIT_TIMEOUT (2) /* seconds */
598
Jean Delvareaeb292d2007-08-23 15:45:41 -0300599static const struct i2c_algo_bit_data ivtv_i2c_algo_template = {
600 .setsda = ivtv_setsda_old,
601 .setscl = ivtv_setscl_old,
602 .getsda = ivtv_getsda_old,
603 .getscl = ivtv_getscl_old,
Andy Wallsf412d362009-11-21 01:47:45 -0300604 .udelay = IVTV_DEFAULT_I2C_CLOCK_PERIOD / 2, /* microseconds */
605 .timeout = IVTV_ALGO_BIT_TIMEOUT * HZ, /* jiffies */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300606};
607
608static struct i2c_client ivtv_i2c_client_template = {
Andrew Mortona4157832007-03-07 11:28:33 -0300609 .name = "ivtv internal",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300610};
611
Andy Wallsbfbde8e2009-11-21 11:41:33 -0300612/* init + register i2c adapter */
Adrian Bunk056827a2007-12-11 19:23:49 -0300613int init_ivtv_i2c(struct ivtv *itv)
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300614{
Jean Delvarec668f322009-05-13 16:48:50 -0300615 int retval;
616
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300617 IVTV_DEBUG_I2C("i2c init\n");
618
Hans Verkuild9009202007-12-07 21:01:15 -0300619 /* Sanity checks for the I2C hardware arrays. They must be the
620 * same size and GPIO must be the last entry.
621 */
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300622 if (ARRAY_SIZE(hw_devicenames) != ARRAY_SIZE(hw_addrs) ||
623 ARRAY_SIZE(hw_devicenames) != ARRAY_SIZE(hw_modules) ||
624 IVTV_HW_GPIO != (1 << (ARRAY_SIZE(hw_addrs) - 1))) {
Hans Verkuild9009202007-12-07 21:01:15 -0300625 IVTV_ERR("Mismatched I2C hardware arrays\n");
626 return -ENODEV;
627 }
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300628 if (itv->options.newi2c > 0) {
629 memcpy(&itv->i2c_adap, &ivtv_i2c_adap_hw_template,
630 sizeof(struct i2c_adapter));
631 } else {
632 memcpy(&itv->i2c_adap, &ivtv_i2c_adap_template,
633 sizeof(struct i2c_adapter));
634 memcpy(&itv->i2c_algo, &ivtv_i2c_algo_template,
635 sizeof(struct i2c_algo_bit_data));
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300636 }
Andy Wallsf412d362009-11-21 01:47:45 -0300637 itv->i2c_algo.udelay = itv->options.i2c_clock_period / 2;
Hans Verkuil0e614cd2007-12-21 21:33:36 -0300638 itv->i2c_algo.data = itv;
639 itv->i2c_adap.algo_data = &itv->i2c_algo;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300640
641 sprintf(itv->i2c_adap.name + strlen(itv->i2c_adap.name), " #%d",
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300642 itv->instance);
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300643 i2c_set_adapdata(&itv->i2c_adap, &itv->v4l2_dev);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300644
645 memcpy(&itv->i2c_client, &ivtv_i2c_client_template,
646 sizeof(struct i2c_client));
647 itv->i2c_client.adapter = &itv->i2c_adap;
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300648 itv->i2c_adap.dev.parent = &itv->pdev->dev;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300649
650 IVTV_DEBUG_I2C("setting scl and sda to 1\n");
651 ivtv_setscl(itv, 1);
652 ivtv_setsda(itv, 1);
653
654 if (itv->options.newi2c > 0)
Jean Delvarec668f322009-05-13 16:48:50 -0300655 retval = i2c_add_adapter(&itv->i2c_adap);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300656 else
Jean Delvarec668f322009-05-13 16:48:50 -0300657 retval = i2c_bit_add_bus(&itv->i2c_adap);
658
Jean Delvarec668f322009-05-13 16:48:50 -0300659 return retval;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300660}
661
David Millerbb374b72007-10-30 21:23:48 -0700662void exit_ivtv_i2c(struct ivtv *itv)
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300663{
664 IVTV_DEBUG_I2C("i2c exit\n");
665
666 i2c_del_adapter(&itv->i2c_adap);
667}