idle.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_SN_IDLE_H
  2. #define _ASM_IA64_SN_IDLE_H
  3. /*
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (c) 2001-2002 Silicon Graphics, Inc.  All rights reserved.
  9.  */
  10. #include <linux/config.h>
  11. #include <asm/sn/leds.h>
  12. #include <asm/sn/simulator.h>
  13. static __inline__ void
  14. snidle(void) {
  15. #ifdef CONFIG_IA64_SGI_AUTOTEST
  16. {
  17. extern int autotest_enabled;
  18. if (autotest_enabled) {
  19. extern void llsc_main(int);
  20. llsc_main(smp_processor_id());
  21. }
  22. }
  23. #endif
  24. if (pda.idle_flag == 0) {
  25. /* 
  26.  * Turn the activity LED off.
  27.  */
  28. set_led_bits(0, LED_CPU_ACTIVITY);
  29. }
  30. #ifdef CONFIG_IA64_SGI_SN_SIM
  31. if (IS_RUNNING_ON_SIMULATOR())
  32. SIMULATOR_SLEEP();
  33. #endif
  34. pda.idle_flag = 1;
  35. }
  36. static __inline__ void
  37. snidleoff(void) {
  38. /* 
  39.  * Turn the activity LED on.
  40.  */
  41. set_led_bits(LED_CPU_ACTIVITY, LED_CPU_ACTIVITY);
  42. pda.idle_flag = 0;
  43. }
  44. #endif /* _ASM_IA64_SN_IDLE_H */