led.c 973 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * linux/arch/sh/boards/renesas/rts7751r2d/led.c
  3. *
  4. * Copyright (C) Atom Create Engineering Co., Ltd.
  5. *
  6. * May be copied or modified under the terms of GNU General Public
  7. * License. See linux/COPYING for more information.
  8. *
  9. * This file contains Renesas Technology Sales RTS7751R2D specific LED code.
  10. */
  11. #include <linux/io.h>
  12. #include <linux/sched.h>
  13. #include <asm/rts7751r2d.h>
  14. /* Cycle the LED's in the clasic Knightriger/Sun pattern */
  15. void heartbeat_rts7751r2d(void)
  16. {
  17. static unsigned int cnt = 0, period = 0;
  18. volatile unsigned short *p = (volatile unsigned short *)PA_OUTPORT;
  19. static unsigned bit = 0, up = 1;
  20. cnt += 1;
  21. if (cnt < period)
  22. return;
  23. cnt = 0;
  24. /* Go through the points (roughly!):
  25. * f(0)=10, f(1)=16, f(2)=20, f(5)=35, f(int)->110
  26. */
  27. period = 110 - ((300 << FSHIFT)/((avenrun[0]/5) + (3<<FSHIFT)));
  28. *p = 1 << bit;
  29. if (up)
  30. if (bit == 7) {
  31. bit--;
  32. up = 0;
  33. } else
  34. bit++;
  35. else if (bit == 0)
  36. up = 1;
  37. else
  38. bit--;
  39. }