GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / video / omap / lcd_apollon.c
blob10459d8bd9a01268f99321aee171d8be0abf4294
1 /*
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>
29 #include "omapfb.h"
31 /* #define USE_35INCH_LCD 1 */
33 static int apollon_panel_init(struct lcd_panel *panel,
34 struct omapfb_device *fbdev)
36 return 0;
39 static void apollon_panel_cleanup(struct lcd_panel *panel)
43 static int apollon_panel_enable(struct lcd_panel *panel)
45 return 0;
48 static void apollon_panel_disable(struct lcd_panel *panel)
52 static unsigned long apollon_panel_get_caps(struct lcd_panel *panel)
54 return 0;
57 struct lcd_panel apollon_panel = {
58 .name = "apollon",
59 .config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC |
60 OMAP_LCDC_INV_HSYNC,
62 .bpp = 16,
63 .data_lines = 18,
64 #ifdef USE_35INCH_LCD
65 .x_res = 240,
66 .y_res = 320,
67 .hsw = 2,
68 .hfp = 3,
69 .hbp = 9,
70 .vsw = 4,
71 .vfp = 3,
72 .vbp = 5,
73 #else
74 .x_res = 480,
75 .y_res = 272,
76 .hsw = 41,
77 .hfp = 2,
78 .hbp = 2,
79 .vsw = 10,
80 .vfp = 2,
81 .vbp = 2,
82 #endif
83 .pixel_clock = 6250,
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);
95 return 0;
98 static int apollon_panel_remove(struct platform_device *pdev)
100 return 0;
103 static int apollon_panel_suspend(struct platform_device *pdev,
104 pm_message_t mesg)
106 return 0;
109 static int apollon_panel_resume(struct platform_device *pdev)
111 return 0;
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,
119 .driver = {
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);