i2c.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. #include <common.h>
  24. #ifdef CONFIG_POST
  25. /*
  26. * I2C test
  27. *
  28. * For verifying the I2C bus, a full I2C bus scanning is performed.
  29. *
  30. * #ifdef I2C_ADDR_LIST
  31. * The test is considered as passed if all the devices and
  32. * only the devices in the list are found.
  33. * #else [ ! I2C_ADDR_LIST ]
  34. * The test is considered as passed if any I2C device is found.
  35. * #endif
  36. */
  37. #include <post.h>
  38. #include <i2c.h>
  39. #if CONFIG_POST & CFG_POST_I2C
  40. int i2c_post_test (int flags)
  41. {
  42. unsigned int i;
  43. unsigned int good = 0;
  44. #ifdef I2C_ADDR_LIST
  45. unsigned int bad = 0;
  46. int j;
  47. unsigned char i2c_addr_list[] = I2C_ADDR_LIST;
  48. unsigned char i2c_miss_list[] = I2C_ADDR_LIST;
  49. #endif
  50. for (i = 0; i < 128; i++) {
  51. if (i2c_probe (i) == 0) {
  52. #ifndef I2C_ADDR_LIST
  53. good++;
  54. #else /* I2C_ADDR_LIST */
  55. for (j=0; j<sizeof(i2c_addr_list); ++j) {
  56. if (i == i2c_addr_list[j]) {
  57. good++;
  58. i2c_miss_list[j] = 0xFF;
  59. break;
  60. }
  61. }
  62. if (j == sizeof(i2c_addr_list)) {
  63. bad++;
  64. post_log ("I2C: addr %02X not expected\n",
  65. i);
  66. }
  67. #endif /* I2C_ADDR_LIST */
  68. }
  69. }
  70. #ifndef I2C_ADDR_LIST
  71. return good > 0 ? 0 : -1;
  72. #else /* I2C_ADDR_LIST */
  73. if (good != sizeof(i2c_addr_list)) {
  74. for (j=0; j<sizeof(i2c_miss_list); ++j) {
  75. if (i2c_miss_list[j] != 0xFF) {
  76. post_log ("I2C: addr %02X did not respond\n",
  77. i2c_miss_list[j]);
  78. }
  79. }
  80. }
  81. return ((good == sizeof(i2c_addr_list)) && (bad == 0)) ? 0 : -1;
  82. #endif
  83. }
  84. #endif /* CONFIG_POST & CFG_POST_I2C */
  85. #endif /* CONFIG_POST */