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

Linux/Unix编程

开发平台:

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. /* values for pdc_chassis_lcd_info_ret_block.model: */
  16. #define DISPLAY_MODEL_LCD  0 /* KittyHawk LED or LCD */
  17. #define DISPLAY_MODEL_NONE 1 /* no LED or LCD */
  18. #define DISPLAY_MODEL_LASI 2 /* LASI style 8 bit LED */
  19. #define DISPLAY_MODEL_OLD_ASP 0x7F /* faked: ASP style 8 x 1 bit LED (only very old ASP versions) */
  20. #define LED_CMD_REG_NONE NULL /* NULL == no addr for the cmd register */
  21. /* led tasklet struct */
  22. extern struct tasklet_struct led_tasklet;
  23. /* register_led_driver() */
  24. int __init register_led_driver( int model, char *cmd_reg, char *data_reg );
  25. /* registers the LED regions for procfs */
  26. void __init register_led_regions(void);
  27. /* writes a string to the LCD display (if possible on this h/w) */
  28. int lcd_print(char *str);
  29. /* main LED initialization function (uses PDC) */ 
  30. int __init led_init(void);
  31. #endif /* LED_H */