flexcop-i2c.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
  4. * flexcop-i2c.c - flexcop internal 2Wire bus (I2C) and dvb i2c initialization
  5. * see flexcop.c for copyright information
  6. */
  7. #include "flexcop.h"
  8. #define FC_MAX_I2C_RETRIES 100000
  9. static int flexcop_i2c_operation(struct flexcop_device *fc,
  10. flexcop_ibi_value *r100)
  11. {
  12. int i;
  13. flexcop_ibi_value r;
  14. r100->tw_sm_c_100.working_start = 1;
  15. deb_i2c("r100 before: %08x\n",r100->raw);
  16. fc->write_ibi_reg(fc, tw_sm_c_100, ibi_zero);
  17. fc->write_ibi_reg(fc, tw_sm_c_100, *r100); /* initiating i2c operation */
  18. for (i = 0; i < FC_MAX_I2C_RETRIES; i++) {
  19. r = fc->read_ibi_reg(fc, tw_sm_c_100);
  20. if (!r.tw_sm_c_100.no_base_addr_ack_error) {
  21. if (r.tw_sm_c_100.st_done) {
  22. *r100 = r;
  23. deb_i2c("i2c success\n");
  24. return 0;
  25. }
  26. } else {
  27. deb_i2c("suffering from an i2c ack_error\n");
  28. return -EREMOTEIO;
  29. }
  30. }
  31. deb_i2c("tried %d times i2c operation, never finished or too many ack errors.\n",
  32. i);
  33. return -EREMOTEIO;
  34. }
  35. static int flexcop_i2c_read4(struct flexcop_i2c_adapter *i2c,
  36. flexcop_ibi_value r100, u8 *buf)
  37. {
  38. flexcop_ibi_value r104;
  39. int len = r100.tw_sm_c_100.total_bytes,
  40. /* remember total_bytes is buflen-1 */
  41. ret;
  42. /* work-around to have CableStar2 and SkyStar2 rev 2.7 work
  43. * correctly:
  44. *
  45. * the ITD1000 is behind an i2c-gate which closes automatically
  46. * after an i2c-transaction the STV0297 needs 2 consecutive reads
  47. * one with no_base_addr = 0 and one with 1
  48. *
  49. * those two work-arounds are conflictin: we check for the card
  50. * type, it is set when probing the ITD1000 */
  51. if (i2c->fc->dev_type == FC_SKY_REV27)
  52. r100.tw_sm_c_100.no_base_addr_ack_error = i2c->no_base_addr;
  53. ret = flexcop_i2c_operation(i2c->fc, &r100);
  54. if (ret != 0) {
  55. deb_i2c("Retrying operation\n");
  56. r100.tw_sm_c_100.no_base_addr_ack_error = i2c->no_base_addr;
  57. ret = flexcop_i2c_operation(i2c->fc, &r100);
  58. }
  59. if (ret != 0) {
  60. deb_i2c("read failed. %d\n", ret);
  61. return ret;
  62. }
  63. buf[0] = r100.tw_sm_c_100.data1_reg;
  64. if (len > 0) {
  65. r104 = i2c->fc->read_ibi_reg(i2c->fc, tw_sm_c_104);
  66. deb_i2c("read: r100: %08x, r104: %08x\n", r100.raw, r104.raw);
  67. /* there is at least one more byte, otherwise we wouldn't be here */
  68. buf[1] = r104.tw_sm_c_104.data2_reg;
  69. if (len > 1) buf[2] = r104.tw_sm_c_104.data3_reg;
  70. if (len > 2) buf[3] = r104.tw_sm_c_104.data4_reg;
  71. }
  72. return 0;
  73. }
  74. static int flexcop_i2c_write4(struct flexcop_device *fc,
  75. flexcop_ibi_value r100, u8 *buf)
  76. {
  77. flexcop_ibi_value r104;
  78. int len = r100.tw_sm_c_100.total_bytes; /* remember total_bytes is buflen-1 */
  79. r104.raw = 0;
  80. /* there is at least one byte, otherwise we wouldn't be here */
  81. r100.tw_sm_c_100.data1_reg = buf[0];
  82. r104.tw_sm_c_104.data2_reg = len > 0 ? buf[1] : 0;
  83. r104.tw_sm_c_104.data3_reg = len > 1 ? buf[2] : 0;
  84. r104.tw_sm_c_104.data4_reg = len > 2 ? buf[3] : 0;
  85. deb_i2c("write: r100: %08x, r104: %08x\n", r100.raw, r104.raw);
  86. /* write the additional i2c data before doing the actual i2c operation */
  87. fc->write_ibi_reg(fc, tw_sm_c_104, r104);
  88. return flexcop_i2c_operation(fc, &r100);
  89. }
  90. int flexcop_i2c_request(struct flexcop_i2c_adapter *i2c,
  91. flexcop_access_op_t op, u8 chipaddr,
  92. u8 start_addr, u8 *buf, u16 size)
  93. {
  94. int ret;
  95. int len = size;
  96. u8 *p;
  97. u8 addr = start_addr;
  98. u16 bytes_to_transfer;
  99. flexcop_ibi_value r100;
  100. deb_i2c("port %d %s(%02x): register %02x, size: %d\n",
  101. i2c->port,
  102. op == FC_READ ? "rd" : "wr",
  103. chipaddr, start_addr, size);
  104. r100.raw = 0;
  105. r100.tw_sm_c_100.chipaddr = chipaddr;
  106. r100.tw_sm_c_100.twoWS_rw = op;
  107. r100.tw_sm_c_100.twoWS_port_reg = i2c->port;
  108. /* in that case addr is the only value ->
  109. * we write it twice as baseaddr and val0
  110. * BBTI is doing it like that for ISL6421 at least */
  111. if (i2c->no_base_addr && len == 0 && op == FC_WRITE) {
  112. buf = &start_addr;
  113. len = 1;
  114. }
  115. p = buf;
  116. while (len != 0) {
  117. bytes_to_transfer = len > 4 ? 4 : len;
  118. r100.tw_sm_c_100.total_bytes = bytes_to_transfer - 1;
  119. r100.tw_sm_c_100.baseaddr = addr;
  120. if (op == FC_READ)
  121. ret = flexcop_i2c_read4(i2c, r100, p);
  122. else
  123. ret = flexcop_i2c_write4(i2c->fc, r100, p);
  124. if (ret < 0)
  125. return ret;
  126. p += bytes_to_transfer;
  127. addr += bytes_to_transfer;
  128. len -= bytes_to_transfer;
  129. }
  130. deb_i2c_dump("port %d %s(%02x): register %02x: %*ph\n",
  131. i2c->port,
  132. op == FC_READ ? "rd" : "wr",
  133. chipaddr, start_addr, size, buf);
  134. return 0;
  135. }
  136. /* exported for PCI i2c */
  137. EXPORT_SYMBOL(flexcop_i2c_request);
  138. /* master xfer callback for demodulator */
  139. static int flexcop_master_xfer(struct i2c_adapter *i2c_adap,
  140. struct i2c_msg msgs[], int num)
  141. {
  142. struct flexcop_i2c_adapter *i2c = i2c_get_adapdata(i2c_adap);
  143. int i, ret = 0;
  144. /* Some drivers use 1 byte or 0 byte reads as probes, which this
  145. * driver doesn't support. These probes will always fail, so this
  146. * hack makes them always succeed. If one knew how, it would of
  147. * course be better to actually do the read. */
  148. if (num == 1 && msgs[0].flags == I2C_M_RD && msgs[0].len <= 1)
  149. return 1;
  150. if (mutex_lock_interruptible(&i2c->fc->i2c_mutex))
  151. return -ERESTARTSYS;
  152. for (i = 0; i < num; i++) {
  153. /* reading */
  154. if (i+1 < num && (msgs[i+1].flags == I2C_M_RD)) {
  155. ret = i2c->fc->i2c_request(i2c, FC_READ, msgs[i].addr,
  156. msgs[i].buf[0], msgs[i+1].buf,
  157. msgs[i+1].len);
  158. i++; /* skip the following message */
  159. } else /* writing */
  160. ret = i2c->fc->i2c_request(i2c, FC_WRITE, msgs[i].addr,
  161. msgs[i].buf[0], &msgs[i].buf[1],
  162. msgs[i].len - 1);
  163. if (ret < 0) {
  164. deb_i2c("i2c master_xfer failed");
  165. break;
  166. }
  167. }
  168. mutex_unlock(&i2c->fc->i2c_mutex);
  169. if (ret == 0)
  170. ret = num;
  171. return ret;
  172. }
  173. static u32 flexcop_i2c_func(struct i2c_adapter *adapter)
  174. {
  175. return I2C_FUNC_I2C;
  176. }
  177. static struct i2c_algorithm flexcop_algo = {
  178. .master_xfer = flexcop_master_xfer,
  179. .functionality = flexcop_i2c_func,
  180. };
  181. int flexcop_i2c_init(struct flexcop_device *fc)
  182. {
  183. int ret;
  184. mutex_init(&fc->i2c_mutex);
  185. fc->fc_i2c_adap[0].fc = fc;
  186. fc->fc_i2c_adap[1].fc = fc;
  187. fc->fc_i2c_adap[2].fc = fc;
  188. fc->fc_i2c_adap[0].port = FC_I2C_PORT_DEMOD;
  189. fc->fc_i2c_adap[1].port = FC_I2C_PORT_EEPROM;
  190. fc->fc_i2c_adap[2].port = FC_I2C_PORT_TUNER;
  191. strlcpy(fc->fc_i2c_adap[0].i2c_adap.name, "B2C2 FlexCop I2C to demod",
  192. sizeof(fc->fc_i2c_adap[0].i2c_adap.name));
  193. strlcpy(fc->fc_i2c_adap[1].i2c_adap.name, "B2C2 FlexCop I2C to eeprom",
  194. sizeof(fc->fc_i2c_adap[1].i2c_adap.name));
  195. strlcpy(fc->fc_i2c_adap[2].i2c_adap.name, "B2C2 FlexCop I2C to tuner",
  196. sizeof(fc->fc_i2c_adap[2].i2c_adap.name));
  197. i2c_set_adapdata(&fc->fc_i2c_adap[0].i2c_adap, &fc->fc_i2c_adap[0]);
  198. i2c_set_adapdata(&fc->fc_i2c_adap[1].i2c_adap, &fc->fc_i2c_adap[1]);
  199. i2c_set_adapdata(&fc->fc_i2c_adap[2].i2c_adap, &fc->fc_i2c_adap[2]);
  200. fc->fc_i2c_adap[0].i2c_adap.algo =
  201. fc->fc_i2c_adap[1].i2c_adap.algo =
  202. fc->fc_i2c_adap[2].i2c_adap.algo = &flexcop_algo;
  203. fc->fc_i2c_adap[0].i2c_adap.algo_data =
  204. fc->fc_i2c_adap[1].i2c_adap.algo_data =
  205. fc->fc_i2c_adap[2].i2c_adap.algo_data = NULL;
  206. fc->fc_i2c_adap[0].i2c_adap.dev.parent =
  207. fc->fc_i2c_adap[1].i2c_adap.dev.parent =
  208. fc->fc_i2c_adap[2].i2c_adap.dev.parent = fc->dev;
  209. ret = i2c_add_adapter(&fc->fc_i2c_adap[0].i2c_adap);
  210. if (ret < 0)
  211. return ret;
  212. ret = i2c_add_adapter(&fc->fc_i2c_adap[1].i2c_adap);
  213. if (ret < 0)
  214. goto adap_1_failed;
  215. ret = i2c_add_adapter(&fc->fc_i2c_adap[2].i2c_adap);
  216. if (ret < 0)
  217. goto adap_2_failed;
  218. fc->init_state |= FC_STATE_I2C_INIT;
  219. return 0;
  220. adap_2_failed:
  221. i2c_del_adapter(&fc->fc_i2c_adap[1].i2c_adap);
  222. adap_1_failed:
  223. i2c_del_adapter(&fc->fc_i2c_adap[0].i2c_adap);
  224. return ret;
  225. }
  226. void flexcop_i2c_exit(struct flexcop_device *fc)
  227. {
  228. if (fc->init_state & FC_STATE_I2C_INIT) {
  229. i2c_del_adapter(&fc->fc_i2c_adap[2].i2c_adap);
  230. i2c_del_adapter(&fc->fc_i2c_adap[1].i2c_adap);
  231. i2c_del_adapter(&fc->fc_i2c_adap[0].i2c_adap);
  232. }
  233. fc->init_state &= ~FC_STATE_I2C_INIT;
  234. }