w1_io.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /*
  2. * w1_io.c
  3. *
  4. * Copyright (c) 2004 Evgeniy Polyakov <johnpol@2ka.mipt.ru>
  5. *
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <asm/io.h>
  22. #include <linux/delay.h>
  23. #include <linux/moduleparam.h>
  24. #include "w1.h"
  25. #include "w1_log.h"
  26. static int w1_delay_parm = 1;
  27. module_param_named(delay_coef, w1_delay_parm, int, 0);
  28. static u8 w1_crc8_table[] = {
  29. 0, 94, 188, 226, 97, 63, 221, 131, 194, 156, 126, 32, 163, 253, 31, 65,
  30. 157, 195, 33, 127, 252, 162, 64, 30, 95, 1, 227, 189, 62, 96, 130, 220,
  31. 35, 125, 159, 193, 66, 28, 254, 160, 225, 191, 93, 3, 128, 222, 60, 98,
  32. 190, 224, 2, 92, 223, 129, 99, 61, 124, 34, 192, 158, 29, 67, 161, 255,
  33. 70, 24, 250, 164, 39, 121, 155, 197, 132, 218, 56, 102, 229, 187, 89, 7,
  34. 219, 133, 103, 57, 186, 228, 6, 88, 25, 71, 165, 251, 120, 38, 196, 154,
  35. 101, 59, 217, 135, 4, 90, 184, 230, 167, 249, 27, 69, 198, 152, 122, 36,
  36. 248, 166, 68, 26, 153, 199, 37, 123, 58, 100, 134, 216, 91, 5, 231, 185,
  37. 140, 210, 48, 110, 237, 179, 81, 15, 78, 16, 242, 172, 47, 113, 147, 205,
  38. 17, 79, 173, 243, 112, 46, 204, 146, 211, 141, 111, 49, 178, 236, 14, 80,
  39. 175, 241, 19, 77, 206, 144, 114, 44, 109, 51, 209, 143, 12, 82, 176, 238,
  40. 50, 108, 142, 208, 83, 13, 239, 177, 240, 174, 76, 18, 145, 207, 45, 115,
  41. 202, 148, 118, 40, 171, 245, 23, 73, 8, 86, 180, 234, 105, 55, 213, 139,
  42. 87, 9, 235, 181, 54, 104, 138, 212, 149, 203, 41, 119, 244, 170, 72, 22,
  43. 233, 183, 85, 11, 136, 214, 52, 106, 43, 117, 151, 201, 74, 20, 246, 168,
  44. 116, 42, 200, 150, 21, 75, 169, 247, 182, 232, 10, 84, 215, 137, 107, 53
  45. };
  46. void w1_delay(unsigned long tm)
  47. {
  48. udelay(tm * w1_delay_parm);
  49. }
  50. static void w1_write_bit(struct w1_master *dev, int bit);
  51. static u8 w1_read_bit(struct w1_master *dev);
  52. /**
  53. * Generates a write-0 or write-1 cycle and samples the level.
  54. */
  55. u8 w1_touch_bit(struct w1_master *dev, int bit)
  56. {
  57. if (dev->bus_master->touch_bit)
  58. return dev->bus_master->touch_bit(dev->bus_master->data, bit);
  59. else if (bit)
  60. return w1_read_bit(dev);
  61. else {
  62. w1_write_bit(dev, 0);
  63. return(0);
  64. }
  65. }
  66. /**
  67. * Generates a write-0 or write-1 cycle.
  68. * Only call if dev->bus_master->touch_bit is NULL
  69. */
  70. static void w1_write_bit(struct w1_master *dev, int bit)
  71. {
  72. if (bit) {
  73. dev->bus_master->write_bit(dev->bus_master->data, 0);
  74. w1_delay(6);
  75. dev->bus_master->write_bit(dev->bus_master->data, 1);
  76. w1_delay(64);
  77. } else {
  78. dev->bus_master->write_bit(dev->bus_master->data, 0);
  79. w1_delay(60);
  80. dev->bus_master->write_bit(dev->bus_master->data, 1);
  81. w1_delay(10);
  82. }
  83. }
  84. /**
  85. * Writes 8 bits.
  86. *
  87. * @param dev the master device
  88. * @param byte the byte to write
  89. */
  90. void w1_write_8(struct w1_master *dev, u8 byte)
  91. {
  92. int i;
  93. if (dev->bus_master->write_byte)
  94. dev->bus_master->write_byte(dev->bus_master->data, byte);
  95. else
  96. for (i = 0; i < 8; ++i)
  97. w1_touch_bit(dev, (byte >> i) & 0x1);
  98. }
  99. /**
  100. * Generates a write-1 cycle and samples the level.
  101. * Only call if dev->bus_master->touch_bit is NULL
  102. */
  103. static u8 w1_read_bit(struct w1_master *dev)
  104. {
  105. int result;
  106. dev->bus_master->write_bit(dev->bus_master->data, 0);
  107. w1_delay(6);
  108. dev->bus_master->write_bit(dev->bus_master->data, 1);
  109. w1_delay(9);
  110. result = dev->bus_master->read_bit(dev->bus_master->data);
  111. w1_delay(55);
  112. return result & 0x1;
  113. }
  114. /**
  115. * Does a triplet - used for searching ROM addresses.
  116. * Return bits:
  117. * bit 0 = id_bit
  118. * bit 1 = comp_bit
  119. * bit 2 = dir_taken
  120. * If both bits 0 & 1 are set, the search should be restarted.
  121. *
  122. * @param dev the master device
  123. * @param bdir the bit to write if both id_bit and comp_bit are 0
  124. * @return bit fields - see above
  125. */
  126. u8 w1_triplet(struct w1_master *dev, int bdir)
  127. {
  128. if ( dev->bus_master->triplet )
  129. return(dev->bus_master->triplet(dev->bus_master->data, bdir));
  130. else {
  131. u8 id_bit = w1_touch_bit(dev, 1);
  132. u8 comp_bit = w1_touch_bit(dev, 1);
  133. u8 retval;
  134. if ( id_bit && comp_bit )
  135. return(0x03); /* error */
  136. if ( !id_bit && !comp_bit ) {
  137. /* Both bits are valid, take the direction given */
  138. retval = bdir ? 0x04 : 0;
  139. } else {
  140. /* Only one bit is valid, take that direction */
  141. bdir = id_bit;
  142. retval = id_bit ? 0x05 : 0x02;
  143. }
  144. if ( dev->bus_master->touch_bit )
  145. w1_touch_bit(dev, bdir);
  146. else
  147. w1_write_bit(dev, bdir);
  148. return(retval);
  149. }
  150. }
  151. /**
  152. * Reads 8 bits.
  153. *
  154. * @param dev the master device
  155. * @return the byte read
  156. */
  157. u8 w1_read_8(struct w1_master * dev)
  158. {
  159. int i;
  160. u8 res = 0;
  161. if (dev->bus_master->read_byte)
  162. res = dev->bus_master->read_byte(dev->bus_master->data);
  163. else
  164. for (i = 0; i < 8; ++i)
  165. res |= (w1_touch_bit(dev,1) << i);
  166. return res;
  167. }
  168. /**
  169. * Writes a series of bytes.
  170. *
  171. * @param dev the master device
  172. * @param buf pointer to the data to write
  173. * @param len the number of bytes to write
  174. * @return the byte read
  175. */
  176. void w1_write_block(struct w1_master *dev, const u8 *buf, int len)
  177. {
  178. int i;
  179. if (dev->bus_master->write_block)
  180. dev->bus_master->write_block(dev->bus_master->data, buf, len);
  181. else
  182. for (i = 0; i < len; ++i)
  183. w1_write_8(dev, buf[i]);
  184. }
  185. /**
  186. * Reads a series of bytes.
  187. *
  188. * @param dev the master device
  189. * @param buf pointer to the buffer to fill
  190. * @param len the number of bytes to read
  191. * @return the number of bytes read
  192. */
  193. u8 w1_read_block(struct w1_master *dev, u8 *buf, int len)
  194. {
  195. int i;
  196. u8 ret;
  197. if (dev->bus_master->read_block)
  198. ret = dev->bus_master->read_block(dev->bus_master->data, buf, len);
  199. else {
  200. for (i = 0; i < len; ++i)
  201. buf[i] = w1_read_8(dev);
  202. ret = len;
  203. }
  204. return ret;
  205. }
  206. /**
  207. * Issues a reset bus sequence.
  208. *
  209. * @param dev The bus master pointer
  210. * @return 0=Device present, 1=No device present or error
  211. */
  212. int w1_reset_bus(struct w1_master *dev)
  213. {
  214. int result;
  215. if (dev->bus_master->reset_bus)
  216. result = dev->bus_master->reset_bus(dev->bus_master->data) & 0x1;
  217. else {
  218. dev->bus_master->write_bit(dev->bus_master->data, 0);
  219. w1_delay(480);
  220. dev->bus_master->write_bit(dev->bus_master->data, 1);
  221. w1_delay(70);
  222. result = dev->bus_master->read_bit(dev->bus_master->data) & 0x1;
  223. w1_delay(410);
  224. }
  225. return result;
  226. }
  227. u8 w1_calc_crc8(u8 * data, int len)
  228. {
  229. u8 crc = 0;
  230. while (len--)
  231. crc = w1_crc8_table[crc ^ *data++];
  232. return crc;
  233. }
  234. void w1_search_devices(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb)
  235. {
  236. dev->attempts++;
  237. if (dev->bus_master->search)
  238. dev->bus_master->search(dev->bus_master->data, search_type, cb);
  239. else
  240. w1_search(dev, search_type, cb);
  241. }
  242. /**
  243. * Resets the bus and then selects the slave by sending either a skip rom
  244. * or a rom match.
  245. * The w1 master lock must be held.
  246. *
  247. * @param sl the slave to select
  248. * @return 0=success, anything else=error
  249. */
  250. int w1_reset_select_slave(struct w1_slave *sl)
  251. {
  252. if (w1_reset_bus(sl->master))
  253. return -1;
  254. if (sl->master->slave_count == 1)
  255. w1_write_8(sl->master, W1_SKIP_ROM);
  256. else {
  257. u8 match[9] = {W1_MATCH_ROM, };
  258. memcpy(&match[1], (u8 *)&sl->reg_num, 8);
  259. w1_write_block(sl->master, match, 9);
  260. }
  261. return 0;
  262. }
  263. EXPORT_SYMBOL_GPL(w1_calc_crc8);