gpio_led.c 633 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. * Licensed under the GPL-2 or later.
  6. */
  7. #include <common.h>
  8. #include <status_led.h>
  9. #include <asm/gpio.h>
  10. void __led_init(led_id_t mask, int state)
  11. {
  12. if (gpio_request(mask, "gpio_led") != 0) {
  13. printf("%s: failed requesting GPIO%lu!\n", __func__, mask);
  14. return;
  15. }
  16. gpio_direction_output(mask, state == STATUS_LED_ON);
  17. }
  18. void __led_set(led_id_t mask, int state)
  19. {
  20. gpio_set_value(mask, state == STATUS_LED_ON);
  21. }
  22. void __led_toggle(led_id_t mask)
  23. {
  24. gpio_set_value(mask, !gpio_get_value(mask));
  25. }