This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DS90UB954-Q1: DS90UB954-Q1 pattern mode in RGB888 dispaly

Part Number: DS90UB954-Q1

Tool/software:

Dear Ti 

Now I use 1280x720p30   2  data LANE  800MHZ  RGB888  mipi csi 0

Then I use gstreamer display DS90UB954-Q1 pattern mode  in our LCD ,it dispaly grey

you can check 

There are my i2c cmds

0x1f, 0x02,
0x33, 0x21,
0xB0, 0x00,
0xB1, TI954_REG_IA_PGEN_CTL,
0xB2, 0x01,
0xB1, TI954_REG_IA_PGEB_CFG,
0xB2, 0x33,
0xB1, TI954_REG_IA_PGEN_CSI_DI,
0xB2, 0x24,
0xB1, TI954_REG_IA_PGEN_LINE_SIZE1,
0xB2, 0x0F,
0xB1, TI954_REG_IA_PGEN_LINE_SIZE0,
0xB2, 0x00,
0xB1, TI954_REG_IA_PGEN_BAR_SIZE1,
0xB2, 0x01,
0xB1, TI954_REG_IA_PGEN_BAR_SIZE0,
0xB2, 0xE0,
0xB1, TI954_REG_IA_PGEN_ACT_LPF1,
0xB2, 0x02,
0xB1, TI954_REG_IA_PGEN_ACT_LPF0,
0xB2, 0xD0,
0xB1, TI954_REG_IA_PGEN_TOT_LPF1,
0xB2, 0x02,
0xB1, TI954_REG_IA_PGEN_TOT_LPF0,
0xB2, 0xFD,
0xB1, TI954_REG_IA_PGEN_LINE_PD1,
0xB2, 0x11,
0xB1, TI954_REG_IA_PGEN_LINE_PD0,
0xB2, 0x05,
0xB1, TI954_REG_IA_PGEN_VBP,
0xB2, 0x21,
0xB1, TI954_REG_IA_PGEN_VFP,
0xB2, 0x0A,

Best regards

SUI

  • HI Sui,

    Can you get a register dump of the patgen page once you have finished programming? Can you complete the below table so I can work on getting a script with all the settings? 

    PATGEN Output   
       
    Horizontal Resolution 1280
    Vertical  Resolution 720
    Total Vertical Blanking  ?
    Vertical Front Porch ?
    Vertical Back Porch ?
    Vertical Sync  ?
    Frame Rate 30
    Video format RGB888
  • Hi Glenn Uranga

    Total Vertical Blanking       700

    Vertical Front Porch           5

    Vertical Back Porch           20

     Vertical Sync                     5

    Best regards

    SUI

  • Hi SUI,

    Sorry missed one question, What FC speed are you using 4Gbps or 4.16? I will send you an example how to program the color bar by Tuesday. 

    Glenn 

  • Hi Glenn

    I am not configure FC speed , I use default  speed how to program the color bar

    how to generate this image

    Best regards

    SUI

  • HI Sui,

    The 954 data sheet mentions the reference color bar along with that two patterns which are supported- reference color bar and fixed pattern. The provided color bar is the black and white that we have. Can you use RGB 565? This one would have color. 

    For getting a full screen color (blue), need to change the block size to 3 (for RGB888, it’s the default as well), enable fixed color pattern 0x02[7]=1’b1 and change color 0,1,2 to (0xFF, 0x00, 0x00 for blue)- RGB88 inverts the data thus the sequence is BGR for byte n,n+1 and n+2.

    Glenn