i2c.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * (C) Copyright 2002
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * I2C test
  25. *
  26. * For verifying the I2C bus, a full I2C bus scanning is performed.
  27. *
  28. * #ifdef I2C_ADDR_LIST
  29. * The test is considered as passed if all the devices and
  30. * only the devices in the list are found.
  31. * #else [ ! I2C_ADDR_LIST ]
  32. * The test is considered as passed if any I2C device is found.
  33. * #endif
  34. */
  35. #include <common.h>
  36. #include <post.h>
  37. #include <i2c.h>
  38. #if CONFIG_POST & CONFIG_SYS_POST_I2C
  39. int i2c_post_test (int flags)
  40. {
  41. unsigned int i;
  42. #ifndef I2C_ADDR_LIST
  43. /* Start at address 1, address 0 is the general call address */
  44. for (i = 1; i < 128; i++)
  45. if (i2c_probe (i) == 0)
  46. return 0;
  47. /* No devices found */
  48. return -1;
  49. #else
  50. unsigned int ret = 0;
  51. int j;
  52. const unsigned char i2c_addr_list[] = I2C_ADDR_LIST;
  53. /* Start at address 1, address 0 is the general call address */
  54. for (i = 1; i < 128; i++) {
  55. if (i2c_probe(i) != 0)
  56. continue;
  57. for (j = 0; j < sizeof(i2c_addr_list); ++j) {
  58. if (i == i2c_addr_list[j]) {
  59. i2c_addr_list[j] = 0xff;
  60. break;
  61. }
  62. }
  63. if (j == sizeof(i2c_addr_list)) {
  64. ret = -1;
  65. post_log("I2C: addr %02x not expected\n", i);
  66. }
  67. }
  68. for (i = 0; i < sizeof(i2c_addr_list); ++i) {
  69. if (i2c_addr_list[i] == 0xff)
  70. continue;
  71. post_log("I2C: addr %02x did not respond\n", i2c_addr_list[i]);
  72. ret = -1;
  73. }
  74. return ret;
  75. #endif
  76. }
  77. #endif /* CONFIG_POST & CONFIG_SYS_POST_I2C */