HomeSort by: relevance | last modified time | path
    Searched refs:new_plane_state (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_atomic_plane.c 230 struct intel_plane_state *new_plane_state)
232 struct intel_plane *plane = to_intel_plane(new_plane_state->uapi.plane);
236 intel_plane_copy_uapi_to_hw_state(new_plane_state, new_plane_state);
237 fb = new_plane_state->hw.fb;
244 new_plane_state->uapi.visible = false;
246 if (!new_plane_state->hw.crtc && !old_plane_state->hw.crtc)
249 ret = plane->check_plane(new_crtc_state, new_plane_state);
254 if (new_plane_state->uapi.visible)
257 if (new_plane_state->uapi.visible &
291 struct intel_plane_state *new_plane_state = local in function:intel_plane_atomic_check
396 struct intel_plane_state *new_plane_state = local in function:skl_update_planes_on_crtc
414 struct intel_plane_state *new_plane_state; local in function:i9xx_update_planes_on_crtc
    [all...]
intel_display.h 435 #define for_each_new_intel_plane_in_state(__state, plane, new_plane_state, __i) \
439 (new_plane_state) = to_intel_plane_state((__state)->base.planes[__i].new_state), 1); \
451 #define for_each_oldnew_intel_plane_in_state(__state, plane, old_plane_state, new_plane_state, __i) \
456 (new_plane_state) = to_intel_plane_state((__state)->base.planes[__i].new_state), 1); \
intel_display.c 14862 struct intel_plane_state *new_plane_state = local in function:intel_update_crtc
14887 else if (new_plane_state)
14888 intel_fbc_enable(crtc, new_crtc_state, new_plane_state);
15050 struct intel_plane_state *new_plane_state = local in function:intel_post_crtc_enable_updates
15057 else if (new_plane_state)
15058 intel_fbc_enable(crtc, new_crtc_state, new_plane_state);
15535 struct intel_plane_state *old_plane_state, *new_plane_state; local in function:intel_atomic_track_fbs
15540 new_plane_state, i)
15542 to_intel_frontbuffer(new_plane_state->hw.fb),
15780 struct intel_plane_state *new_plane_state local in function:intel_prepare_plane_fb
16009 struct intel_plane_state *new_plane_state; local in function:intel_legacy_cursor_update
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_atomic_helper.h 205 * @new_plane_state: new atomic plane state
216 struct drm_plane_state *new_plane_state)
223 WARN_ON((new_plane_state->crtc == NULL && new_plane_state->fb != NULL) ||
224 (new_plane_state->crtc != NULL && new_plane_state->fb == NULL));
226 return old_plane_state->crtc && !new_plane_state->crtc;
drm_atomic.h 823 * @new_plane_state: &struct drm_plane_state iteration cursor for the new state
830 #define for_each_oldnew_plane_in_state(__state, plane, old_plane_state, new_plane_state, __i) \
838 (new_plane_state) = (__state)->planes[__i].new_state, 1))
846 * @new_plane_state: &struct drm_plane_state iteration cursor for the new state
853 #define for_each_oldnew_plane_in_state_reverse(__state, plane, old_plane_state, new_plane_state, __i) \
860 (new_plane_state) = (__state)->planes[__i].new_state, 1))
884 * @new_plane_state: &struct drm_plane_state iteration cursor for the new state
891 #define for_each_new_plane_in_state(__state, plane, new_plane_state, __i) \
898 (new_plane_state) = (__state)->planes[__i].new_state, \
899 (void)(new_plane_state) /* Only to avoid unused-but-set-variable warning */, 1)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_atomic.c 523 const struct drm_plane_state *new_plane_state)
525 if (!old_plane_state->crtc || !new_plane_state->crtc)
528 if (old_plane_state->crtc == new_plane_state->crtc)
542 * @new_plane_state: new plane state to check
550 const struct drm_plane_state *new_plane_state)
552 struct drm_plane *plane = new_plane_state->plane;
553 struct drm_crtc *crtc = new_plane_state->crtc;
554 const struct drm_framebuffer *fb = new_plane_state->fb;
597 if (new_plane_state->crtc_w > INT_MAX ||
598 new_plane_state->crtc_x > INT_MAX - (int32_t) new_plane_state->crtc_w |
1152 struct drm_plane_state *new_plane_state; local in function:drm_atomic_check_only
    [all...]
drm_atomic_helper.c 865 struct drm_plane_state *new_plane_state, *old_plane_state; local in function:drm_atomic_helper_check_planes
868 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
875 drm_atomic_helper_plane_changed(state, old_plane_state, new_plane_state, plane);
877 drm_atomic_helper_check_plane_damage(state, new_plane_state);
882 ret = funcs->atomic_check(plane, new_plane_state);
1154 struct drm_plane_state *new_plane_state; local in function:drm_atomic_helper_update_legacy_modeset_state
1159 new_plane_state =
1162 if (new_plane_state && new_plane_state->crtc == crtc) {
1163 crtc->x = new_plane_state->src_x >> 16
1395 struct drm_plane_state *new_plane_state; local in function:drm_atomic_helper_wait_for_fences
1691 struct drm_plane_state *new_plane_state = NULL; local in function:drm_atomic_helper_async_check
2063 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:drm_atomic_helper_setup_commit
2381 struct drm_plane_state *new_plane_state; local in function:drm_atomic_helper_prepare_planes
2477 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:drm_atomic_helper_commit_planes
2594 struct drm_plane_state *new_plane_state = local in function:drm_atomic_helper_commit_planes_on_crtc
2680 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:drm_atomic_helper_cleanup_planes
2748 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:drm_atomic_helper_swap_state
    [all...]
drm_blend.c 507 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:drm_atomic_normalize_zpos
510 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) {
511 crtc = new_plane_state->crtc;
514 if (old_plane_state->zpos != new_plane_state->zpos) {
  /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/
amdgpu_dm.c 1621 struct drm_plane_state *new_plane_state; local in function:dm_resume
1703 for_each_new_plane_in_state(dm->cached_state, plane, new_plane_state, i) {
1704 dm_new_plane_state = to_dm_plane_state(new_plane_state);
4799 struct drm_plane_state *new_plane_state; local in function:count_crtc_active_planes
4805 new_plane_state = drm_atomic_get_new_plane_state(state, plane);
4807 if (!new_plane_state) {
4818 num_active += (new_plane_state->fb != NULL);
5226 struct drm_plane_state *new_plane_state)
6317 struct drm_plane_state *old_plane_state, *new_plane_state __unused;
6325 new_plane_state, i
6340 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:amdgpu_dm_commit_planes
7774 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:dm_determine_update_type_for_commit
7985 struct drm_plane_state *old_plane_state, *new_plane_state; local in function:amdgpu_dm_atomic_check
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
nouveau_dispnv50_disp.c 1938 struct drm_plane_state *new_plane_state; local in function:nv50_disp_atomic_commit_wndw
1942 for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1957 struct drm_plane_state *new_plane_state; local in function:nv50_disp_atomic_commit_tail
1995 for_each_new_plane_in_state(state, plane, new_plane_state, i) {
1996 struct nv50_wndw_atom *asyw = nv50_wndw_atom(new_plane_state);
2097 for_each_new_plane_in_state(state, plane, new_plane_state, i) {
2098 struct nv50_wndw_atom *asyw = nv50_wndw_atom(new_plane_state);
2127 for_each_new_plane_in_state(state, plane, new_plane_state, i) {
2128 struct nv50_wndw_atom *asyw = nv50_wndw_atom(new_plane_state);
2173 struct drm_plane_state *new_plane_state; local in function:nv50_disp_atomic_commit
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_pm.c 1352 const struct intel_plane_state *new_plane_state; local in function:g4x_compute_pipe_wm
1360 new_plane_state, i) {
1361 if (new_plane_state->hw.crtc != &crtc->base &&
1365 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
1877 const struct intel_plane_state *new_plane_state; local in function:vlv_compute_pipe_wm
1885 new_plane_state, i) {
1886 if (new_plane_state->hw.crtc != &crtc->base &&
1890 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))

Completed in 53 milliseconds