Home
last modified time | relevance | path

Searched refs:wpl (Results 1 – 4 of 4) sorted by relevance

/linux-5.19.10/drivers/media/platform/qcom/camss/
Dcamss-vfe-4-1.c310 u16 width = 0, height = 0, bytesperline = 0, wpl; in vfe_wm_line_based() local
314 wpl = vfe_word_per_line(pix->pixelformat, width); in vfe_wm_line_based()
317 reg |= ((wpl + 1) / 2 - 1) << 16; in vfe_wm_line_based()
322 wpl = vfe_word_per_line(pix->pixelformat, bytesperline); in vfe_wm_line_based()
326 reg |= wpl << 16; in vfe_wm_line_based()
Dcamss-vfe-4-7.c403 u16 width = 0, height = 0, bytesperline = 0, wpl; in vfe_wm_line_based() local
407 wpl = vfe_word_per_line_by_pixel(pix->pixelformat, width); in vfe_wm_line_based()
410 reg |= ((wpl + 3) / 4 - 1) << 16; in vfe_wm_line_based()
415 wpl = vfe_word_per_line_by_bytes(bytesperline); in vfe_wm_line_based()
419 reg |= ((wpl + 1) / 2) << 16; in vfe_wm_line_based()
Dcamss-vfe-4-8.c376 u16 width = 0, height = 0, bytesperline = 0, wpl; in vfe_wm_line_based() local
380 wpl = vfe_word_per_line_by_pixel(pix->pixelformat, width); in vfe_wm_line_based()
383 reg |= ((wpl + 3) / 4 - 1) << 16; in vfe_wm_line_based()
388 wpl = vfe_word_per_line_by_bytes(bytesperline); in vfe_wm_line_based()
392 reg |= ((wpl + 1) / 2) << 16; in vfe_wm_line_based()
/linux-5.19.10/drivers/gpu/drm/xlnx/
Dzynqmp_dp.c1236 u32 reg, wpl; in zynqmp_dp_encoder_mode_set_stream() local
1277 wpl = (mode->hdisplay * dp->config.bpp + 15) / 16; in zynqmp_dp_encoder_mode_set_stream()
1278 reg = wpl + wpl % lane_cnt - lane_cnt; in zynqmp_dp_encoder_mode_set_stream()