提交 bd3208ba 编写于 作者: T Thierry Reding 提交者: Robert Jarzmik

ARM: pxa: magician: Use PWM lookup table

Use a PWM lookup table to provide the PWM to the pwm-backlight device.
The driver has a legacy code path that is required only because boards
still use the legacy method of requesting PWMs by global ID. Replacing
these usages allows that legacy fallback to be removed.

Cc: Daniel Mack <daniel@zonque.org>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: NThierry Reding <thierry.reding@gmail.com>
Acked-by: NPhilipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: NRobert Jarzmik <robert.jarzmik@free.fr>
上级 2dc9975a
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <linux/mfd/htc-pasic3.h> #include <linux/mfd/htc-pasic3.h>
#include <linux/mtd/physmap.h> #include <linux/mtd/physmap.h>
#include <linux/pda_power.h> #include <linux/pda_power.h>
#include <linux/pwm.h>
#include <linux/pwm_backlight.h> #include <linux/pwm_backlight.h>
#include <linux/regulator/driver.h> #include <linux/regulator/driver.h>
#include <linux/regulator/gpio-regulator.h> #include <linux/regulator/gpio-regulator.h>
...@@ -346,6 +347,11 @@ static struct pxafb_mach_info samsung_info = { ...@@ -346,6 +347,11 @@ static struct pxafb_mach_info samsung_info = {
* Backlight * Backlight
*/ */
static struct pwm_lookup magician_pwm_lookup[] = {
PWM_LOOKUP("pxa27x-pwm.0", 0, "pwm-backlight", NULL, 30923,
PWM_POLARITY_NORMAL),
};
static struct gpio magician_bl_gpios[] = { static struct gpio magician_bl_gpios[] = {
{ EGPIO_MAGICIAN_BL_POWER, GPIOF_DIR_OUT, "Backlight power" }, { EGPIO_MAGICIAN_BL_POWER, GPIOF_DIR_OUT, "Backlight power" },
{ EGPIO_MAGICIAN_BL_POWER2, GPIOF_DIR_OUT, "Backlight power 2" }, { EGPIO_MAGICIAN_BL_POWER2, GPIOF_DIR_OUT, "Backlight power 2" },
...@@ -374,10 +380,8 @@ static void magician_backlight_exit(struct device *dev) ...@@ -374,10 +380,8 @@ static void magician_backlight_exit(struct device *dev)
} }
static struct platform_pwm_backlight_data backlight_data = { static struct platform_pwm_backlight_data backlight_data = {
.pwm_id = 0,
.max_brightness = 272, .max_brightness = 272,
.dft_brightness = 100, .dft_brightness = 100,
.pwm_period_ns = 30923,
.enable_gpio = -1, .enable_gpio = -1,
.init = magician_backlight_init, .init = magician_backlight_init,
.notify = magician_backlight_notify, .notify = magician_backlight_notify,
...@@ -743,6 +747,7 @@ static void __init magician_init(void) ...@@ -743,6 +747,7 @@ static void __init magician_init(void)
pxa_set_btuart_info(NULL); pxa_set_btuart_info(NULL);
pxa_set_stuart_info(NULL); pxa_set_stuart_info(NULL);
pwm_add_table(magician_pwm_lookup, ARRAY_SIZE(magician_pwm_lookup));
platform_add_devices(ARRAY_AND_SIZE(devices)); platform_add_devices(ARRAY_AND_SIZE(devices));
pxa_set_ficp_info(&magician_ficp_info); pxa_set_ficp_info(&magician_ficp_info);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册