1 /* vi: set sw=4 ts=4: */
3 * Minimal i2c-tools implementation for busybox.
4 * Parts of code ported from i2c-tools:
5 * http://www.lm-sensors.org/wiki/I2CTools.
7 * Copyright (C) 2014 by Bartosz Golaszewski <bartekgola@gmail.com>
9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
11 //config:config I2CGET
12 //config: bool "i2cget (5.6 kb)"
14 //config: select PLATFORM_LINUX
16 //config: Read from I2C/SMBus chip registers.
18 //config:config I2CSET
19 //config: bool "i2cset (6.9 kb)"
21 //config: select PLATFORM_LINUX
23 //config: Set I2C registers.
25 //config:config I2CDUMP
26 //config: bool "i2cdump (7.2 kb)"
28 //config: select PLATFORM_LINUX
30 //config: Examine I2C registers.
32 //config:config I2CDETECT
33 //config: bool "i2cdetect (7.2 kb)"
35 //config: select PLATFORM_LINUX
37 //config: Detect I2C chips.
40 //applet:IF_I2CGET(APPLET(i2cget, BB_DIR_USR_SBIN, BB_SUID_DROP))
41 //applet:IF_I2CSET(APPLET(i2cset, BB_DIR_USR_SBIN, BB_SUID_DROP))
42 //applet:IF_I2CDUMP(APPLET(i2cdump, BB_DIR_USR_SBIN, BB_SUID_DROP))
43 //applet:IF_I2CDETECT(APPLET(i2cdetect, BB_DIR_USR_SBIN, BB_SUID_DROP))
44 /* not NOEXEC: if hw operation stalls, use less memory in "hung" process */
46 //kbuild:lib-$(CONFIG_I2CGET) += i2c_tools.o
47 //kbuild:lib-$(CONFIG_I2CSET) += i2c_tools.o
48 //kbuild:lib-$(CONFIG_I2CDUMP) += i2c_tools.o
49 //kbuild:lib-$(CONFIG_I2CDETECT) += i2c_tools.o
54 * - upstream i2c-tools can also look-up i2c busses by name, we only accept
56 * - bank and bankreg parameters for i2cdump are not supported because of
57 * their limited usefulness (see i2cdump manual entry for more info),
58 * - i2cdetect doesn't look for bus info in /proc as it does in upstream, but
59 * it shouldn't be a problem in modern kernels.
64 #include <linux/i2c.h>
66 #define I2CDUMP_NUM_REGS 256
68 #define I2CDETECT_MODE_AUTO 0
69 #define I2CDETECT_MODE_QUICK 1
70 #define I2CDETECT_MODE_READ 2
72 /* linux/i2c-dev.h from i2c-tools overwrites the one from linux uapi
73 * and defines symbols already defined by linux/i2c.h.
74 * Also, it defines a bunch of static inlines which we would rather NOT
75 * inline. What a mess.
76 * We need only these definitions from linux/i2c-dev.h:
78 #define I2C_SLAVE 0x0703
79 #define I2C_SLAVE_FORCE 0x0706
80 #define I2C_FUNCS 0x0705
81 #define I2C_PEC 0x0708
82 #define I2C_SMBUS 0x0720
83 struct i2c_smbus_ioctl_data {
87 union i2c_smbus_data *data;
89 /* end linux/i2c-dev.h */
92 * This is needed for ioctl_or_perror_and_die() since it only accepts pointers.
94 static ALWAYS_INLINE void *itoptr(int i)
96 return (void*)(intptr_t)i;
99 static int32_t i2c_smbus_access(int fd, char read_write, uint8_t cmd,
100 int size, union i2c_smbus_data *data)
102 struct i2c_smbus_ioctl_data args;
104 args.read_write = read_write;
109 return ioctl(fd, I2C_SMBUS, &args);
112 static int32_t i2c_smbus_read_byte(int fd)
114 union i2c_smbus_data data;
117 err = i2c_smbus_access(fd, I2C_SMBUS_READ, 0, I2C_SMBUS_BYTE, &data);
124 #if ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP
125 static int32_t i2c_smbus_write_byte(int fd, uint8_t val)
127 return i2c_smbus_access(fd, I2C_SMBUS_WRITE,
128 val, I2C_SMBUS_BYTE, NULL);
131 static int32_t i2c_smbus_read_byte_data(int fd, uint8_t cmd)
133 union i2c_smbus_data data;
136 err = i2c_smbus_access(fd, I2C_SMBUS_READ, cmd,
137 I2C_SMBUS_BYTE_DATA, &data);
144 static int32_t i2c_smbus_read_word_data(int fd, uint8_t cmd)
146 union i2c_smbus_data data;
149 err = i2c_smbus_access(fd, I2C_SMBUS_READ, cmd,
150 I2C_SMBUS_WORD_DATA, &data);
156 #endif /* ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP */
159 static int32_t i2c_smbus_write_byte_data(int file,
160 uint8_t cmd, uint8_t value)
162 union i2c_smbus_data data;
166 return i2c_smbus_access(file, I2C_SMBUS_WRITE, cmd,
167 I2C_SMBUS_BYTE_DATA, &data);
170 static int32_t i2c_smbus_write_word_data(int file, uint8_t cmd, uint16_t value)
172 union i2c_smbus_data data;
176 return i2c_smbus_access(file, I2C_SMBUS_WRITE, cmd,
177 I2C_SMBUS_WORD_DATA, &data);
180 static int32_t i2c_smbus_write_block_data(int file, uint8_t cmd,
181 uint8_t length, const uint8_t *values)
183 union i2c_smbus_data data;
185 if (length > I2C_SMBUS_BLOCK_MAX)
186 length = I2C_SMBUS_BLOCK_MAX;
188 memcpy(data.block+1, values, length);
189 data.block[0] = length;
191 return i2c_smbus_access(file, I2C_SMBUS_WRITE, cmd,
192 I2C_SMBUS_BLOCK_DATA, &data);
195 static int32_t i2c_smbus_write_i2c_block_data(int file, uint8_t cmd,
196 uint8_t length, const uint8_t *values)
198 union i2c_smbus_data data;
200 if (length > I2C_SMBUS_BLOCK_MAX)
201 length = I2C_SMBUS_BLOCK_MAX;
203 memcpy(data.block+1, values, length);
204 data.block[0] = length;
206 return i2c_smbus_access(file, I2C_SMBUS_WRITE, cmd,
207 I2C_SMBUS_I2C_BLOCK_BROKEN, &data);
209 #endif /* ENABLE_I2CSET */
213 * Returns the number of bytes read, vals must hold at
214 * least I2C_SMBUS_BLOCK_MAX bytes.
216 static int32_t i2c_smbus_read_block_data(int fd, uint8_t cmd, uint8_t *vals)
218 union i2c_smbus_data data;
221 err = i2c_smbus_access(fd, I2C_SMBUS_READ, cmd,
222 I2C_SMBUS_BLOCK_DATA, &data);
226 for (i = 1; i <= data.block[0]; i++)
227 *vals++ = data.block[i];
228 return data.block[0];
231 static int32_t i2c_smbus_read_i2c_block_data(int fd, uint8_t cmd,
232 uint8_t len, uint8_t *vals)
234 union i2c_smbus_data data;
237 if (len > I2C_SMBUS_BLOCK_MAX)
238 len = I2C_SMBUS_BLOCK_MAX;
241 err = i2c_smbus_access(fd, I2C_SMBUS_READ, cmd,
242 len == 32 ? I2C_SMBUS_I2C_BLOCK_BROKEN :
243 I2C_SMBUS_I2C_BLOCK_DATA, &data);
247 for (i = 1; i <= data.block[0]; i++)
248 *vals++ = data.block[i];
249 return data.block[0];
251 #endif /* ENABLE_I2CDUMP */
254 static int32_t i2c_smbus_write_quick(int fd, uint8_t val)
256 return i2c_smbus_access(fd, val, 0, I2C_SMBUS_QUICK, NULL);
258 #endif /* ENABLE_I2CDETECT */
260 static int i2c_bus_lookup(const char *bus_str)
262 return xstrtou_range(bus_str, 10, 0, 0xfffff);
265 #if ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP
266 static int i2c_parse_bus_addr(const char *addr_str)
268 /* Slave address must be in range 0x03 - 0x77. */
269 return xstrtou_range(addr_str, 16, 0x03, 0x77);
272 static void i2c_set_pec(int fd, int pec)
274 ioctl_or_perror_and_die(fd, I2C_PEC,
279 static void i2c_set_slave_addr(int fd, int addr, int force)
281 ioctl_or_perror_and_die(fd, force ? I2C_SLAVE_FORCE : I2C_SLAVE,
283 "can't set address to 0x%02x", addr);
285 #endif /* ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP */
287 #if ENABLE_I2CGET || ENABLE_I2CSET
288 static int i2c_parse_data_addr(const char *data_addr)
290 /* Data address must be an 8 bit integer. */
291 return xstrtou_range(data_addr, 16, 0, 0xff);
293 #endif /* ENABLE_I2CGET || ENABLE_I2CSET */
296 * Opens the device file associated with given i2c bus.
298 * Upstream i2c-tools also support opening devices by i2c bus name
299 * but we drop it here for size reduction.
301 static int i2c_dev_open(int i2cbus)
303 char filename[sizeof("/dev/i2c-%d") + sizeof(int)*3];
306 sprintf(filename, "/dev/i2c-%d", i2cbus);
307 fd = open(filename, O_RDWR);
309 if (errno == ENOENT) {
310 filename[8] = '/'; /* change to "/dev/i2c/%d" */
311 fd = xopen(filename, O_RDWR);
313 bb_perror_msg_and_die("can't open '%s'", filename);
320 /* Size reducing helpers for xxx_check_funcs(). */
321 static void get_funcs_matrix(int fd, unsigned long *funcs)
323 ioctl_or_perror_and_die(fd, I2C_FUNCS, funcs,
324 "can't get adapter functionality matrix");
327 #if ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP
328 static void check_funcs_test_end(int funcs, int pec, const char *err)
330 if (pec && !(funcs & (I2C_FUNC_SMBUS_PEC | I2C_FUNC_I2C)))
331 bb_error_msg("warning: adapter does not support PEC");
334 bb_error_msg_and_die(
335 "adapter has no %s capability", err);
337 #endif /* ENABLE_I2CGET || ENABLE_I2CSET || ENABLE_I2CDUMP */
340 * The below functions emit an error message and exit if the adapter doesn't
341 * support desired functionalities.
343 #if ENABLE_I2CGET || ENABLE_I2CDUMP
344 static void check_read_funcs(int fd, int mode, int data_addr, int pec)
347 const char *err = NULL;
349 get_funcs_matrix(fd, &funcs);
352 if (!(funcs & I2C_FUNC_SMBUS_READ_BYTE)) {
353 err = "SMBus receive byte";
356 if (data_addr >= 0 && !(funcs & I2C_FUNC_SMBUS_WRITE_BYTE))
357 err = "SMBus send byte";
359 case I2C_SMBUS_BYTE_DATA:
360 if (!(funcs & I2C_FUNC_SMBUS_READ_BYTE_DATA))
361 err = "SMBus read byte";
363 case I2C_SMBUS_WORD_DATA:
364 if (!(funcs & I2C_FUNC_SMBUS_READ_WORD_DATA))
365 err = "SMBus read word";
368 case I2C_SMBUS_BLOCK_DATA:
369 if (!(funcs & I2C_FUNC_SMBUS_READ_BLOCK_DATA))
370 err = "SMBus block read";
373 case I2C_SMBUS_I2C_BLOCK_DATA:
374 if (!(funcs & I2C_FUNC_SMBUS_READ_I2C_BLOCK))
375 err = "I2C block read";
377 #endif /* ENABLE_I2CDUMP */
379 bb_error_msg_and_die("internal error");
381 check_funcs_test_end(funcs, pec, err);
383 #endif /* ENABLE_I2CGET || ENABLE_I2CDUMP */
386 static void check_write_funcs(int fd, int mode, int pec)
389 const char *err = NULL;
391 get_funcs_matrix(fd, &funcs);
394 if (!(funcs & I2C_FUNC_SMBUS_WRITE_BYTE))
395 err = "SMBus send byte";
398 case I2C_SMBUS_BYTE_DATA:
399 if (!(funcs & I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
400 err = "SMBus write byte";
403 case I2C_SMBUS_WORD_DATA:
404 if (!(funcs & I2C_FUNC_SMBUS_WRITE_WORD_DATA))
405 err = "SMBus write word";
408 case I2C_SMBUS_BLOCK_DATA:
409 if (!(funcs & I2C_FUNC_SMBUS_WRITE_BLOCK_DATA))
410 err = "SMBus block write";
412 case I2C_SMBUS_I2C_BLOCK_DATA:
413 if (!(funcs & I2C_FUNC_SMBUS_WRITE_I2C_BLOCK))
414 err = "I2C block write";
417 check_funcs_test_end(funcs, pec, err);
419 #endif /* ENABLE_I2CSET */
421 static void confirm_or_abort(void)
423 fprintf(stderr, "Continue? [y/N] ");
424 if (!bb_ask_y_confirmation())
425 bb_error_msg_and_die("aborting");
429 * Return only if user confirms the action, abort otherwise.
431 * The messages displayed here are much less elaborate than their i2c-tools
432 * counterparts - this is done for size reduction.
434 static void confirm_action(int bus_addr, int mode, int data_addr, int pec)
436 bb_error_msg("WARNING! This program can confuse your I2C bus");
438 /* Don't let the user break his/her EEPROMs */
439 if (bus_addr >= 0x50 && bus_addr <= 0x57 && pec) {
440 bb_error_msg_and_die("this is I2C not smbus - using PEC on I2C "
441 "devices may result in data loss, aborting");
444 if (mode == I2C_SMBUS_BYTE && data_addr >= 0 && pec)
445 bb_error_msg("WARNING! May interpret a write byte command "
446 "with PEC as a write byte data command");
449 bb_error_msg("PEC checking enabled");
455 //usage:#define i2cget_trivial_usage
456 //usage: "[-fy] BUS CHIP-ADDRESS [DATA-ADDRESS [MODE]]"
457 //usage:#define i2cget_full_usage "\n\n"
458 //usage: "Read from I2C/SMBus chip registers"
460 //usage: "\n I2CBUS I2C bus number"
461 //usage: "\n ADDRESS 0x03-0x77"
462 //usage: "\nMODE is:"
463 //usage: "\n b Read byte data (default)"
464 //usage: "\n w Read word data"
465 //usage: "\n c Write byte/read byte"
466 //usage: "\n Append p for SMBus PEC"
468 //usage: "\n -f Force access"
469 //usage: "\n -y Disable interactive mode"
470 int i2cget_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
471 int i2cget_main(int argc UNUSED_PARAM, char **argv)
473 const unsigned opt_f = (1 << 0), opt_y = (1 << 1);
475 int bus_num, bus_addr, data_addr = -1, status;
476 int mode = I2C_SMBUS_BYTE, pec = 0, fd;
479 opts = getopt32(argv, "^" "fy" "\0" "-2:?4"/*from 2 to 4 args*/);
482 bus_num = i2c_bus_lookup(argv[0]);
483 bus_addr = i2c_parse_bus_addr(argv[1]);
486 data_addr = i2c_parse_data_addr(argv[2]);
487 mode = I2C_SMBUS_BYTE_DATA;
489 switch (argv[3][0]) {
490 case 'b': /* Already set */ break;
491 case 'w': mode = I2C_SMBUS_WORD_DATA; break;
492 case 'c': mode = I2C_SMBUS_BYTE; break;
494 bb_error_msg("invalid mode");
497 pec = argv[3][1] == 'p';
501 fd = i2c_dev_open(bus_num);
502 check_read_funcs(fd, mode, data_addr, pec);
503 i2c_set_slave_addr(fd, bus_addr, opts & opt_f);
506 confirm_action(bus_addr, mode, data_addr, pec);
513 if (data_addr >= 0) {
514 status = i2c_smbus_write_byte(fd, data_addr);
516 bb_error_msg("warning - write failed");
518 status = i2c_smbus_read_byte(fd);
520 case I2C_SMBUS_WORD_DATA:
521 status = i2c_smbus_read_word_data(fd, data_addr);
523 default: /* I2C_SMBUS_BYTE_DATA */
524 status = i2c_smbus_read_byte_data(fd, data_addr);
529 bb_perror_msg_and_die("read failed");
531 printf("0x%0*x\n", mode == I2C_SMBUS_WORD_DATA ? 4 : 2, status);
535 #endif /* ENABLE_I2CGET */
538 //usage:#define i2cset_trivial_usage
539 //usage: "[-fy] [-m MASK] BUS CHIP-ADDRESS DATA-ADDRESS [VALUE] ... [MODE]"
540 //usage:#define i2cset_full_usage "\n\n"
541 //usage: "Set I2C registers"
543 //usage: "\n I2CBUS I2C bus number"
544 //usage: "\n ADDRESS 0x03-0x77"
545 //usage: "\nMODE is:"
546 //usage: "\n c Byte, no value"
547 //usage: "\n b Byte data (default)"
548 //usage: "\n w Word data"
549 //usage: "\n i I2C block data"
550 //usage: "\n s SMBus block data"
551 //usage: "\n Append p for SMBus PEC"
553 //usage: "\n -f Force access"
554 //usage: "\n -y Disable interactive mode"
555 //usage: "\n -r Read back and compare the result"
556 //usage: "\n -m MASK Mask specifying which bits to write"
557 int i2cset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
558 int i2cset_main(int argc, char **argv)
560 const unsigned opt_f = (1 << 0), opt_y = (1 << 1),
561 opt_m = (1 << 2), opt_r = (1 << 3);
563 int bus_num, bus_addr, data_addr, mode = I2C_SMBUS_BYTE, pec = 0;
564 int val, blen, mask, fd, status;
565 unsigned char block[I2C_SMBUS_BLOCK_MAX];
566 char *opt_m_arg = NULL;
569 opts = getopt32(argv, "^"
571 "\0" "-3", /* minimum 3 args */
576 argc--; /* now argv[argc] is last arg */
578 bus_num = i2c_bus_lookup(argv[0]);
579 bus_addr = i2c_parse_bus_addr(argv[1]);
580 data_addr = i2c_parse_data_addr(argv[2]);
583 if (!argv[4] && argv[3][0] != 'c') {
584 mode = I2C_SMBUS_BYTE_DATA; /* Implicit b */
586 switch (argv[argc][0]) {
587 case 'c': /* Already set */
589 case 'b': mode = I2C_SMBUS_BYTE_DATA;
591 case 'w': mode = I2C_SMBUS_WORD_DATA;
593 case 's': mode = I2C_SMBUS_BLOCK_DATA;
595 case 'i': mode = I2C_SMBUS_I2C_BLOCK_DATA;
598 bb_error_msg("invalid mode");
602 pec = (argv[argc][1] == 'p');
603 if (mode == I2C_SMBUS_BLOCK_DATA
604 || mode == I2C_SMBUS_I2C_BLOCK_DATA
606 if (pec && mode == I2C_SMBUS_I2C_BLOCK_DATA)
607 bb_error_msg_and_die(
608 "PEC not supported for I2C "
611 bb_error_msg_and_die(
612 "mask not supported for block "
618 /* Prepare the value(s) to be written according to current mode. */
622 case I2C_SMBUS_BYTE_DATA:
623 val = xstrtou_range(argv[3], 0, 0, 0xff);
625 case I2C_SMBUS_WORD_DATA:
626 val = xstrtou_range(argv[3], 0, 0, 0xffff);
628 case I2C_SMBUS_BLOCK_DATA:
629 case I2C_SMBUS_I2C_BLOCK_DATA:
630 for (blen = 3; blen < argc; blen++)
631 block[blen - 3] = xstrtou_range(argv[blen], 0, 0, 0xff);
641 mask = xstrtou_range(opt_m_arg, 0, 0,
642 (mode == I2C_SMBUS_BYTE ||
643 mode == I2C_SMBUS_BYTE_DATA) ? 0xff : 0xffff);
646 fd = i2c_dev_open(bus_num);
647 check_write_funcs(fd, mode, pec);
648 i2c_set_slave_addr(fd, bus_addr, opts & opt_f);
651 confirm_action(bus_addr, mode, data_addr, pec);
654 * If we're using mask - read the current value here and adjust the
655 * value to be written.
662 tmpval = i2c_smbus_read_byte(fd);
664 case I2C_SMBUS_WORD_DATA:
665 tmpval = i2c_smbus_read_word_data(fd, data_addr);
668 tmpval = i2c_smbus_read_byte_data(fd, data_addr);
672 bb_perror_msg_and_die("can't read old value");
674 val = (val & mask) | (tmpval & ~mask);
676 if (!(opts & opt_y)) {
677 bb_error_msg("old value 0x%0*x, write mask "
678 "0x%0*x, will write 0x%0*x to register "
680 mode == I2C_SMBUS_WORD_DATA ? 4 : 2, tmpval,
681 mode == I2C_SMBUS_WORD_DATA ? 4 : 2, mask,
682 mode == I2C_SMBUS_WORD_DATA ? 4 : 2, val,
693 status = i2c_smbus_write_byte(fd, data_addr);
695 case I2C_SMBUS_WORD_DATA:
696 status = i2c_smbus_write_word_data(fd, data_addr, val);
698 case I2C_SMBUS_BLOCK_DATA:
699 status = i2c_smbus_write_block_data(fd, data_addr,
702 case I2C_SMBUS_I2C_BLOCK_DATA:
703 status = i2c_smbus_write_i2c_block_data(fd, data_addr,
706 default: /* I2C_SMBUS_BYTE_DATA */
707 status = i2c_smbus_write_byte_data(fd, data_addr, val);
711 bb_perror_msg_and_die("write failed");
714 i2c_set_pec(fd, 0); /* Clear PEC. */
716 /* No readback required - we're done. */
722 status = i2c_smbus_read_byte(fd);
725 case I2C_SMBUS_WORD_DATA:
726 status = i2c_smbus_read_word_data(fd, data_addr);
728 default: /* I2C_SMBUS_BYTE_DATA */
729 status = i2c_smbus_read_byte_data(fd, data_addr);
733 puts("Warning - readback failed");
736 printf("Warning - data mismatch - wrote "
737 "0x%0*x, read back 0x%0*x\n",
738 mode == I2C_SMBUS_WORD_DATA ? 4 : 2, val,
739 mode == I2C_SMBUS_WORD_DATA ? 4 : 2, status);
741 printf("Value 0x%0*x written, readback matched\n",
742 mode == I2C_SMBUS_WORD_DATA ? 4 : 2, val);
747 #endif /* ENABLE_I2CSET */
750 static int read_block_data(int buf_fd, int mode, int *block)
752 uint8_t cblock[I2C_SMBUS_BLOCK_MAX + I2CDUMP_NUM_REGS];
753 int res, blen = 0, tmp, i;
755 if (mode == I2C_SMBUS_BLOCK_DATA) {
756 blen = i2c_smbus_read_block_data(buf_fd, 0, cblock);
760 for (res = 0; res < I2CDUMP_NUM_REGS; res += tmp) {
761 tmp = i2c_smbus_read_i2c_block_data(
762 buf_fd, res, I2C_SMBUS_BLOCK_MAX,
770 if (res >= I2CDUMP_NUM_REGS)
771 res = I2CDUMP_NUM_REGS;
773 for (i = 0; i < res; i++)
774 block[i] = cblock[i];
776 if (mode != I2C_SMBUS_BLOCK_DATA)
777 for (i = res; i < I2CDUMP_NUM_REGS; i++)
784 bb_error_msg_and_die("block read failed: %d", blen);
787 /* Dump all but word data. */
788 static void dump_data(int bus_fd, int mode, unsigned first,
789 unsigned last, int *block, int blen)
793 puts(" 0 1 2 3 4 5 6 7 8 9 a b c d e f"
794 " 0123456789abcdef");
796 for (i = 0; i < I2CDUMP_NUM_REGS; i += 0x10) {
797 if (mode == I2C_SMBUS_BLOCK_DATA && i >= blen)
805 for (j = 0; j < 16; j++) {
807 /* Skip unwanted registers */
808 if (i+j < first || i+j > last) {
810 if (mode == I2C_SMBUS_WORD_DATA) {
818 case I2C_SMBUS_BYTE_DATA:
819 res = i2c_smbus_read_byte_data(bus_fd, i+j);
822 case I2C_SMBUS_WORD_DATA:
823 res = i2c_smbus_read_word_data(bus_fd, i+j);
828 block[i+j] = res & 0xff;
829 block[i+j+1] = res >> 8;
833 res = i2c_smbus_read_byte(bus_fd);
840 if (mode == I2C_SMBUS_BLOCK_DATA &&
843 } else if (res < 0) {
845 if (mode == I2C_SMBUS_WORD_DATA)
848 printf("%02x ", block[i+j]);
849 if (mode == I2C_SMBUS_WORD_DATA)
850 printf("%02x ", block[i+j+1]);
853 if (mode == I2C_SMBUS_WORD_DATA)
858 for (j = 0; j < 16; j++) {
859 if (mode == I2C_SMBUS_BLOCK_DATA && i+j >= blen)
861 /* Skip unwanted registers */
862 if (i+j < first || i+j > last) {
870 } else if (res == 0x00 || res == 0xff) {
872 } else if (res < 32 || res >= 127) {
882 static void dump_word_data(int bus_fd, unsigned first, unsigned last)
887 puts(" 0,8 1,9 2,a 3,b 4,c 5,d 6,e 7,f");
888 for (i = 0; i < 256; i += 8) {
895 for (j = 0; j < 8; j++) {
896 /* Skip unwanted registers. */
897 if (i+j < first || i+j > last) {
902 rv = i2c_smbus_read_word_data(bus_fd, i+j);
906 printf("%04x ", rv & 0xffff);
912 //usage:#define i2cdump_trivial_usage
913 //usage: "[-fy] [-r FIRST-LAST] BUS ADDR [MODE]"
914 //usage:#define i2cdump_full_usage "\n\n"
915 //usage: "Examine I2C registers"
917 //usage: "\n I2CBUS I2C bus number"
918 //usage: "\n ADDRESS 0x03-0x77"
919 //usage: "\nMODE is:"
920 //usage: "\n b Byte (default)"
922 //usage: "\n W Word on even register addresses"
923 //usage: "\n i I2C block"
924 //usage: "\n s SMBus block"
925 //usage: "\n c Consecutive byte"
926 //usage: "\n Append p for SMBus PEC"
928 //usage: "\n -f Force access"
929 //usage: "\n -y Disable interactive mode"
930 //usage: "\n -r Limit the number of registers being accessed"
931 int i2cdump_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
932 int i2cdump_main(int argc UNUSED_PARAM, char **argv)
934 const unsigned opt_f = (1 << 0), opt_y = (1 << 1),
937 int bus_num, bus_addr, mode = I2C_SMBUS_BYTE_DATA, even = 0, pec = 0;
938 unsigned first = 0x00, last = 0xff, opts;
939 int block[I2CDUMP_NUM_REGS];
940 char *opt_r_str, *dash;
943 opts = getopt32(argv, "^"
945 "\0" "-2:?3" /* from 2 to 3 args */,
950 bus_num = i2c_bus_lookup(argv[0]);
951 bus_addr = i2c_parse_bus_addr(argv[1]);
954 switch (argv[2][0]) {
955 case 'b': /* Already set. */ break;
956 case 'c': mode = I2C_SMBUS_BYTE; break;
957 case 'w': mode = I2C_SMBUS_WORD_DATA; break;
959 mode = I2C_SMBUS_WORD_DATA;
962 case 's': mode = I2C_SMBUS_BLOCK_DATA; break;
963 case 'i': mode = I2C_SMBUS_I2C_BLOCK_DATA; break;
965 bb_error_msg_and_die("invalid mode");
968 if (argv[2][1] == 'p') {
969 if (argv[2][0] == 'W' || argv[2][0] == 'i') {
970 bb_error_msg_and_die(
971 "pec not supported for -W and -i");
979 first = strtol(opt_r_str, &dash, 0);
980 if (dash == opt_r_str || *dash != '-' || first > 0xff)
981 bb_error_msg_and_die("invalid range");
982 last = xstrtou_range(++dash, 0, first, 0xff);
984 /* Range is not available for every mode. */
987 case I2C_SMBUS_BYTE_DATA:
989 case I2C_SMBUS_WORD_DATA:
990 if (!even || (!(first % 2) && last % 2))
994 bb_error_msg_and_die(
995 "range not compatible with selected mode");
999 fd = i2c_dev_open(bus_num);
1000 check_read_funcs(fd, mode, -1 /* data_addr */, pec);
1001 i2c_set_slave_addr(fd, bus_addr, opts & opt_f);
1006 if (!(opts & opt_y))
1007 confirm_action(bus_addr, mode, -1 /* data_addr */, pec);
1009 /* All but word data. */
1010 if (mode != I2C_SMBUS_WORD_DATA || even) {
1013 if (mode == I2C_SMBUS_BLOCK_DATA || mode == I2C_SMBUS_I2C_BLOCK_DATA)
1014 blen = read_block_data(fd, mode, block);
1016 if (mode == I2C_SMBUS_BYTE) {
1017 res = i2c_smbus_write_byte(fd, first);
1019 bb_perror_msg_and_die("write start address");
1022 dump_data(fd, mode, first, last, block, blen);
1024 dump_word_data(fd, first, last);
1029 #endif /* ENABLE_I2CDUMP */
1031 #if ENABLE_I2CDETECT
1044 static const struct adap_desc adap_descs[] = {
1046 .algo = "Dummy bus", },
1048 .algo = "ISA bus", },
1050 .algo = "I2C adapter", },
1052 .algo = "SMBus adapter", },
1061 static const struct i2c_func i2c_funcs_tab[] = {
1062 { .value = I2C_FUNC_I2C,
1064 { .value = I2C_FUNC_SMBUS_QUICK,
1065 .name = "SMBus quick command" },
1066 { .value = I2C_FUNC_SMBUS_WRITE_BYTE,
1067 .name = "SMBus send byte" },
1068 { .value = I2C_FUNC_SMBUS_READ_BYTE,
1069 .name = "SMBus receive byte" },
1070 { .value = I2C_FUNC_SMBUS_WRITE_BYTE_DATA,
1071 .name = "SMBus write byte" },
1072 { .value = I2C_FUNC_SMBUS_READ_BYTE_DATA,
1073 .name = "SMBus read byte" },
1074 { .value = I2C_FUNC_SMBUS_WRITE_WORD_DATA,
1075 .name = "SMBus write word" },
1076 { .value = I2C_FUNC_SMBUS_READ_WORD_DATA,
1077 .name = "SMBus read word" },
1078 { .value = I2C_FUNC_SMBUS_PROC_CALL,
1079 .name = "SMBus process call" },
1080 { .value = I2C_FUNC_SMBUS_WRITE_BLOCK_DATA,
1081 .name = "SMBus block write" },
1082 { .value = I2C_FUNC_SMBUS_READ_BLOCK_DATA,
1083 .name = "SMBus block read" },
1084 { .value = I2C_FUNC_SMBUS_BLOCK_PROC_CALL,
1085 .name = "SMBus block process call" },
1086 { .value = I2C_FUNC_SMBUS_PEC,
1087 .name = "SMBus PEC" },
1088 { .value = I2C_FUNC_SMBUS_WRITE_I2C_BLOCK,
1089 .name = "I2C block write" },
1090 { .value = I2C_FUNC_SMBUS_READ_I2C_BLOCK,
1091 .name = "I2C block read" },
1092 { .value = 0, .name = NULL }
1095 static enum adapter_type i2cdetect_get_funcs(int bus)
1097 enum adapter_type ret;
1098 unsigned long funcs;
1101 fd = i2c_dev_open(bus);
1103 get_funcs_matrix(fd, &funcs);
1104 if (funcs & I2C_FUNC_I2C)
1106 else if (funcs & (I2C_FUNC_SMBUS_BYTE |
1107 I2C_FUNC_SMBUS_BYTE_DATA |
1108 I2C_FUNC_SMBUS_WORD_DATA))
1118 static void NORETURN list_i2c_busses_and_exit(void)
1120 const char *const i2cdev_path = "/sys/class/i2c-dev";
1122 char path[NAME_MAX], name[128];
1123 struct dirent *de, *subde;
1124 enum adapter_type adt;
1131 * XXX Upstream i2cdetect also looks for i2c bus info in /proc/bus/i2c,
1132 * but we won't bother since it's only useful on older kernels (before
1133 * 2.6.5). We expect sysfs to be present and mounted at /sys/.
1136 dir = xopendir(i2cdev_path);
1137 while ((de = readdir(dir))) {
1138 if (de->d_name[0] == '.')
1141 /* Simple version for ISA chips. */
1142 snprintf(path, NAME_MAX, "%s/%s/name",
1143 i2cdev_path, de->d_name);
1144 fp = fopen(path, "r");
1146 snprintf(path, NAME_MAX,
1147 "%s/%s/device/name",
1148 i2cdev_path, de->d_name);
1149 fp = fopen(path, "r");
1152 /* Non-ISA chips require the hard-way. */
1154 snprintf(path, NAME_MAX,
1155 "%s/%s/device/name",
1156 i2cdev_path, de->d_name);
1157 subdir = opendir(path);
1161 while ((subde = readdir(subdir))) {
1162 if (subde->d_name[0] == '.')
1165 if (is_prefixed_with(subde->d_name, "i2c-")) {
1166 snprintf(path, NAME_MAX,
1167 "%s/%s/device/%s/name",
1168 i2cdev_path, de->d_name,
1170 fp = fopen(path, "r");
1178 * Get the rest of the info and display a line
1181 memset(name, 0, sizeof(name));
1182 pos = fgets(name, sizeof(name), fp);
1187 pos = strchr(name, '\n');
1191 rv = sscanf(de->d_name, "i2c-%d", &bus);
1195 if (is_prefixed_with(name, "ISA"))
1198 adt = i2cdetect_get_funcs(bus);
1201 "i2c-%d\t%-10s\t%-32s\t%s\n",
1202 bus, adap_descs[adt].funcs,
1203 name, adap_descs[adt].algo);
1210 static void NORETURN no_support(const char *cmd)
1212 bb_error_msg_and_die("bus doesn't support %s", cmd);
1215 static void will_skip(const char *cmd)
1218 "warning: can't use %s command, "
1219 "will skip some addresses", cmd);
1222 //usage:#define i2cdetect_trivial_usage
1223 //usage: "-l | -F I2CBUS | [-ya] [-q|-r] I2CBUS [FIRST LAST]"
1224 //usage:#define i2cdetect_full_usage "\n\n"
1225 //usage: "Detect I2C chips"
1227 //usage: "\n -l List installed buses"
1228 //usage: "\n -F BUS# List functionalities on this bus"
1229 //usage: "\n -y Disable interactive mode"
1230 //usage: "\n -a Force scanning of non-regular addresses"
1231 //usage: "\n -q Use smbus quick write commands for probing (default)"
1232 //usage: "\n -r Use smbus read byte commands for probing"
1233 //usage: "\n FIRST and LAST limit probing range"
1234 int i2cdetect_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1235 int i2cdetect_main(int argc UNUSED_PARAM, char **argv)
1237 const unsigned opt_y = (1 << 0), opt_a = (1 << 1),
1238 opt_q = (1 << 2), opt_r = (1 << 3),
1239 opt_F = (1 << 4), opt_l = (1 << 5);
1241 int fd, bus_num, i, j, mode = I2CDETECT_MODE_AUTO, status, cmd;
1242 unsigned first = 0x03, last = 0x77, opts;
1243 unsigned long funcs;
1245 opts = getopt32(argv, "^"
1248 "q--r:r--q:"/*mutually exclusive*/
1249 "?3"/*up to 3 args*/
1254 list_i2c_busses_and_exit();
1259 bus_num = i2c_bus_lookup(argv[0]);
1260 fd = i2c_dev_open(bus_num);
1261 get_funcs_matrix(fd, &funcs);
1264 /* Only list the functionalities. */
1265 printf("Functionalities implemented by bus #%d\n", bus_num);
1266 for (i = 0; i2c_funcs_tab[i].value; i++) {
1267 printf("%-32s %s\n", i2c_funcs_tab[i].name,
1268 funcs & i2c_funcs_tab[i].value ? "yes" : "no");
1271 return EXIT_SUCCESS;
1275 mode = I2CDETECT_MODE_READ;
1276 else if (opts & opt_q)
1277 mode = I2CDETECT_MODE_QUICK;
1284 /* Read address range. */
1286 first = xstrtou_range(argv[1], 16, first, last);
1288 last = xstrtou_range(argv[2], 16, first, last);
1291 if (!(funcs & (I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_READ_BYTE))) {
1292 no_support("detection commands");
1294 if (mode == I2CDETECT_MODE_QUICK && !(funcs & I2C_FUNC_SMBUS_QUICK)) {
1295 no_support("SMBus quick write");
1297 if (mode == I2CDETECT_MODE_READ && !(funcs & I2C_FUNC_SMBUS_READ_BYTE)) {
1298 no_support("SMBus receive byte");
1301 if (mode == I2CDETECT_MODE_AUTO) {
1302 if (!(funcs & I2C_FUNC_SMBUS_QUICK))
1303 will_skip("SMBus quick write");
1304 if (!(funcs & I2C_FUNC_SMBUS_READ_BYTE))
1305 will_skip("SMBus receive byte");
1308 if (!(opts & opt_y))
1309 confirm_action(-1, -1, -1, 0);
1311 puts(" 0 1 2 3 4 5 6 7 8 9 a b c d e f");
1312 for (i = 0; i < 128; i += 16) {
1313 printf("%02x: ", i);
1314 for (j = 0; j < 16; j++) {
1318 if (mode == I2CDETECT_MODE_AUTO) {
1319 if ((i+j >= 0x30 && i+j <= 0x37) ||
1320 (i+j >= 0x50 && i+j <= 0x5F))
1321 cmd = I2CDETECT_MODE_READ;
1323 cmd = I2CDETECT_MODE_QUICK;
1326 /* Skip unwanted addresses. */
1329 || (cmd == I2CDETECT_MODE_READ && !(funcs & I2C_FUNC_SMBUS_READ_BYTE))
1330 || (cmd == I2CDETECT_MODE_QUICK && !(funcs & I2C_FUNC_SMBUS_QUICK)))
1336 status = ioctl(fd, I2C_SLAVE, itoptr(i + j));
1338 if (errno == EBUSY) {
1343 bb_perror_msg_and_die(
1344 "can't set address to 0x%02x", i + j);
1348 case I2CDETECT_MODE_READ:
1350 * This is known to lock SMBus on various
1351 * write-only chips (mainly clock chips).
1353 status = i2c_smbus_read_byte(fd);
1355 default: /* I2CDETECT_MODE_QUICK: */
1357 * This is known to corrupt the Atmel
1360 status = i2c_smbus_write_quick(fd,
1368 printf("%02x ", i+j);
1375 #endif /* ENABLE_I2CDETECT */