selfcheck.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * Copyright (C) 2008 Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. */
  19. #include <common.h>
  20. #include <asm/io.h>
  21. #include <asm/processor.h>
  22. #include <asm/pci.h>
  23. #if defined(CONFIG_CPU_32BIT)
  24. #define NOCACHE_OFFSET 0x00000000
  25. #else
  26. #define NOCACHE_OFFSET 0xa0000000
  27. #endif
  28. #define PLD_LEDCR (0x04000008 + NOCACHE_OFFSET)
  29. #define PLD_SWSR (0x0400000a + NOCACHE_OFFSET)
  30. #define PLD_VERSR (0x0400000c + NOCACHE_OFFSET)
  31. #define SM107_DEVICEID (0x13e00060 + NOCACHE_OFFSET)
  32. static void test_pld(void)
  33. {
  34. printf("PLD version = %04x\n", readb(PLD_VERSR));
  35. }
  36. static void test_sm107(void)
  37. {
  38. printf("SM107 device ID = %04x\n", readl(SM107_DEVICEID));
  39. }
  40. static void test_led(void)
  41. {
  42. printf("turn on LEDs 3, 5, 7, 9\n");
  43. writeb(0x55, PLD_LEDCR);
  44. mdelay(2000);
  45. printf("turn on LEDs 4, 6, 8, 10\n");
  46. writeb(0xaa, PLD_LEDCR);
  47. mdelay(2000);
  48. writeb(0x00, PLD_LEDCR);
  49. }
  50. static void test_dipsw(void)
  51. {
  52. printf("Please DIPSW set = B'0101\n");
  53. while (readb(PLD_SWSR) != 0x05) {
  54. if (ctrlc())
  55. return;
  56. }
  57. printf("Please DIPSW set = B'1010\n");
  58. while (readb(PLD_SWSR) != 0x0A) {
  59. if (ctrlc())
  60. return;
  61. }
  62. printf("DIPSW OK\n");
  63. }
  64. static void test_net(void)
  65. {
  66. unsigned long data;
  67. writel(0x80000000, 0xfe0401c0);
  68. data = readl(0xfe040220);
  69. if (data == 0x816910ec)
  70. printf("Ethernet OK\n");
  71. else
  72. printf("Ethernet NG, data = %08x\n", (unsigned int)data);
  73. }
  74. static void test_sata(void)
  75. {
  76. unsigned long data;
  77. writel(0x80000800, 0xfe0401c0);
  78. data = readl(0xfe040220);
  79. if (data == 0x35121095)
  80. printf("SATA OK\n");
  81. else
  82. printf("SATA NG, data = %08x\n", (unsigned int)data);
  83. }
  84. static void test_pci(void)
  85. {
  86. writel(0x80001800, 0xfe0401c0);
  87. printf("PCI CN1 ID = %08x\n", readl(0xfe040220));
  88. writel(0x80001000, 0xfe0401c0);
  89. printf("PCI CN2 ID = %08x\n", readl(0xfe040220));
  90. }
  91. int do_hw_test(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  92. {
  93. char *cmd;
  94. if (argc != 2)
  95. return cmd_usage(cmdtp);
  96. cmd = argv[1];
  97. switch (cmd[0]) {
  98. case 'a': /* all */
  99. test_pld();
  100. test_led();
  101. test_dipsw();
  102. test_sm107();
  103. test_net();
  104. test_sata();
  105. test_pci();
  106. break;
  107. case 'p': /* pld or pci */
  108. if (cmd[1] == 'l')
  109. test_pld();
  110. else
  111. test_pci();
  112. break;
  113. case 'l': /* led */
  114. test_led();
  115. break;
  116. case 'd': /* dipsw */
  117. test_dipsw();
  118. break;
  119. case 's': /* sm107 or sata */
  120. if (cmd[1] == 'm')
  121. test_sm107();
  122. else
  123. test_sata();
  124. break;
  125. case 'n': /* net */
  126. test_net();
  127. break;
  128. default:
  129. return cmd_usage(cmdtp);
  130. }
  131. return 0;
  132. }
  133. U_BOOT_CMD(
  134. hwtest, 2, 1, do_hw_test,
  135. "hardware test for R0P7785LC0011RL board",
  136. "\n"
  137. "hwtest all - test all hardware\n"
  138. "hwtest pld - output PLD version\n"
  139. "hwtest led - turn on LEDs\n"
  140. "hwtest dipsw - test DIP switch\n"
  141. "hwtest sm107 - output SM107 version\n"
  142. "hwtest net - check RTL8110 ID\n"
  143. "hwtest sata - check SiI3512 ID\n"
  144. "hwtest pci - output PCI slot device ID"
  145. );