2008-04-14 17:35:08 +09:00
|
|
|
/*
|
|
|
|
* Generic PWM backlight driver data - see drivers/video/backlight/pwm_bl.c
|
|
|
|
*/
|
|
|
|
#ifndef __LINUX_PWM_BACKLIGHT_H
|
|
|
|
#define __LINUX_PWM_BACKLIGHT_H
|
|
|
|
|
2011-03-23 08:30:31 +09:00
|
|
|
#include <linux/backlight.h>
|
|
|
|
|
2008-04-14 17:35:08 +09:00
|
|
|
struct platform_pwm_backlight_data {
|
|
|
|
int pwm_id;
|
|
|
|
unsigned int max_brightness;
|
|
|
|
unsigned int dft_brightness;
|
2010-11-12 07:05:28 +09:00
|
|
|
unsigned int lth_brightness;
|
2008-04-14 17:35:08 +09:00
|
|
|
unsigned int pwm_period_ns;
|
2011-12-17 05:25:29 +09:00
|
|
|
unsigned int *levels;
|
2014-02-27 14:53:34 +09:00
|
|
|
/* TODO remove once all users are switched to gpiod_* API */
|
2013-08-30 18:51:22 +09:00
|
|
|
int enable_gpio;
|
2008-05-22 22:18:40 +09:00
|
|
|
int (*init)(struct device *dev);
|
2009-11-11 02:20:40 +09:00
|
|
|
int (*notify)(struct device *dev, int brightness);
|
2011-08-26 07:59:17 +09:00
|
|
|
void (*notify_after)(struct device *dev, int brightness);
|
2008-05-22 22:18:40 +09:00
|
|
|
void (*exit)(struct device *dev);
|
2011-03-23 08:30:31 +09:00
|
|
|
int (*check_fb)(struct device *dev, struct fb_info *info);
|
2008-04-14 17:35:08 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|