leds.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * LED driver for Atmel AT91-based boards.
  3. *
  4. * Copyright (C) SAN People (Pty) Ltd
  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
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #include <linux/gpio.h>
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/init.h>
  15. #include <linux/platform_device.h>
  16. #include "board.h"
  17. #include "gpio.h"
  18. /* ------------------------------------------------------------------------- */
  19. #if defined(CONFIG_NEW_LEDS)
  20. /*
  21. * New cross-platform LED support.
  22. */
  23. static struct gpio_led_platform_data led_data;
  24. static struct platform_device at91_gpio_leds_device = {
  25. .name = "leds-gpio",
  26. .id = -1,
  27. .dev.platform_data = &led_data,
  28. };
  29. void __init at91_gpio_leds(struct gpio_led *leds, int nr)
  30. {
  31. int i;
  32. if (!nr)
  33. return;
  34. for (i = 0; i < nr; i++)
  35. at91_set_gpio_output(leds[i].gpio, leds[i].active_low);
  36. led_data.leds = leds;
  37. led_data.num_leds = nr;
  38. platform_device_register(&at91_gpio_leds_device);
  39. }
  40. #else
  41. void __init at91_gpio_leds(struct gpio_led *leds, int nr) {}
  42. #endif