leds.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * (C) Copyright 2011 - 2013 CompuLab, Ltd. <www.compulab.co.il>
  3. *
  4. * Author: Igor Grinberg <grinberg@compulab.co.il>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc.
  19. */
  20. #include <common.h>
  21. #include <status_led.h>
  22. #include <asm/gpio.h>
  23. static unsigned int leds[] = { GREEN_LED_GPIO };
  24. void __led_init(led_id_t mask, int state)
  25. {
  26. if (gpio_request(leds[mask], "") != 0) {
  27. printf("%s: failed requesting GPIO%u\n", __func__, leds[mask]);
  28. return;
  29. }
  30. gpio_direction_output(leds[mask], 0);
  31. }
  32. void __led_set(led_id_t mask, int state)
  33. {
  34. gpio_set_value(leds[mask], state == STATUS_LED_ON);
  35. }
  36. void __led_toggle(led_id_t mask)
  37. {
  38. gpio_set_value(leds[mask], !gpio_get_value(leds[mask]));
  39. }