Current setting uses a 256 bytes/request for anything less than 1080p.
This works when DTRC is not involved. However, with DTRC, the
MAX_BYTES_PREQ needs to be fine tuned a little.
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@nxp.com>
dcss_dpr_write(dpr, ch_num, pix_y_high,
DCSS_DPR_FRAME_1P_PIX_Y_CTRL + plane * gap);
- dcss_dpr_write(dpr,
- ch_num, xres < 1920 ? 2 : xres > 1920 ? 6 : 5,
+ dcss_dpr_write(dpr, ch_num, xres < 640 ? 3 :
+ xres < 1280 ? 4 : xres < 3840 ? 5 : 6,
DCSS_DPR_FRAME_1P_CTRL0 + plane * gap);
}
}