...
Parameter | Definition |
---|---|
hback-porch | Horizontal Back Porch (HBP) - Number of pixel clock pulses between HSYNC signal and the first valid pixel data. |
hfront-porch | HoriHorizontal Front porch (HFP) - Number of pixel clock pulses between the last valid pixel data in the line and the next HSYNC pulse. |
vback-porch | Vertical Back Porch (VBP) - Number of lines (HSYNC pulses) from a VSYNC signal to the first valid line. |
vfront-porch | Vertical Front Porch (VFP) - Number of lines (HSYNC pulses) between the last valid line of the frame and the next VSYNC pulse. |
hsync-len | Number of PIXCLK pulses when a HSYNC signal is active. |
vsync-len | Number of HSYNC pulses when a VSYNC signal is active. |
...
by using the open source reference available at the following path https://www.epanorama.net/faq/vga2rgb/calc.html .
...
Code Block | ||
---|---|---|
| ||
static lvds_video_spec_t lvds_video_spec_list [] = { { "WVGA [800x480]", "LDB-WVGA", "RGB666", "datamap=spwg", "", 1 }, { "SVGA [800x600]", "LDB-SVGA", "RGB666", "datamap=spwg", "", 1 }, { "XGA [1024x768]", "LDB-XGA", "RGB666", "datamap=spwg", "", 1 }, { "WXGA [1368x768]", "LDB-WXGA", "RGB24", "datamap=jeida", "", 1 }, { "WXGAP60 [1280x800]", "LDB-1280P60", "RGB24,bpp=32","datamap=spwg", "", 1 }, { "SXGA [1280x1024]", "LDB-SXGA", "RGB24", "datamap=jeida", "", 1 }, { "HD1080 [1920x1080]", "LDB-1080P60", "RGB24", "datamap=spwg", "ldb=spl0", 2 }, {<DISPLAY NAME>, <KERNEL DISPLAY NAME>, <PIXEL FORMAT>, <DATA MAPPING>, "LDB SETTING", <CHANNEL NUMBER>} }; |
with:
Field | Description |
---|---|
DISPLAY NAME |
...
name show into the resolution list when seco_config command is used | |
KERNEL DISPLAY NAME |
...
name of the resolution added into the kernel file arch/arm/boot/dts/imx6qdl-seco_lvds_display.dtsi ($name variable) | |
PIXEL FORMAT |
...
splay interface pixel format as below:
| |||
iDATA MAPPING |
...
iDATA MAPPING | |
:
:
: : color signals mapping order [ jeida | spwg | vesa ]
...