timer.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* vi: set ts=8 sw=8 noet: */
  2. /*
  3. * (C) Copyright 2002
  4. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  5. * Marius Groeger <mgroeger@sysgo.de>
  6. *
  7. * (C) Copyright 2002
  8. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  9. * Alex Zuepke <azu@sysgo.de>
  10. *
  11. * See file CREDITS for list of people who contributed to this
  12. * project.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  27. * MA 02111-1307 USA
  28. */
  29. #include <common.h>
  30. #include <asm/arch/ixp425.h>
  31. void ixp425_udelay(unsigned long usec)
  32. {
  33. /*
  34. * This function has a max usec, but since it is called from udelay
  35. * we should not have to worry... be happy
  36. */
  37. unsigned long usecs = CFG_HZ/1000000L & ~IXP425_OST_RELOAD_MASK;
  38. *IXP425_OSST = IXP425_OSST_TIMER_1_PEND;
  39. usecs |= IXP425_OST_ONE_SHOT | IXP425_OST_ENABLE;
  40. *IXP425_OSRT1 = usecs;
  41. while (!(*IXP425_OSST & IXP425_OSST_TIMER_1_PEND));
  42. }
  43. void udelay (unsigned long usec)
  44. {
  45. while (usec--) ixp425_udelay(1);
  46. }
  47. static ulong reload_constant = 0xfffffff0;
  48. void reset_timer_masked (void)
  49. {
  50. ulong reload = reload_constant | IXP425_OST_ONE_SHOT | IXP425_OST_ENABLE;
  51. *IXP425_OSST = IXP425_OSST_TIMER_1_PEND;
  52. *IXP425_OSRT1 = reload;
  53. }
  54. ulong get_timer_masked (void)
  55. {
  56. /*
  57. * Note that it is possible for this to wrap!
  58. * In this case we return max.
  59. */
  60. ulong current = *IXP425_OST1;
  61. if (*IXP425_OSST & IXP425_OSST_TIMER_1_PEND)
  62. {
  63. return reload_constant;
  64. }
  65. return (reload_constant - current);
  66. }