38 lines
833 B
C
38 lines
833 B
C
/**
|
|
* @file lvds_1440x540_lcd.c
|
|
* @brief lvds panel driver source.
|
|
*
|
|
* @copyright Copyright (c) 2022 Semidrive Semiconductor.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include <dispss/disp.h>
|
|
|
|
static struct display_timing timing = {
|
|
.hactive = 1440,
|
|
.hfront_porch = 100,
|
|
.hback_porch = 50,
|
|
.hsync_len = 50,
|
|
|
|
.vactive = 540,
|
|
.vfront_porch = 6,
|
|
.vback_porch = 6,
|
|
.vsync_len = 8,
|
|
.fps = 60000,
|
|
|
|
.dsp_clk_pol = LCM_POLARITY_RISING,
|
|
.de_pol = LCM_POLARITY_RISING,
|
|
.vsync_pol = LCM_POLARITY_RISING,
|
|
.hsync_pol = LCM_POLARITY_RISING,
|
|
|
|
.map_format = LVDS_MAP_FORMAT_SWPG,
|
|
};
|
|
|
|
struct sdrv_panel lvds_1440x540_lcd = {
|
|
.panel_name = "lvds_1440x540_lcd",
|
|
.if_type = IF_TYPE_LVDS,
|
|
.cmd_intf = IF_TYPE_NONE, // or CMD_INTF_NONE
|
|
.pixel_bpp = 24,
|
|
.timing = &timing,
|
|
};
|