2 * LCD panel support for Palm Tungsten|T
3 * Current version : Marek Vasut <marek.vasut@gmail.com>
5 * Modified from lcd_inn1510.c
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 GPIO12 - screen blanking
25 GPIO13 - screen blanking
28 #include <linux/platform_device.h>
29 #include <linux/module.h>
31 #include <linux/gpio.h>
35 static unsigned long palmtt_panel_get_caps(struct lcd_panel
*panel
)
37 return OMAPFB_CAPS_SET_BACKLIGHT
;
40 static struct lcd_panel palmtt_panel
= {
42 .config
= OMAP_LCDC_PANEL_TFT
| OMAP_LCDC_INV_VSYNC
|
43 OMAP_LCDC_INV_HSYNC
| OMAP_LCDC_HSVS_RISING_EDGE
|
44 OMAP_LCDC_HSVS_OPPOSITE
,
58 .get_caps
= palmtt_panel_get_caps
,
61 static int palmtt_panel_probe(struct platform_device
*pdev
)
63 omapfb_register_panel(&palmtt_panel
);
67 static struct platform_driver palmtt_panel_driver
= {
68 .probe
= palmtt_panel_probe
,
74 module_platform_driver(palmtt_panel_driver
);
76 MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
77 MODULE_DESCRIPTION("LCD panel support for Palm Tungsten|T");
78 MODULE_LICENSE("GPL");