/linux-6.1.9/drivers/gpu/drm/tests/ |
D | drm_plane_helper_test.c | 14 static void set_src(struct drm_plane_state *plane_state, in set_src() argument 18 plane_state->src_x = src_x; in set_src() 19 plane_state->src_y = src_y; in set_src() 20 plane_state->src_w = src_w; in set_src() 21 plane_state->src_h = src_h; in set_src() 24 static bool check_src_eq(struct drm_plane_state *plane_state, in check_src_eq() argument 28 if (plane_state->src.x1 < 0) { in check_src_eq() 29 pr_err("src x coordinate %x should never be below 0.\n", plane_state->src.x1); in check_src_eq() 30 drm_rect_debug_print("src: ", &plane_state->src, true); in check_src_eq() 33 if (plane_state->src.y1 < 0) { in check_src_eq() [all …]
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/core/ |
D | dc_surface.c | 38 static void dc_plane_construct(struct dc_context *ctx, struct dc_plane_state *plane_state) in dc_plane_construct() argument 40 plane_state->ctx = ctx; in dc_plane_construct() 42 plane_state->gamma_correction = dc_create_gamma(); in dc_plane_construct() 43 if (plane_state->gamma_correction != NULL) in dc_plane_construct() 44 plane_state->gamma_correction->is_identity = true; in dc_plane_construct() 46 plane_state->in_transfer_func = dc_create_transfer_func(); in dc_plane_construct() 47 if (plane_state->in_transfer_func != NULL) { in dc_plane_construct() 48 plane_state->in_transfer_func->type = TF_TYPE_BYPASS; in dc_plane_construct() 50 plane_state->in_shaper_func = dc_create_transfer_func(); in dc_plane_construct() 51 if (plane_state->in_shaper_func != NULL) { in dc_plane_construct() [all …]
|
D | dc_debug.c | 66 const struct dc_plane_state *plane_state = plane_states[i]; in pre_surface_trace() local 80 plane_state->visible, in pre_surface_trace() 81 plane_state->flip_immediate, in pre_surface_trace() 82 plane_state->address.type, in pre_surface_trace() 83 plane_state->address.grph.addr.quad_part, in pre_surface_trace() 84 plane_state->address.grph.meta_addr.quad_part, in pre_surface_trace() 85 plane_state->scaling_quality.h_taps, in pre_surface_trace() 86 plane_state->scaling_quality.v_taps, in pre_surface_trace() 87 plane_state->scaling_quality.h_taps_c, in pre_surface_trace() 88 plane_state->scaling_quality.v_taps_c); in pre_surface_trace() [all …]
|
/linux-6.1.9/drivers/gpu/drm/i915/display/ |
D | intel_cursor.c | 31 static u32 intel_cursor_base(const struct intel_plane_state *plane_state) in intel_cursor_base() argument 34 to_i915(plane_state->uapi.plane->dev); in intel_cursor_base() 35 const struct drm_framebuffer *fb = plane_state->hw.fb; in intel_cursor_base() 42 base = intel_plane_ggtt_offset(plane_state); in intel_cursor_base() 44 return base + plane_state->view.color_plane[0].offset; in intel_cursor_base() 47 static u32 intel_cursor_position(const struct intel_plane_state *plane_state) in intel_cursor_position() argument 49 int x = plane_state->uapi.dst.x1; in intel_cursor_position() 50 int y = plane_state->uapi.dst.y1; in intel_cursor_position() 68 static bool intel_cursor_size_ok(const struct intel_plane_state *plane_state) in intel_cursor_size_ok() argument 71 &plane_state->uapi.plane->dev->mode_config; in intel_cursor_size_ok() [all …]
|
D | skl_universal_plane.c | 256 const struct intel_plane_state *plane_state) in icl_plane_min_cdclk() argument 258 unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state, plane_state); in icl_plane_min_cdclk() 265 glk_plane_ratio(const struct intel_plane_state *plane_state, in glk_plane_ratio() argument 268 const struct drm_framebuffer *fb = plane_state->hw.fb; in glk_plane_ratio() 280 const struct intel_plane_state *plane_state) in glk_plane_min_cdclk() argument 282 unsigned int pixel_rate = intel_plane_pixel_rate(crtc_state, plane_state); in glk_plane_min_cdclk() 285 glk_plane_ratio(plane_state, &num, &den); in glk_plane_min_cdclk() 292 skl_plane_ratio(const struct intel_plane_state *plane_state, in skl_plane_ratio() argument 295 const struct drm_framebuffer *fb = plane_state->hw.fb; in skl_plane_ratio() 307 const struct intel_plane_state *plane_state) in skl_plane_min_cdclk() argument [all …]
|
D | intel_sprite.c | 56 int intel_plane_check_src_coordinates(struct intel_plane_state *plane_state) in intel_plane_check_src_coordinates() argument 58 struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev); in intel_plane_check_src_coordinates() 59 const struct drm_framebuffer *fb = plane_state->hw.fb; in intel_plane_check_src_coordinates() 60 struct drm_rect *src = &plane_state->uapi.src; in intel_plane_check_src_coordinates() 62 bool rotated = drm_rotation_90_or_270(plane_state->hw.rotation); in intel_plane_check_src_coordinates() 125 chv_sprite_update_csc(const struct intel_plane_state *plane_state) in chv_sprite_update_csc() argument 127 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); in chv_sprite_update_csc() 129 const struct drm_framebuffer *fb = plane_state->hw.fb; in chv_sprite_update_csc() 155 const s16 *csc = csc_matrix[plane_state->hw.color_encoding]; in chv_sprite_update_csc() 197 vlv_sprite_update_clrc(const struct intel_plane_state *plane_state) in vlv_sprite_update_clrc() argument [all …]
|
D | intel_atomic_plane.c | 49 static void intel_plane_state_reset(struct intel_plane_state *plane_state, in intel_plane_state_reset() argument 52 memset(plane_state, 0, sizeof(*plane_state)); in intel_plane_state_reset() 54 __drm_atomic_helper_plane_state_reset(&plane_state->uapi, &plane->base); in intel_plane_state_reset() 56 plane_state->scaler_id = -1; in intel_plane_state_reset() 61 struct intel_plane_state *plane_state; in intel_plane_alloc() local 68 plane_state = kzalloc(sizeof(*plane_state), GFP_KERNEL); in intel_plane_alloc() 69 if (!plane_state) { in intel_plane_alloc() 74 intel_plane_state_reset(plane_state, plane); in intel_plane_alloc() 76 plane->base.state = &plane_state->uapi; in intel_plane_alloc() 132 struct intel_plane_state *plane_state = to_intel_plane_state(state); in intel_plane_destroy_state() local [all …]
|
D | intel_fbc.c | 124 static unsigned int intel_fbc_plane_stride(const struct intel_plane_state *plane_state) in intel_fbc_plane_stride() argument 126 const struct drm_framebuffer *fb = plane_state->hw.fb; in intel_fbc_plane_stride() 129 stride = plane_state->view.color_plane[0].mapping_stride; in intel_fbc_plane_stride() 130 if (!drm_rotation_90_or_270(plane_state->hw.rotation)) in intel_fbc_plane_stride() 137 static unsigned int _intel_fbc_cfb_stride(const struct intel_plane_state *plane_state) in _intel_fbc_cfb_stride() argument 141 return intel_fbc_plane_stride(plane_state) * cpp; in _intel_fbc_cfb_stride() 145 static unsigned int skl_fbc_min_cfb_stride(const struct intel_plane_state *plane_state) in skl_fbc_min_cfb_stride() argument 147 struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev); in skl_fbc_min_cfb_stride() 150 unsigned int width = drm_rect_width(&plane_state->uapi.src) >> 16; in skl_fbc_min_cfb_stride() 175 static unsigned int intel_fbc_cfb_stride(const struct intel_plane_state *plane_state) in intel_fbc_cfb_stride() argument [all …]
|
D | intel_plane_initial.c | 27 struct intel_plane_state *plane_state = in intel_reuse_initial_plane_obj() local 33 if (!plane_state->ggtt_vma) in intel_reuse_initial_plane_obj() 36 if (intel_plane_ggtt_offset(plane_state) == plane_config->base) { in intel_reuse_initial_plane_obj() 37 *fb = plane_state->hw.fb; in intel_reuse_initial_plane_obj() 38 *vma = plane_state->ggtt_vma; in intel_reuse_initial_plane_obj() 216 struct intel_plane_state *plane_state = in intel_find_initial_plane_obj() local 254 plane_state->uapi.rotation = plane_config->rotation; in intel_find_initial_plane_obj() 256 plane_state->uapi.rotation, &plane_state->view); in intel_find_initial_plane_obj() 259 plane_state->ggtt_vma = i915_vma_get(vma); in intel_find_initial_plane_obj() 260 if (intel_plane_uses_fence(plane_state) && in intel_find_initial_plane_obj() [all …]
|
D | i9xx_plane.c | 150 const struct intel_plane_state *plane_state) in i9xx_plane_ctl() argument 153 to_i915(plane_state->uapi.plane->dev); in i9xx_plane_ctl() 154 const struct drm_framebuffer *fb = plane_state->hw.fb; in i9xx_plane_ctl() 155 unsigned int rotation = plane_state->hw.rotation; in i9xx_plane_ctl() 222 int i9xx_check_plane_surface(struct intel_plane_state *plane_state) in i9xx_check_plane_surface() argument 225 to_i915(plane_state->uapi.plane->dev); in i9xx_check_plane_surface() 226 const struct drm_framebuffer *fb = plane_state->hw.fb; in i9xx_check_plane_surface() 231 ret = intel_plane_compute_gtt(plane_state); in i9xx_check_plane_surface() 235 if (!plane_state->uapi.visible) in i9xx_check_plane_surface() 238 src_w = drm_rect_width(&plane_state->uapi.src) >> 16; in i9xx_check_plane_surface() [all …]
|
D | intel_atomic_plane.h | 25 const struct intel_plane_state *plane_state); 28 const struct intel_plane_state *plane_state, 30 void intel_plane_copy_uapi_to_hw_state(struct intel_plane_state *plane_state, 33 void intel_plane_copy_hw_state(struct intel_plane_state *plane_state, 37 const struct intel_plane_state *plane_state); 40 const struct intel_plane_state *plane_state); 61 int intel_atomic_plane_check_clipping(struct intel_plane_state *plane_state, 66 struct intel_plane_state *plane_state);
|
D | skl_scaler.c | 216 struct intel_plane_state *plane_state) in skl_update_scaler_plane() argument 219 to_intel_plane(plane_state->uapi.plane); in skl_update_scaler_plane() 221 struct drm_framebuffer *fb = plane_state->hw.fb; in skl_update_scaler_plane() 223 bool force_detach = !fb || !plane_state->uapi.visible; in skl_update_scaler_plane() 233 &plane_state->scaler_id, in skl_update_scaler_plane() 234 drm_rect_width(&plane_state->uapi.src) >> 16, in skl_update_scaler_plane() 235 drm_rect_height(&plane_state->uapi.src) >> 16, in skl_update_scaler_plane() 236 drm_rect_width(&plane_state->uapi.dst), in skl_update_scaler_plane() 237 drm_rect_height(&plane_state->uapi.dst), in skl_update_scaler_plane() 242 if (ret || plane_state->scaler_id < 0) in skl_update_scaler_plane() [all …]
|
D | intel_fb_pin.c | 239 int intel_plane_pin_fb(struct intel_plane_state *plane_state) in intel_plane_pin_fb() argument 241 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); in intel_plane_pin_fb() 243 struct drm_framebuffer *fb = plane_state->hw.fb; in intel_plane_pin_fb() 251 &plane_state->view.gtt, in intel_plane_pin_fb() 252 intel_plane_uses_fence(plane_state), in intel_plane_pin_fb() 253 &plane_state->flags); in intel_plane_pin_fb() 257 plane_state->ggtt_vma = vma; in intel_plane_pin_fb() 265 plane_state->ggtt_vma = vma; in intel_plane_pin_fb() 267 vma = intel_pin_fb_obj_dpt(fb, &plane_state->view.gtt, false, in intel_plane_pin_fb() 268 &plane_state->flags, intel_fb->dpt_vm); in intel_plane_pin_fb() [all …]
|
D | intel_sprite.h | 34 int intel_plane_check_src_coordinates(struct intel_plane_state *plane_state); 35 int chv_plane_check_rotation(const struct intel_plane_state *plane_state); 44 const struct intel_plane_state *plane_state); 46 const struct intel_plane_state *plane_state); 48 const struct intel_plane_state *plane_state);
|
D | intel_crtc_state_dump.c | 118 static void intel_dump_plane_state(const struct intel_plane_state *plane_state) in intel_dump_plane_state() argument 120 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); in intel_dump_plane_state() 122 const struct drm_framebuffer *fb = plane_state->hw.fb; in intel_dump_plane_state() 128 str_yes_no(plane_state->uapi.visible)); in intel_dump_plane_state() 136 fb->modifier, str_yes_no(plane_state->uapi.visible)); in intel_dump_plane_state() 138 plane_state->hw.rotation, plane_state->scaler_id, plane_state->hw.scaling_filter); in intel_dump_plane_state() 139 if (plane_state->uapi.visible) in intel_dump_plane_state() 142 DRM_RECT_FP_ARG(&plane_state->uapi.src), in intel_dump_plane_state() 143 DRM_RECT_ARG(&plane_state->uapi.dst)); in intel_dump_plane_state() 152 const struct intel_plane_state *plane_state; in intel_crtc_state_dump() local [all …]
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dce60/ |
D | dce60_hw_sequencer.c | 101 if (!pipe_ctx->plane_state) in dce60_should_enable_fbc() 105 if (pipe_ctx->plane_state->tiling_info.gfx8.array_mode == DC_ARRAY_LINEAR_GENERAL) in dce60_should_enable_fbc() 148 default_adjust.in_color_space = pipe_ctx->plane_state->color_space; in dce60_set_default_colors() 188 if (!pipe_ctx->plane_state->visible) in dce60_program_surface_visibility() 274 struct dc_plane_state *plane_state = pipe_ctx->plane_state; in dce60_program_front_end_for_pipe() local 318 plane_state->format, in dce60_program_front_end_for_pipe() 319 &plane_state->tiling_info, in dce60_program_front_end_for_pipe() 320 &plane_state->plane_size, in dce60_program_front_end_for_pipe() 321 plane_state->rotation, in dce60_program_front_end_for_pipe() 325 mi->funcs->set_blank(mi, pipe_ctx->plane_state->visible); in dce60_program_front_end_for_pipe() [all …]
|
/linux-6.1.9/drivers/gpu/drm/ |
D | drm_gem_atomic_helper.c | 223 struct drm_plane_state *plane_state) in drm_gem_simple_display_pipe_prepare_fb() argument 225 return drm_gem_plane_helper_prepare_fb(&pipe->plane, plane_state); in drm_gem_simple_display_pipe_prepare_fb() 274 struct drm_plane_state *plane_state = plane->state; in drm_gem_duplicate_shadow_plane_state() local 277 if (!plane_state) in drm_gem_duplicate_shadow_plane_state() 312 struct drm_plane_state *plane_state) in drm_gem_destroy_shadow_plane_state() argument 315 to_drm_shadow_plane_state(plane_state); in drm_gem_destroy_shadow_plane_state() 377 int drm_gem_prepare_shadow_fb(struct drm_plane *plane, struct drm_plane_state *plane_state) in drm_gem_prepare_shadow_fb() argument 379 struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(plane_state); in drm_gem_prepare_shadow_fb() 380 struct drm_framebuffer *fb = plane_state->fb; in drm_gem_prepare_shadow_fb() 386 ret = drm_gem_plane_helper_prepare_fb(plane, plane_state); in drm_gem_prepare_shadow_fb() [all …]
|
D | drm_damage_helper.c | 68 struct drm_plane_state *plane_state) in drm_atomic_helper_check_plane_damage() argument 72 if (plane_state->crtc) { in drm_atomic_helper_check_plane_damage() 74 plane_state->crtc); in drm_atomic_helper_check_plane_damage() 80 drm_property_blob_put(plane_state->fb_damage_clips); in drm_atomic_helper_check_plane_damage() 81 plane_state->fb_damage_clips = NULL; in drm_atomic_helper_check_plane_damage() 160 struct drm_plane_state *plane_state; in drm_atomic_helper_dirtyfb() local 171 plane_state = drm_atomic_get_plane_state(state, plane); in drm_atomic_helper_dirtyfb() 172 if (IS_ERR(plane_state)) { in drm_atomic_helper_dirtyfb() 173 ret = PTR_ERR(plane_state); in drm_atomic_helper_dirtyfb() 177 drm_property_replace_blob(&plane_state->fb_damage_clips, in drm_atomic_helper_dirtyfb()
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/basics/ |
D | dc_common.c | 54 if (pipe_ctx->plane_state && pipe_ctx->plane_state->visible) in is_lower_pipe_tree_visible() 63 if (pipe_ctx->plane_state && pipe_ctx->plane_state->visible) in is_upper_pipe_tree_visible() 72 if (pipe_ctx->plane_state && pipe_ctx->plane_state->visible) in is_pipe_tree_visible() 82 const struct dc_plane_state *plane_state) in build_prescale_params() argument 84 if (plane_state->format >= SURFACE_PIXEL_FORMAT_VIDEO_BEGIN in build_prescale_params() 85 && plane_state->format != SURFACE_PIXEL_FORMAT_INVALID in build_prescale_params() 86 && plane_state->input_csc_color_matrix.enable_adjustment in build_prescale_params() 87 && plane_state->coeff_reduction_factor.value != 0) { in build_prescale_params() 89 dc_fixpt_mul(plane_state->coeff_reduction_factor, in build_prescale_params()
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dcn20/ |
D | dcn20_hwseq.c | 602 pipe_ctx->plane_state = NULL; in dcn20_plane_atomic_disable() 865 struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state) in dcn20_set_blend_lut() argument 871 if (plane_state->blend_tf) { in dcn20_set_blend_lut() 872 if (plane_state->blend_tf->type == TF_TYPE_HWPWL) in dcn20_set_blend_lut() 873 blend_lut = &plane_state->blend_tf->pwl; in dcn20_set_blend_lut() 874 else if (plane_state->blend_tf->type == TF_TYPE_DISTRIBUTED_POINTS) { in dcn20_set_blend_lut() 876 plane_state->blend_tf, in dcn20_set_blend_lut() 887 struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state) in dcn20_set_shaper_3dlut() argument 893 if (plane_state->in_shaper_func) { in dcn20_set_shaper_3dlut() 894 if (plane_state->in_shaper_func->type == TF_TYPE_HWPWL) in dcn20_set_shaper_3dlut() [all …]
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dcn32/ |
D | dcn32_resource_helpers.c | 78 if (pipe->stream && pipe->plane_state && in dcn32_helper_calculate_num_ways_for_subvp() 92 bytes_per_pixel = pipe->plane_state->format >= SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616 ? 8 : 4; in dcn32_helper_calculate_num_ways_for_subvp() 130 if (pipe->plane_state->dcc.enable) in dcn32_helper_calculate_num_ways_for_subvp() 168 pipe->plane_state = NULL; in dcn32_merge_pipes_for_subvp() 176 } else if (pipe->top_pipe && pipe->top_pipe->plane_state == pipe->plane_state) { in dcn32_merge_pipes_for_subvp() 186 pipe->plane_state = NULL; in dcn32_merge_pipes_for_subvp() 205 if (!pipe->plane_state) in dcn32_all_pipes_have_stream_and_plane() 247 if (pipe->plane_state && pipe->plane_state->rotation != ROTATION_ANGLE_0) in dcn32_any_surfaces_rotated() 317 current_plane = context->res_ctx.pipe_ctx[j].plane_state; in dcn32_determine_det_override() 320 context->res_ctx.pipe_ctx[k].plane_state == current_plane) { in dcn32_determine_det_override() [all …]
|
D | dcn32_hwseq.c | 230 if (!pipe->stream || !pipe->plane_state || in dcn32_calculate_cab_allocation() 235 bytes_per_pixel = pipe->plane_state->format >= SURFACE_PIXEL_FORMAT_GRPH_ARGB16161616 ? 8 : 4; in dcn32_calculate_cab_allocation() 263 if (pipe->plane_state->dcc.enable) in dcn32_calculate_cab_allocation() 281 if (pipe->stream && pipe->plane_state && hubp) in dcn32_calculate_cab_allocation() 482 if (pipe->stream && pipe->plane_state && pipe->stream->mall_stream_config.type == SUBVP_MAIN) { in dcn32_subvp_pipe_control_lock() 488 if (top_pipe_to_program && top_pipe_to_program->stream && top_pipe_to_program->plane_state) { in dcn32_subvp_pipe_control_lock() 490 top_pipe_to_program->plane_state->flip_immediate) in dcn32_subvp_pipe_control_lock() 501 if (pipe->stream && pipe->plane_state && pipe->stream->mall_stream_config.type == SUBVP_MAIN && in dcn32_subvp_pipe_control_lock() 553 struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state) in dcn32_set_mcm_luts() argument 562 if (plane_state->blend_tf) { in dcn32_set_mcm_luts() [all …]
|
/linux-6.1.9/include/drm/ |
D | drm_gem_atomic_helper.h | 19 struct drm_plane_state *plane_state); 92 struct drm_plane_state *plane_state); 106 int drm_gem_prepare_shadow_fb(struct drm_plane *plane, struct drm_plane_state *plane_state); 107 void drm_gem_cleanup_shadow_fb(struct drm_plane *plane, struct drm_plane_state *plane_state); 122 struct drm_plane_state *plane_state); 124 struct drm_plane_state *plane_state); 129 struct drm_plane_state *plane_state);
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dcn201/ |
D | dcn201_hwseq.c | 59 struct dc_plane_state *plane_state = pipe_ctx->plane_state; in patch_address_for_sbs_tb_stereo() local 61 pipe_ctx->top_pipe->plane_state == pipe_ctx->plane_state; in patch_address_for_sbs_tb_stereo() 63 if (sec_split && plane_state->address.type == PLN_ADDR_TYPE_GRPH_STEREO && in patch_address_for_sbs_tb_stereo() 68 *addr = plane_state->address.grph_stereo.left_addr; in patch_address_for_sbs_tb_stereo() 69 plane_state->address.grph_stereo.left_addr = in patch_address_for_sbs_tb_stereo() 70 plane_state->address.grph_stereo.right_addr; in patch_address_for_sbs_tb_stereo() 74 plane_state->address.type != PLN_ADDR_TYPE_GRPH_STEREO) { in patch_address_for_sbs_tb_stereo() 75 plane_state->address.type = PLN_ADDR_TYPE_GRPH_STEREO; in patch_address_for_sbs_tb_stereo() 76 plane_state->address.grph_stereo.right_addr = in patch_address_for_sbs_tb_stereo() 77 plane_state->address.grph_stereo.left_addr; in patch_address_for_sbs_tb_stereo() [all …]
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dc/dcn10/ |
D | dcn10_hw_sequencer.c | 113 !pipe_ctx->plane_state || in dcn10_lock_all_pipes() 1197 if (opp != NULL && !pipe_ctx->plane_state->is_phantom) in dcn10_plane_atomic_disconnect() 1280 pipe_ctx->plane_state = NULL; in dcn10_plane_atomic_disable() 1711 struct dc_plane_state *plane_state = pipe_ctx->plane_state; in patch_address_for_sbs_tb_stereo() local 1713 pipe_ctx->top_pipe->plane_state == pipe_ctx->plane_state; in patch_address_for_sbs_tb_stereo() 1714 if (sec_split && plane_state->address.type == PLN_ADDR_TYPE_GRPH_STEREO && in patch_address_for_sbs_tb_stereo() 1719 *addr = plane_state->address.grph_stereo.left_addr; in patch_address_for_sbs_tb_stereo() 1720 plane_state->address.grph_stereo.left_addr = in patch_address_for_sbs_tb_stereo() 1721 plane_state->address.grph_stereo.right_addr; in patch_address_for_sbs_tb_stereo() 1725 plane_state->address.type != PLN_ADDR_TYPE_GRPH_STEREO) { in patch_address_for_sbs_tb_stereo() [all …]
|