mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
62 lines
1.6 KiB
C
62 lines
1.6 KiB
C
/* Copyright (c) 2009-2010, 2012 Code Aurora Forum. All rights reserved.
|
|||
*
|
|||
* This program is free software; you can redistribute it and/or modify
|
|||
* it under the terms of the GNU General Public License version 2 and
|
|||
* only version 2 as published by the Free Software Foundation.
|
|||
*
|
|||
* This program is distributed in the hope that it will be useful,
|
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
* GNU General Public License for more details.
|
|||
*
|
|||
*/
|
|||
|
|||
#include "msm_fb.h"
|
|||
#include "mddihost.h"
|
|||
#include "mddi_toshiba.h"
|
|||
|
|||
static int __init mddi_toshiba_wvga_init(void)
|
|||
{
|
|||
int ret;
|
|||
struct msm_panel_info pinfo;
|
|||
|
|||
#ifdef CONFIG_FB_MSM_MDDI_AUTO_DETECT
|
|||
if (msm_fb_detect_client("mddi_toshiba_wvga"))
|
|||
return 0;
|
|||
#endif
|
|||
|
|||
pinfo.xres = 800;
|
|||
pinfo.yres = 480;
|
|||
MSM_FB_SINGLE_MODE_PANEL(&pinfo);
|
|||
pinfo.pdest = DISPLAY_2;
|
|||
pinfo.type = MDDI_PANEL;
|
|||
pinfo.mddi.vdopkt = MDDI_DEFAULT_PRIM_PIX_ATTR;
|
|||
pinfo.wait_cycle = 0;
|
|||
pinfo.bpp = 18;
|
|||
pinfo.lcd.vsync_enable = TRUE;
|
|||
pinfo.mddi.is_type1 = TRUE;
|
|||
pinfo.lcd.refx100 = 6118;
|
|||
pinfo.lcd.v_back_porch = 6;
|
|||
pinfo.lcd.v_front_porch = 0;
|
|||
pinfo.lcd.v_pulse_width = 0;
|
|||
pinfo.lcd.hw_vsync_mode = FALSE;
|
|||
pinfo.lcd.vsync_notifier_period = (1 * HZ);
|
|||
pinfo.bl_max = 4;
|
|||
pinfo.bl_min = 1;
|
|||
pinfo.clk_rate = 192000000;
|
|||
pinfo.clk_min = 190000000;
|
|||
pinfo.clk_max = 200000000;
|
|||
pinfo.fb_num = 2;
|
|||
|
|||
ret = mddi_toshiba_device_register(&pinfo, TOSHIBA_VGA_PRIM,
|
|||
LCD_TOSHIBA_2P4_WVGA);
|
|||
if (ret) {
|
|||
printk(KERN_ERR "%s: failed to register device!\n", __func__);
|
|||
return ret;
|
|||
}
|
|||
|
|||
return ret;
|
|||
}
|
|||
|
|||
module_init(mddi_toshiba_wvga_init);
|