led.c 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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/config.h>
  10. #include <linux/sched.h>
  11. #include <asm/io.h>
  12. #include <asm/r7780rp/r7780rp.h>
  13. /* Cycle the LED's in the clasic Knightriger/Sun pattern */
  14. void heartbeat_r7780rp(void)
  15. {
  16. static unsigned int cnt = 0, period = 0;
  17. volatile unsigned short *p = (volatile unsigned short *)PA_OBLED;
  18. static unsigned bit = 0, up = 1;
  19. unsigned bit_pos[] = {2, 1, 0, 3, 6, 5, 4, 7};
  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_pos[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. }