blob: ca82def6aef36e13e2347fa7d8e690030fd8cf0c [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#include "msm_fb.h"
15
16static int __init lcdc_external_init(void)
17{
18 int ret;
19 struct msm_panel_info pinfo;
20
21 if (msm_fb_detect_client("lcdc_external"))
22 return 0;
23
24 pinfo.xres = 1280;
25 pinfo.yres = 720;
26 MSM_FB_SINGLE_MODE_PANEL(&pinfo);
27 pinfo.type = LCDC_PANEL;
28 pinfo.pdest = DISPLAY_1;
29 pinfo.wait_cycle = 0;
30 pinfo.bpp = 24;
31 pinfo.fb_num = 2;
32 pinfo.clk_rate = 74250000;
33
34 pinfo.lcdc.h_back_porch = 124;
35 pinfo.lcdc.h_front_porch = 110;
36 pinfo.lcdc.h_pulse_width = 136;
37 pinfo.lcdc.v_back_porch = 19;
38 pinfo.lcdc.v_front_porch = 5;
39 pinfo.lcdc.v_pulse_width = 6;
40 pinfo.lcdc.border_clr = 0; /* blk */
41 pinfo.lcdc.underflow_clr = 0xff; /* blue */
42 pinfo.lcdc.hsync_skew = 0;
43
44 ret = lcdc_device_register(&pinfo);
45 if (ret)
46 printk(KERN_ERR "%s: failed to register device!\n", __func__);
47
48 return ret;
49}
50
51module_init(lcdc_external_init);