Searched defs:uds (Results 1 - 5 of 5) sorted by relevance

/drivers/media/platform/vsp1/
H A Dvsp1.h60 struct vsp1_uds *uds[VSP1_MAX_UDS]; member in struct:vsp1_device
H A Dvsp1_drv.c228 struct vsp1_uds *uds; local
230 uds = vsp1_uds_create(vsp1, i);
231 if (IS_ERR(uds)) {
232 ret = PTR_ERR(uds);
236 vsp1->uds[i] = uds;
237 list_add_tail(&uds->entity.list_dev, &vsp1->entities);
481 of_property_read_u32(np, "renesas,#uds", &pdata->uds_count);
H A Dvsp1_uds.c32 static inline u32 vsp1_uds_read(struct vsp1_uds *uds, u32 reg) argument
34 return vsp1_read(uds->entity.vsp1,
35 reg + uds->entity.index * VI6_UDS_OFFSET);
38 static inline void vsp1_uds_write(struct vsp1_uds *uds, u32 reg, u32 data) argument
40 vsp1_write(uds->entity.vsp1,
41 reg + uds->entity.index * VI6_UDS_OFFSET, data);
48 void vsp1_uds_set_alpha(struct vsp1_uds *uds, unsigned int alpha) argument
50 vsp1_uds_write(uds, VI6_UDS_ALPVAL, alpha << VI6_UDS_ALPVAL_VAL0_SHIFT);
119 struct vsp1_uds *uds = to_uds(subdev); local
129 input = &uds
230 struct vsp1_uds *uds = to_uds(subdev); local
238 uds_try_format(struct vsp1_uds *uds, struct v4l2_subdev_fh *fh, unsigned int pad, struct v4l2_mbus_framefmt *fmt, enum v4l2_subdev_format_whence which) argument
277 struct vsp1_uds *uds = to_uds(subdev); local
325 struct vsp1_uds *uds; local
[all...]
H A Dvsp1_video.h82 struct vsp1_entity *uds; member in struct:vsp1_pipeline
H A Dvsp1_video.c362 if (pipe->uds)
365 pipe->uds = entity;
404 pipe->uds = NULL;
695 struct vsp1_uds *uds = to_uds(&entity->subdev); local
697 vsp1_uds_set_alpha(uds, alpha);
813 if (pipe->uds) {
814 struct vsp1_uds *uds = to_uds(&pipe->uds->subdev); local
823 uds->scale_alpha = false;
828 uds
[all...]

Completed in 68 milliseconds