gpio_led.c 717 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Status LED driver based on GPIO access conventions of Linux
  3. *
  4. * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <common.h>
  11. #include <status_led.h>
  12. #include <asm/gpio.h>
  13. /* assume led is active low */
  14. void __led_init(led_id_t mask, int state)
  15. {
  16. gpio_direction_output(mask, (state == STATUS_LED_ON) ? 0 : 1);
  17. }
  18. void __led_set(led_id_t mask, int state)
  19. {
  20. gpio_set_value(mask, (state == STATUS_LED_ON) ? 0 : 1);
  21. }
  22. void __led_toggle(led_id_t mask)
  23. {
  24. gpio_set_value(mask, !gpio_get_value(mask));
  25. }