timer_interrupt.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. *
  3. *
  4. * Copyright (c) 2005, 2006 Silicon Graphics, Inc. All Rights Reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of version 2 of the GNU General Public License
  8. * as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it would be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * Further, this software is distributed without any warranty that it is
  15. * free of the rightful claim of any third person regarding infringement
  16. * or the like. Any license provided herein, whether implied or
  17. * otherwise, applies only to this software file. Patent licenses, if
  18. * any, provided herein do not apply to combinations of this program with
  19. * other software, or any other product whatsoever.
  20. *
  21. * You should have received a copy of the GNU General Public
  22. * License along with this program; if not, write the Free Software
  23. * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  24. *
  25. * For further information regarding this notice, see:
  26. *
  27. * http://oss.sgi.com/projects/GenInfo/NoticeExplan
  28. */
  29. #include <linux/interrupt.h>
  30. #include <asm/sn/pda.h>
  31. #include <asm/sn/leds.h>
  32. extern void sn_lb_int_war_check(void);
  33. extern irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  34. #define SN_LB_INT_WAR_INTERVAL 100
  35. void sn_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  36. {
  37. /* LED blinking */
  38. if (!pda->hb_count--) {
  39. pda->hb_count = HZ / 2;
  40. set_led_bits(pda->hb_state ^=
  41. LED_CPU_HEARTBEAT, LED_CPU_HEARTBEAT);
  42. }
  43. if (is_shub1()) {
  44. if (enable_shub_wars_1_1()) {
  45. /* Bugfix code for SHUB 1.1 */
  46. if (pda->pio_shub_war_cam_addr)
  47. *pda->pio_shub_war_cam_addr = 0x8000000000000010UL;
  48. }
  49. if (pda->sn_lb_int_war_ticks == 0)
  50. sn_lb_int_war_check();
  51. pda->sn_lb_int_war_ticks++;
  52. if (pda->sn_lb_int_war_ticks >= SN_LB_INT_WAR_INTERVAL)
  53. pda->sn_lb_int_war_ticks = 0;
  54. }
  55. }