blob: 3c89d6f28d5f0ac4ad801fcae80b6c8c28497303 [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 Verkuil72c851b2010-08-06 10:53:19 -030066#include <media/cx25840.h>
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030067
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030068/* i2c implementation for cx23415/6 chip, ivtv project.
69 * Author: Kevin Thayer (nufan_wfk at yahoo.com)
70 */
71/* i2c stuff */
72#define IVTV_REG_I2C_SETSCL_OFFSET 0x7000
73#define IVTV_REG_I2C_SETSDA_OFFSET 0x7004
74#define IVTV_REG_I2C_GETSCL_OFFSET 0x7008
75#define IVTV_REG_I2C_GETSDA_OFFSET 0x700c
76
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030077#define IVTV_CS53L32A_I2C_ADDR 0x11
Hans Verkuile2a17742007-10-30 05:50:03 -030078#define IVTV_M52790_I2C_ADDR 0x48
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030079#define IVTV_CX25840_I2C_ADDR 0x44
80#define IVTV_SAA7115_I2C_ADDR 0x21
81#define IVTV_SAA7127_I2C_ADDR 0x44
82#define IVTV_SAA717x_I2C_ADDR 0x21
83#define IVTV_MSP3400_I2C_ADDR 0x40
84#define IVTV_HAUPPAUGE_I2C_ADDR 0x50
85#define IVTV_WM8739_I2C_ADDR 0x1a
86#define IVTV_WM8775_I2C_ADDR 0x1b
87#define IVTV_TEA5767_I2C_ADDR 0x60
88#define IVTV_UPD64031A_I2C_ADDR 0x12
89#define IVTV_UPD64083_I2C_ADDR 0x5c
Hans Verkuild9009202007-12-07 21:01:15 -030090#define IVTV_VP27SMPX_I2C_ADDR 0x5b
91#define IVTV_M52790_I2C_ADDR 0x48
Andy Wallsad2fe2d2009-11-21 12:52:34 -030092#define IVTV_AVERMEDIA_IR_RX_I2C_ADDR 0x40
Andy Walls7ce5c412009-11-21 16:19:27 -030093#define IVTV_HAUP_EXT_IR_RX_I2C_ADDR 0x1a
94#define IVTV_HAUP_INT_IR_RX_I2C_ADDR 0x18
95#define IVTV_Z8F0811_IR_TX_I2C_ADDR 0x70
96#define IVTV_Z8F0811_IR_RX_I2C_ADDR 0x71
Mauro Carvalho Chehabe1e2c572010-12-30 08:31:10 -030097#define IVTV_ADAPTEC_IR_ADDR 0x6b
Hans Verkuil1a0adaf2007-04-27 12:31:25 -030098
99/* This array should match the IVTV_HW_ defines */
Hans Verkuild9009202007-12-07 21:01:15 -0300100static const u8 hw_addrs[] = {
101 IVTV_CX25840_I2C_ADDR,
102 IVTV_SAA7115_I2C_ADDR,
103 IVTV_SAA7127_I2C_ADDR,
104 IVTV_MSP3400_I2C_ADDR,
105 0,
106 IVTV_WM8775_I2C_ADDR,
107 IVTV_CS53L32A_I2C_ADDR,
108 0,
109 IVTV_SAA7115_I2C_ADDR,
110 IVTV_UPD64031A_I2C_ADDR,
111 IVTV_UPD64083_I2C_ADDR,
112 IVTV_SAA717x_I2C_ADDR,
113 IVTV_WM8739_I2C_ADDR,
114 IVTV_VP27SMPX_I2C_ADDR,
115 IVTV_M52790_I2C_ADDR,
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300116 0, /* IVTV_HW_GPIO dummy driver ID */
Andy Walls7ce5c412009-11-21 16:19:27 -0300117 IVTV_AVERMEDIA_IR_RX_I2C_ADDR, /* IVTV_HW_I2C_IR_RX_AVER */
118 IVTV_HAUP_EXT_IR_RX_I2C_ADDR, /* IVTV_HW_I2C_IR_RX_HAUP_EXT */
119 IVTV_HAUP_INT_IR_RX_I2C_ADDR, /* IVTV_HW_I2C_IR_RX_HAUP_INT */
120 IVTV_Z8F0811_IR_TX_I2C_ADDR, /* IVTV_HW_Z8F0811_IR_TX_HAUP */
121 IVTV_Z8F0811_IR_RX_I2C_ADDR, /* IVTV_HW_Z8F0811_IR_RX_HAUP */
Mauro Carvalho Chehabe1e2c572010-12-30 08:31:10 -0300122 IVTV_ADAPTEC_IR_ADDR, /* IVTV_HW_I2C_IR_RX_ADAPTEC */
Hans Verkuild9009202007-12-07 21:01:15 -0300123};
124
125/* This array should match the IVTV_HW_ defines */
Jean Delvareaf294862008-05-18 20:49:40 +0200126static const char * const hw_devicenames[] = {
Hans Verkuild9009202007-12-07 21:01:15 -0300127 "cx25840",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300128 "saa7115",
Jean Delvare5daed072008-07-17 13:18:31 -0300129 "saa7127_auto", /* saa7127 or saa7129 */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300130 "msp3400",
131 "tuner",
132 "wm8775",
133 "cs53l32a",
134 "tveeprom",
Jean Delvareaf294862008-05-18 20:49:40 +0200135 "saa7114",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300136 "upd64031a",
137 "upd64083",
138 "saa717x",
139 "wm8739",
Hans Verkuilac247432007-07-27 06:56:50 -0300140 "vp27smpx",
Hans Verkuile2a17742007-10-30 05:50:03 -0300141 "m52790",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300142 "gpio",
Andy Walls7ce5c412009-11-21 16:19:27 -0300143 "ir_video", /* IVTV_HW_I2C_IR_RX_AVER */
144 "ir_video", /* IVTV_HW_I2C_IR_RX_HAUP_EXT */
145 "ir_video", /* IVTV_HW_I2C_IR_RX_HAUP_INT */
146 "ir_tx_z8f0811_haup", /* IVTV_HW_Z8F0811_IR_TX_HAUP */
147 "ir_rx_z8f0811_haup", /* IVTV_HW_Z8F0811_IR_RX_HAUP */
Mauro Carvalho Chehabe1e2c572010-12-30 08:31:10 -0300148 "ir_video", /* IVTV_HW_I2C_IR_RX_ADAPTEC */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300149};
150
Mauro Carvalho Chehabe1e2c572010-12-30 08:31:10 -0300151static int get_key_adaptec(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
152{
153 unsigned char keybuf[4];
154
155 keybuf[0] = 0x00;
156 i2c_master_send(ir->c, keybuf, 1);
157 /* poll IR chip */
158 if (i2c_master_recv(ir->c, keybuf, sizeof(keybuf)) != sizeof(keybuf)) {
159 return 0;
160 }
161
162 /* key pressed ? */
163 if (keybuf[2] == 0xff)
164 return 0;
165
166 /* remove repeat bit */
167 keybuf[2] &= 0x7f;
168 keybuf[3] |= 0x80;
169
Mauro Carvalho Chehab9804ed92010-12-30 11:58:37 -0300170 *ir_key = keybuf[3] | keybuf[2] << 8 | keybuf[1] << 16 |keybuf[0] << 24;
171 *ir_raw = *ir_key;
Mauro Carvalho Chehabe1e2c572010-12-30 08:31:10 -0300172
173 return 1;
174}
175
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300176static int ivtv_i2c_new_ir(struct ivtv *itv, u32 hw, const char *type, u8 addr)
177{
178 struct i2c_board_info info;
179 struct i2c_adapter *adap = &itv->i2c_adap;
180 struct IR_i2c_init_data *init_data = &itv->ir_i2c_init_data;
181 unsigned short addr_list[2] = { addr, I2C_CLIENT_END };
182
Andy Walls7ce5c412009-11-21 16:19:27 -0300183 /* Only allow one IR transmitter to be registered per board */
184 if (hw & IVTV_HW_IR_TX_ANY) {
185 if (itv->hw_flags & IVTV_HW_IR_TX_ANY)
186 return -1;
187 memset(&info, 0, sizeof(struct i2c_board_info));
188 strlcpy(info.type, type, I2C_NAME_SIZE);
Jean Delvare9a942412010-08-11 18:20:56 +0200189 return i2c_new_probed_device(adap, &info, addr_list, NULL)
190 == NULL ? -1 : 0;
Andy Walls7ce5c412009-11-21 16:19:27 -0300191 }
192
193 /* Only allow one IR receiver to be registered per board */
194 if (itv->hw_flags & IVTV_HW_IR_RX_ANY)
195 return -1;
196
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300197 /* Our default information for ir-kbd-i2c.c to use */
198 switch (hw) {
199 case IVTV_HW_I2C_IR_RX_AVER:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300200 init_data->ir_codes = RC_MAP_AVERMEDIA_CARDBUS;
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300201 init_data->internal_get_key_func =
202 IR_KBD_GET_KEY_AVERMEDIA_CARDBUS;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300203 init_data->type = RC_TYPE_OTHER;
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300204 init_data->name = "AVerMedia AVerTV card";
205 break;
Andy Walls7ce5c412009-11-21 16:19:27 -0300206 case IVTV_HW_I2C_IR_RX_HAUP_EXT:
207 case IVTV_HW_I2C_IR_RX_HAUP_INT:
208 /* Default to old black remote */
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300209 init_data->ir_codes = RC_MAP_RC5_TV;
Andy Walls7ce5c412009-11-21 16:19:27 -0300210 init_data->internal_get_key_func = IR_KBD_GET_KEY_HAUP;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300211 init_data->type = RC_TYPE_RC5;
Andy Walls7ce5c412009-11-21 16:19:27 -0300212 init_data->name = itv->card_name;
213 break;
214 case IVTV_HW_Z8F0811_IR_RX_HAUP:
215 /* Default to grey remote */
Mauro Carvalho Chehabaf86ce72011-01-24 12:18:48 -0300216 init_data->ir_codes = RC_MAP_HAUPPAUGE;
Andy Walls7ce5c412009-11-21 16:19:27 -0300217 init_data->internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300218 init_data->type = RC_TYPE_RC5;
Andy Walls7ce5c412009-11-21 16:19:27 -0300219 init_data->name = itv->card_name;
220 break;
Mauro Carvalho Chehabe1e2c572010-12-30 08:31:10 -0300221 case IVTV_HW_I2C_IR_RX_ADAPTEC:
222 init_data->get_key = get_key_adaptec;
223 init_data->name = itv->card_name;
224 /* FIXME: The protocol and RC_MAP needs to be corrected */
225 init_data->ir_codes = RC_MAP_EMPTY;
226 init_data->type = RC_TYPE_UNKNOWN;
227 break;
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300228 }
229
230 memset(&info, 0, sizeof(struct i2c_board_info));
231 info.platform_data = init_data;
232 strlcpy(info.type, type, I2C_NAME_SIZE);
233
Jean Delvare9a942412010-08-11 18:20:56 +0200234 return i2c_new_probed_device(adap, &info, addr_list, NULL) == NULL ?
235 -1 : 0;
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300236}
237
Andy Wallsbfbde8e2009-11-21 11:41:33 -0300238/* Instantiate the IR receiver device using probing -- undesirable */
239struct i2c_client *ivtv_i2c_new_ir_legacy(struct ivtv *itv)
240{
241 struct i2c_board_info info;
242 /*
243 * The external IR receiver is at i2c address 0x34.
244 * The internal IR receiver is at i2c address 0x30.
245 *
246 * In theory, both can be fitted, and Hauppauge suggests an external
247 * overrides an internal. That's why we probe 0x1a (~0x34) first. CB
248 *
249 * Some of these addresses we probe may collide with other i2c address
250 * allocations, so this function must be called after all other i2c
251 * devices we care about are registered.
252 */
253 const unsigned short addr_list[] = {
254 0x1a, /* Hauppauge IR external - collides with WM8739 */
255 0x18, /* Hauppauge IR internal */
Andy Wallsbfbde8e2009-11-21 11:41:33 -0300256 I2C_CLIENT_END
257 };
258
259 memset(&info, 0, sizeof(struct i2c_board_info));
260 strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
Jean Delvare9a942412010-08-11 18:20:56 +0200261 return i2c_new_probed_device(&itv->i2c_adap, &info, addr_list, NULL);
Andy Wallsbfbde8e2009-11-21 11:41:33 -0300262}
263
Hans Verkuild9009202007-12-07 21:01:15 -0300264int ivtv_i2c_register(struct ivtv *itv, unsigned idx)
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300265{
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300266 struct v4l2_subdev *sd;
267 struct i2c_adapter *adap = &itv->i2c_adap;
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300268 const char *type = hw_devicenames[idx];
269 u32 hw = 1 << idx;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300270
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300271 if (idx >= ARRAY_SIZE(hw_addrs))
Hans Verkuild9009202007-12-07 21:01:15 -0300272 return -1;
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300273 if (hw == IVTV_HW_TUNER) {
274 /* special tuner handling */
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -0300275 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev, adap, type, 0,
276 itv->card_i2c->radio);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300277 if (sd)
278 sd->grp_id = 1 << idx;
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -0300279 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev, adap, type, 0,
280 itv->card_i2c->demod);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300281 if (sd)
282 sd->grp_id = 1 << idx;
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -0300283 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev, adap, type, 0,
284 itv->card_i2c->tv);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300285 if (sd)
286 sd->grp_id = 1 << idx;
287 return sd ? 0 : -1;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300288 }
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300289
290 if (hw & IVTV_HW_IR_ANY)
291 return ivtv_i2c_new_ir(itv, hw, type, hw_addrs[idx]);
292
293 /* Is it not an I2C device or one we do not wish to register? */
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300294 if (!hw_addrs[idx])
295 return -1;
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300296
297 /* It's an I2C device other than an analog tuner or IR chip */
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300298 if (hw == IVTV_HW_UPD64031A || hw == IVTV_HW_UPD6408X) {
Hans Verkuil53dacb12009-08-10 02:49:08 -0300299 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -0300300 adap, type, 0, I2C_ADDRS(hw_addrs[idx]));
Hans Verkuil72c851b2010-08-06 10:53:19 -0300301 } else if (hw == IVTV_HW_CX25840) {
302 struct cx25840_platform_data pdata;
Hans Verkuil3c7c9372011-01-08 07:08:02 -0300303 struct i2c_board_info cx25840_info = {
304 .type = "cx25840",
305 .addr = hw_addrs[idx],
306 .platform_data = &pdata,
307 };
Hans Verkuil72c851b2010-08-06 10:53:19 -0300308
309 pdata.pvr150_workaround = itv->pvr150_workaround;
Hans Verkuil3c7c9372011-01-08 07:08:02 -0300310 sd = v4l2_i2c_new_subdev_board(&itv->v4l2_dev, adap,
311 &cx25840_info, NULL);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300312 } else {
Hans Verkuile6574f22009-04-01 03:57:53 -0300313 sd = v4l2_i2c_new_subdev(&itv->v4l2_dev,
Laurent Pinchart9a1f8b32010-09-24 10:16:44 -0300314 adap, type, hw_addrs[idx], NULL);
Hans Verkuild9009202007-12-07 21:01:15 -0300315 }
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300316 if (sd)
317 sd->grp_id = 1 << idx;
318 return sd ? 0 : -1;
Hans Verkuild9009202007-12-07 21:01:15 -0300319}
320
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300321struct v4l2_subdev *ivtv_find_hw(struct ivtv *itv, u32 hw)
Hans Verkuild9009202007-12-07 21:01:15 -0300322{
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300323 struct v4l2_subdev *result = NULL;
324 struct v4l2_subdev *sd;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300325
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300326 spin_lock(&itv->v4l2_dev.lock);
327 v4l2_device_for_each_subdev(sd, &itv->v4l2_dev) {
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300328 if (sd->grp_id == hw) {
329 result = sd;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300330 break;
331 }
332 }
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300333 spin_unlock(&itv->v4l2_dev.lock);
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300334 return result;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300335}
336
337/* Set the serial clock line to the desired state */
338static void ivtv_setscl(struct ivtv *itv, int state)
339{
340 /* write them out */
341 /* write bits are inverted */
342 write_reg(~state, IVTV_REG_I2C_SETSCL_OFFSET);
343}
344
345/* Set the serial data line to the desired state */
346static void ivtv_setsda(struct ivtv *itv, int state)
347{
348 /* write them out */
349 /* write bits are inverted */
350 write_reg(~state & 1, IVTV_REG_I2C_SETSDA_OFFSET);
351}
352
353/* Read the serial clock line */
354static int ivtv_getscl(struct ivtv *itv)
355{
356 return read_reg(IVTV_REG_I2C_GETSCL_OFFSET) & 1;
357}
358
359/* Read the serial data line */
360static int ivtv_getsda(struct ivtv *itv)
361{
362 return read_reg(IVTV_REG_I2C_GETSDA_OFFSET) & 1;
363}
364
365/* Implement a short delay by polling the serial clock line */
366static void ivtv_scldelay(struct ivtv *itv)
367{
368 int i;
369
370 for (i = 0; i < 5; ++i)
371 ivtv_getscl(itv);
372}
373
374/* Wait for the serial clock line to become set to a specific value */
375static int ivtv_waitscl(struct ivtv *itv, int val)
376{
377 int i;
378
379 ivtv_scldelay(itv);
380 for (i = 0; i < 1000; ++i) {
381 if (ivtv_getscl(itv) == val)
382 return 1;
383 }
384 return 0;
385}
386
387/* Wait for the serial data line to become set to a specific value */
388static int ivtv_waitsda(struct ivtv *itv, int val)
389{
390 int i;
391
392 ivtv_scldelay(itv);
393 for (i = 0; i < 1000; ++i) {
394 if (ivtv_getsda(itv) == val)
395 return 1;
396 }
397 return 0;
398}
399
400/* Wait for the slave to issue an ACK */
401static int ivtv_ack(struct ivtv *itv)
402{
403 int ret = 0;
404
405 if (ivtv_getscl(itv) == 1) {
Hans Verkuil11d28762007-07-17 12:47:38 -0300406 IVTV_DEBUG_HI_I2C("SCL was high starting an ack\n");
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300407 ivtv_setscl(itv, 0);
408 if (!ivtv_waitscl(itv, 0)) {
409 IVTV_DEBUG_I2C("Could not set SCL low starting an ack\n");
410 return -EREMOTEIO;
411 }
412 }
413 ivtv_setsda(itv, 1);
414 ivtv_scldelay(itv);
415 ivtv_setscl(itv, 1);
416 if (!ivtv_waitsda(itv, 0)) {
417 IVTV_DEBUG_I2C("Slave did not ack\n");
418 ret = -EREMOTEIO;
419 }
420 ivtv_setscl(itv, 0);
421 if (!ivtv_waitscl(itv, 0)) {
422 IVTV_DEBUG_I2C("Failed to set SCL low after ACK\n");
423 ret = -EREMOTEIO;
424 }
425 return ret;
426}
427
428/* Write a single byte to the i2c bus and wait for the slave to ACK */
429static int ivtv_sendbyte(struct ivtv *itv, unsigned char byte)
430{
431 int i, bit;
432
Hans Verkuil11d28762007-07-17 12:47:38 -0300433 IVTV_DEBUG_HI_I2C("write %x\n",byte);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300434 for (i = 0; i < 8; ++i, byte<<=1) {
435 ivtv_setscl(itv, 0);
436 if (!ivtv_waitscl(itv, 0)) {
437 IVTV_DEBUG_I2C("Error setting SCL low\n");
438 return -EREMOTEIO;
439 }
440 bit = (byte>>7)&1;
441 ivtv_setsda(itv, bit);
442 if (!ivtv_waitsda(itv, bit)) {
443 IVTV_DEBUG_I2C("Error setting SDA\n");
444 return -EREMOTEIO;
445 }
446 ivtv_setscl(itv, 1);
447 if (!ivtv_waitscl(itv, 1)) {
448 IVTV_DEBUG_I2C("Slave not ready for bit\n");
449 return -EREMOTEIO;
450 }
451 }
452 ivtv_setscl(itv, 0);
453 if (!ivtv_waitscl(itv, 0)) {
454 IVTV_DEBUG_I2C("Error setting SCL low\n");
455 return -EREMOTEIO;
456 }
457 return ivtv_ack(itv);
458}
459
460/* Read a byte from the i2c bus and send a NACK if applicable (i.e. for the
461 final byte) */
462static int ivtv_readbyte(struct ivtv *itv, unsigned char *byte, int nack)
463{
464 int i;
465
466 *byte = 0;
467
468 ivtv_setsda(itv, 1);
469 ivtv_scldelay(itv);
470 for (i = 0; i < 8; ++i) {
471 ivtv_setscl(itv, 0);
472 ivtv_scldelay(itv);
473 ivtv_setscl(itv, 1);
474 if (!ivtv_waitscl(itv, 1)) {
475 IVTV_DEBUG_I2C("Error setting SCL high\n");
476 return -EREMOTEIO;
477 }
478 *byte = ((*byte)<<1)|ivtv_getsda(itv);
479 }
480 ivtv_setscl(itv, 0);
481 ivtv_scldelay(itv);
482 ivtv_setsda(itv, nack);
483 ivtv_scldelay(itv);
484 ivtv_setscl(itv, 1);
485 ivtv_scldelay(itv);
486 ivtv_setscl(itv, 0);
487 ivtv_scldelay(itv);
Hans Verkuil11d28762007-07-17 12:47:38 -0300488 IVTV_DEBUG_HI_I2C("read %x\n",*byte);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300489 return 0;
490}
491
492/* Issue a start condition on the i2c bus to alert slaves to prepare for
493 an address write */
494static int ivtv_start(struct ivtv *itv)
495{
496 int sda;
497
498 sda = ivtv_getsda(itv);
499 if (sda != 1) {
Hans Verkuil11d28762007-07-17 12:47:38 -0300500 IVTV_DEBUG_HI_I2C("SDA was low at start\n");
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300501 ivtv_setsda(itv, 1);
502 if (!ivtv_waitsda(itv, 1)) {
503 IVTV_DEBUG_I2C("SDA stuck low\n");
504 return -EREMOTEIO;
505 }
506 }
507 if (ivtv_getscl(itv) != 1) {
508 ivtv_setscl(itv, 1);
509 if (!ivtv_waitscl(itv, 1)) {
510 IVTV_DEBUG_I2C("SCL stuck low at start\n");
511 return -EREMOTEIO;
512 }
513 }
514 ivtv_setsda(itv, 0);
515 ivtv_scldelay(itv);
516 return 0;
517}
518
519/* Issue a stop condition on the i2c bus to release it */
520static int ivtv_stop(struct ivtv *itv)
521{
522 int i;
523
524 if (ivtv_getscl(itv) != 0) {
Hans Verkuil11d28762007-07-17 12:47:38 -0300525 IVTV_DEBUG_HI_I2C("SCL not low when stopping\n");
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300526 ivtv_setscl(itv, 0);
527 if (!ivtv_waitscl(itv, 0)) {
528 IVTV_DEBUG_I2C("SCL could not be set low\n");
529 }
530 }
531 ivtv_setsda(itv, 0);
532 ivtv_scldelay(itv);
533 ivtv_setscl(itv, 1);
534 if (!ivtv_waitscl(itv, 1)) {
535 IVTV_DEBUG_I2C("SCL could not be set high\n");
536 return -EREMOTEIO;
537 }
538 ivtv_scldelay(itv);
539 ivtv_setsda(itv, 1);
540 if (!ivtv_waitsda(itv, 1)) {
541 IVTV_DEBUG_I2C("resetting I2C\n");
542 for (i = 0; i < 16; ++i) {
543 ivtv_setscl(itv, 0);
544 ivtv_scldelay(itv);
545 ivtv_setscl(itv, 1);
546 ivtv_scldelay(itv);
547 ivtv_setsda(itv, 1);
548 }
549 ivtv_waitsda(itv, 1);
550 return -EREMOTEIO;
551 }
552 return 0;
553}
554
555/* Write a message to the given i2c slave. do_stop may be 0 to prevent
556 issuing the i2c stop condition (when following with a read) */
557static int ivtv_write(struct ivtv *itv, unsigned char addr, unsigned char *data, u32 len, int do_stop)
558{
559 int retry, ret = -EREMOTEIO;
560 u32 i;
561
562 for (retry = 0; ret != 0 && retry < 8; ++retry) {
563 ret = ivtv_start(itv);
564
565 if (ret == 0) {
566 ret = ivtv_sendbyte(itv, addr<<1);
567 for (i = 0; ret == 0 && i < len; ++i)
568 ret = ivtv_sendbyte(itv, data[i]);
569 }
570 if (ret != 0 || do_stop) {
571 ivtv_stop(itv);
572 }
573 }
574 if (ret)
575 IVTV_DEBUG_I2C("i2c write to %x failed\n", addr);
576 return ret;
577}
578
579/* Read data from the given i2c slave. A stop condition is always issued. */
580static int ivtv_read(struct ivtv *itv, unsigned char addr, unsigned char *data, u32 len)
581{
582 int retry, ret = -EREMOTEIO;
583 u32 i;
584
585 for (retry = 0; ret != 0 && retry < 8; ++retry) {
586 ret = ivtv_start(itv);
587 if (ret == 0)
588 ret = ivtv_sendbyte(itv, (addr << 1) | 1);
589 for (i = 0; ret == 0 && i < len; ++i) {
590 ret = ivtv_readbyte(itv, &data[i], i == len - 1);
591 }
592 ivtv_stop(itv);
593 }
594 if (ret)
595 IVTV_DEBUG_I2C("i2c read from %x failed\n", addr);
596 return ret;
597}
598
599/* Kernel i2c transfer implementation. Takes a number of messages to be read
600 or written. If a read follows a write, this will occur without an
601 intervening stop condition */
602static int ivtv_xfer(struct i2c_adapter *i2c_adap, struct i2c_msg *msgs, int num)
603{
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300604 struct v4l2_device *v4l2_dev = i2c_get_adapdata(i2c_adap);
605 struct ivtv *itv = to_ivtv(v4l2_dev);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300606 int retval;
607 int i;
608
609 mutex_lock(&itv->i2c_bus_lock);
610 for (i = retval = 0; retval == 0 && i < num; i++) {
611 if (msgs[i].flags & I2C_M_RD)
612 retval = ivtv_read(itv, msgs[i].addr, msgs[i].buf, msgs[i].len);
613 else {
614 /* if followed by a read, don't stop */
615 int stop = !(i + 1 < num && msgs[i + 1].flags == I2C_M_RD);
616
617 retval = ivtv_write(itv, msgs[i].addr, msgs[i].buf, msgs[i].len, stop);
618 }
619 }
620 mutex_unlock(&itv->i2c_bus_lock);
621 return retval ? retval : num;
622}
623
624/* Kernel i2c capabilities */
625static u32 ivtv_functionality(struct i2c_adapter *adap)
626{
627 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
628}
629
630static struct i2c_algorithm ivtv_algo = {
631 .master_xfer = ivtv_xfer,
632 .functionality = ivtv_functionality,
633};
634
635/* template for our-bit banger */
636static struct i2c_adapter ivtv_i2c_adap_hw_template = {
637 .name = "ivtv i2c driver",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300638 .algo = &ivtv_algo,
639 .algo_data = NULL, /* filled from template */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300640 .owner = THIS_MODULE,
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300641};
642
643static void ivtv_setscl_old(void *data, int state)
644{
645 struct ivtv *itv = (struct ivtv *)data;
646
647 if (state)
648 itv->i2c_state |= 0x01;
649 else
650 itv->i2c_state &= ~0x01;
651
652 /* write them out */
653 /* write bits are inverted */
654 write_reg(~itv->i2c_state, IVTV_REG_I2C_SETSCL_OFFSET);
655}
656
657static void ivtv_setsda_old(void *data, int state)
658{
659 struct ivtv *itv = (struct ivtv *)data;
660
661 if (state)
662 itv->i2c_state |= 0x01;
663 else
664 itv->i2c_state &= ~0x01;
665
666 /* write them out */
667 /* write bits are inverted */
668 write_reg(~itv->i2c_state, IVTV_REG_I2C_SETSDA_OFFSET);
669}
670
671static int ivtv_getscl_old(void *data)
672{
673 struct ivtv *itv = (struct ivtv *)data;
674
675 return read_reg(IVTV_REG_I2C_GETSCL_OFFSET) & 1;
676}
677
678static int ivtv_getsda_old(void *data)
679{
680 struct ivtv *itv = (struct ivtv *)data;
681
682 return read_reg(IVTV_REG_I2C_GETSDA_OFFSET) & 1;
683}
684
685/* template for i2c-bit-algo */
686static struct i2c_adapter ivtv_i2c_adap_template = {
687 .name = "ivtv i2c driver",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300688 .algo = NULL, /* set by i2c-algo-bit */
689 .algo_data = NULL, /* filled from template */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300690 .owner = THIS_MODULE,
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300691};
692
Andy Wallsf412d362009-11-21 01:47:45 -0300693#define IVTV_ALGO_BIT_TIMEOUT (2) /* seconds */
694
Jean Delvareaeb292d2007-08-23 15:45:41 -0300695static const struct i2c_algo_bit_data ivtv_i2c_algo_template = {
696 .setsda = ivtv_setsda_old,
697 .setscl = ivtv_setscl_old,
698 .getsda = ivtv_getsda_old,
699 .getscl = ivtv_getscl_old,
Andy Wallsf412d362009-11-21 01:47:45 -0300700 .udelay = IVTV_DEFAULT_I2C_CLOCK_PERIOD / 2, /* microseconds */
701 .timeout = IVTV_ALGO_BIT_TIMEOUT * HZ, /* jiffies */
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300702};
703
704static struct i2c_client ivtv_i2c_client_template = {
Andrew Mortona4157832007-03-07 11:28:33 -0300705 .name = "ivtv internal",
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300706};
707
Andy Wallsbfbde8e2009-11-21 11:41:33 -0300708/* init + register i2c adapter */
Adrian Bunk056827a2007-12-11 19:23:49 -0300709int init_ivtv_i2c(struct ivtv *itv)
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300710{
Jean Delvarec668f322009-05-13 16:48:50 -0300711 int retval;
712
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300713 IVTV_DEBUG_I2C("i2c init\n");
714
Hans Verkuild9009202007-12-07 21:01:15 -0300715 /* Sanity checks for the I2C hardware arrays. They must be the
Andy Wallsad2fe2d2009-11-21 12:52:34 -0300716 * same size.
Hans Verkuild9009202007-12-07 21:01:15 -0300717 */
Laurent Pinchart84d0d4f2010-09-24 09:58:51 -0300718 if (ARRAY_SIZE(hw_devicenames) != ARRAY_SIZE(hw_addrs)) {
Hans Verkuild9009202007-12-07 21:01:15 -0300719 IVTV_ERR("Mismatched I2C hardware arrays\n");
720 return -ENODEV;
721 }
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300722 if (itv->options.newi2c > 0) {
723 memcpy(&itv->i2c_adap, &ivtv_i2c_adap_hw_template,
724 sizeof(struct i2c_adapter));
725 } else {
726 memcpy(&itv->i2c_adap, &ivtv_i2c_adap_template,
727 sizeof(struct i2c_adapter));
728 memcpy(&itv->i2c_algo, &ivtv_i2c_algo_template,
729 sizeof(struct i2c_algo_bit_data));
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300730 }
Andy Wallsf412d362009-11-21 01:47:45 -0300731 itv->i2c_algo.udelay = itv->options.i2c_clock_period / 2;
Hans Verkuil0e614cd2007-12-21 21:33:36 -0300732 itv->i2c_algo.data = itv;
733 itv->i2c_adap.algo_data = &itv->i2c_algo;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300734
735 sprintf(itv->i2c_adap.name + strlen(itv->i2c_adap.name), " #%d",
Hans Verkuil67ec09f2008-11-29 19:38:23 -0300736 itv->instance);
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300737 i2c_set_adapdata(&itv->i2c_adap, &itv->v4l2_dev);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300738
739 memcpy(&itv->i2c_client, &ivtv_i2c_client_template,
740 sizeof(struct i2c_client));
741 itv->i2c_client.adapter = &itv->i2c_adap;
Hans Verkuil8ac05ae2009-02-07 07:02:27 -0300742 itv->i2c_adap.dev.parent = &itv->pdev->dev;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300743
744 IVTV_DEBUG_I2C("setting scl and sda to 1\n");
745 ivtv_setscl(itv, 1);
746 ivtv_setsda(itv, 1);
747
748 if (itv->options.newi2c > 0)
Jean Delvarec668f322009-05-13 16:48:50 -0300749 retval = i2c_add_adapter(&itv->i2c_adap);
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300750 else
Jean Delvarec668f322009-05-13 16:48:50 -0300751 retval = i2c_bit_add_bus(&itv->i2c_adap);
752
Jean Delvarec668f322009-05-13 16:48:50 -0300753 return retval;
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300754}
755
David Millerbb374b72007-10-30 21:23:48 -0700756void exit_ivtv_i2c(struct ivtv *itv)
Hans Verkuil1a0adaf2007-04-27 12:31:25 -0300757{
758 IVTV_DEBUG_I2C("i2c exit\n");
759
760 i2c_del_adapter(&itv->i2c_adap);
761}