/Linux-v6.6/drivers/gpu/drm/tests/ |
D | drm_damage_helper_test.c | 23 struct drm_plane_state old_state; member 40 mock->old_state.plane = &mock->plane; in drm_damage_helper_init() 127 set_plane_src(&mock->old_state, 0, 0, mock->fb.width << 16, mock->fb.height << 16); in drm_test_damage_iter_no_damage() 129 drm_atomic_helper_damage_iter_init(&iter, &mock->old_state, &mock->state); in drm_test_damage_iter_no_damage() 145 set_plane_src(&mock->old_state, 0x3fffe, 0x3fffe, in drm_test_damage_iter_no_damage_fractional_src() 149 drm_atomic_helper_damage_iter_init(&iter, &mock->old_state, &mock->state); in drm_test_damage_iter_no_damage_fractional_src() 166 set_plane_src(&mock->old_state, 0, 0, 1024 << 16, 768 << 16); in drm_test_damage_iter_no_damage_src_moved() 169 drm_atomic_helper_damage_iter_init(&iter, &mock->old_state, &mock->state); in drm_test_damage_iter_no_damage_src_moved() 185 set_plane_src(&mock->old_state, 0x3fffe, 0x3fffe, in drm_test_damage_iter_no_damage_fractional_src_moved() 189 drm_atomic_helper_damage_iter_init(&iter, &mock->old_state, &mock->state); in drm_test_damage_iter_no_damage_fractional_src_moved() [all …]
|
/Linux-v6.6/drivers/gpu/drm/ |
D | drm_atomic_helper.c | 1091 crtc_needs_disable(struct drm_crtc_state *old_state, in crtc_needs_disable() argument 1099 return drm_atomic_crtc_effectively_active(old_state); in crtc_needs_disable() 1106 if (old_state->self_refresh_active && in crtc_needs_disable() 1107 old_state->crtc != new_state->crtc) in crtc_needs_disable() 1116 return old_state->active || in crtc_needs_disable() 1117 (old_state->self_refresh_active && !new_state->active) || in crtc_needs_disable() 1122 disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state) in disable_outputs() argument 1130 for_each_oldnew_connector_in_state(old_state, connector, old_conn_state, new_conn_state, i) { in disable_outputs() 1142 old_crtc_state = drm_atomic_get_old_crtc_state(old_state, old_conn_state->crtc); in disable_outputs() 1146 old_state, in disable_outputs() [all …]
|
D | drm_bridge.c | 595 struct drm_atomic_state *old_state) in drm_atomic_bridge_chain_disable() argument 609 drm_atomic_get_old_bridge_state(old_state, in drm_atomic_bridge_chain_disable() 626 struct drm_atomic_state *old_state) in drm_atomic_bridge_call_post_disable() argument 628 if (old_state && bridge->funcs->atomic_post_disable) { in drm_atomic_bridge_call_post_disable() 632 drm_atomic_get_old_bridge_state(old_state, in drm_atomic_bridge_call_post_disable() 662 struct drm_atomic_state *old_state) in drm_atomic_bridge_chain_post_disable() argument 703 old_state); in drm_atomic_bridge_chain_post_disable() 708 drm_atomic_bridge_call_post_disable(bridge, old_state); in drm_atomic_bridge_chain_post_disable() 718 struct drm_atomic_state *old_state) in drm_atomic_bridge_call_pre_enable() argument 720 if (old_state && bridge->funcs->atomic_pre_enable) { in drm_atomic_bridge_call_pre_enable() [all …]
|
/Linux-v6.6/drivers/gpu/drm/armada/ |
D | armada_overlay.c | 73 struct drm_plane_state *old_state = drm_atomic_get_old_plane_state(state, in armada_drm_overlay_plane_atomic_update() local 91 old_state->visible, new_state->visible); in armada_drm_overlay_plane_atomic_update() 97 if (!old_state->visible && new_state->visible) in armada_drm_overlay_plane_atomic_update() 102 if (armada_src_hw(old_state) != val) in armada_drm_overlay_plane_atomic_update() 105 if (armada_dst_yx(old_state) != val) in armada_drm_overlay_plane_atomic_update() 108 if (armada_dst_hw(old_state) != val) in armada_drm_overlay_plane_atomic_update() 111 if (old_state->src.x1 != new_state->src.x1 || in armada_drm_overlay_plane_atomic_update() 112 old_state->src.y1 != new_state->src.y1 || in armada_drm_overlay_plane_atomic_update() 113 old_state->fb != new_state->fb || in armada_drm_overlay_plane_atomic_update() 160 } else if (old_state->visible != new_state->visible) { in armada_drm_overlay_plane_atomic_update() [all …]
|
D | armada_plane.c | 139 struct drm_plane_state *old_state = drm_atomic_get_old_plane_state(state, in armada_drm_primary_plane_atomic_update() local 157 old_state->visible, new_state->visible); in armada_drm_primary_plane_atomic_update() 163 if (!old_state->visible && new_state->visible) { in armada_drm_primary_plane_atomic_update() 170 if (armada_src_hw(old_state) != val) in armada_drm_primary_plane_atomic_update() 173 if (armada_dst_yx(old_state) != val) in armada_drm_primary_plane_atomic_update() 176 if (armada_dst_hw(old_state) != val) in armada_drm_primary_plane_atomic_update() 178 if (old_state->src.x1 != new_state->src.x1 || in armada_drm_primary_plane_atomic_update() 179 old_state->src.y1 != new_state->src.y1 || in armada_drm_primary_plane_atomic_update() 180 old_state->fb != new_state->fb || in armada_drm_primary_plane_atomic_update() 190 if (old_state->fb != new_state->fb || in armada_drm_primary_plane_atomic_update() [all …]
|
/Linux-v6.6/kernel/livepatch/ |
D | state.c | 88 struct klp_state *old_state) in klp_is_state_compatible() argument 92 state = klp_get_state(patch, old_state->id); in klp_is_state_compatible() 98 return state->version >= old_state->version; in klp_is_state_compatible() 109 struct klp_state *old_state; in klp_is_patch_compatible() local 112 klp_for_each_state(old_patch, old_state) { in klp_is_patch_compatible() 113 if (!klp_is_state_compatible(patch, old_state)) in klp_is_patch_compatible()
|
/Linux-v6.6/drivers/net/wireless/intel/iwlwifi/dvm/ |
D | tt.c | 244 enum iwl_tt_state old_state; in iwl_legacy_tt_handler() local 256 old_state = tt->state; in iwl_legacy_tt_handler() 272 if (tt->state != old_state) { in iwl_legacy_tt_handler() 292 if (old_state == IWL_TI_CT_KILL) in iwl_legacy_tt_handler() 299 if (old_state == IWL_TI_CT_KILL) in iwl_legacy_tt_handler() 301 tt->state = old_state; in iwl_legacy_tt_handler() 311 tt->state = old_state; in iwl_legacy_tt_handler() 313 } else if (old_state == IWL_TI_CT_KILL) { in iwl_legacy_tt_handler() 351 enum iwl_tt_state old_state; in iwl_advance_tt_handler() local 354 old_state = tt->state; in iwl_advance_tt_handler() [all …]
|
/Linux-v6.6/drivers/gpu/drm/vkms/ |
D | vkms_drv.c | 64 static void vkms_atomic_commit_tail(struct drm_atomic_state *old_state) in vkms_atomic_commit_tail() argument 66 struct drm_device *dev = old_state->dev; in vkms_atomic_commit_tail() 71 drm_atomic_helper_commit_modeset_disables(dev, old_state); in vkms_atomic_commit_tail() 73 drm_atomic_helper_commit_planes(dev, old_state, 0); in vkms_atomic_commit_tail() 75 drm_atomic_helper_commit_modeset_enables(dev, old_state); in vkms_atomic_commit_tail() 77 drm_atomic_helper_fake_vblank(old_state); in vkms_atomic_commit_tail() 79 drm_atomic_helper_commit_hw_done(old_state); in vkms_atomic_commit_tail() 81 drm_atomic_helper_wait_for_flip_done(dev, old_state); in vkms_atomic_commit_tail() 83 for_each_old_crtc_in_state(old_state, crtc, old_crtc_state, i) { in vkms_atomic_commit_tail() 90 drm_atomic_helper_cleanup_planes(dev, old_state); in vkms_atomic_commit_tail()
|
/Linux-v6.6/arch/powerpc/kvm/ |
D | book3s_hv_rm_xics.c | 242 union kvmppc_icp_state old_state, new_state; in icp_rm_try_to_deliver() local 246 old_state = new_state = READ_ONCE(icp->state); in icp_rm_try_to_deliver() 272 } while (!icp_rm_try_update(icp, old_state, new_state)); in icp_rm_try_to_deliver() 412 union kvmppc_icp_state old_state, new_state; in icp_rm_down_cppr() local 445 old_state = new_state = READ_ONCE(icp->state); in icp_rm_down_cppr() 469 } while (!icp_rm_try_update(icp, old_state, new_state)); in icp_rm_down_cppr() 490 union kvmppc_icp_state old_state, new_state; in xics_rm_h_xirr() local 509 old_state = new_state = READ_ONCE(icp->state); in xics_rm_h_xirr() 511 xirr = old_state.xisr | (((u32)old_state.cppr) << 24); in xics_rm_h_xirr() 512 if (!old_state.xisr) in xics_rm_h_xirr() [all …]
|
D | book3s_xics.c | 339 union kvmppc_icp_state old_state, new_state; in icp_try_to_deliver() local 346 old_state = new_state = READ_ONCE(icp->state); in icp_try_to_deliver() 372 } while (!icp_try_update(icp, old_state, new_state, false)); in icp_try_to_deliver() 516 union kvmppc_icp_state old_state, new_state; in icp_down_cppr() local 549 old_state = new_state = READ_ONCE(icp->state); in icp_down_cppr() 575 } while (!icp_try_update(icp, old_state, new_state, true)); in icp_down_cppr() 588 union kvmppc_icp_state old_state, new_state; in kvmppc_h_xirr() local 603 old_state = new_state = READ_ONCE(icp->state); in kvmppc_h_xirr() 605 xirr = old_state.xisr | (((u32)old_state.cppr) << 24); in kvmppc_h_xirr() 606 if (!old_state.xisr) in kvmppc_h_xirr() [all …]
|
/Linux-v6.6/include/drm/ |
D | drm_atomic.h | 162 struct drm_plane_state *state, *old_state, *new_state; member 167 struct drm_crtc_state *state, *old_state, *new_state; member 185 struct drm_connector_state *state, *old_state, *new_state; member 345 struct drm_private_state *state, *old_state, *new_state; member 568 return state->crtcs[drm_crtc_index(crtc)].old_state; in drm_atomic_get_old_crtc_state() 615 return state->planes[drm_plane_index(plane)].old_state; in drm_atomic_get_old_plane_state() 673 return state->connectors[index].old_state; in drm_atomic_get_old_connector_state() 769 (old_connector_state) = (__state)->connectors[__i].old_state, \ 791 (old_connector_state) = (__state)->connectors[__i].old_state, 1)) 834 (old_crtc_state) = (__state)->crtcs[__i].old_state, \ [all …]
|
D | drm_atomic_helper.h | 81 struct drm_atomic_state *old_state); 84 struct drm_atomic_state *old_state); 88 struct drm_atomic_state *old_state); 96 struct drm_atomic_state *old_state); 108 struct drm_atomic_state *old_state);
|
/Linux-v6.6/drivers/gpu/drm/imx/dcss/ |
D | dcss-plane.c | 249 struct drm_plane_state *old_state) in dcss_plane_needs_setup() argument 252 struct drm_framebuffer *old_fb = old_state->fb; in dcss_plane_needs_setup() 254 return state->crtc_x != old_state->crtc_x || in dcss_plane_needs_setup() 255 state->crtc_y != old_state->crtc_y || in dcss_plane_needs_setup() 256 state->crtc_w != old_state->crtc_w || in dcss_plane_needs_setup() 257 state->crtc_h != old_state->crtc_h || in dcss_plane_needs_setup() 258 state->src_x != old_state->src_x || in dcss_plane_needs_setup() 259 state->src_y != old_state->src_y || in dcss_plane_needs_setup() 260 state->src_w != old_state->src_w || in dcss_plane_needs_setup() 261 state->src_h != old_state->src_h || in dcss_plane_needs_setup() [all …]
|
/Linux-v6.6/drivers/gpu/drm/virtio/ |
D | virtgpu_plane.c | 161 struct drm_plane_state *old_state = drm_atomic_get_old_plane_state(state, in virtio_gpu_primary_plane_update() local 171 if (old_state->crtc) in virtio_gpu_primary_plane_update() 172 output = drm_crtc_to_virtio_gpu_output(old_state->crtc); in virtio_gpu_primary_plane_update() 186 if (!drm_atomic_helper_damage_merged(old_state, plane->state, &rect)) in virtio_gpu_primary_plane_update() 193 if (plane->state->fb != old_state->fb || in virtio_gpu_primary_plane_update() 194 plane->state->src_w != old_state->src_w || in virtio_gpu_primary_plane_update() 195 plane->state->src_h != old_state->src_h || in virtio_gpu_primary_plane_update() 196 plane->state->src_x != old_state->src_x || in virtio_gpu_primary_plane_update() 197 plane->state->src_y != old_state->src_y || in virtio_gpu_primary_plane_update() 278 struct drm_plane_state *old_state = drm_atomic_get_old_plane_state(state, in virtio_gpu_cursor_plane_update() local [all …]
|
/Linux-v6.6/drivers/video/backlight/ |
D | pandora_bl.c | 36 unsigned old_state; member 57 if (priv->old_state == PANDORABL_WAS_OFF) in pandora_backlight_update_status() 70 if (priv->old_state == PANDORABL_WAS_OFF) { in pandora_backlight_update_status() 97 priv->old_state = 0; in pandora_backlight_update_status() 99 priv->old_state = PANDORABL_WAS_OFF; in pandora_backlight_update_status() 137 priv->old_state = PANDORABL_WAS_OFF; in pandora_backlight_probe()
|
/Linux-v6.6/drivers/gpu/drm/tidss/ |
D | tidss_kms.c | 24 static void tidss_atomic_commit_tail(struct drm_atomic_state *old_state) in tidss_atomic_commit_tail() argument 26 struct drm_device *ddev = old_state->dev; in tidss_atomic_commit_tail() 34 drm_atomic_helper_commit_modeset_disables(ddev, old_state); in tidss_atomic_commit_tail() 35 drm_atomic_helper_commit_planes(ddev, old_state, 0); in tidss_atomic_commit_tail() 36 drm_atomic_helper_commit_modeset_enables(ddev, old_state); in tidss_atomic_commit_tail() 38 drm_atomic_helper_commit_hw_done(old_state); in tidss_atomic_commit_tail() 40 drm_atomic_helper_wait_for_flip_done(ddev, old_state); in tidss_atomic_commit_tail() 42 drm_atomic_helper_cleanup_planes(ddev, old_state); in tidss_atomic_commit_tail()
|
/Linux-v6.6/drivers/input/keyboard/ |
D | pmic8xxx-keypad.c | 172 u16 *old_state) in pmic8xxx_kp_read_matrix() argument 184 if (old_state) { in pmic8xxx_kp_read_matrix() 185 rc = pmic8xxx_kp_read_data(kp, old_state, KEYP_OLD_DATA, in pmic8xxx_kp_read_matrix() 220 u16 *old_state) in __pmic8xxx_kp_scan_matrix() argument 225 int bits_changed = new_state[row] ^ old_state[row]; in __pmic8xxx_kp_scan_matrix() 277 u16 old_state[PM8XXX_MAX_ROWS]; in pmic8xxx_kp_scan_matrix() local 293 rc = pmic8xxx_kp_read_matrix(kp, new_state, old_state); in pmic8xxx_kp_scan_matrix() 297 __pmic8xxx_kp_scan_matrix(kp, old_state, kp->keystate); in pmic8xxx_kp_scan_matrix() 298 __pmic8xxx_kp_scan_matrix(kp, new_state, old_state); in pmic8xxx_kp_scan_matrix() 303 rc = pmic8xxx_kp_read_matrix(kp, new_state, old_state); in pmic8xxx_kp_scan_matrix() [all …]
|
/Linux-v6.6/drivers/gpu/drm/omapdrm/ |
D | omap_drv.c | 49 struct drm_atomic_state *old_state) in omap_atomic_wait_for_completion() argument 56 for_each_new_crtc_in_state(old_state, crtc, new_crtc_state, i) { in omap_atomic_wait_for_completion() 68 static void omap_atomic_commit_tail(struct drm_atomic_state *old_state) in omap_atomic_commit_tail() argument 70 struct drm_device *dev = old_state->dev; in omap_atomic_commit_tail() 77 drm_atomic_helper_commit_modeset_disables(dev, old_state); in omap_atomic_commit_tail() 91 drm_atomic_helper_commit_modeset_enables(dev, old_state); in omap_atomic_commit_tail() 92 omap_atomic_wait_for_completion(dev, old_state); in omap_atomic_commit_tail() 94 drm_atomic_helper_commit_planes(dev, old_state, 0); in omap_atomic_commit_tail() 101 drm_atomic_helper_commit_planes(dev, old_state, 0); in omap_atomic_commit_tail() 103 drm_atomic_helper_commit_modeset_enables(dev, old_state); in omap_atomic_commit_tail() [all …]
|
/Linux-v6.6/drivers/gpu/drm/arm/display/komeda/ |
D | komeda_kms.c | 88 static void komeda_kms_commit_tail(struct drm_atomic_state *old_state) in komeda_kms_commit_tail() argument 90 struct drm_device *dev = old_state->dev; in komeda_kms_commit_tail() 93 drm_atomic_helper_commit_modeset_disables(dev, old_state); in komeda_kms_commit_tail() 95 drm_atomic_helper_commit_planes(dev, old_state, in komeda_kms_commit_tail() 98 drm_atomic_helper_commit_modeset_enables(dev, old_state); in komeda_kms_commit_tail() 100 komeda_kms_atomic_commit_hw_done(old_state); in komeda_kms_commit_tail() 102 drm_atomic_helper_wait_for_flip_done(dev, old_state); in komeda_kms_commit_tail() 106 drm_atomic_helper_cleanup_planes(dev, old_state); in komeda_kms_commit_tail()
|
/Linux-v6.6/drivers/gpu/drm/mgag200/ |
D | mgag200_drv.h | 277 void (*pixpllc_atomic_update)(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 346 void mgag200_g200wb_pixpllc_atomic_update(struct drm_crtc *crtc, struct drm_atomic_state *old_state… 350 void mgag200_g200eh_pixpllc_atomic_update(struct drm_crtc *crtc, struct drm_atomic_state *old_state… 377 struct drm_atomic_state *old_state); 381 struct drm_atomic_state *old_state); 398 void mgag200_crtc_helper_atomic_flush(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 399 void mgag200_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *old_state); 400 void mgag200_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *old_state);
|
/Linux-v6.6/drivers/gpu/drm/gud/ |
D | gud_connector.c | 293 struct drm_connector_state *old_state; in gud_connector_atomic_check() local 299 old_state = drm_atomic_get_old_connector_state(state, connector); in gud_connector_atomic_check() 302 if (old_state->tv.margins.left != new_state->tv.margins.left || in gud_connector_atomic_check() 303 old_state->tv.margins.right != new_state->tv.margins.right || in gud_connector_atomic_check() 304 old_state->tv.margins.top != new_state->tv.margins.top || in gud_connector_atomic_check() 305 old_state->tv.margins.bottom != new_state->tv.margins.bottom || in gud_connector_atomic_check() 306 old_state->tv.legacy_mode != new_state->tv.legacy_mode || in gud_connector_atomic_check() 307 old_state->tv.brightness != new_state->tv.brightness || in gud_connector_atomic_check() 308 old_state->tv.contrast != new_state->tv.contrast || in gud_connector_atomic_check() 309 old_state->tv.flicker_reduction != new_state->tv.flicker_reduction || in gud_connector_atomic_check() [all …]
|
/Linux-v6.6/net/smc/ |
D | smc_close.c | 198 int old_state; in smc_close_active() local 207 old_state = sk->sk_state; in smc_close_active() 306 if (old_state != sk->sk_state) in smc_close_active() 364 int old_state; in smc_close_passive_work() local 367 old_state = sk->sk_state; in smc_close_passive_work() 431 if (old_state != sk->sk_state) { in smc_close_passive_work() 450 int old_state; in smc_close_shutdown_write() local 458 old_state = sk->sk_state; in smc_close_shutdown_write() 496 if (old_state != sk->sk_state) in smc_close_shutdown_write()
|
/Linux-v6.6/drivers/bus/mhi/ep/ |
D | sm.c | 62 enum mhi_state old_state; in mhi_ep_set_m0_state() local 68 old_state = mhi_cntrl->mhi_state; in mhi_ep_set_m0_state() 69 if (old_state == MHI_STATE_M3) in mhi_ep_set_m0_state() 85 if (old_state == MHI_STATE_READY) { in mhi_ep_set_m0_state()
|
/Linux-v6.6/net/ceph/ |
D | messenger.c | 282 int old_state; in con_sock_state_init() local 284 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CLOSED); in con_sock_state_init() 285 if (WARN_ON(old_state != CON_SOCK_STATE_NEW)) in con_sock_state_init() 286 printk("%s: unexpected old state %d\n", __func__, old_state); in con_sock_state_init() 287 dout("%s con %p sock %d -> %d\n", __func__, con, old_state, in con_sock_state_init() 293 int old_state; in con_sock_state_connecting() local 295 old_state = atomic_xchg(&con->sock_state, CON_SOCK_STATE_CONNECTING); in con_sock_state_connecting() 296 if (WARN_ON(old_state != CON_SOCK_STATE_CLOSED)) in con_sock_state_connecting() 297 printk("%s: unexpected old state %d\n", __func__, old_state); in con_sock_state_connecting() 298 dout("%s con %p sock %d -> %d\n", __func__, con, old_state, in con_sock_state_connecting() [all …]
|
/Linux-v6.6/net/netfilter/ |
D | nf_conntrack_proto_tcp.c | 916 enum tcp_conntrack old_state; in nf_conntrack_tcp_set_closing() local 924 old_state = ct->proto.tcp.state; in nf_conntrack_tcp_set_closing() 927 if (old_state == TCP_CONNTRACK_CLOSE || in nf_conntrack_tcp_set_closing() 968 enum tcp_conntrack new_state, old_state; in nf_conntrack_tcp_packet() local 987 old_state = ct->proto.tcp.state; in nf_conntrack_tcp_packet() 990 new_state = tcp_conntracks[dir][index][old_state]; in nf_conntrack_tcp_packet() 994 if (old_state < TCP_CONNTRACK_TIME_WAIT) in nf_conntrack_tcp_packet() 1050 old_state = TCP_CONNTRACK_SYN_SENT; in nf_conntrack_tcp_packet() 1100 if (old_state == TCP_CONNTRACK_LAST_ACK) in nf_conntrack_tcp_packet() 1106 if (old_state == TCP_CONNTRACK_SYN_SENT && in nf_conntrack_tcp_packet() [all …]
|