i2c_shell.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. /*
  2. * Copyright (c) 2018 Prevas A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <shell/shell.h>
  7. #include <stdlib.h>
  8. #include <drivers/i2c.h>
  9. #include <string.h>
  10. #include <sys/util.h>
  11. #include <stdlib.h>
  12. #include <logging/log.h>
  13. LOG_MODULE_REGISTER(i2c_shell, CONFIG_LOG_DEFAULT_LEVEL);
  14. #define I2C_DEVICE_PREFIX "I2C_"
  15. /* Maximum bytes we can write or read at once */
  16. #define MAX_I2C_BYTES 16
  17. /*
  18. * This sends I2C messages without any data (i.e. stop condition after
  19. * sending just the address). If there is an ACK for the address, it
  20. * is assumed there is a device present.
  21. *
  22. * WARNING: As there is no standard I2C detection command, this code
  23. * uses arbitrary SMBus commands (namely SMBus quick write and SMBus
  24. * receive byte) to probe for devices. This operation can confuse
  25. * your I2C bus, cause data loss, and is known to corrupt the Atmel
  26. * AT24RF08 EEPROM found on many IBM Thinkpad laptops.
  27. *
  28. * https://manpages.debian.org/buster/i2c-tools/i2cdetect.8.en.html
  29. */
  30. static int cmd_i2c_scan(const struct shell *shell,
  31. size_t argc, char **argv)
  32. {
  33. const struct device *dev;
  34. uint8_t cnt = 0, first = 0x04, last = 0x77;
  35. dev = device_get_binding(argv[1]);
  36. if (!dev) {
  37. shell_error(shell, "I2C: Device driver %s not found.",
  38. argv[1]);
  39. return -ENODEV;
  40. }
  41. shell_print(shell,
  42. " 0 1 2 3 4 5 6 7 8 9 a b c d e f");
  43. for (uint8_t i = 0; i <= last; i += 16) {
  44. shell_fprintf(shell, SHELL_NORMAL, "%02x: ", i);
  45. for (uint8_t j = 0; j < 16; j++) {
  46. if (i + j < first || i + j > last) {
  47. shell_fprintf(shell, SHELL_NORMAL, " ");
  48. continue;
  49. }
  50. struct i2c_msg msgs[1];
  51. uint8_t dst;
  52. /* Send the address to read from */
  53. msgs[0].buf = &dst;
  54. msgs[0].len = 0U;
  55. msgs[0].flags = I2C_MSG_WRITE | I2C_MSG_STOP;
  56. if (i2c_transfer(dev, &msgs[0], 1, i + j) == 0) {
  57. shell_fprintf(shell, SHELL_NORMAL,
  58. "%02x ", i + j);
  59. ++cnt;
  60. } else {
  61. shell_fprintf(shell, SHELL_NORMAL, "-- ");
  62. }
  63. }
  64. shell_print(shell, "");
  65. }
  66. shell_print(shell, "%u devices found on %s",
  67. cnt, argv[1]);
  68. return 0;
  69. }
  70. static int cmd_i2c_recover(const struct shell *shell,
  71. size_t argc, char **argv)
  72. {
  73. const struct device *dev;
  74. int err;
  75. dev = device_get_binding(argv[1]);
  76. if (!dev) {
  77. shell_error(shell, "I2C: Device driver %s not found.", argv[1]);
  78. return -ENODEV;
  79. }
  80. err = i2c_recover_bus(dev);
  81. if (err) {
  82. shell_error(shell, "I2C: Bus recovery failed (err %d)", err);
  83. return err;
  84. }
  85. return 0;
  86. }
  87. /* i2c write <device> <dev_addr> [<byte1>, ...] */
  88. static int cmd_i2c_write(const struct shell *shell, size_t argc, char **argv)
  89. {
  90. uint8_t buf[MAX_I2C_BYTES];
  91. const struct device *dev;
  92. int num_bytes;
  93. int reg_addr;
  94. int dev_addr;
  95. int i;
  96. dev = device_get_binding(argv[1]);
  97. if (!dev) {
  98. shell_error(shell, "I2C: Device driver %s not found.", argv[1]);
  99. return -ENODEV;
  100. }
  101. dev_addr = strtol(argv[2], NULL, 16);
  102. reg_addr = strtol(argv[3], NULL, 16);
  103. num_bytes = argc - 4;
  104. if (num_bytes < 0) {
  105. return 0;
  106. }
  107. if (num_bytes > MAX_I2C_BYTES) {
  108. num_bytes = MAX_I2C_BYTES;
  109. }
  110. for (i = 0; i < num_bytes; i++) {
  111. buf[i] = (uint8_t)strtol(argv[4 + i], NULL, 16);
  112. }
  113. if (i2c_burst_write(dev, dev_addr, reg_addr, buf, num_bytes) < 0) {
  114. shell_error(shell, "Failed to write to device: %s", argv[1]);
  115. return -EIO;
  116. }
  117. return 0;
  118. }
  119. static int cmd_i2c_write_byte(const struct shell *shell,
  120. size_t argc, char **argv)
  121. {
  122. const struct device *dev;
  123. int reg_addr;
  124. int dev_addr;
  125. int out_byte;
  126. dev = device_get_binding(argv[1]);
  127. if (!dev) {
  128. shell_error(shell, "I2C: Device driver %s not found.",
  129. argv[1]);
  130. return -ENODEV;
  131. }
  132. dev_addr = strtol(argv[2], NULL, 16);
  133. reg_addr = strtol(argv[3], NULL, 16);
  134. out_byte = strtol(argv[4], NULL, 16);
  135. if (i2c_reg_write_byte(dev, dev_addr, reg_addr, out_byte) < 0) {
  136. shell_error(shell, "Failed to write to device: %s", argv[1]);
  137. return -EIO;
  138. }
  139. return 0;
  140. }
  141. static int cmd_i2c_read_byte(const struct shell *shell,
  142. size_t argc, char **argv)
  143. {
  144. const struct device *dev;
  145. int reg_addr;
  146. int dev_addr;
  147. uint8_t out;
  148. dev = device_get_binding(argv[1]);
  149. if (!dev) {
  150. shell_error(shell, "I2C: Device driver %s not found.",
  151. argv[1]);
  152. return -ENODEV;
  153. }
  154. dev_addr = strtol(argv[2], NULL, 16);
  155. reg_addr = strtol(argv[3], NULL, 16);
  156. if (i2c_reg_read_byte(dev, dev_addr, reg_addr, &out) < 0) {
  157. shell_error(shell, "Failed to read from device: %s", argv[1]);
  158. return -EIO;
  159. }
  160. shell_print(shell, "Output: 0x%x", out);
  161. return 0;
  162. }
  163. /* i2c read <device> <dev_addr> [<numbytes>] */
  164. static int cmd_i2c_read(const struct shell *shell, size_t argc, char **argv)
  165. {
  166. uint8_t buf[MAX_I2C_BYTES];
  167. const struct device *dev;
  168. int num_bytes;
  169. int reg_addr;
  170. int dev_addr;
  171. dev = device_get_binding(argv[1]);
  172. if (!dev) {
  173. shell_error(shell, "I2C: Device driver %s not found.", argv[1]);
  174. return -ENODEV;
  175. }
  176. dev_addr = strtol(argv[2], NULL, 16);
  177. reg_addr = strtol(argv[3], NULL, 16);
  178. if (argc > 4) {
  179. num_bytes = strtol(argv[4], NULL, 16);
  180. if (num_bytes > MAX_I2C_BYTES)
  181. num_bytes = MAX_I2C_BYTES;
  182. } else {
  183. num_bytes = MAX_I2C_BYTES;
  184. }
  185. if (i2c_burst_read(dev, dev_addr, reg_addr, buf, num_bytes) < 0) {
  186. shell_error(shell, "Failed to read from device: %s", argv[1]);
  187. return -EIO;
  188. }
  189. shell_hexdump(shell, buf, num_bytes);
  190. return 0;
  191. }
  192. static void device_name_get(size_t idx, struct shell_static_entry *entry);
  193. SHELL_DYNAMIC_CMD_CREATE(dsub_device_name, device_name_get);
  194. static void device_name_get(size_t idx, struct shell_static_entry *entry)
  195. {
  196. const struct device *dev = shell_device_lookup(idx, I2C_DEVICE_PREFIX);
  197. entry->syntax = (dev != NULL) ? dev->name : NULL;
  198. entry->handler = NULL;
  199. entry->help = NULL;
  200. entry->subcmd = NULL;
  201. }
  202. SHELL_STATIC_SUBCMD_SET_CREATE(sub_i2c_cmds,
  203. SHELL_CMD(scan, &dsub_device_name,
  204. "Scan I2C devices", cmd_i2c_scan),
  205. SHELL_CMD(recover, &dsub_device_name,
  206. "Recover I2C bus", cmd_i2c_recover),
  207. SHELL_CMD_ARG(read, &dsub_device_name,
  208. "Read bytes from an I2C device",
  209. cmd_i2c_read, 3, MAX_I2C_BYTES),
  210. SHELL_CMD_ARG(read_byte, &dsub_device_name,
  211. "Read a byte from an I2C device",
  212. cmd_i2c_read_byte, 3, 1),
  213. SHELL_CMD_ARG(write, &dsub_device_name,
  214. "Write bytes to an I2C device",
  215. cmd_i2c_write, 3, MAX_I2C_BYTES),
  216. SHELL_CMD_ARG(write_byte, &dsub_device_name,
  217. "Write a byte to an I2C device",
  218. cmd_i2c_write_byte, 4, 1),
  219. SHELL_SUBCMD_SET_END /* Array terminated. */
  220. );
  221. SHELL_CMD_REGISTER(i2c, &sub_i2c_cmds, "I2C commands", NULL);