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>
31 /* #define USE_35INCH_LCD 1 */
33 static int apollon_panel_init(struct lcd_panel
*panel
,
34 struct omapfb_device
*fbdev
)
39 static void apollon_panel_cleanup(struct lcd_panel
*panel
)
43 static int apollon_panel_enable(struct lcd_panel
*panel
)
48 static void apollon_panel_disable(struct lcd_panel
*panel
)
52 static unsigned long apollon_panel_get_caps(struct lcd_panel
*panel
)
57 struct lcd_panel apollon_panel
= {
59 .config
= OMAP_LCDC_PANEL_TFT
| OMAP_LCDC_INV_VSYNC
|
85 .init
= apollon_panel_init
,
86 .cleanup
= apollon_panel_cleanup
,
87 .enable
= apollon_panel_enable
,
88 .disable
= apollon_panel_disable
,
89 .get_caps
= apollon_panel_get_caps
,
92 static int apollon_panel_probe(struct platform_device
*pdev
)
94 omapfb_register_panel(&apollon_panel
);
98 static int apollon_panel_remove(struct platform_device
*pdev
)
103 static int apollon_panel_suspend(struct platform_device
*pdev
,
109 static int apollon_panel_resume(struct platform_device
*pdev
)
114 struct platform_driver apollon_panel_driver
= {
115 .probe
= apollon_panel_probe
,
116 .remove
= apollon_panel_remove
,
117 .suspend
= apollon_panel_suspend
,
118 .resume
= apollon_panel_resume
,
120 .name
= "apollon_lcd",
121 .owner
= THIS_MODULE
,
125 static int __init
apollon_panel_drv_init(void)
127 return platform_driver_register(&apollon_panel_driver
);
130 static void __exit
apollon_panel_drv_exit(void)
132 platform_driver_unregister(&apollon_panel_driver
);
135 module_init(apollon_panel_drv_init
);
136 module_exit(apollon_panel_drv_exit
);