Lines Matching refs:saved_state
4472 struct intel_crtc_state *saved_state; in copy_joiner_crtc_state_modeset() local
4477 saved_state = kmemdup(primary_crtc_state, sizeof(*saved_state), GFP_KERNEL); in copy_joiner_crtc_state_modeset()
4478 if (!saved_state) in copy_joiner_crtc_state_modeset()
4482 saved_state->uapi = secondary_crtc_state->uapi; in copy_joiner_crtc_state_modeset()
4483 saved_state->scaler_state = secondary_crtc_state->scaler_state; in copy_joiner_crtc_state_modeset()
4484 saved_state->shared_dpll = secondary_crtc_state->shared_dpll; in copy_joiner_crtc_state_modeset()
4485 saved_state->crc_enabled = secondary_crtc_state->crc_enabled; in copy_joiner_crtc_state_modeset()
4490 memcpy(secondary_crtc_state, saved_state, sizeof(*secondary_crtc_state)); in copy_joiner_crtc_state_modeset()
4491 kfree(saved_state); in copy_joiner_crtc_state_modeset()
4528 struct intel_crtc_state *saved_state; in intel_crtc_prepare_cleared_state() local
4530 saved_state = intel_crtc_state_alloc(crtc); in intel_crtc_prepare_cleared_state()
4531 if (!saved_state) in intel_crtc_prepare_cleared_state()
4544 saved_state->uapi = crtc_state->uapi; in intel_crtc_prepare_cleared_state()
4545 saved_state->inherited = crtc_state->inherited; in intel_crtc_prepare_cleared_state()
4546 saved_state->scaler_state = crtc_state->scaler_state; in intel_crtc_prepare_cleared_state()
4547 saved_state->shared_dpll = crtc_state->shared_dpll; in intel_crtc_prepare_cleared_state()
4548 saved_state->dpll_hw_state = crtc_state->dpll_hw_state; in intel_crtc_prepare_cleared_state()
4549 memcpy(saved_state->icl_port_dplls, crtc_state->icl_port_dplls, in intel_crtc_prepare_cleared_state()
4550 sizeof(saved_state->icl_port_dplls)); in intel_crtc_prepare_cleared_state()
4551 saved_state->crc_enabled = crtc_state->crc_enabled; in intel_crtc_prepare_cleared_state()
4554 saved_state->wm = crtc_state->wm; in intel_crtc_prepare_cleared_state()
4556 memcpy(crtc_state, saved_state, sizeof(*crtc_state)); in intel_crtc_prepare_cleared_state()
4557 kfree(saved_state); in intel_crtc_prepare_cleared_state()