2 * File: drivers/video/omap/lcd-htcherald.c
4 * LCD panel support for the HTC Herald
6 * Copyright (C) 2009 Cory Maccarrone <darkstar6262@gmail.com>
7 * Copyright (C) 2009 Wing Linux
9 * Based on the lcd_htcwizard.c file from the linwizard project:
10 * Copyright (C) linwizard.sourceforge.net
11 * Author: Angelo Arrifano <miknix@gmail.com>
12 * Based on lcd_h4 by Imre Deak <imre.deak@nokia.com>
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 #include <linux/module.h>
30 #include <linux/platform_device.h>
34 /* Found on WIZ200 (miknix) and some HERA110 models (darkstar62) */
35 static struct lcd_panel htcherald_panel_1
= {
37 .config
= OMAP_LCDC_PANEL_TFT
|
40 OMAP_LCDC_INV_PIX_CLOCK
,
55 static int htcherald_panel_probe(struct platform_device
*pdev
)
57 omapfb_register_panel(&htcherald_panel_1
);
61 static struct platform_driver htcherald_panel_driver
= {
62 .probe
= htcherald_panel_probe
,
64 .name
= "lcd_htcherald",
68 module_platform_driver(htcherald_panel_driver
);
70 MODULE_AUTHOR("Cory Maccarrone");
71 MODULE_LICENSE("GPL");
72 MODULE_DESCRIPTION("LCD panel support for the HTC Herald");