Lines Matching refs:rpf
39 static inline void vsp1_rpf_write(struct vsp1_rwpf *rpf, in vsp1_rpf_write() argument
42 vsp1_dl_body_write(dlb, reg + rpf->entity.index * VI6_RPF_OFFSET, in vsp1_rpf_write()
63 struct vsp1_rwpf *rpf = to_rwpf(&entity->subdev); in rpf_configure_stream() local
64 const struct vsp1_format_info *fmtinfo = rpf->fmtinfo; in rpf_configure_stream()
65 const struct v4l2_pix_format_mplane *format = &rpf->format; in rpf_configure_stream()
88 vsp1_rpf_write(rpf, dlb, VI6_RPF_SRCM_PSTRIDE, pstride); in rpf_configure_stream()
91 sink_format = vsp1_entity_get_pad_format(&rpf->entity, in rpf_configure_stream()
92 rpf->entity.config, in rpf_configure_stream()
94 source_format = vsp1_entity_get_pad_format(&rpf->entity, in rpf_configure_stream()
95 rpf->entity.config, in rpf_configure_stream()
109 vsp1_rpf_write(rpf, dlb, VI6_RPF_INFMT, infmt); in rpf_configure_stream()
110 vsp1_rpf_write(rpf, dlb, VI6_RPF_DSWAP, fmtinfo->swap); in rpf_configure_stream()
118 rpf->brx_input, in rpf_configure_stream()
127 vsp1_rpf_write(rpf, dlb, VI6_RPF_LOC, in rpf_configure_stream()
154 vsp1_rpf_write(rpf, dlb, VI6_RPF_ALPH_SEL, VI6_RPF_ALPH_SEL_AEXT_EXT | in rpf_configure_stream()
188 rpf->mult_alpha = mult; in rpf_configure_stream()
191 vsp1_rpf_write(rpf, dlb, VI6_RPF_MSK_CTRL, 0); in rpf_configure_stream()
192 vsp1_rpf_write(rpf, dlb, VI6_RPF_CKEY_CTRL, 0); in rpf_configure_stream()
196 static void vsp1_rpf_configure_autofld(struct vsp1_rwpf *rpf, in vsp1_rpf_configure_autofld() argument
199 const struct v4l2_pix_format_mplane *format = &rpf->format; in vsp1_rpf_configure_autofld()
210 auto_fld = &auto_fld[rpf->entity.index]; in vsp1_rpf_configure_autofld()
212 auto_fld->top_y0 = rpf->mem.addr[0]; in vsp1_rpf_configure_autofld()
213 auto_fld->top_c0 = rpf->mem.addr[1]; in vsp1_rpf_configure_autofld()
214 auto_fld->top_c1 = rpf->mem.addr[2]; in vsp1_rpf_configure_autofld()
219 auto_fld->bottom_y0 = rpf->mem.addr[0] + offset_y; in vsp1_rpf_configure_autofld()
220 auto_fld->bottom_c0 = rpf->mem.addr[1] + offset_c; in vsp1_rpf_configure_autofld()
221 auto_fld->bottom_c1 = rpf->mem.addr[2] + offset_c; in vsp1_rpf_configure_autofld()
223 cmd->flags |= VI6_DL_EXT_AUTOFLD_INT | BIT(16 + rpf->entity.index); in vsp1_rpf_configure_autofld()
231 struct vsp1_rwpf *rpf = to_rwpf(&entity->subdev); in rpf_configure_frame() local
233 vsp1_rpf_write(rpf, dlb, VI6_RPF_VRTCOL_SET, in rpf_configure_frame()
234 rpf->alpha << VI6_RPF_VRTCOL_SET_LAYA_SHIFT); in rpf_configure_frame()
235 vsp1_rpf_write(rpf, dlb, VI6_RPF_MULT_ALPHA, rpf->mult_alpha | in rpf_configure_frame()
236 (rpf->alpha << VI6_RPF_MULT_ALPHA_RATIO_SHIFT)); in rpf_configure_frame()
238 vsp1_pipeline_propagate_alpha(pipe, dlb, rpf->alpha); in rpf_configure_frame()
246 struct vsp1_rwpf *rpf = to_rwpf(&entity->subdev); in rpf_configure_partition() local
247 struct vsp1_rwpf_memory mem = rpf->mem; in rpf_configure_partition()
248 struct vsp1_device *vsp1 = rpf->entity.vsp1; in rpf_configure_partition()
249 const struct vsp1_format_info *fmtinfo = rpf->fmtinfo; in rpf_configure_partition()
250 const struct v4l2_pix_format_mplane *format = &rpf->format; in rpf_configure_partition()
261 crop = *vsp1_rwpf_get_crop(rpf, rpf->entity.config); in rpf_configure_partition()
274 crop.width = pipe->partition->rpf.width; in rpf_configure_partition()
275 crop.left += pipe->partition->rpf.left; in rpf_configure_partition()
283 vsp1_rpf_write(rpf, dlb, VI6_RPF_SRC_BSIZE, in rpf_configure_partition()
286 vsp1_rpf_write(rpf, dlb, VI6_RPF_SRC_ESIZE, in rpf_configure_partition()
316 vsp1_rpf_configure_autofld(rpf, dl); in rpf_configure_partition()
318 vsp1_rpf_write(rpf, dlb, VI6_RPF_SRCM_ADDR_Y, mem.addr[0]); in rpf_configure_partition()
319 vsp1_rpf_write(rpf, dlb, VI6_RPF_SRCM_ADDR_C0, mem.addr[1]); in rpf_configure_partition()
320 vsp1_rpf_write(rpf, dlb, VI6_RPF_SRCM_ADDR_C1, mem.addr[2]); in rpf_configure_partition()
330 partition->rpf = *window; in rpf_partition()
346 struct vsp1_rwpf *rpf; in vsp1_rpf_create() local
350 rpf = devm_kzalloc(vsp1->dev, sizeof(*rpf), GFP_KERNEL); in vsp1_rpf_create()
351 if (rpf == NULL) in vsp1_rpf_create()
354 rpf->max_width = RPF_MAX_WIDTH; in vsp1_rpf_create()
355 rpf->max_height = RPF_MAX_HEIGHT; in vsp1_rpf_create()
357 rpf->entity.ops = &rpf_entity_ops; in vsp1_rpf_create()
358 rpf->entity.type = VSP1_ENTITY_RPF; in vsp1_rpf_create()
359 rpf->entity.index = index; in vsp1_rpf_create()
362 ret = vsp1_entity_init(vsp1, &rpf->entity, name, 2, &rpf_ops, in vsp1_rpf_create()
368 ret = vsp1_rwpf_init_ctrls(rpf, 0); in vsp1_rpf_create()
375 v4l2_ctrl_handler_setup(&rpf->ctrls); in vsp1_rpf_create()
377 return rpf; in vsp1_rpf_create()
380 vsp1_entity_destroy(&rpf->entity); in vsp1_rpf_create()