bdk: display: reduce display off waiting time

And align oled panel inside vblank.
Assumes display deinit happens before the rest of deinit.
This commit is contained in:
CTCaer
2026-01-20 06:13:02 +02:00
parent 28ebdc213e
commit 3134af6e92
2 changed files with 9 additions and 11 deletions

View File

@@ -694,8 +694,8 @@ static void _display_panel_and_hw_end(bool no_panel_deinit)
DSI(DSI_WR_DATA) = (MIPI_DCS_SET_DISPLAY_OFF << 8) | MIPI_DSI_DCS_SHORT_WRITE;
// Wait for 5 frames (HOST1X_CH0_SYNC_SYNCPT_9).
// Not here. Wait for 1 frame manually.
usleep(20000);
// Not here. Wait for 1 frame + transmission manually.
usleep((_panel_id == PANEL_SAM_AMS699VC01) ? (15933 + 195) : (16666 + 230));
// Propagate changes to all register buffers and disable host cmd packets during video.
DISPLAY_A(DC_CMD_STATE_ACCESS) = READ_MUX_ACTIVE | WRITE_MUX_ACTIVE;