[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070221145353.GA23916@enneenne.com>
Date: Wed, 21 Feb 2007 15:53:53 +0100
From: Rodolfo Giometti <giometti@...eenne.com>
To: linux-arm-kernel@...ts.arm.linux.org.uk
Cc: linux-kernel@...r.kernel.org,
linux-fbdev-devel@...ts.sourceforge.net
Subject: [PATCH 1/1] PXAFB: Support for backlight control
Backlight control support for the PXA fram buffer.
Signed-off-by: Rodolfo Giometti <giometti@...eenne.com>
---
Each platform should define the backlight properties in its own setup
file in "linux/arch/arm/mach-pxa/" as follow:
static int pxafb_bl_get_brightness(struct backlight_device *bl_dev)
{
return read_the_backlight_brightness();
}
static int pxafb_bl_update_status(struct backlight_device *bl_dev)
{
int perc, ret;
if (bl_dev->props->power != FB_BLANK_UNBLANK ||
bl_dev->props->fb_blank != FB_BLANK_UNBLANK)
perc = 0;
else
perc = bl_dev->props->brightness;
write_the_backlight_brightness(perc);
return 0;
}
static struct backlight_properties wwpc1100_backlight_props = {
.get_brightness = pxafb_bl_get_brightness,
.update_status = pxafb_bl_update_status,
.max_brightness = 100,
};
and then seting up the fb info as follow:
wwpc1100_pxafb_info.modes = &special_modes;
wwpc1100_pxafb_info.bl_props = &wwpc1100_backlight_props;
set_pxa_fb_info(&wwpc1100_pxafb_info);
View attachment "patch-pxafb-backlight" of type "text/plain" (6010 bytes)
Powered by blists - more mailing lists