display_data lost on IMX53?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

display_data lost on IMX53?

Jump to solution
649 Views
woutervh
Contributor IV

We are outputting as RGB24 on the displayport.

However, we see that some LSB's gets lost (actually, not really lost, but getting replaced some of the MSB's)

With walking 1's, it looks like (measured with the scope)

I'm using the linux 2.6.35 kernel from release 9.11 (git). Anyone has any clue?

R:

bit0 : 0x20 -> should be 0x01

bit1: 0x40 -> should be 0x02

bit2: 0x80 -> should be 0x04

bit3: 0x08

bit4: 0x10

bit5: 0x20

bit6: 0x40

bit7: 0x80

G:

bit0 : 0x40-> should be 0x01

bit1: 0x80 -> should be 0x02

bit2: 0x04

bit3: 0x08

bit4: 0x10

bit5: 0x20

bit6: 0x40

bit7: 0x80

B:

bit0 : 0x20 -> should be 0x01

bit1: 0x40 -> should be 0x02

bit2: 0x80 -> should be 0x04

bit3: 0x08

bit4: 0x10

bit5: 0x20

bit6: 0x40

bit7: 0x80


Labels (2)
0 Kudos
1 Solution
529 Views
max_tsai
NXP Employee
NXP Employee

hi,

You may try to configure framebuffer with 32bpp.

You can add 'bpp=32' appending video_mode of bootup command.

you can refer to "mx53_start_linux.book" as the below.

---

4. For each of the devices connected with DI, provide a specific video mode in bootup command line

in this format: video=mxcdixfb:DI_pixel_format,

video_mode,bpp=bits_per_pixel_of_frame_buffer.

View solution in original post

0 Kudos
2 Replies
530 Views
max_tsai
NXP Employee
NXP Employee

hi,

You may try to configure framebuffer with 32bpp.

You can add 'bpp=32' appending video_mode of bootup command.

you can refer to "mx53_start_linux.book" as the below.

---

4. For each of the devices connected with DI, provide a specific video mode in bootup command line

in this format: video=mxcdixfb:DI_pixel_format,

video_mode,bpp=bits_per_pixel_of_frame_buffer.

0 Kudos
529 Views
woutervh
Contributor IV

thanks

0 Kudos