Lines Matching refs:bo_update

1111 	struct vmw_du_update_plane_buffer *bo_update =  in vmw_stdu_bo_pre_clip_cpu()  local
1112 container_of(update, typeof(*bo_update), base); in vmw_stdu_bo_pre_clip_cpu()
1114 bo_update->fb_left = INT_MAX; in vmw_stdu_bo_pre_clip_cpu()
1115 bo_update->fb_top = INT_MAX; in vmw_stdu_bo_pre_clip_cpu()
1124 struct vmw_du_update_plane_buffer *bo_update = in vmw_stdu_bo_clip_cpu() local
1125 container_of(update, typeof(*bo_update), base); in vmw_stdu_bo_clip_cpu()
1127 bo_update->fb_left = min_t(int, bo_update->fb_left, fb_x); in vmw_stdu_bo_clip_cpu()
1128 bo_update->fb_top = min_t(int, bo_update->fb_top, fb_y); in vmw_stdu_bo_clip_cpu()
1137 struct vmw_du_update_plane_buffer *bo_update; in vmw_stdu_bo_populate_update_cpu() local
1148 bo_update = container_of(update, typeof(*bo_update), base); in vmw_stdu_bo_populate_update_cpu()
1163 src_offset = bo_update->fb_top * src_pitch + bo_update->fb_left * in vmw_stdu_bo_populate_update_cpu()
1215 struct vmw_du_update_plane_buffer bo_update; in vmw_stdu_plane_update_bo() local
1217 memset(&bo_update, 0, sizeof(struct vmw_du_update_plane_buffer)); in vmw_stdu_plane_update_bo()
1218 bo_update.base.plane = plane; in vmw_stdu_plane_update_bo()
1219 bo_update.base.old_state = old_state; in vmw_stdu_plane_update_bo()
1220 bo_update.base.dev_priv = dev_priv; in vmw_stdu_plane_update_bo()
1221 bo_update.base.du = vmw_crtc_to_du(plane->state->crtc); in vmw_stdu_plane_update_bo()
1222 bo_update.base.vfb = vfb; in vmw_stdu_plane_update_bo()
1223 bo_update.base.out_fence = out_fence; in vmw_stdu_plane_update_bo()
1224 bo_update.base.mutex = NULL; in vmw_stdu_plane_update_bo()
1225 bo_update.base.intr = false; in vmw_stdu_plane_update_bo()
1227 bo_update.base.calc_fifo_size = vmw_stdu_bo_fifo_size_cpu; in vmw_stdu_plane_update_bo()
1228 bo_update.base.pre_clip = vmw_stdu_bo_pre_clip_cpu; in vmw_stdu_plane_update_bo()
1229 bo_update.base.clip = vmw_stdu_bo_clip_cpu; in vmw_stdu_plane_update_bo()
1230 bo_update.base.post_clip = vmw_stdu_bo_populate_update_cpu; in vmw_stdu_plane_update_bo()
1232 return vmw_du_helper_plane_update(&bo_update.base); in vmw_stdu_plane_update_bo()