status_led.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * (C) Copyright 2000-2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <status_led.h>
  25. /*
  26. * The purpose of this code is to signal the operational status of a
  27. * target which usually boots over the network; while running in
  28. * U-Boot, a status LED is blinking. As soon as a valid BOOTP reply
  29. * message has been received, the LED is turned off. The Linux
  30. * kernel, once it is running, will start blinking the LED again,
  31. * with another frequency.
  32. */
  33. /* ------------------------------------------------------------------------- */
  34. #ifdef CONFIG_STATUS_LED
  35. typedef struct {
  36. led_id_t mask;
  37. int state;
  38. int period;
  39. int cnt;
  40. } led_dev_t;
  41. led_dev_t led_dev[] = {
  42. { STATUS_LED_BIT,
  43. STATUS_LED_STATE,
  44. STATUS_LED_PERIOD,
  45. 0,
  46. },
  47. #if defined(STATUS_LED_BIT1)
  48. { STATUS_LED_BIT1,
  49. STATUS_LED_STATE1,
  50. STATUS_LED_PERIOD1,
  51. 0,
  52. },
  53. #endif
  54. #if defined(STATUS_LED_BIT2)
  55. { STATUS_LED_BIT2,
  56. STATUS_LED_STATE2,
  57. STATUS_LED_PERIOD2,
  58. 0,
  59. },
  60. #endif
  61. #if defined(STATUS_LED_BIT3)
  62. { STATUS_LED_BIT3,
  63. STATUS_LED_STATE3,
  64. STATUS_LED_PERIOD3,
  65. 0,
  66. },
  67. #endif
  68. };
  69. #define MAX_LED_DEV (sizeof(led_dev)/sizeof(led_dev_t))
  70. static int status_led_init_done = 0;
  71. static void status_led_init (void)
  72. {
  73. led_dev_t *ld;
  74. int i;
  75. for (i = 0, ld = led_dev; i < MAX_LED_DEV; i++, ld++)
  76. __led_init (ld->mask, ld->state);
  77. status_led_init_done = 1;
  78. }
  79. void status_led_tick (ulong timestamp)
  80. {
  81. led_dev_t *ld;
  82. int i;
  83. if (!status_led_init_done)
  84. status_led_init ();
  85. for (i = 0, ld = led_dev; i < MAX_LED_DEV; i++, ld++) {
  86. if (ld->state != STATUS_LED_BLINKING)
  87. continue;
  88. if (++ld->cnt >= ld->period) {
  89. __led_toggle (ld->mask);
  90. ld->cnt -= ld->period;
  91. }
  92. }
  93. }
  94. void status_led_set (int led, int state)
  95. {
  96. led_dev_t *ld;
  97. if (led < 0 || led >= MAX_LED_DEV)
  98. return;
  99. if (!status_led_init_done)
  100. status_led_init ();
  101. ld = &led_dev[led];
  102. ld->state = state;
  103. if (state == STATUS_LED_BLINKING) {
  104. ld->cnt = 0; /* always start with full period */
  105. state = STATUS_LED_ON; /* always start with LED _ON_ */
  106. }
  107. __led_set (ld->mask, state);
  108. }
  109. #endif /* CONFIG_STATUS_LED */