2 * LCD panel support for the Samsung OMAP2 Apollon board
4 * Copyright (C) 2005,2006 Samsung Electronics
5 * Author: Kyungmin Park <kyungmin.park@samsung.com>
7 * Derived from drivers/video/omap/lcd-h4.c
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include <linux/module.h>
25 #include <linux/platform_device.h>
27 #include <mach/gpio.h>
32 /* #define USE_35INCH_LCD 1 */
34 static int apollon_panel_init(struct lcd_panel
*panel
,
35 struct omapfb_device
*fbdev
)
37 /* configure LCD PWR_EN */
38 omap_cfg_reg(M21_242X_GPIO11
);
42 static void apollon_panel_cleanup(struct lcd_panel
*panel
)
46 static int apollon_panel_enable(struct lcd_panel
*panel
)
51 static void apollon_panel_disable(struct lcd_panel
*panel
)
55 static unsigned long apollon_panel_get_caps(struct lcd_panel
*panel
)
60 struct lcd_panel apollon_panel
= {
62 .config
= OMAP_LCDC_PANEL_TFT
| OMAP_LCDC_INV_VSYNC
|
88 .init
= apollon_panel_init
,
89 .cleanup
= apollon_panel_cleanup
,
90 .enable
= apollon_panel_enable
,
91 .disable
= apollon_panel_disable
,
92 .get_caps
= apollon_panel_get_caps
,
95 static int apollon_panel_probe(struct platform_device
*pdev
)
97 omapfb_register_panel(&apollon_panel
);
101 static int apollon_panel_remove(struct platform_device
*pdev
)
106 static int apollon_panel_suspend(struct platform_device
*pdev
,
112 static int apollon_panel_resume(struct platform_device
*pdev
)
117 struct platform_driver apollon_panel_driver
= {
118 .probe
= apollon_panel_probe
,
119 .remove
= apollon_panel_remove
,
120 .suspend
= apollon_panel_suspend
,
121 .resume
= apollon_panel_resume
,
123 .name
= "apollon_lcd",
124 .owner
= THIS_MODULE
,
128 static int __init
apollon_panel_drv_init(void)
130 return platform_driver_register(&apollon_panel_driver
);
133 static void __exit
apollon_panel_drv_exit(void)
135 platform_driver_unregister(&apollon_panel_driver
);
138 module_init(apollon_panel_drv_init
);
139 module_exit(apollon_panel_drv_exit
);