i2c-octeon-core.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826
  1. /*
  2. * (C) Copyright 2009-2010
  3. * Nokia Siemens Networks, michael.lawnick.ext@nsn.com
  4. *
  5. * Portions Copyright (C) 2010 - 2016 Cavium, Inc.
  6. *
  7. * This file contains the shared part of the driver for the i2c adapter in
  8. * Cavium Networks' OCTEON processors and ThunderX SOCs.
  9. *
  10. * This file is licensed under the terms of the GNU General Public
  11. * License version 2. This program is licensed "as is" without any
  12. * warranty of any kind, whether express or implied.
  13. */
  14. #include <linux/delay.h>
  15. #include <linux/i2c.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/kernel.h>
  18. #include <linux/module.h>
  19. #include "i2c-octeon-core.h"
  20. /* interrupt service routine */
  21. irqreturn_t octeon_i2c_isr(int irq, void *dev_id)
  22. {
  23. struct octeon_i2c *i2c = dev_id;
  24. i2c->int_disable(i2c);
  25. wake_up(&i2c->queue);
  26. return IRQ_HANDLED;
  27. }
  28. static bool octeon_i2c_test_iflg(struct octeon_i2c *i2c)
  29. {
  30. return (octeon_i2c_ctl_read(i2c) & TWSI_CTL_IFLG);
  31. }
  32. static bool octeon_i2c_test_ready(struct octeon_i2c *i2c, bool *first)
  33. {
  34. if (octeon_i2c_test_iflg(i2c))
  35. return true;
  36. if (*first) {
  37. *first = false;
  38. return false;
  39. }
  40. /*
  41. * IRQ has signaled an event but IFLG hasn't changed.
  42. * Sleep and retry once.
  43. */
  44. usleep_range(I2C_OCTEON_EVENT_WAIT, 2 * I2C_OCTEON_EVENT_WAIT);
  45. return octeon_i2c_test_iflg(i2c);
  46. }
  47. /**
  48. * octeon_i2c_wait - wait for the IFLG to be set
  49. * @i2c: The struct octeon_i2c
  50. *
  51. * Returns 0 on success, otherwise a negative errno.
  52. */
  53. static int octeon_i2c_wait(struct octeon_i2c *i2c)
  54. {
  55. long time_left;
  56. bool first = true;
  57. /*
  58. * Some chip revisions don't assert the irq in the interrupt
  59. * controller. So we must poll for the IFLG change.
  60. */
  61. if (i2c->broken_irq_mode) {
  62. u64 end = get_jiffies_64() + i2c->adap.timeout;
  63. while (!octeon_i2c_test_iflg(i2c) &&
  64. time_before64(get_jiffies_64(), end))
  65. usleep_range(I2C_OCTEON_EVENT_WAIT / 2, I2C_OCTEON_EVENT_WAIT);
  66. return octeon_i2c_test_iflg(i2c) ? 0 : -ETIMEDOUT;
  67. }
  68. i2c->int_enable(i2c);
  69. time_left = wait_event_timeout(i2c->queue, octeon_i2c_test_ready(i2c, &first),
  70. i2c->adap.timeout);
  71. i2c->int_disable(i2c);
  72. if (i2c->broken_irq_check && !time_left &&
  73. octeon_i2c_test_iflg(i2c)) {
  74. dev_err(i2c->dev, "broken irq connection detected, switching to polling mode.\n");
  75. i2c->broken_irq_mode = true;
  76. return 0;
  77. }
  78. if (!time_left)
  79. return -ETIMEDOUT;
  80. return 0;
  81. }
  82. static bool octeon_i2c_hlc_test_valid(struct octeon_i2c *i2c)
  83. {
  84. return (__raw_readq(i2c->twsi_base + SW_TWSI(i2c)) & SW_TWSI_V) == 0;
  85. }
  86. static bool octeon_i2c_hlc_test_ready(struct octeon_i2c *i2c, bool *first)
  87. {
  88. /* check if valid bit is cleared */
  89. if (octeon_i2c_hlc_test_valid(i2c))
  90. return true;
  91. if (*first) {
  92. *first = false;
  93. return false;
  94. }
  95. /*
  96. * IRQ has signaled an event but valid bit isn't cleared.
  97. * Sleep and retry once.
  98. */
  99. usleep_range(I2C_OCTEON_EVENT_WAIT, 2 * I2C_OCTEON_EVENT_WAIT);
  100. return octeon_i2c_hlc_test_valid(i2c);
  101. }
  102. static void octeon_i2c_hlc_int_clear(struct octeon_i2c *i2c)
  103. {
  104. /* clear ST/TS events, listen for neither */
  105. octeon_i2c_write_int(i2c, TWSI_INT_ST_INT | TWSI_INT_TS_INT);
  106. }
  107. /*
  108. * Cleanup low-level state & enable high-level controller.
  109. */
  110. static void octeon_i2c_hlc_enable(struct octeon_i2c *i2c)
  111. {
  112. int try = 0;
  113. u64 val;
  114. if (i2c->hlc_enabled)
  115. return;
  116. i2c->hlc_enabled = true;
  117. while (1) {
  118. val = octeon_i2c_ctl_read(i2c);
  119. if (!(val & (TWSI_CTL_STA | TWSI_CTL_STP)))
  120. break;
  121. /* clear IFLG event */
  122. if (val & TWSI_CTL_IFLG)
  123. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
  124. if (try++ > 100) {
  125. pr_err("%s: giving up\n", __func__);
  126. break;
  127. }
  128. /* spin until any start/stop has finished */
  129. udelay(10);
  130. }
  131. octeon_i2c_ctl_write(i2c, TWSI_CTL_CE | TWSI_CTL_AAK | TWSI_CTL_ENAB);
  132. }
  133. static void octeon_i2c_hlc_disable(struct octeon_i2c *i2c)
  134. {
  135. if (!i2c->hlc_enabled)
  136. return;
  137. i2c->hlc_enabled = false;
  138. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
  139. }
  140. /**
  141. * octeon_i2c_hlc_wait - wait for an HLC operation to complete
  142. * @i2c: The struct octeon_i2c
  143. *
  144. * Returns 0 on success, otherwise -ETIMEDOUT.
  145. */
  146. static int octeon_i2c_hlc_wait(struct octeon_i2c *i2c)
  147. {
  148. bool first = true;
  149. int time_left;
  150. /*
  151. * Some cn38xx boards don't assert the irq in the interrupt
  152. * controller. So we must poll for the valid bit change.
  153. */
  154. if (i2c->broken_irq_mode) {
  155. u64 end = get_jiffies_64() + i2c->adap.timeout;
  156. while (!octeon_i2c_hlc_test_valid(i2c) &&
  157. time_before64(get_jiffies_64(), end))
  158. usleep_range(I2C_OCTEON_EVENT_WAIT / 2, I2C_OCTEON_EVENT_WAIT);
  159. return octeon_i2c_hlc_test_valid(i2c) ? 0 : -ETIMEDOUT;
  160. }
  161. i2c->hlc_int_enable(i2c);
  162. time_left = wait_event_timeout(i2c->queue,
  163. octeon_i2c_hlc_test_ready(i2c, &first),
  164. i2c->adap.timeout);
  165. i2c->hlc_int_disable(i2c);
  166. if (!time_left)
  167. octeon_i2c_hlc_int_clear(i2c);
  168. if (i2c->broken_irq_check && !time_left &&
  169. octeon_i2c_hlc_test_valid(i2c)) {
  170. dev_err(i2c->dev, "broken irq connection detected, switching to polling mode.\n");
  171. i2c->broken_irq_mode = true;
  172. return 0;
  173. }
  174. if (!time_left)
  175. return -ETIMEDOUT;
  176. return 0;
  177. }
  178. static int octeon_i2c_check_status(struct octeon_i2c *i2c, int final_read)
  179. {
  180. u8 stat;
  181. /*
  182. * This is ugly... in HLC mode the status is not in the status register
  183. * but in the lower 8 bits of SW_TWSI.
  184. */
  185. if (i2c->hlc_enabled)
  186. stat = __raw_readq(i2c->twsi_base + SW_TWSI(i2c));
  187. else
  188. stat = octeon_i2c_stat_read(i2c);
  189. switch (stat) {
  190. /* Everything is fine */
  191. case STAT_IDLE:
  192. case STAT_AD2W_ACK:
  193. case STAT_RXADDR_ACK:
  194. case STAT_TXADDR_ACK:
  195. case STAT_TXDATA_ACK:
  196. return 0;
  197. /* ACK allowed on pre-terminal bytes only */
  198. case STAT_RXDATA_ACK:
  199. if (!final_read)
  200. return 0;
  201. return -EIO;
  202. /* NAK allowed on terminal byte only */
  203. case STAT_RXDATA_NAK:
  204. if (final_read)
  205. return 0;
  206. return -EIO;
  207. /* Arbitration lost */
  208. case STAT_LOST_ARB_38:
  209. case STAT_LOST_ARB_68:
  210. case STAT_LOST_ARB_78:
  211. case STAT_LOST_ARB_B0:
  212. return -EAGAIN;
  213. /* Being addressed as slave, should back off & listen */
  214. case STAT_SLAVE_60:
  215. case STAT_SLAVE_70:
  216. case STAT_GENDATA_ACK:
  217. case STAT_GENDATA_NAK:
  218. return -EOPNOTSUPP;
  219. /* Core busy as slave */
  220. case STAT_SLAVE_80:
  221. case STAT_SLAVE_88:
  222. case STAT_SLAVE_A0:
  223. case STAT_SLAVE_A8:
  224. case STAT_SLAVE_LOST:
  225. case STAT_SLAVE_NAK:
  226. case STAT_SLAVE_ACK:
  227. return -EOPNOTSUPP;
  228. case STAT_TXDATA_NAK:
  229. return -EIO;
  230. case STAT_TXADDR_NAK:
  231. case STAT_RXADDR_NAK:
  232. case STAT_AD2W_NAK:
  233. return -ENXIO;
  234. default:
  235. dev_err(i2c->dev, "unhandled state: %d\n", stat);
  236. return -EIO;
  237. }
  238. }
  239. static int octeon_i2c_recovery(struct octeon_i2c *i2c)
  240. {
  241. int ret;
  242. ret = i2c_recover_bus(&i2c->adap);
  243. if (ret)
  244. /* recover failed, try hardware re-init */
  245. ret = octeon_i2c_init_lowlevel(i2c);
  246. return ret;
  247. }
  248. /**
  249. * octeon_i2c_start - send START to the bus
  250. * @i2c: The struct octeon_i2c
  251. *
  252. * Returns 0 on success, otherwise a negative errno.
  253. */
  254. static int octeon_i2c_start(struct octeon_i2c *i2c)
  255. {
  256. int ret;
  257. u8 stat;
  258. octeon_i2c_hlc_disable(i2c);
  259. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_STA);
  260. ret = octeon_i2c_wait(i2c);
  261. if (ret)
  262. goto error;
  263. stat = octeon_i2c_stat_read(i2c);
  264. if (stat == STAT_START || stat == STAT_REP_START)
  265. /* START successful, bail out */
  266. return 0;
  267. error:
  268. /* START failed, try to recover */
  269. ret = octeon_i2c_recovery(i2c);
  270. return (ret) ? ret : -EAGAIN;
  271. }
  272. /* send STOP to the bus */
  273. static void octeon_i2c_stop(struct octeon_i2c *i2c)
  274. {
  275. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_STP);
  276. }
  277. /**
  278. * octeon_i2c_read - receive data from the bus via low-level controller
  279. * @i2c: The struct octeon_i2c
  280. * @target: Target address
  281. * @data: Pointer to the location to store the data
  282. * @rlength: Length of the data
  283. * @recv_len: flag for length byte
  284. *
  285. * The address is sent over the bus, then the data is read.
  286. *
  287. * Returns 0 on success, otherwise a negative errno.
  288. */
  289. static int octeon_i2c_read(struct octeon_i2c *i2c, int target,
  290. u8 *data, u16 *rlength, bool recv_len)
  291. {
  292. int i, result, length = *rlength;
  293. bool final_read = false;
  294. octeon_i2c_data_write(i2c, (target << 1) | 1);
  295. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
  296. result = octeon_i2c_wait(i2c);
  297. if (result)
  298. return result;
  299. /* address OK ? */
  300. result = octeon_i2c_check_status(i2c, false);
  301. if (result)
  302. return result;
  303. for (i = 0; i < length; i++) {
  304. /*
  305. * For the last byte to receive TWSI_CTL_AAK must not be set.
  306. *
  307. * A special case is I2C_M_RECV_LEN where we don't know the
  308. * additional length yet. If recv_len is set we assume we're
  309. * not reading the final byte and therefore need to set
  310. * TWSI_CTL_AAK.
  311. */
  312. if ((i + 1 == length) && !(recv_len && i == 0))
  313. final_read = true;
  314. /* clear iflg to allow next event */
  315. if (final_read)
  316. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
  317. else
  318. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB | TWSI_CTL_AAK);
  319. result = octeon_i2c_wait(i2c);
  320. if (result)
  321. return result;
  322. data[i] = octeon_i2c_data_read(i2c);
  323. if (recv_len && i == 0) {
  324. if (data[i] > I2C_SMBUS_BLOCK_MAX + 1)
  325. return -EPROTO;
  326. length += data[i];
  327. }
  328. result = octeon_i2c_check_status(i2c, final_read);
  329. if (result)
  330. return result;
  331. }
  332. *rlength = length;
  333. return 0;
  334. }
  335. /**
  336. * octeon_i2c_write - send data to the bus via low-level controller
  337. * @i2c: The struct octeon_i2c
  338. * @target: Target address
  339. * @data: Pointer to the data to be sent
  340. * @length: Length of the data
  341. *
  342. * The address is sent over the bus, then the data.
  343. *
  344. * Returns 0 on success, otherwise a negative errno.
  345. */
  346. static int octeon_i2c_write(struct octeon_i2c *i2c, int target,
  347. const u8 *data, int length)
  348. {
  349. int i, result;
  350. octeon_i2c_data_write(i2c, target << 1);
  351. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
  352. result = octeon_i2c_wait(i2c);
  353. if (result)
  354. return result;
  355. for (i = 0; i < length; i++) {
  356. result = octeon_i2c_check_status(i2c, false);
  357. if (result)
  358. return result;
  359. octeon_i2c_data_write(i2c, data[i]);
  360. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
  361. result = octeon_i2c_wait(i2c);
  362. if (result)
  363. return result;
  364. }
  365. return 0;
  366. }
  367. /* high-level-controller pure read of up to 8 bytes */
  368. static int octeon_i2c_hlc_read(struct octeon_i2c *i2c, struct i2c_msg *msgs)
  369. {
  370. int i, j, ret = 0;
  371. u64 cmd;
  372. octeon_i2c_hlc_enable(i2c);
  373. octeon_i2c_hlc_int_clear(i2c);
  374. cmd = SW_TWSI_V | SW_TWSI_R | SW_TWSI_SOVR;
  375. /* SIZE */
  376. cmd |= (u64)(msgs[0].len - 1) << SW_TWSI_SIZE_SHIFT;
  377. /* A */
  378. cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
  379. if (msgs[0].flags & I2C_M_TEN)
  380. cmd |= SW_TWSI_OP_10;
  381. else
  382. cmd |= SW_TWSI_OP_7;
  383. octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c));
  384. ret = octeon_i2c_hlc_wait(i2c);
  385. if (ret)
  386. goto err;
  387. cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c));
  388. if ((cmd & SW_TWSI_R) == 0)
  389. return octeon_i2c_check_status(i2c, false);
  390. for (i = 0, j = msgs[0].len - 1; i < msgs[0].len && i < 4; i++, j--)
  391. msgs[0].buf[j] = (cmd >> (8 * i)) & 0xff;
  392. if (msgs[0].len > 4) {
  393. cmd = __raw_readq(i2c->twsi_base + SW_TWSI_EXT(i2c));
  394. for (i = 0; i < msgs[0].len - 4 && i < 4; i++, j--)
  395. msgs[0].buf[j] = (cmd >> (8 * i)) & 0xff;
  396. }
  397. err:
  398. return ret;
  399. }
  400. /* high-level-controller pure write of up to 8 bytes */
  401. static int octeon_i2c_hlc_write(struct octeon_i2c *i2c, struct i2c_msg *msgs)
  402. {
  403. int i, j, ret = 0;
  404. u64 cmd;
  405. octeon_i2c_hlc_enable(i2c);
  406. octeon_i2c_hlc_int_clear(i2c);
  407. cmd = SW_TWSI_V | SW_TWSI_SOVR;
  408. /* SIZE */
  409. cmd |= (u64)(msgs[0].len - 1) << SW_TWSI_SIZE_SHIFT;
  410. /* A */
  411. cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
  412. if (msgs[0].flags & I2C_M_TEN)
  413. cmd |= SW_TWSI_OP_10;
  414. else
  415. cmd |= SW_TWSI_OP_7;
  416. for (i = 0, j = msgs[0].len - 1; i < msgs[0].len && i < 4; i++, j--)
  417. cmd |= (u64)msgs[0].buf[j] << (8 * i);
  418. if (msgs[0].len > 4) {
  419. u64 ext = 0;
  420. for (i = 0; i < msgs[0].len - 4 && i < 4; i++, j--)
  421. ext |= (u64)msgs[0].buf[j] << (8 * i);
  422. octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT(i2c));
  423. }
  424. octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c));
  425. ret = octeon_i2c_hlc_wait(i2c);
  426. if (ret)
  427. goto err;
  428. cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c));
  429. if ((cmd & SW_TWSI_R) == 0)
  430. return octeon_i2c_check_status(i2c, false);
  431. err:
  432. return ret;
  433. }
  434. /* high-level-controller composite write+read, msg0=addr, msg1=data */
  435. static int octeon_i2c_hlc_comp_read(struct octeon_i2c *i2c, struct i2c_msg *msgs)
  436. {
  437. int i, j, ret = 0;
  438. u64 cmd;
  439. octeon_i2c_hlc_enable(i2c);
  440. cmd = SW_TWSI_V | SW_TWSI_R | SW_TWSI_SOVR;
  441. /* SIZE */
  442. cmd |= (u64)(msgs[1].len - 1) << SW_TWSI_SIZE_SHIFT;
  443. /* A */
  444. cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
  445. if (msgs[0].flags & I2C_M_TEN)
  446. cmd |= SW_TWSI_OP_10_IA;
  447. else
  448. cmd |= SW_TWSI_OP_7_IA;
  449. if (msgs[0].len == 2) {
  450. u64 ext = 0;
  451. cmd |= SW_TWSI_EIA;
  452. ext = (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
  453. cmd |= (u64)msgs[0].buf[1] << SW_TWSI_IA_SHIFT;
  454. octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT(i2c));
  455. } else {
  456. cmd |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
  457. }
  458. octeon_i2c_hlc_int_clear(i2c);
  459. octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c));
  460. ret = octeon_i2c_hlc_wait(i2c);
  461. if (ret)
  462. goto err;
  463. cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c));
  464. if ((cmd & SW_TWSI_R) == 0)
  465. return octeon_i2c_check_status(i2c, false);
  466. for (i = 0, j = msgs[1].len - 1; i < msgs[1].len && i < 4; i++, j--)
  467. msgs[1].buf[j] = (cmd >> (8 * i)) & 0xff;
  468. if (msgs[1].len > 4) {
  469. cmd = __raw_readq(i2c->twsi_base + SW_TWSI_EXT(i2c));
  470. for (i = 0; i < msgs[1].len - 4 && i < 4; i++, j--)
  471. msgs[1].buf[j] = (cmd >> (8 * i)) & 0xff;
  472. }
  473. err:
  474. return ret;
  475. }
  476. /* high-level-controller composite write+write, m[0]len<=2, m[1]len<=8 */
  477. static int octeon_i2c_hlc_comp_write(struct octeon_i2c *i2c, struct i2c_msg *msgs)
  478. {
  479. bool set_ext = false;
  480. int i, j, ret = 0;
  481. u64 cmd, ext = 0;
  482. octeon_i2c_hlc_enable(i2c);
  483. cmd = SW_TWSI_V | SW_TWSI_SOVR;
  484. /* SIZE */
  485. cmd |= (u64)(msgs[1].len - 1) << SW_TWSI_SIZE_SHIFT;
  486. /* A */
  487. cmd |= (u64)(msgs[0].addr & 0x7full) << SW_TWSI_ADDR_SHIFT;
  488. if (msgs[0].flags & I2C_M_TEN)
  489. cmd |= SW_TWSI_OP_10_IA;
  490. else
  491. cmd |= SW_TWSI_OP_7_IA;
  492. if (msgs[0].len == 2) {
  493. cmd |= SW_TWSI_EIA;
  494. ext |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
  495. set_ext = true;
  496. cmd |= (u64)msgs[0].buf[1] << SW_TWSI_IA_SHIFT;
  497. } else {
  498. cmd |= (u64)msgs[0].buf[0] << SW_TWSI_IA_SHIFT;
  499. }
  500. for (i = 0, j = msgs[1].len - 1; i < msgs[1].len && i < 4; i++, j--)
  501. cmd |= (u64)msgs[1].buf[j] << (8 * i);
  502. if (msgs[1].len > 4) {
  503. for (i = 0; i < msgs[1].len - 4 && i < 4; i++, j--)
  504. ext |= (u64)msgs[1].buf[j] << (8 * i);
  505. set_ext = true;
  506. }
  507. if (set_ext)
  508. octeon_i2c_writeq_flush(ext, i2c->twsi_base + SW_TWSI_EXT(i2c));
  509. octeon_i2c_hlc_int_clear(i2c);
  510. octeon_i2c_writeq_flush(cmd, i2c->twsi_base + SW_TWSI(i2c));
  511. ret = octeon_i2c_hlc_wait(i2c);
  512. if (ret)
  513. goto err;
  514. cmd = __raw_readq(i2c->twsi_base + SW_TWSI(i2c));
  515. if ((cmd & SW_TWSI_R) == 0)
  516. return octeon_i2c_check_status(i2c, false);
  517. err:
  518. return ret;
  519. }
  520. /**
  521. * octeon_i2c_xfer - The driver's master_xfer function
  522. * @adap: Pointer to the i2c_adapter structure
  523. * @msgs: Pointer to the messages to be processed
  524. * @num: Length of the MSGS array
  525. *
  526. * Returns the number of messages processed, or a negative errno on failure.
  527. */
  528. int octeon_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
  529. {
  530. struct octeon_i2c *i2c = i2c_get_adapdata(adap);
  531. int i, ret = 0;
  532. if (num == 1) {
  533. if (msgs[0].len > 0 && msgs[0].len <= 8) {
  534. if (msgs[0].flags & I2C_M_RD)
  535. ret = octeon_i2c_hlc_read(i2c, msgs);
  536. else
  537. ret = octeon_i2c_hlc_write(i2c, msgs);
  538. goto out;
  539. }
  540. } else if (num == 2) {
  541. if ((msgs[0].flags & I2C_M_RD) == 0 &&
  542. (msgs[1].flags & I2C_M_RECV_LEN) == 0 &&
  543. msgs[0].len > 0 && msgs[0].len <= 2 &&
  544. msgs[1].len > 0 && msgs[1].len <= 8 &&
  545. msgs[0].addr == msgs[1].addr) {
  546. if (msgs[1].flags & I2C_M_RD)
  547. ret = octeon_i2c_hlc_comp_read(i2c, msgs);
  548. else
  549. ret = octeon_i2c_hlc_comp_write(i2c, msgs);
  550. goto out;
  551. }
  552. }
  553. for (i = 0; ret == 0 && i < num; i++) {
  554. struct i2c_msg *pmsg = &msgs[i];
  555. /* zero-length messages are not supported */
  556. if (!pmsg->len) {
  557. ret = -EOPNOTSUPP;
  558. break;
  559. }
  560. ret = octeon_i2c_start(i2c);
  561. if (ret)
  562. return ret;
  563. if (pmsg->flags & I2C_M_RD)
  564. ret = octeon_i2c_read(i2c, pmsg->addr, pmsg->buf,
  565. &pmsg->len, pmsg->flags & I2C_M_RECV_LEN);
  566. else
  567. ret = octeon_i2c_write(i2c, pmsg->addr, pmsg->buf,
  568. pmsg->len);
  569. }
  570. octeon_i2c_stop(i2c);
  571. out:
  572. return (ret != 0) ? ret : num;
  573. }
  574. /* calculate and set clock divisors */
  575. void octeon_i2c_set_clock(struct octeon_i2c *i2c)
  576. {
  577. int tclk, thp_base, inc, thp_idx, mdiv_idx, ndiv_idx, foscl, diff;
  578. int thp = 0x18, mdiv = 2, ndiv = 0, delta_hz = 1000000;
  579. for (ndiv_idx = 0; ndiv_idx < 8 && delta_hz != 0; ndiv_idx++) {
  580. /*
  581. * An mdiv value of less than 2 seems to not work well
  582. * with ds1337 RTCs, so we constrain it to larger values.
  583. */
  584. for (mdiv_idx = 15; mdiv_idx >= 2 && delta_hz != 0; mdiv_idx--) {
  585. /*
  586. * For given ndiv and mdiv values check the
  587. * two closest thp values.
  588. */
  589. tclk = i2c->twsi_freq * (mdiv_idx + 1) * 10;
  590. tclk *= (1 << ndiv_idx);
  591. thp_base = (i2c->sys_freq / (tclk * 2)) - 1;
  592. for (inc = 0; inc <= 1; inc++) {
  593. thp_idx = thp_base + inc;
  594. if (thp_idx < 5 || thp_idx > 0xff)
  595. continue;
  596. foscl = i2c->sys_freq / (2 * (thp_idx + 1));
  597. foscl = foscl / (1 << ndiv_idx);
  598. foscl = foscl / (mdiv_idx + 1) / 10;
  599. diff = abs(foscl - i2c->twsi_freq);
  600. if (diff < delta_hz) {
  601. delta_hz = diff;
  602. thp = thp_idx;
  603. mdiv = mdiv_idx;
  604. ndiv = ndiv_idx;
  605. }
  606. }
  607. }
  608. }
  609. octeon_i2c_reg_write(i2c, SW_TWSI_OP_TWSI_CLK, thp);
  610. octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_CLKCTL, (mdiv << 3) | ndiv);
  611. }
  612. int octeon_i2c_init_lowlevel(struct octeon_i2c *i2c)
  613. {
  614. u8 status = 0;
  615. int tries;
  616. /* reset controller */
  617. octeon_i2c_reg_write(i2c, SW_TWSI_EOP_TWSI_RST, 0);
  618. for (tries = 10; tries && status != STAT_IDLE; tries--) {
  619. udelay(1);
  620. status = octeon_i2c_stat_read(i2c);
  621. if (status == STAT_IDLE)
  622. break;
  623. }
  624. if (status != STAT_IDLE) {
  625. dev_err(i2c->dev, "%s: TWSI_RST failed! (0x%x)\n",
  626. __func__, status);
  627. return -EIO;
  628. }
  629. /* toggle twice to force both teardowns */
  630. octeon_i2c_hlc_enable(i2c);
  631. octeon_i2c_hlc_disable(i2c);
  632. return 0;
  633. }
  634. static int octeon_i2c_get_scl(struct i2c_adapter *adap)
  635. {
  636. struct octeon_i2c *i2c = i2c_get_adapdata(adap);
  637. u64 state;
  638. state = octeon_i2c_read_int(i2c);
  639. return state & TWSI_INT_SCL;
  640. }
  641. static void octeon_i2c_set_scl(struct i2c_adapter *adap, int val)
  642. {
  643. struct octeon_i2c *i2c = i2c_get_adapdata(adap);
  644. octeon_i2c_write_int(i2c, val ? 0 : TWSI_INT_SCL_OVR);
  645. }
  646. static int octeon_i2c_get_sda(struct i2c_adapter *adap)
  647. {
  648. struct octeon_i2c *i2c = i2c_get_adapdata(adap);
  649. u64 state;
  650. state = octeon_i2c_read_int(i2c);
  651. return state & TWSI_INT_SDA;
  652. }
  653. static void octeon_i2c_prepare_recovery(struct i2c_adapter *adap)
  654. {
  655. struct octeon_i2c *i2c = i2c_get_adapdata(adap);
  656. octeon_i2c_hlc_disable(i2c);
  657. /*
  658. * Bring control register to a good state regardless
  659. * of HLC state.
  660. */
  661. octeon_i2c_ctl_write(i2c, TWSI_CTL_ENAB);
  662. octeon_i2c_write_int(i2c, 0);
  663. }
  664. static void octeon_i2c_unprepare_recovery(struct i2c_adapter *adap)
  665. {
  666. struct octeon_i2c *i2c = i2c_get_adapdata(adap);
  667. /*
  668. * Generate STOP to finish the unfinished transaction.
  669. * Can't generate STOP via the TWSI CTL register
  670. * since it could bring the TWSI controller into an inoperable state.
  671. */
  672. octeon_i2c_write_int(i2c, TWSI_INT_SDA_OVR | TWSI_INT_SCL_OVR);
  673. udelay(5);
  674. octeon_i2c_write_int(i2c, TWSI_INT_SDA_OVR);
  675. udelay(5);
  676. octeon_i2c_write_int(i2c, 0);
  677. }
  678. struct i2c_bus_recovery_info octeon_i2c_recovery_info = {
  679. .recover_bus = i2c_generic_scl_recovery,
  680. .get_scl = octeon_i2c_get_scl,
  681. .set_scl = octeon_i2c_set_scl,
  682. .get_sda = octeon_i2c_get_sda,
  683. .prepare_recovery = octeon_i2c_prepare_recovery,
  684. .unprepare_recovery = octeon_i2c_unprepare_recovery,
  685. };