blob: eb22e3357e879ec9d7ab80bd4faedd5420083414 [file] [log] [blame]
Andrew Victorcc2832a2006-04-02 17:15:48 +01001/*
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
Russell King2f8163b2011-07-26 10:53:52 +010012#include <linux/gpio.h>
Andrew Victorcc2832a2006-04-02 17:15:48 +010013#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/init.h>
Andrew Victora7307bf2008-09-21 21:31:16 +010016#include <linux/platform_device.h>
Andrew Victorcc2832a2006-04-02 17:15:48 +010017
Jean-Christophe PLAGNIOL-VILLARD43d2f532012-10-30 05:14:17 +080018#include "board.h"
Linus Walleijcf2e9332014-03-27 14:18:51 +010019#include "gpio.h"
Andrew Victorcc2832a2006-04-02 17:15:48 +010020
21
Andrew Victora04ff1a2008-01-23 09:27:06 +010022/* ------------------------------------------------------------------------- */
23
24#if defined(CONFIG_NEW_LEDS)
25
Andrew Victora04ff1a2008-01-23 09:27:06 +010026/*
27 * New cross-platform LED support.
28 */
29
30static struct gpio_led_platform_data led_data;
31
Andrew Victor791ccf22008-09-24 22:03:52 +010032static struct platform_device at91_gpio_leds_device = {
Andrew Victora04ff1a2008-01-23 09:27:06 +010033 .name = "leds-gpio",
34 .id = -1,
35 .dev.platform_data = &led_data,
36};
37
38void __init at91_gpio_leds(struct gpio_led *leds, int nr)
39{
40 int i;
41
42 if (!nr)
43 return;
44
45 for (i = 0; i < nr; i++)
46 at91_set_gpio_output(leds[i].gpio, leds[i].active_low);
47
48 led_data.leds = leds;
49 led_data.num_leds = nr;
Andrew Victor791ccf22008-09-24 22:03:52 +010050 platform_device_register(&at91_gpio_leds_device);
Andrew Victora04ff1a2008-01-23 09:27:06 +010051}
52
53#else
54void __init at91_gpio_leds(struct gpio_led *leds, int nr) {}
55#endif
56