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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_SN_LEDS_H
  2. #define _ASM_IA64_SN_LEDS_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.  * Copyright (C) 2000-2002 Silicon Graphics, Inc. All rights reserved.
  8.  */
  9. #include <linux/config.h>
  10. #include <asm/smp.h>
  11. #include <asm/sn/addrs.h>
  12. #include <asm/sn/sn_cpuid.h>
  13. #include <asm/sn/pda.h>
  14. #ifdef CONFIG_IA64_SGI_SN1
  15. #define LED0 0xc0000b00100000c0LL /* ZZZ fixme */
  16. #define LED_CPU_SHIFT 3
  17. #else
  18. #include <asm/sn/sn2/shub.h>
  19. #define LED0 (LOCAL_MMR_ADDR(SH_REAL_JUNK_BUS_LED0))
  20. #define LED_CPU_SHIFT 16
  21. #endif
  22. #define LED_CPU_HEARTBEAT 0x01
  23. #define LED_CPU_ACTIVITY 0x02
  24. #define LED_MASK_AUTOTEST 0xfe
  25. /*
  26.  * Basic macros for flashing the LEDS on an SGI, SN1.
  27.  */
  28. static __inline__ void
  29. set_led_bits(u8 value, u8 mask)
  30. {
  31. pda.led_state = (pda.led_state & ~mask) | (value & mask);
  32. #ifdef CONFIG_IA64_SGI_SN1
  33. *pda.led_address = (long) pda.led_state;
  34. #else
  35. *pda.led_address = (short) pda.led_state;
  36. #endif
  37. }
  38. #endif /* _ASM_IA64_SN_LEDS_H */