Andrew Victor | cc2832a | 2006-04-02 17:15:48 +0100 | [diff] [blame] | 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 | |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 12 | #include <linux/gpio.h> |
Andrew Victor | cc2832a | 2006-04-02 17:15:48 +0100 | [diff] [blame] | 13 | #include <linux/kernel.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> |
Andrew Victor | a7307bf | 2008-09-21 21:31:16 +0100 | [diff] [blame] | 16 | #include <linux/platform_device.h> |
Andrew Victor | cc2832a | 2006-04-02 17:15:48 +0100 | [diff] [blame] | 17 | |
Jean-Christophe PLAGNIOL-VILLARD | 43d2f53 | 2012-10-30 05:14:17 +0800 | [diff] [blame] | 18 | #include "board.h" |
Andrew Victor | cc2832a | 2006-04-02 17:15:48 +0100 | [diff] [blame] | 19 | |
| 20 | |
Andrew Victor | a04ff1a | 2008-01-23 09:27:06 +0100 | [diff] [blame] | 21 | /* ------------------------------------------------------------------------- */ |
| 22 | |
| 23 | #if defined(CONFIG_NEW_LEDS) |
| 24 | |
Andrew Victor | a04ff1a | 2008-01-23 09:27:06 +0100 | [diff] [blame] | 25 | /* |
| 26 | * New cross-platform LED support. |
| 27 | */ |
| 28 | |
| 29 | static struct gpio_led_platform_data led_data; |
| 30 | |
Andrew Victor | 791ccf2 | 2008-09-24 22:03:52 +0100 | [diff] [blame] | 31 | static struct platform_device at91_gpio_leds_device = { |
Andrew Victor | a04ff1a | 2008-01-23 09:27:06 +0100 | [diff] [blame] | 32 | .name = "leds-gpio", |
| 33 | .id = -1, |
| 34 | .dev.platform_data = &led_data, |
| 35 | }; |
| 36 | |
| 37 | void __init at91_gpio_leds(struct gpio_led *leds, int nr) |
| 38 | { |
| 39 | int i; |
| 40 | |
| 41 | if (!nr) |
| 42 | return; |
| 43 | |
| 44 | for (i = 0; i < nr; i++) |
| 45 | at91_set_gpio_output(leds[i].gpio, leds[i].active_low); |
| 46 | |
| 47 | led_data.leds = leds; |
| 48 | led_data.num_leds = nr; |
Andrew Victor | 791ccf2 | 2008-09-24 22:03:52 +0100 | [diff] [blame] | 49 | platform_device_register(&at91_gpio_leds_device); |
Andrew Victor | a04ff1a | 2008-01-23 09:27:06 +0100 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | #else |
| 53 | void __init at91_gpio_leds(struct gpio_led *leds, int nr) {} |
| 54 | #endif |
| 55 | |
| 56 | |
| 57 | /* ------------------------------------------------------------------------- */ |
| 58 | |
Andrew Victor | a7307bf | 2008-09-21 21:31:16 +0100 | [diff] [blame] | 59 | #if defined (CONFIG_LEDS_ATMEL_PWM) |
| 60 | |
| 61 | /* |
| 62 | * PWM Leds |
| 63 | */ |
| 64 | |
| 65 | static struct gpio_led_platform_data pwm_led_data; |
| 66 | |
Andrew Victor | 791ccf2 | 2008-09-24 22:03:52 +0100 | [diff] [blame] | 67 | static struct platform_device at91_pwm_leds_device = { |
Andrew Victor | a7307bf | 2008-09-21 21:31:16 +0100 | [diff] [blame] | 68 | .name = "leds-atmel-pwm", |
| 69 | .id = -1, |
| 70 | .dev.platform_data = &pwm_led_data, |
| 71 | }; |
| 72 | |
| 73 | void __init at91_pwm_leds(struct gpio_led *leds, int nr) |
| 74 | { |
| 75 | int i; |
| 76 | u32 pwm_mask = 0; |
| 77 | |
| 78 | if (!nr) |
| 79 | return; |
| 80 | |
| 81 | for (i = 0; i < nr; i++) |
| 82 | pwm_mask |= (1 << leds[i].gpio); |
| 83 | |
| 84 | pwm_led_data.leds = leds; |
| 85 | pwm_led_data.num_leds = nr; |
| 86 | |
| 87 | at91_add_device_pwm(pwm_mask); |
Andrew Victor | 791ccf2 | 2008-09-24 22:03:52 +0100 | [diff] [blame] | 88 | platform_device_register(&at91_pwm_leds_device); |
Andrew Victor | a7307bf | 2008-09-21 21:31:16 +0100 | [diff] [blame] | 89 | } |
| 90 | #else |
| 91 | void __init at91_pwm_leds(struct gpio_led *leds, int nr){} |
| 92 | #endif |