mxc_i2c.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /*
  2. * i2c driver for Freescale mx31
  3. *
  4. * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #if defined(CONFIG_HARD_I2C)
  26. #if defined(CONFIG_MX31)
  27. #include <asm/arch/mx31.h>
  28. #include <asm/arch/mx31-regs.h>
  29. #endif
  30. #if defined(CONFIG_MX53)
  31. #include <asm/arch/clock.h>
  32. #endif
  33. #define IADR 0x00
  34. #define IFDR 0x04
  35. #define I2CR 0x08
  36. #define I2SR 0x0c
  37. #define I2DR 0x10
  38. #define I2CR_IEN (1 << 7)
  39. #define I2CR_IIEN (1 << 6)
  40. #define I2CR_MSTA (1 << 5)
  41. #define I2CR_MTX (1 << 4)
  42. #define I2CR_TX_NO_AK (1 << 3)
  43. #define I2CR_RSTA (1 << 2)
  44. #define I2SR_ICF (1 << 7)
  45. #define I2SR_IBB (1 << 5)
  46. #define I2SR_IIF (1 << 1)
  47. #define I2SR_RX_NO_AK (1 << 0)
  48. #if defined(CONFIG_SYS_I2C_MX31_PORT1)
  49. #define I2C_BASE 0x43f80000
  50. #define I2C_CLK_OFFSET 26
  51. #elif defined (CONFIG_SYS_I2C_MX31_PORT2)
  52. #define I2C_BASE 0x43f98000
  53. #define I2C_CLK_OFFSET 28
  54. #elif defined (CONFIG_SYS_I2C_MX31_PORT3)
  55. #define I2C_BASE 0x43f84000
  56. #define I2C_CLK_OFFSET 30
  57. #elif defined(CONFIG_SYS_I2C_MX53_PORT1)
  58. #define I2C_BASE I2C1_BASE_ADDR
  59. #elif defined(CONFIG_SYS_I2C_MX53_PORT2)
  60. #define I2C_BASE I2C2_BASE_ADDR
  61. #else
  62. #error "define CONFIG_SYS_I2C_MXxx_PORTx to use the I2C driver"
  63. #endif
  64. #ifdef DEBUG
  65. #define DPRINTF(args...) printf(args)
  66. #else
  67. #define DPRINTF(args...)
  68. #endif
  69. static u16 div[] = { 30, 32, 36, 42, 48, 52, 60, 72, 80, 88, 104, 128, 144,
  70. 160, 192, 240, 288, 320, 384, 480, 576, 640, 768, 960,
  71. 1152, 1280, 1536, 1920, 2304, 2560, 3072, 3840};
  72. void i2c_init(int speed, int unused)
  73. {
  74. int freq;
  75. int i;
  76. #if defined(CONFIG_MX31)
  77. freq = mx31_get_ipg_clk();
  78. /* start the required I2C clock */
  79. __REG(CCM_CGR0) = __REG(CCM_CGR0) | (3 << I2C_CLK_OFFSET);
  80. #else
  81. freq = mxc_get_clock(MXC_IPG_PERCLK);
  82. #endif
  83. for (i = 0; i < 0x1f; i++)
  84. if (freq / div[i] <= speed)
  85. break;
  86. DPRINTF("%s: speed: %d\n",__FUNCTION__, speed);
  87. __REG16(I2C_BASE + I2CR) = 0; /* Reset module */
  88. __REG16(I2C_BASE + IFDR) = i;
  89. __REG16(I2C_BASE + I2CR) = I2CR_IEN;
  90. __REG16(I2C_BASE + I2SR) = 0;
  91. }
  92. static int wait_busy(void)
  93. {
  94. int timeout = 10000;
  95. while (!(__REG16(I2C_BASE + I2SR) & I2SR_IIF) && --timeout)
  96. udelay(1);
  97. __REG16(I2C_BASE + I2SR) = 0; /* clear interrupt */
  98. return timeout;
  99. }
  100. static int tx_byte(u8 byte)
  101. {
  102. __REG16(I2C_BASE + I2DR) = byte;
  103. if (!wait_busy() || __REG16(I2C_BASE + I2SR) & I2SR_RX_NO_AK)
  104. return -1;
  105. return 0;
  106. }
  107. static int rx_byte(void)
  108. {
  109. if (!wait_busy())
  110. return -1;
  111. return __REG16(I2C_BASE + I2DR);
  112. }
  113. int i2c_probe(uchar chip)
  114. {
  115. int ret;
  116. __REG16(I2C_BASE + I2CR) = 0; /* Reset module */
  117. __REG16(I2C_BASE + I2CR) = I2CR_IEN;
  118. __REG16(I2C_BASE + I2CR) = I2CR_IEN | I2CR_MSTA | I2CR_MTX;
  119. ret = tx_byte(chip << 1);
  120. __REG16(I2C_BASE + I2CR) = I2CR_IEN | I2CR_MTX;
  121. return ret;
  122. }
  123. static int i2c_addr(uchar chip, uint addr, int alen)
  124. {
  125. __REG16(I2C_BASE + I2SR) = 0; /* clear interrupt */
  126. __REG16(I2C_BASE + I2CR) = I2CR_IEN | I2CR_MSTA | I2CR_MTX;
  127. if (tx_byte(chip << 1))
  128. return -1;
  129. while (alen--)
  130. if (tx_byte((addr >> (alen * 8)) & 0xff))
  131. return -1;
  132. return 0;
  133. }
  134. int i2c_read(uchar chip, uint addr, int alen, uchar *buf, int len)
  135. {
  136. int timeout = 10000;
  137. int ret;
  138. DPRINTF("%s chip: 0x%02x addr: 0x%04x alen: %d len: %d\n",__FUNCTION__, chip, addr, alen, len);
  139. if (i2c_addr(chip, addr, alen)) {
  140. printf("i2c_addr failed\n");
  141. return -1;
  142. }
  143. __REG16(I2C_BASE + I2CR) = I2CR_IEN | I2CR_MSTA | I2CR_MTX | I2CR_RSTA;
  144. if (tx_byte(chip << 1 | 1))
  145. return -1;
  146. __REG16(I2C_BASE + I2CR) = I2CR_IEN | I2CR_MSTA | ((len == 1) ? I2CR_TX_NO_AK : 0);
  147. ret = __REG16(I2C_BASE + I2DR);
  148. while (len--) {
  149. if ((ret = rx_byte()) < 0)
  150. return -1;
  151. *buf++ = ret;
  152. if (len <= 1)
  153. __REG16(I2C_BASE + I2CR) = I2CR_IEN | I2CR_MSTA | I2CR_TX_NO_AK;
  154. }
  155. wait_busy();
  156. __REG16(I2C_BASE + I2CR) = I2CR_IEN;
  157. while (__REG16(I2C_BASE + I2SR) & I2SR_IBB && --timeout)
  158. udelay(1);
  159. return 0;
  160. }
  161. int i2c_write(uchar chip, uint addr, int alen, uchar *buf, int len)
  162. {
  163. int timeout = 10000;
  164. DPRINTF("%s chip: 0x%02x addr: 0x%04x alen: %d len: %d\n",__FUNCTION__, chip, addr, alen, len);
  165. if (i2c_addr(chip, addr, alen))
  166. return -1;
  167. while (len--)
  168. if (tx_byte(*buf++))
  169. return -1;
  170. __REG16(I2C_BASE + I2CR) = I2CR_IEN;
  171. while (__REG16(I2C_BASE + I2SR) & I2SR_IBB && --timeout)
  172. udelay(1);
  173. return 0;
  174. }
  175. #endif /* CONFIG_HARD_I2C */