led.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef LED_H
  2. #define LED_H
  3. #define LED7 0x80 /* top (or furthest right) LED */
  4. #define LED6 0x40
  5. #define LED5 0x20
  6. #define LED4 0x10
  7. #define LED3 0x08
  8. #define LED2 0x04
  9. #define LED1 0x02
  10. #define LED0 0x01 /* bottom (or furthest left) LED */
  11. #define LED_LAN_TX LED0 /* for LAN transmit activity */
  12. #define LED_LAN_RCV LED1 /* for LAN receive activity */
  13. #define LED_DISK_IO LED2 /* for disk activity */
  14. #define LED_HEARTBEAT LED3 /* heartbeat */
  15. /* irq function */
  16. extern void led_interrupt_func(void);
  17. /* LASI & ASP specific LED initialization funcs */
  18. extern void __init lasi_led_init( unsigned long lasi_hpa );
  19. extern void __init asp_led_init( unsigned long led_ptr );
  20. /* registers the LED regions for procfs */
  21. extern void __init register_led_regions(void);
  22. /* main LED initialization function (uses the PDC) */ 
  23. extern int __init led_init(void);
  24. #endif /* LED_H */