status_led.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * (C) Copyright 2000-2004
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. /*
  8. * The purpose of this code is to signal the operational status of a
  9. * target which usually boots over the network; while running in
  10. * PCBoot, a status LED is blinking. As soon as a valid BOOTP reply
  11. * message has been received, the LED is turned off. The Linux
  12. * kernel, once it is running, will start blinking the LED again,
  13. * with another frequency.
  14. */
  15. #ifndef _STATUS_LED_H_
  16. #define _STATUS_LED_H_
  17. #ifdef CONFIG_STATUS_LED
  18. #define STATUS_LED_OFF 0
  19. #define STATUS_LED_BLINKING 1
  20. #define STATUS_LED_ON 2
  21. void status_led_init(void);
  22. void status_led_tick (unsigned long timestamp);
  23. void status_led_set (int led, int state);
  24. /***** TQM8xxL ********************************************************/
  25. #if defined(CONFIG_TQM8xxL)
  26. # define STATUS_LED_PAR im_cpm.cp_pbpar
  27. # define STATUS_LED_DIR im_cpm.cp_pbdir
  28. # define STATUS_LED_ODR im_cpm.cp_pbodr
  29. # define STATUS_LED_DAT im_cpm.cp_pbdat
  30. # define STATUS_LED_BIT 0x00000001
  31. # define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
  32. # define STATUS_LED_STATE STATUS_LED_BLINKING
  33. # define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
  34. # define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
  35. /***** MVS v1 **********************************************************/
  36. #elif (defined(CONFIG_MVS) && CONFIG_MVS < 2)
  37. # define STATUS_LED_PAR im_ioport.iop_pdpar
  38. # define STATUS_LED_DIR im_ioport.iop_pddir
  39. # undef STATUS_LED_ODR
  40. # define STATUS_LED_DAT im_ioport.iop_pddat
  41. # define STATUS_LED_BIT 0x00000001
  42. # define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
  43. # define STATUS_LED_STATE STATUS_LED_BLINKING
  44. # define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */
  45. # define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
  46. /***** Someone else defines these *************************************/
  47. #elif defined(STATUS_LED_PAR)
  48. /*
  49. * ADVICE: Define in your board configuration file rather than
  50. * filling this file up with lots of custom board stuff.
  51. */
  52. #elif defined(CONFIG_V38B)
  53. # define STATUS_LED_BIT 0x0010 /* Timer7 GPIO */
  54. # define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
  55. # define STATUS_LED_STATE STATUS_LED_BLINKING
  56. # define STATUS_LED_ACTIVE 0 /* LED on for bit == 0 */
  57. # define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
  58. #elif defined(CONFIG_MOTIONPRO)
  59. #define STATUS_LED_BIT ((vu_long *) MPC5XXX_GPT6_ENABLE)
  60. #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 10)
  61. #define STATUS_LED_STATE STATUS_LED_BLINKING
  62. #define STATUS_LED_BIT1 ((vu_long *) MPC5XXX_GPT7_ENABLE)
  63. #define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 10)
  64. #define STATUS_LED_STATE1 STATUS_LED_OFF
  65. #define STATUS_LED_BOOT 0 /* LED 0 used for boot status */
  66. #elif defined(CONFIG_BOARD_SPECIFIC_LED)
  67. /* led_id_t is unsigned long mask */
  68. typedef unsigned long led_id_t;
  69. extern void __led_toggle (led_id_t mask);
  70. extern void __led_init (led_id_t mask, int state);
  71. extern void __led_set (led_id_t mask, int state);
  72. void __led_blink(led_id_t mask, int freq);
  73. #else
  74. # error Status LED configuration missing
  75. #endif
  76. /************************************************************************/
  77. #ifndef CONFIG_BOARD_SPECIFIC_LED
  78. # include <asm/status_led.h>
  79. #endif
  80. #endif /* CONFIG_STATUS_LED */
  81. /*
  82. * Coloured LEDs API
  83. */
  84. #ifndef __ASSEMBLY__
  85. void coloured_LED_init(void);
  86. void red_led_on(void);
  87. void red_led_off(void);
  88. void green_led_on(void);
  89. void green_led_off(void);
  90. void yellow_led_on(void);
  91. void yellow_led_off(void);
  92. void blue_led_on(void);
  93. void blue_led_off(void);
  94. #else
  95. .extern LED_init
  96. .extern red_led_on
  97. .extern red_led_off
  98. .extern yellow_led_on
  99. .extern yellow_led_off
  100. .extern green_led_on
  101. .extern green_led_off
  102. .extern blue_led_on
  103. .extern blue_led_off
  104. #endif
  105. #endif /* _STATUS_LED_H_ */