Commit 035c3d2a authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Nicolas Ferre

avr32: MRMT: use generic leds_pwm driver

Switch to the generic leds_pwm driver instead of leds-atmel-pwm.
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: default avatarHans-Christian Egtvedt <egtvedt@samfundet.no>
Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
parent 2c43ec94
...@@ -17,6 +17,8 @@ ...@@ -17,6 +17,8 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/fb.h> #include <linux/fb.h>
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/pwm.h>
#include <linux/leds_pwm.h>
#include <linux/input.h> #include <linux/input.h>
#include <linux/gpio_keys.h> #include <linux/gpio_keys.h>
#include <linux/atmel_serial.h> #include <linux/atmel_serial.h>
...@@ -155,21 +157,28 @@ static struct platform_device rmt_ts_device = { ...@@ -155,21 +157,28 @@ static struct platform_device rmt_ts_device = {
#ifdef CONFIG_BOARD_MRMT_BL_PWM #ifdef CONFIG_BOARD_MRMT_BL_PWM
/* PWM LEDs: LCD Backlight, etc */ /* PWM LEDs: LCD Backlight, etc */
static struct gpio_led rmt_pwm_led[] = { static struct pwm_lookup pwm_lookup[] = {
/* here the "gpio" is actually a PWM channel */ PWM_LOOKUP("at91sam9rl-pwm", PWM_CH_BL, "leds_pwm", "ds1",
{ .name = "backlight", .gpio = PWM_CH_BL, }, 5000, PWM_POLARITY_INVERSED),
}; };
static struct gpio_led_platform_data rmt_pwm_led_data = { static struct led_pwm pwm_leds[] = {
.num_leds = ARRAY_SIZE(rmt_pwm_led), {
.leds = rmt_pwm_led, .name = "backlight",
.max_brightness = 255,
},
};
static struct led_pwm_platform_data pwm_data = {
.num_leds = ARRAY_SIZE(pwm_leds),
.leds = pwm_leds,
}; };
static struct platform_device rmt_pwm_led_dev = { static struct platform_device leds_pwm = {
.name = "leds-atmel-pwm", .name = "leds_pwm",
.id = -1, .id = -1,
.dev = { .dev = {
.platform_data = &rmt_pwm_led_data, .platform_data = &pwm_data,
}, },
}; };
#endif #endif
...@@ -325,7 +334,8 @@ static int __init mrmt1_init(void) ...@@ -325,7 +334,8 @@ static int __init mrmt1_init(void)
#ifdef CONFIG_BOARD_MRMT_BL_PWM #ifdef CONFIG_BOARD_MRMT_BL_PWM
/* Use PWM for Backlight controls */ /* Use PWM for Backlight controls */
at32_add_device_pwm(1 << PWM_CH_BL); at32_add_device_pwm(1 << PWM_CH_BL);
platform_device_register(&rmt_pwm_led_dev); pwm_add_table(pwm_lookup, ARRAY_SIZE(pwm_lookup));
platform_device_register(&leds_pwm);
#else #else
/* Backlight always on */ /* Backlight always on */
udelay( 1 ); udelay( 1 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment