watchdog.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. /*
  25. * Watchdog test
  26. *
  27. * The test verifies the watchdog timer operation.
  28. * On the first iteration, the test routine disables interrupts and
  29. * makes a 10-second delay. If the system does not reboot during this delay,
  30. * the watchdog timer is not operational and the test fails. If the system
  31. * reboots, on the second iteration the test routine reports a success.
  32. */
  33. #include <post.h>
  34. #include <watchdog.h>
  35. #if CONFIG_POST & CONFIG_SYS_POST_WATCHDOG
  36. static ulong gettbl (void)
  37. {
  38. ulong r;
  39. asm ("mftbl %0":"=r" (r));
  40. return r;
  41. }
  42. int watchdog_post_test (int flags)
  43. {
  44. if (flags & POST_REBOOT) {
  45. /* Test passed */
  46. return 0;
  47. } else {
  48. /* 10-second delay */
  49. int ints = disable_interrupts ();
  50. ulong base = gettbl ();
  51. ulong clk = get_tbclk ();
  52. while ((gettbl () - base) / 10 < clk);
  53. if (ints)
  54. enable_interrupts ();
  55. /*
  56. * If we have reached this point, the watchdog timer
  57. * does not work
  58. */
  59. return -1;
  60. }
  61. }
  62. #endif /* CONFIG_POST & CONFIG_SYS_POST_WATCHDOG */