i2c-octeon-core.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. #include <linux/atomic.h>
  2. #include <linux/clk.h>
  3. #include <linux/delay.h>
  4. #include <linux/device.h>
  5. #include <linux/i2c.h>
  6. #include <linux/i2c-smbus.h>
  7. #include <linux/io.h>
  8. #include <linux/kernel.h>
  9. /* Controller command patterns */
  10. #define SW_TWSI_V BIT_ULL(63) /* Valid bit */
  11. #define SW_TWSI_EIA BIT_ULL(61) /* Extended internal address */
  12. #define SW_TWSI_R BIT_ULL(56) /* Result or read bit */
  13. #define SW_TWSI_SOVR BIT_ULL(55) /* Size override */
  14. #define SW_TWSI_SIZE_SHIFT 52
  15. #define SW_TWSI_ADDR_SHIFT 40
  16. #define SW_TWSI_IA_SHIFT 32 /* Internal address */
  17. /* Controller opcode word (bits 60:57) */
  18. #define SW_TWSI_OP_SHIFT 57
  19. #define SW_TWSI_OP_7 (0ULL << SW_TWSI_OP_SHIFT)
  20. #define SW_TWSI_OP_7_IA (1ULL << SW_TWSI_OP_SHIFT)
  21. #define SW_TWSI_OP_10 (2ULL << SW_TWSI_OP_SHIFT)
  22. #define SW_TWSI_OP_10_IA (3ULL << SW_TWSI_OP_SHIFT)
  23. #define SW_TWSI_OP_TWSI_CLK (4ULL << SW_TWSI_OP_SHIFT)
  24. #define SW_TWSI_OP_EOP (6ULL << SW_TWSI_OP_SHIFT) /* Extended opcode */
  25. /* Controller extended opcode word (bits 34:32) */
  26. #define SW_TWSI_EOP_SHIFT 32
  27. #define SW_TWSI_EOP_TWSI_DATA (SW_TWSI_OP_EOP | 1ULL << SW_TWSI_EOP_SHIFT)
  28. #define SW_TWSI_EOP_TWSI_CTL (SW_TWSI_OP_EOP | 2ULL << SW_TWSI_EOP_SHIFT)
  29. #define SW_TWSI_EOP_TWSI_CLKCTL (SW_TWSI_OP_EOP | 3ULL << SW_TWSI_EOP_SHIFT)
  30. #define SW_TWSI_EOP_TWSI_STAT (SW_TWSI_OP_EOP | 3ULL << SW_TWSI_EOP_SHIFT)
  31. #define SW_TWSI_EOP_TWSI_RST (SW_TWSI_OP_EOP | 7ULL << SW_TWSI_EOP_SHIFT)
  32. /* Controller command and status bits */
  33. #define TWSI_CTL_CE 0x80 /* High level controller enable */
  34. #define TWSI_CTL_ENAB 0x40 /* Bus enable */
  35. #define TWSI_CTL_STA 0x20 /* Master-mode start, HW clears when done */
  36. #define TWSI_CTL_STP 0x10 /* Master-mode stop, HW clears when done */
  37. #define TWSI_CTL_IFLG 0x08 /* HW event, SW writes 0 to ACK */
  38. #define TWSI_CTL_AAK 0x04 /* Assert ACK */
  39. /* Status values */
  40. #define STAT_ERROR 0x00
  41. #define STAT_START 0x08
  42. #define STAT_REP_START 0x10
  43. #define STAT_TXADDR_ACK 0x18
  44. #define STAT_TXADDR_NAK 0x20
  45. #define STAT_TXDATA_ACK 0x28
  46. #define STAT_TXDATA_NAK 0x30
  47. #define STAT_LOST_ARB_38 0x38
  48. #define STAT_RXADDR_ACK 0x40
  49. #define STAT_RXADDR_NAK 0x48
  50. #define STAT_RXDATA_ACK 0x50
  51. #define STAT_RXDATA_NAK 0x58
  52. #define STAT_SLAVE_60 0x60
  53. #define STAT_LOST_ARB_68 0x68
  54. #define STAT_SLAVE_70 0x70
  55. #define STAT_LOST_ARB_78 0x78
  56. #define STAT_SLAVE_80 0x80
  57. #define STAT_SLAVE_88 0x88
  58. #define STAT_GENDATA_ACK 0x90
  59. #define STAT_GENDATA_NAK 0x98
  60. #define STAT_SLAVE_A0 0xA0
  61. #define STAT_SLAVE_A8 0xA8
  62. #define STAT_LOST_ARB_B0 0xB0
  63. #define STAT_SLAVE_LOST 0xB8
  64. #define STAT_SLAVE_NAK 0xC0
  65. #define STAT_SLAVE_ACK 0xC8
  66. #define STAT_AD2W_ACK 0xD0
  67. #define STAT_AD2W_NAK 0xD8
  68. #define STAT_IDLE 0xF8
  69. /* TWSI_INT values */
  70. #define TWSI_INT_ST_INT BIT_ULL(0)
  71. #define TWSI_INT_TS_INT BIT_ULL(1)
  72. #define TWSI_INT_CORE_INT BIT_ULL(2)
  73. #define TWSI_INT_ST_EN BIT_ULL(4)
  74. #define TWSI_INT_TS_EN BIT_ULL(5)
  75. #define TWSI_INT_CORE_EN BIT_ULL(6)
  76. #define TWSI_INT_SDA_OVR BIT_ULL(8)
  77. #define TWSI_INT_SCL_OVR BIT_ULL(9)
  78. #define TWSI_INT_SDA BIT_ULL(10)
  79. #define TWSI_INT_SCL BIT_ULL(11)
  80. #define I2C_OCTEON_EVENT_WAIT 80 /* microseconds */
  81. /* Register offsets */
  82. struct octeon_i2c_reg_offset {
  83. unsigned int sw_twsi;
  84. unsigned int twsi_int;
  85. unsigned int sw_twsi_ext;
  86. };
  87. #define SW_TWSI(x) (x->roff.sw_twsi)
  88. #define TWSI_INT(x) (x->roff.twsi_int)
  89. #define SW_TWSI_EXT(x) (x->roff.sw_twsi_ext)
  90. struct octeon_i2c {
  91. wait_queue_head_t queue;
  92. struct i2c_adapter adap;
  93. struct octeon_i2c_reg_offset roff;
  94. struct clk *clk;
  95. int irq;
  96. int hlc_irq; /* For cn7890 only */
  97. u32 twsi_freq;
  98. int sys_freq;
  99. void __iomem *twsi_base;
  100. struct device *dev;
  101. bool hlc_enabled;
  102. bool broken_irq_mode;
  103. bool broken_irq_check;
  104. void (*int_enable)(struct octeon_i2c *);
  105. void (*int_disable)(struct octeon_i2c *);
  106. void (*hlc_int_enable)(struct octeon_i2c *);
  107. void (*hlc_int_disable)(struct octeon_i2c *);
  108. atomic_t int_enable_cnt;
  109. atomic_t hlc_int_enable_cnt;
  110. struct i2c_smbus_alert_setup alert_data;
  111. struct i2c_client *ara;
  112. };
  113. static inline void octeon_i2c_writeq_flush(u64 val, void __iomem *addr)
  114. {
  115. __raw_writeq(val, addr);
  116. __raw_readq(addr); /* wait for write to land */
  117. }
  118. /**
  119. * octeon_i2c_reg_write - write an I2C core register
  120. * @i2c: The struct octeon_i2c
  121. * @eop_reg: Register selector
  122. * @data: Value to be written
  123. *
  124. * The I2C core registers are accessed indirectly via the SW_TWSI CSR.
  125. */
  126. static inline void octeon_i2c_reg_write(struct octeon_i2c *i2c, u64 eop_reg, u8 data)
  127. {
  128. int tries = 1000;
  129. u64 tmp;
  130. __raw_writeq(SW_TWSI_V | eop_reg | data, i2c->twsi_base + SW_TWSI(i2c));
  131. do {
  132. tmp = __raw_readq(i2c->twsi_base + SW_TWSI(i2c));
  133. if (--tries < 0)
  134. return;
  135. } while ((tmp & SW_TWSI_V) != 0);
  136. }
  137. #define octeon_i2c_ctl_write(i2c, val) \
  138. octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_CTL, val)
  139. #define octeon_i2c_data_write(i2c, val) \
  140. octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_DATA, val)
  141. /**
  142. * octeon_i2c_reg_read - read lower bits of an I2C core register
  143. * @i2c: The struct octeon_i2c
  144. * @eop_reg: Register selector
  145. *
  146. * Returns the data.
  147. *
  148. * The I2C core registers are accessed indirectly via the SW_TWSI CSR.
  149. */
  150. static inline int octeon_i2c_reg_read(struct octeon_i2c *i2c, u64 eop_reg,
  151. int *error)
  152. {
  153. int tries = 1000;
  154. u64 tmp;
  155. __raw_writeq(SW_TWSI_V | eop_reg | SW_TWSI_R, i2c->twsi_base + SW_TWSI(i2c));
  156. do {
  157. tmp = __raw_readq(i2c->twsi_base + SW_TWSI(i2c));
  158. if (--tries < 0) {
  159. /* signal that the returned data is invalid */
  160. if (error)
  161. *error = -EIO;
  162. return 0;
  163. }
  164. } while ((tmp & SW_TWSI_V) != 0);
  165. return tmp & 0xFF;
  166. }
  167. #define octeon_i2c_ctl_read(i2c) \
  168. octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_CTL, NULL)
  169. #define octeon_i2c_data_read(i2c, error) \
  170. octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_DATA, error)
  171. #define octeon_i2c_stat_read(i2c) \
  172. octeon_i2c_reg_read(i2c, SW_TWSI_EOP_TWSI_STAT, NULL)
  173. /**
  174. * octeon_i2c_read_int - read the TWSI_INT register
  175. * @i2c: The struct octeon_i2c
  176. *
  177. * Returns the value of the register.
  178. */
  179. static inline u64 octeon_i2c_read_int(struct octeon_i2c *i2c)
  180. {
  181. return __raw_readq(i2c->twsi_base + TWSI_INT(i2c));
  182. }
  183. /**
  184. * octeon_i2c_write_int - write the TWSI_INT register
  185. * @i2c: The struct octeon_i2c
  186. * @data: Value to be written
  187. */
  188. static inline void octeon_i2c_write_int(struct octeon_i2c *i2c, u64 data)
  189. {
  190. octeon_i2c_writeq_flush(data, i2c->twsi_base + TWSI_INT(i2c));
  191. }
  192. /* Prototypes */
  193. irqreturn_t octeon_i2c_isr(int irq, void *dev_id);
  194. int octeon_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num);
  195. int octeon_i2c_init_lowlevel(struct octeon_i2c *i2c);
  196. void octeon_i2c_set_clock(struct octeon_i2c *i2c);
  197. extern struct i2c_bus_recovery_info octeon_i2c_recovery_info;