i2c-designware-common.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /*
  2. * Synopsys DesignWare I2C adapter driver.
  3. *
  4. * Based on the TI DAVINCI I2C adapter driver.
  5. *
  6. * Copyright (C) 2006 Texas Instruments.
  7. * Copyright (C) 2007 MontaVista Software Inc.
  8. * Copyright (C) 2009 Provigent Ltd.
  9. *
  10. * ----------------------------------------------------------------------------
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. * ----------------------------------------------------------------------------
  22. *
  23. */
  24. #include <linux/delay.h>
  25. #include <linux/export.h>
  26. #include <linux/errno.h>
  27. #include <linux/err.h>
  28. #include <linux/i2c.h>
  29. #include <linux/interrupt.h>
  30. #include <linux/io.h>
  31. #include <linux/module.h>
  32. #include <linux/pm_runtime.h>
  33. #include "i2c-designware-core.h"
  34. static char *abort_sources[] = {
  35. [ABRT_7B_ADDR_NOACK] =
  36. "slave address not acknowledged (7bit mode)",
  37. [ABRT_10ADDR1_NOACK] =
  38. "first address byte not acknowledged (10bit mode)",
  39. [ABRT_10ADDR2_NOACK] =
  40. "second address byte not acknowledged (10bit mode)",
  41. [ABRT_TXDATA_NOACK] =
  42. "data not acknowledged",
  43. [ABRT_GCALL_NOACK] =
  44. "no acknowledgement for a general call",
  45. [ABRT_GCALL_READ] =
  46. "read after general call",
  47. [ABRT_SBYTE_ACKDET] =
  48. "start byte acknowledged",
  49. [ABRT_SBYTE_NORSTRT] =
  50. "trying to send start byte when restart is disabled",
  51. [ABRT_10B_RD_NORSTRT] =
  52. "trying to read when restart is disabled (10bit mode)",
  53. [ABRT_MASTER_DIS] =
  54. "trying to use disabled adapter",
  55. [ARB_LOST] =
  56. "lost arbitration",
  57. [ABRT_SLAVE_FLUSH_TXFIFO] =
  58. "read command so flush old data in the TX FIFO",
  59. [ABRT_SLAVE_ARBLOST] =
  60. "slave lost the bus while transmitting data to a remote master",
  61. [ABRT_SLAVE_RD_INTX] =
  62. "incorrect slave-transmitter mode configuration",
  63. };
  64. u32 dw_readl(struct dw_i2c_dev *dev, int offset)
  65. {
  66. u32 value;
  67. if (dev->flags & ACCESS_16BIT)
  68. value = readw_relaxed(dev->base + offset) |
  69. (readw_relaxed(dev->base + offset + 2) << 16);
  70. else
  71. value = readl_relaxed(dev->base + offset);
  72. if (dev->flags & ACCESS_SWAP)
  73. return swab32(value);
  74. else
  75. return value;
  76. }
  77. void dw_writel(struct dw_i2c_dev *dev, u32 b, int offset)
  78. {
  79. if (dev->flags & ACCESS_SWAP)
  80. b = swab32(b);
  81. if (dev->flags & ACCESS_16BIT) {
  82. writew_relaxed((u16)b, dev->base + offset);
  83. writew_relaxed((u16)(b >> 16), dev->base + offset + 2);
  84. } else {
  85. writel_relaxed(b, dev->base + offset);
  86. }
  87. }
  88. u32 i2c_dw_scl_hcnt(u32 ic_clk, u32 tSYMBOL, u32 tf, int cond, int offset)
  89. {
  90. /*
  91. * DesignWare I2C core doesn't seem to have solid strategy to meet
  92. * the tHD;STA timing spec. Configuring _HCNT based on tHIGH spec
  93. * will result in violation of the tHD;STA spec.
  94. */
  95. if (cond)
  96. /*
  97. * Conditional expression:
  98. *
  99. * IC_[FS]S_SCL_HCNT + (1+4+3) >= IC_CLK * tHIGH
  100. *
  101. * This is based on the DW manuals, and represents an ideal
  102. * configuration. The resulting I2C bus speed will be
  103. * faster than any of the others.
  104. *
  105. * If your hardware is free from tHD;STA issue, try this one.
  106. */
  107. return (ic_clk * tSYMBOL + 500000) / 1000000 - 8 + offset;
  108. else
  109. /*
  110. * Conditional expression:
  111. *
  112. * IC_[FS]S_SCL_HCNT + 3 >= IC_CLK * (tHD;STA + tf)
  113. *
  114. * This is just experimental rule; the tHD;STA period turned
  115. * out to be proportinal to (_HCNT + 3). With this setting,
  116. * we could meet both tHIGH and tHD;STA timing specs.
  117. *
  118. * If unsure, you'd better to take this alternative.
  119. *
  120. * The reason why we need to take into account "tf" here,
  121. * is the same as described in i2c_dw_scl_lcnt().
  122. */
  123. return (ic_clk * (tSYMBOL + tf) + 500000) / 1000000
  124. - 3 + offset;
  125. }
  126. u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset)
  127. {
  128. /*
  129. * Conditional expression:
  130. *
  131. * IC_[FS]S_SCL_LCNT + 1 >= IC_CLK * (tLOW + tf)
  132. *
  133. * DW I2C core starts counting the SCL CNTs for the LOW period
  134. * of the SCL clock (tLOW) as soon as it pulls the SCL line.
  135. * In order to meet the tLOW timing spec, we need to take into
  136. * account the fall time of SCL signal (tf). Default tf value
  137. * should be 0.3 us, for safety.
  138. */
  139. return ((ic_clk * (tLOW + tf) + 500000) / 1000000) - 1 + offset;
  140. }
  141. void __i2c_dw_enable(struct dw_i2c_dev *dev, bool enable)
  142. {
  143. dw_writel(dev, enable, DW_IC_ENABLE);
  144. }
  145. void __i2c_dw_enable_and_wait(struct dw_i2c_dev *dev, bool enable)
  146. {
  147. int timeout = 100;
  148. do {
  149. __i2c_dw_enable(dev, enable);
  150. if ((dw_readl(dev, DW_IC_ENABLE_STATUS) & 1) == enable)
  151. return;
  152. /*
  153. * Wait 10 times the signaling period of the highest I2C
  154. * transfer supported by the driver (for 400KHz this is
  155. * 25us) as described in the DesignWare I2C databook.
  156. */
  157. usleep_range(25, 250);
  158. } while (timeout--);
  159. dev_warn(dev->dev, "timeout in %sabling adapter\n",
  160. enable ? "en" : "dis");
  161. }
  162. unsigned long i2c_dw_clk_rate(struct dw_i2c_dev *dev)
  163. {
  164. /*
  165. * Clock is not necessary if we got LCNT/HCNT values directly from
  166. * the platform code.
  167. */
  168. if (WARN_ON_ONCE(!dev->get_clk_rate_khz))
  169. return 0;
  170. return dev->get_clk_rate_khz(dev);
  171. }
  172. int i2c_dw_acquire_lock(struct dw_i2c_dev *dev)
  173. {
  174. int ret;
  175. if (!dev->acquire_lock)
  176. return 0;
  177. ret = dev->acquire_lock(dev);
  178. if (!ret)
  179. return 0;
  180. dev_err(dev->dev, "couldn't acquire bus ownership\n");
  181. return ret;
  182. }
  183. void i2c_dw_release_lock(struct dw_i2c_dev *dev)
  184. {
  185. if (dev->release_lock)
  186. dev->release_lock(dev);
  187. }
  188. /*
  189. * Waiting for bus not busy
  190. */
  191. int i2c_dw_wait_bus_not_busy(struct dw_i2c_dev *dev)
  192. {
  193. int timeout = TIMEOUT;
  194. while (dw_readl(dev, DW_IC_STATUS) & DW_IC_STATUS_ACTIVITY) {
  195. if (timeout <= 0) {
  196. dev_warn(dev->dev, "timeout waiting for bus ready\n");
  197. return -ETIMEDOUT;
  198. }
  199. timeout--;
  200. usleep_range(1000, 1100);
  201. }
  202. return 0;
  203. }
  204. int i2c_dw_handle_tx_abort(struct dw_i2c_dev *dev)
  205. {
  206. unsigned long abort_source = dev->abort_source;
  207. int i;
  208. if (abort_source & DW_IC_TX_ABRT_NOACK) {
  209. for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
  210. dev_dbg(dev->dev,
  211. "%s: %s\n", __func__, abort_sources[i]);
  212. return -EREMOTEIO;
  213. }
  214. for_each_set_bit(i, &abort_source, ARRAY_SIZE(abort_sources))
  215. dev_err(dev->dev, "%s: %s\n", __func__, abort_sources[i]);
  216. if (abort_source & DW_IC_TX_ARB_LOST)
  217. return -EAGAIN;
  218. else if (abort_source & DW_IC_TX_ABRT_GCALL_READ)
  219. return -EINVAL; /* wrong msgs[] data */
  220. else
  221. return -EIO;
  222. }
  223. u32 i2c_dw_func(struct i2c_adapter *adap)
  224. {
  225. struct dw_i2c_dev *dev = i2c_get_adapdata(adap);
  226. return dev->functionality;
  227. }
  228. void i2c_dw_disable(struct dw_i2c_dev *dev)
  229. {
  230. /* Disable controller */
  231. __i2c_dw_enable_and_wait(dev, false);
  232. /* Disable all interupts */
  233. dw_writel(dev, 0, DW_IC_INTR_MASK);
  234. dw_readl(dev, DW_IC_CLR_INTR);
  235. }
  236. void i2c_dw_disable_int(struct dw_i2c_dev *dev)
  237. {
  238. dw_writel(dev, 0, DW_IC_INTR_MASK);
  239. }
  240. u32 i2c_dw_read_comp_param(struct dw_i2c_dev *dev)
  241. {
  242. return dw_readl(dev, DW_IC_COMP_PARAM_1);
  243. }
  244. EXPORT_SYMBOL_GPL(i2c_dw_read_comp_param);
  245. MODULE_DESCRIPTION("Synopsys DesignWare I2C bus adapter core");
  246. MODULE_LICENSE("GPL");