led.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * linux/arch/sh/boards/bigsur/led.c
  3. *
  4. * By Dustin McIntire (dustin@sensoria.com) (c)2001
  5. * Derived from led_se.c and led.c, which bore the message:
  6. * Copyright (C) 2000 Stuart Menefy <stuart.menefy@st.com>
  7. *
  8. * May be copied or modified under the terms of the GNU General Public
  9. * License. See linux/COPYING for more information.
  10. *
  11. * This file contains Big Sur specific LED code.
  12. */
  13. #include <asm/io.h>
  14. #include <asm/bigsur/bigsur.h>
  15. static void mach_led(int position, int value)
  16. {
  17. int word;
  18. word = bigsur_inl(BIGSUR_CSLR);
  19. if (value) {
  20. bigsur_outl(word & ~BIGSUR_LED, BIGSUR_CSLR);
  21. } else {
  22. bigsur_outl(word | BIGSUR_LED, BIGSUR_CSLR);
  23. }
  24. }
  25. #ifdef CONFIG_HEARTBEAT
  26. #include <linux/sched.h>
  27. /* Cycle the LED on/off */
  28. void heartbeat_bigsur(void)
  29. {
  30. static unsigned cnt = 0, period = 0, dist = 0;
  31. if (cnt == 0 || cnt == dist)
  32. mach_led( -1, 1);
  33. else if (cnt == 7 || cnt == dist+7)
  34. mach_led( -1, 0);
  35. if (++cnt > period) {
  36. cnt = 0;
  37. /* The hyperbolic function below modifies the heartbeat period
  38. * length in dependency of the current (5min) load. It goes
  39. * through the points f(0)=126, f(1)=86, f(5)=51,
  40. * f(inf)->30. */
  41. period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
  42. dist = period / 4;
  43. }
  44. }
  45. #endif /* CONFIG_HEARTBEAT */