2 * LCD panel support for the TI OMAP H3 board
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Imre Deak <imre.deak@nokia.com>
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.
22 #include <linux/module.h>
23 #include <linux/platform_device.h>
24 #include <linux/i2c/tps65010.h>
26 #include <mach/gpio.h>
29 #define MODULE_NAME "omapfb-lcd_h3"
31 static int h3_panel_init(struct lcd_panel
*panel
, struct omapfb_device
*fbdev
)
36 static void h3_panel_cleanup(struct lcd_panel
*panel
)
40 static int h3_panel_enable(struct lcd_panel
*panel
)
44 /* GPIO1 and GPIO2 of TPS65010 send LCD_ENBKL and LCD_ENVDD signals */
45 r
= tps65010_set_gpio_out_value(GPIO1
, HIGH
);
47 r
= tps65010_set_gpio_out_value(GPIO2
, HIGH
);
49 pr_err(MODULE_NAME
": Unable to turn on LCD panel\n");
54 static void h3_panel_disable(struct lcd_panel
*panel
)
58 /* GPIO1 and GPIO2 of TPS65010 send LCD_ENBKL and LCD_ENVDD signals */
59 r
= tps65010_set_gpio_out_value(GPIO1
, LOW
);
61 tps65010_set_gpio_out_value(GPIO2
, LOW
);
63 pr_err(MODULE_NAME
": Unable to turn off LCD panel\n");
66 static unsigned long h3_panel_get_caps(struct lcd_panel
*panel
)
71 struct lcd_panel h3_panel
= {
73 .config
= OMAP_LCDC_PANEL_TFT
,
88 .init
= h3_panel_init
,
89 .cleanup
= h3_panel_cleanup
,
90 .enable
= h3_panel_enable
,
91 .disable
= h3_panel_disable
,
92 .get_caps
= h3_panel_get_caps
,
95 static int h3_panel_probe(struct platform_device
*pdev
)
97 omapfb_register_panel(&h3_panel
);
101 static int h3_panel_remove(struct platform_device
*pdev
)
106 static int h3_panel_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
111 static int h3_panel_resume(struct platform_device
*pdev
)
116 struct platform_driver h3_panel_driver
= {
117 .probe
= h3_panel_probe
,
118 .remove
= h3_panel_remove
,
119 .suspend
= h3_panel_suspend
,
120 .resume
= h3_panel_resume
,
123 .owner
= THIS_MODULE
,
127 static int __init
h3_panel_drv_init(void)
129 return platform_driver_register(&h3_panel_driver
);
132 static void __exit
h3_panel_drv_cleanup(void)
134 platform_driver_unregister(&h3_panel_driver
);
137 module_init(h3_panel_drv_init
);
138 module_exit(h3_panel_drv_cleanup
);