blob: 965d5eb33752bc9ff436c13dbdb728a56dc32016 [file] [log] [blame]
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07001/*
Uwe Bugla1589a992009-03-29 07:46:58 -03002 * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07003 * flexcop-i2c.c - flexcop internal 2Wire bus (I2C) and dvb i2c initialization
Uwe Bugla1589a992009-03-29 07:46:58 -03004 * see flexcop.c for copyright information
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07005 */
6#include "flexcop.h"
7
8#define FC_MAX_I2C_RETRIES 100000
9
Uwe Bugla1589a992009-03-29 07:46:58 -030010static int flexcop_i2c_operation(struct flexcop_device *fc,
11 flexcop_ibi_value *r100)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070012{
Johannes Stezenbachbdc78002005-05-16 21:54:18 -070013 int i;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070014 flexcop_ibi_value r;
15
16 r100->tw_sm_c_100.working_start = 1;
17 deb_i2c("r100 before: %08x\n",r100->raw);
18
19 fc->write_ibi_reg(fc, tw_sm_c_100, ibi_zero);
20 fc->write_ibi_reg(fc, tw_sm_c_100, *r100); /* initiating i2c operation */
21
22 for (i = 0; i < FC_MAX_I2C_RETRIES; i++) {
23 r = fc->read_ibi_reg(fc, tw_sm_c_100);
24
25 if (!r.tw_sm_c_100.no_base_addr_ack_error) {
Uwe Bugla1589a992009-03-29 07:46:58 -030026 if (r.tw_sm_c_100.st_done) {
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070027 *r100 = r;
28 deb_i2c("i2c success\n");
29 return 0;
30 }
31 } else {
32 deb_i2c("suffering from an i2c ack_error\n");
Johannes Stezenbachbdc78002005-05-16 21:54:18 -070033 return -EREMOTEIO;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070034 }
35 }
Uwe Bugla1589a992009-03-29 07:46:58 -030036 deb_i2c("tried %d times i2c operation, "
37 "never finished or too many ack errors.\n", i);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070038 return -EREMOTEIO;
39}
40
Patrick Boettcher6394cf52008-03-29 20:49:57 -030041static int flexcop_i2c_read4(struct flexcop_i2c_adapter *i2c,
Uwe Bugla1589a992009-03-29 07:46:58 -030042 flexcop_ibi_value r100, u8 *buf)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070043{
44 flexcop_ibi_value r104;
Uwe Bugla1589a992009-03-29 07:46:58 -030045 int len = r100.tw_sm_c_100.total_bytes,
46 /* remember total_bytes is buflen-1 */
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070047 ret;
48
Patrick Boettcher16620702009-02-28 10:19:30 -030049 /* work-around to have CableStar2 and SkyStar2 rev 2.7 work
50 * correctly:
51 *
52 * the ITD1000 is behind an i2c-gate which closes automatically
53 * after an i2c-transaction the STV0297 needs 2 consecutive reads
54 * one with no_base_addr = 0 and one with 1
55 *
56 * those two work-arounds are conflictin: we check for the card
57 * type, it is set when probing the ITD1000 */
58 if (i2c->fc->dev_type == FC_SKY_REV27)
59 r100.tw_sm_c_100.no_base_addr_ack_error = i2c->no_base_addr;
60
Patrick Boettcher6394cf52008-03-29 20:49:57 -030061 ret = flexcop_i2c_operation(i2c->fc, &r100);
62 if (ret != 0) {
Antti Seppälä11c6c7f2008-12-01 06:59:37 -030063 deb_i2c("Retrying operation\n");
64 r100.tw_sm_c_100.no_base_addr_ack_error = i2c->no_base_addr;
65 ret = flexcop_i2c_operation(i2c->fc, &r100);
66 }
67 if (ret != 0) {
Patrick Boettcher6394cf52008-03-29 20:49:57 -030068 deb_i2c("read failed. %d\n", ret);
69 return ret;
Johannes Stezenbachbdc78002005-05-16 21:54:18 -070070 }
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070071
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070072 buf[0] = r100.tw_sm_c_100.data1_reg;
73
Johannes Stezenbachbdc78002005-05-16 21:54:18 -070074 if (len > 0) {
Patrick Boettcher6394cf52008-03-29 20:49:57 -030075 r104 = i2c->fc->read_ibi_reg(i2c->fc, tw_sm_c_104);
76 deb_i2c("read: r100: %08x, r104: %08x\n", r100.raw, r104.raw);
Johannes Stezenbachbdc78002005-05-16 21:54:18 -070077
78 /* there is at least one more byte, otherwise we wouldn't be here */
79 buf[1] = r104.tw_sm_c_104.data2_reg;
80 if (len > 1) buf[2] = r104.tw_sm_c_104.data3_reg;
81 if (len > 2) buf[3] = r104.tw_sm_c_104.data4_reg;
82 }
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070083 return 0;
84}
85
Uwe Bugla1589a992009-03-29 07:46:58 -030086static int flexcop_i2c_write4(struct flexcop_device *fc,
87 flexcop_ibi_value r100, u8 *buf)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070088{
89 flexcop_ibi_value r104;
90 int len = r100.tw_sm_c_100.total_bytes; /* remember total_bytes is buflen-1 */
91 r104.raw = 0;
92
93 /* there is at least one byte, otherwise we wouldn't be here */
94 r100.tw_sm_c_100.data1_reg = buf[0];
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070095 r104.tw_sm_c_104.data2_reg = len > 0 ? buf[1] : 0;
96 r104.tw_sm_c_104.data3_reg = len > 1 ? buf[2] : 0;
97 r104.tw_sm_c_104.data4_reg = len > 2 ? buf[3] : 0;
98
Patrick Boettcher6394cf52008-03-29 20:49:57 -030099 deb_i2c("write: r100: %08x, r104: %08x\n", r100.raw, r104.raw);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700100
101 /* write the additional i2c data before doing the actual i2c operation */
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300102 fc->write_ibi_reg(fc, tw_sm_c_104, r104);
103 return flexcop_i2c_operation(fc, &r100);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700104}
105
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300106int flexcop_i2c_request(struct flexcop_i2c_adapter *i2c,
Uwe Bugla1589a992009-03-29 07:46:58 -0300107 flexcop_access_op_t op, u8 chipaddr, u8 addr, u8 *buf, u16 len)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700108{
109 int ret;
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300110
111#ifdef DUMP_I2C_MESSAGES
112 int i;
113#endif
114
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700115 u16 bytes_to_transfer;
116 flexcop_ibi_value r100;
117
118 deb_i2c("op = %d\n",op);
119 r100.raw = 0;
120 r100.tw_sm_c_100.chipaddr = chipaddr;
121 r100.tw_sm_c_100.twoWS_rw = op;
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300122 r100.tw_sm_c_100.twoWS_port_reg = i2c->port;
123
124#ifdef DUMP_I2C_MESSAGES
125 printk(KERN_DEBUG "%d ", i2c->port);
126 if (op == FC_READ)
127 printk("rd(");
128 else
129 printk("wr(");
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300130 printk("%02x): %02x ", chipaddr, addr);
131#endif
132
133 /* in that case addr is the only value ->
134 * we write it twice as baseaddr and val0
135 * BBTI is doing it like that for ISL6421 at least */
136 if (i2c->no_base_addr && len == 0 && op == FC_WRITE) {
137 buf = &addr;
138 len = 1;
139 }
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700140
141 while (len != 0) {
142 bytes_to_transfer = len > 4 ? 4 : len;
143
144 r100.tw_sm_c_100.total_bytes = bytes_to_transfer - 1;
145 r100.tw_sm_c_100.baseaddr = addr;
146
147 if (op == FC_READ)
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300148 ret = flexcop_i2c_read4(i2c, r100, buf);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700149 else
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300150 ret = flexcop_i2c_write4(i2c->fc, r100, buf);
151
152#ifdef DUMP_I2C_MESSAGES
153 for (i = 0; i < bytes_to_transfer; i++)
154 printk("%02x ", buf[i]);
155#endif
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700156
157 if (ret < 0)
158 return ret;
159
160 buf += bytes_to_transfer;
161 addr += bytes_to_transfer;
162 len -= bytes_to_transfer;
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300163 }
164
165#ifdef DUMP_I2C_MESSAGES
166 printk("\n");
167#endif
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700168
169 return 0;
170}
171/* exported for PCI i2c */
172EXPORT_SYMBOL(flexcop_i2c_request);
173
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700174/* master xfer callback for demodulator */
Uwe Bugla1589a992009-03-29 07:46:58 -0300175static int flexcop_master_xfer(struct i2c_adapter *i2c_adap,
176 struct i2c_msg msgs[], int num)
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700177{
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300178 struct flexcop_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap);
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700179 int i, ret = 0;
180
Trent Piepho6175e482007-08-19 05:05:54 -0300181 /* Some drivers use 1 byte or 0 byte reads as probes, which this
182 * driver doesn't support. These probes will always fail, so this
183 * hack makes them always succeed. If one knew how, it would of
184 * course be better to actually do the read. */
185 if (num == 1 && msgs[0].flags == I2C_M_RD && msgs[0].len <= 1)
186 return 1;
187
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300188 if (mutex_lock_interruptible(&i2c->fc->i2c_mutex))
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700189 return -ERESTARTSYS;
190
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300191 for (i = 0; i < num; i++) {
192 /* reading */
193 if (i+1 < num && (msgs[i+1].flags == I2C_M_RD)) {
194 ret = i2c->fc->i2c_request(i2c, FC_READ, msgs[i].addr,
Uwe Bugla1589a992009-03-29 07:46:58 -0300195 msgs[i].buf[0], msgs[i+1].buf,
196 msgs[i+1].len);
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300197 i++; /* skip the following message */
198 } else /* writing */
199 ret = i2c->fc->i2c_request(i2c, FC_WRITE, msgs[i].addr,
Uwe Bugla1589a992009-03-29 07:46:58 -0300200 msgs[i].buf[0], &msgs[i].buf[1],
201 msgs[i].len - 1);
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300202 if (ret < 0) {
Matthias Schwarzott302e8ac2009-05-20 04:57:10 -0300203 deb_i2c("i2c master_xfer failed");
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700204 break;
205 }
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700206 }
207
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300208 mutex_unlock(&i2c->fc->i2c_mutex);
209
210 if (ret == 0)
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700211 ret = num;
Johannes Stezenbachbdc78002005-05-16 21:54:18 -0700212 return ret;
213}
214
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700215static u32 flexcop_i2c_func(struct i2c_adapter *adapter)
216{
217 return I2C_FUNC_I2C;
218}
219
220static struct i2c_algorithm flexcop_algo = {
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700221 .master_xfer = flexcop_master_xfer,
222 .functionality = flexcop_i2c_func,
223};
224
225int flexcop_i2c_init(struct flexcop_device *fc)
226{
227 int ret;
Ingo Molnar3593cab2006-02-07 06:49:14 -0200228 mutex_init(&fc->i2c_mutex);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700229
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300230 fc->fc_i2c_adap[0].fc = fc;
231 fc->fc_i2c_adap[1].fc = fc;
232 fc->fc_i2c_adap[2].fc = fc;
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300233 fc->fc_i2c_adap[0].port = FC_I2C_PORT_DEMOD;
234 fc->fc_i2c_adap[1].port = FC_I2C_PORT_EEPROM;
235 fc->fc_i2c_adap[2].port = FC_I2C_PORT_TUNER;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700236
Jean Delvare1d434012008-09-03 17:12:23 -0300237 strlcpy(fc->fc_i2c_adap[0].i2c_adap.name, "B2C2 FlexCop I2C to demod",
Uwe Bugla1589a992009-03-29 07:46:58 -0300238 sizeof(fc->fc_i2c_adap[0].i2c_adap.name));
Jean Delvare1d434012008-09-03 17:12:23 -0300239 strlcpy(fc->fc_i2c_adap[1].i2c_adap.name, "B2C2 FlexCop I2C to eeprom",
Uwe Bugla1589a992009-03-29 07:46:58 -0300240 sizeof(fc->fc_i2c_adap[1].i2c_adap.name));
Jean Delvare1d434012008-09-03 17:12:23 -0300241 strlcpy(fc->fc_i2c_adap[2].i2c_adap.name, "B2C2 FlexCop I2C to tuner",
Uwe Bugla1589a992009-03-29 07:46:58 -0300242 sizeof(fc->fc_i2c_adap[2].i2c_adap.name));
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700243
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300244 i2c_set_adapdata(&fc->fc_i2c_adap[0].i2c_adap, &fc->fc_i2c_adap[0]);
245 i2c_set_adapdata(&fc->fc_i2c_adap[1].i2c_adap, &fc->fc_i2c_adap[1]);
246 i2c_set_adapdata(&fc->fc_i2c_adap[2].i2c_adap, &fc->fc_i2c_adap[2]);
247
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300248 fc->fc_i2c_adap[0].i2c_adap.algo =
249 fc->fc_i2c_adap[1].i2c_adap.algo =
250 fc->fc_i2c_adap[2].i2c_adap.algo = &flexcop_algo;
251 fc->fc_i2c_adap[0].i2c_adap.algo_data =
252 fc->fc_i2c_adap[1].i2c_adap.algo_data =
253 fc->fc_i2c_adap[2].i2c_adap.algo_data = NULL;
254 fc->fc_i2c_adap[0].i2c_adap.dev.parent =
255 fc->fc_i2c_adap[1].i2c_adap.dev.parent =
256 fc->fc_i2c_adap[2].i2c_adap.dev.parent = fc->dev;
257
258 ret = i2c_add_adapter(&fc->fc_i2c_adap[0].i2c_adap);
259 if (ret < 0)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700260 return ret;
261
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300262 ret = i2c_add_adapter(&fc->fc_i2c_adap[1].i2c_adap);
263 if (ret < 0)
264 goto adap_1_failed;
265
266 ret = i2c_add_adapter(&fc->fc_i2c_adap[2].i2c_adap);
267 if (ret < 0)
268 goto adap_2_failed;
269
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700270 fc->init_state |= FC_STATE_I2C_INIT;
271 return 0;
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300272
273adap_2_failed:
274 i2c_del_adapter(&fc->fc_i2c_adap[1].i2c_adap);
275adap_1_failed:
276 i2c_del_adapter(&fc->fc_i2c_adap[0].i2c_adap);
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300277 return ret;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700278}
279
280void flexcop_i2c_exit(struct flexcop_device *fc)
281{
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300282 if (fc->init_state & FC_STATE_I2C_INIT) {
283 i2c_del_adapter(&fc->fc_i2c_adap[2].i2c_adap);
284 i2c_del_adapter(&fc->fc_i2c_adap[1].i2c_adap);
285 i2c_del_adapter(&fc->fc_i2c_adap[0].i2c_adap);
286 }
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700287 fc->init_state &= ~FC_STATE_I2C_INIT;
288}