led.c 979 B

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