2 * LCD panel support for the TI OMAP1610 Innovator 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>
25 #include <linux/gpio.h>
28 #define MODULE_NAME "omapfb-lcd_h3"
30 static int innovator1610_panel_init(struct lcd_panel
*panel
,
31 struct omapfb_device
*fbdev
)
35 /* configure GPIO(14, 15) as outputs */
36 if (gpio_request_one(14, GPIOF_OUT_INIT_LOW
, "lcd_en0")) {
37 pr_err(MODULE_NAME
": can't request GPIO 14\n");
41 if (gpio_request_one(15, GPIOF_OUT_INIT_LOW
, "lcd_en1")) {
42 pr_err(MODULE_NAME
": can't request GPIO 15\n");
51 static void innovator1610_panel_cleanup(struct lcd_panel
*panel
)
57 static int innovator1610_panel_enable(struct lcd_panel
*panel
)
59 /* set GPIO14 and GPIO15 high */
60 gpio_set_value(14, 1);
61 gpio_set_value(15, 1);
65 static void innovator1610_panel_disable(struct lcd_panel
*panel
)
67 /* set GPIO13, GPIO14 and GPIO15 low */
68 gpio_set_value(14, 0);
69 gpio_set_value(15, 0);
72 static unsigned long innovator1610_panel_get_caps(struct lcd_panel
*panel
)
77 struct lcd_panel innovator1610_panel
= {
79 .config
= OMAP_LCDC_PANEL_TFT
,
94 .init
= innovator1610_panel_init
,
95 .cleanup
= innovator1610_panel_cleanup
,
96 .enable
= innovator1610_panel_enable
,
97 .disable
= innovator1610_panel_disable
,
98 .get_caps
= innovator1610_panel_get_caps
,
101 static int innovator1610_panel_probe(struct platform_device
*pdev
)
103 omapfb_register_panel(&innovator1610_panel
);
107 static int innovator1610_panel_remove(struct platform_device
*pdev
)
112 static int innovator1610_panel_suspend(struct platform_device
*pdev
,
118 static int innovator1610_panel_resume(struct platform_device
*pdev
)
123 static struct platform_driver innovator1610_panel_driver
= {
124 .probe
= innovator1610_panel_probe
,
125 .remove
= innovator1610_panel_remove
,
126 .suspend
= innovator1610_panel_suspend
,
127 .resume
= innovator1610_panel_resume
,
129 .name
= "lcd_inn1610",
130 .owner
= THIS_MODULE
,
134 module_platform_driver(innovator1610_panel_driver
);