Skip to content
Snippets Groups Projects
Commit 04edda26 authored by Eric Nelson's avatar Eric Nelson Committed by Stefano Babic
Browse files

nitrogen6x: display: add support for fusion 7 display


Add support for the Touch Revolution Fusion7 display: 800x480 RGB
with a custom F0710A resistive touch controller.

Auto-detection of this panel is supported so no configuration is
required.

Signed-off-by: default avatarEric Nelson <eric.nelson@boundarydevices.com>
parent d6949e3f
No related branches found
No related tags found
No related merge requests found
...@@ -613,6 +613,26 @@ struct display_info_t const displays[] = {{ ...@@ -613,6 +613,26 @@ struct display_info_t const displays[] = {{
.vsync_len = 10, .vsync_len = 10,
.sync = FB_SYNC_EXT, .sync = FB_SYNC_EXT,
.vmode = FB_VMODE_NONINTERLACED .vmode = FB_VMODE_NONINTERLACED
} }, {
.bus = 2,
.addr = 0x10,
.pixfmt = IPU_PIX_FMT_RGB666,
.detect = detect_i2c,
.enable = enable_rgb,
.mode = {
.name = "fusion7",
.refresh = 60,
.xres = 800,
.yres = 480,
.pixclock = 33898,
.left_margin = 96,
.right_margin = 24,
.upper_margin = 3,
.lower_margin = 10,
.hsync_len = 72,
.vsync_len = 7,
.sync = 0x40000002,
.vmode = FB_VMODE_NONINTERLACED
} }, { } }, {
.bus = 2, .bus = 2,
.addr = 0x48, .addr = 0x48,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment