Hi All,
I am trying to implement this display to be recognized under the panel-simple.c implementation in Linux.
(https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/panel/panel-simple.c)
Here is the relevant section that I am adding to panel-simple.c
static const struct display_timing displaytech_dt070btft_timing = { .pixelclock = { 45000000, 51200000, 57000000 }, .hactive = { 1024, 1024, 1024 }, .hfront_porch = { 160, 160, 160 }, .hback_porch = { 160, 160, 160 }, .hsync_len = { 20, 20, 20 }, .vactive = { 600, 600, 600 }, .vfront_porch = { 12, 12, 12 }, .vback_porch = { 23, 23, 23 }, .vsync_len = { 3, 3,... (More)