/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/ |
H A D | drm_atomic_helper.c | 77 struct drm_crtc_state *crtc_state; in drm_atomic_helper_plane_changed() local 80 crtc_state = drm_atomic_get_new_crtc_state(state, old_plane_state->crtc); in drm_atomic_helper_plane_changed() 81 if (WARN_ON(!crtc_state)) { in drm_atomic_helper_plane_changed() 85 crtc_state->planes_changed = true; in drm_atomic_helper_plane_changed() 89 crtc_state = drm_atomic_get_new_crtc_state(state, plane_state->crtc); in drm_atomic_helper_plane_changed() 90 if (WARN_ON(!crtc_state)) { in drm_atomic_helper_plane_changed() 94 crtc_state->planes_changed = true; in drm_atomic_helper_plane_changed() 159 struct drm_crtc_state *crtc_state; in handle_conflicting_encoders() local 188 crtc_state = drm_atomic_get_new_crtc_state(state, new_conn_state->crtc); in handle_conflicting_encoders() 195 if (!crtc_state in handle_conflicting_encoders() 213 struct drm_crtc_state *crtc_state; set_best_encoder() local 249 struct drm_crtc_state *crtc_state; steal_encoder() local 282 struct drm_crtc_state *crtc_state; update_connector_routing() local 506 struct drm_crtc_state *crtc_state; mode_valid() local 768 drm_atomic_helper_check_plane_state(struct drm_plane_state *plane_state, const struct drm_crtc_state *crtc_state, int min_scale, int max_scale, bool can_position, bool can_update_disabled) drm_atomic_helper_check_plane_state() argument 1638 struct drm_crtc_state *crtc_state; drm_atomic_helper_async_check() local 2466 struct drm_crtc_state *crtc_state; drm_atomic_helper_commit_planes() local 3089 struct drm_crtc_state *crtc_state; drm_atomic_helper_disable_all() local 3221 struct drm_crtc_state *crtc_state; drm_atomic_helper_duplicate_state() local 3407 struct drm_crtc_state *crtc_state; page_flip_common() local 3505 struct drm_crtc_state *crtc_state; drm_atomic_helper_page_flip_target() local 3553 struct drm_crtc_state *crtc_state; drm_atomic_helper_legacy_gamma_set() local 3623 drm_atomic_helper_bridge_propagate_bus_fmt(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state, u32 output_fmt, unsigned int *num_input_fmts) drm_atomic_helper_bridge_propagate_bus_fmt() argument [all...] |
H A D | drm_atomic_uapi.c | 169 struct drm_crtc_state *crtc_state; in drm_atomic_set_crtc_for_plane() local 175 crtc_state = drm_atomic_get_crtc_state(plane_state->state, plane_state->crtc); in drm_atomic_set_crtc_for_plane() 176 if (WARN_ON(IS_ERR(crtc_state))) { in drm_atomic_set_crtc_for_plane() 177 return PTR_ERR(crtc_state); in drm_atomic_set_crtc_for_plane() 180 crtc_state->plane_mask &= ~drm_plane_mask(plane); in drm_atomic_set_crtc_for_plane() 186 crtc_state = drm_atomic_get_crtc_state(plane_state->state, crtc); in drm_atomic_set_crtc_for_plane() 187 if (IS_ERR(crtc_state)) { in drm_atomic_set_crtc_for_plane() 188 return PTR_ERR(crtc_state); in drm_atomic_set_crtc_for_plane() 190 crtc_state->plane_mask |= drm_plane_mask(plane); in drm_atomic_set_crtc_for_plane() 281 struct drm_crtc_state *crtc_state; in drm_atomic_set_crtc_for_connector() local 875 struct drm_crtc_state *crtc_state; drm_atomic_connector_commit_dpms() local 950 struct drm_crtc_state *crtc_state; drm_atomic_set_property() local 1065 struct drm_crtc_state *crtc_state; prepare_signaling() local 1192 struct drm_crtc_state *crtc_state; complete_signaling() local [all...] |
H A D | drm_atomic_state_helper.c | 64 * @crtc_state: atomic CRTC state, must not be NULL 67 * Initializes the newly allocated @crtc_state with default 70 void __drm_atomic_helper_crtc_state_reset(struct drm_crtc_state *crtc_state, struct drm_crtc *crtc) in __drm_atomic_helper_crtc_state_reset() argument 72 crtc_state->crtc = crtc; in __drm_atomic_helper_crtc_state_reset() 79 * @crtc_state: CRTC state to assign 81 * Initializes the newly allocated @crtc_state and assigns it to 88 void __drm_atomic_helper_crtc_reset(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state) in __drm_atomic_helper_crtc_reset() argument 90 if (crtc_state) { in __drm_atomic_helper_crtc_reset() 91 __drm_atomic_helper_crtc_state_reset(crtc_state, crtc); in __drm_atomic_helper_crtc_reset() 98 crtc->state = crtc_state; in __drm_atomic_helper_crtc_reset() 111 struct drm_crtc_state *crtc_state = kzalloc(sizeof(*crtc->state), GFP_KERNEL); drm_atomic_helper_crtc_reset() local [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/gpu/drm/rockchip/ |
H A D | rockchip_drm_logo.c | 579 struct drm_crtc_state *crtc_state; in setup_initial_state() local 655 crtc_state = drm_atomic_get_crtc_state(state, crtc); in setup_initial_state() 656 if (IS_ERR(crtc_state)) { in setup_initial_state() 657 ret = PTR_ERR(crtc_state); in setup_initial_state() 661 drm_mode_copy(&crtc_state->adjusted_mode, mode); in setup_initial_state() 670 ret = drm_atomic_set_mode_for_crtc(crtc_state, mode); in setup_initial_state() 674 crtc_state->active = true; in setup_initial_state() 747 struct drm_crtc_state *crtc_state; in update_state() local 752 crtc_state = drm_atomic_get_crtc_state(state, crtc); in update_state() 753 if (IS_ERR(crtc_state)) in update_state() [all...] |
H A D | dw-dp.c | 1559 struct drm_crtc_state *crtc_state, in dw_dp_encoder_atomic_check() 1564 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in dw_dp_encoder_atomic_check() 1777 struct drm_crtc_state *crtc_state = bridge->encoder->crtc->state; in dw_dp_bridge_atomic_pre_enable() local 1780 drm_mode_copy(m, &crtc_state->adjusted_mode); in dw_dp_bridge_atomic_pre_enable() 1926 struct drm_crtc_state *crtc_state, in dw_dp_bridge_atomic_get_output_bus_fmts() 1933 struct drm_display_mode mode = crtc_state->mode; in dw_dp_bridge_atomic_get_output_bus_fmts() 1977 struct drm_crtc_state *crtc_state, in dw_dp_bridge_atomic_check() 1558 dw_dp_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state) dw_dp_encoder_atomic_check() argument 1924 dw_dp_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state, unsigned int *num_output_fmts) dw_dp_bridge_atomic_get_output_bus_fmts() argument 1975 dw_dp_bridge_atomic_check(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state) dw_dp_bridge_atomic_check() argument
|
H A D | dw-mipi-dsi2-rockchip.c | 840 struct drm_crtc_state *crtc_state, in dw_mipi_dsi2_encoder_atomic_check() 844 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in dw_mipi_dsi2_encoder_atomic_check() 907 struct drm_crtc_state *crtc_state, in dw_mipi_dsi2_encoder_atomic_mode_set() 912 drm_mode_copy(&dsi2->mode, &crtc_state->adjusted_mode); in dw_mipi_dsi2_encoder_atomic_mode_set() 914 drm_mode_copy(&dsi2->slave->mode, &crtc_state->adjusted_mode); in dw_mipi_dsi2_encoder_atomic_mode_set() 839 dw_mipi_dsi2_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state) dw_mipi_dsi2_encoder_atomic_check() argument 906 dw_mipi_dsi2_encoder_atomic_mode_set(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, struct drm_connector_state *connector_state) dw_mipi_dsi2_encoder_atomic_mode_set() argument
|
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/rockchip/ |
H A D | rockchip_drm_logo.c | 608 struct drm_crtc_state *crtc_state; in setup_initial_state() local 685 crtc_state = drm_atomic_get_crtc_state(state, crtc); in setup_initial_state() 686 if (IS_ERR(crtc_state)) { in setup_initial_state() 687 ret = PTR_ERR(crtc_state); in setup_initial_state() 691 drm_mode_copy(&crtc_state->adjusted_mode, mode); in setup_initial_state() 701 ret = drm_atomic_set_mode_for_crtc(crtc_state, mode); in setup_initial_state() 706 crtc_state->active = true; in setup_initial_state() 779 struct drm_crtc_state *crtc_state; in update_state() local 784 crtc_state = drm_atomic_get_crtc_state(state, crtc); in update_state() 785 if (IS_ERR(crtc_state)) { in update_state() [all...] |
H A D | rockchip_drm_vop.c | 876 static int vop_hdr_atomic_check(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state) in vop_hdr_atomic_check() argument 878 struct drm_atomic_state *state = crtc_state->state; in vop_hdr_atomic_check() 879 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in vop_hdr_atomic_check() 892 drm_atomic_crtc_state_for_each_plane(plane, crtc_state) in vop_hdr_atomic_check() 936 drm_atomic_crtc_state_for_each_plane(plane, crtc_state) in vop_hdr_atomic_check() 1152 static int vop_csc_atomic_check(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state) in vop_csc_atomic_check() argument 1155 struct drm_atomic_state *state = crtc_state->state; in vop_csc_atomic_check() 1156 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in vop_csc_atomic_check() 1165 drm_atomic_crtc_state_for_each_plane(plane, crtc_state) in vop_csc_atomic_check() 1635 struct drm_crtc_state *crtc_state; in vop_plane_atomic_check() local 2424 struct drm_crtc_state *crtc_state = crtc->state; vop_crtc_debugfs_dump() local 2464 struct drm_crtc_state *crtc_state = crtc->state; vop_crtc_regs_dump() local 2642 vop_crtc_bandwidth(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state, struct dmcfreq_vop_info *vop_bw_info) vop_crtc_bandwidth() argument 3154 vop_afbdc_atomic_check(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state) vop_afbdc_atomic_check() argument 3283 vop_dclk_source_generate(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state) vop_dclk_source_generate() argument 3319 vop_crtc_atomic_check(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state) vop_crtc_atomic_check() argument [all...] |
H A D | dw_hdmi-rockchip.c | 853 static void hdmi_select_link_config(struct rockchip_hdmi *hdmi, struct drm_crtc_state *crtc_state) in hdmi_select_link_config() argument 855 struct drm_display_mode *mode = &crtc_state->mode; in hdmi_select_link_config() 955 static int hdmi_dsc_get_num_slices(struct rockchip_hdmi *hdmi, struct drm_crtc_state *crtc_state, int src_max_slices, in hdmi_dsc_get_num_slices() argument 976 int pixel_clock = crtc_state->mode.clock; in hdmi_dsc_get_num_slices() 1043 slice_width = DIV_ROUND_UP(crtc_state->mode.hdisplay, target_slices); in hdmi_dsc_get_num_slices() 1052 static int hdmi_dsc_slices(struct rockchip_hdmi *hdmi, struct drm_crtc_state *crtc_state) in hdmi_dsc_slices() argument 1059 return hdmi_dsc_get_num_slices(hdmi, crtc_state, rk_max_slices, rk_max_slice_width, hdmi_max_slices, in hdmi_dsc_slices() 1178 struct drm_crtc_state *crtc_state) in dw_hdmi_qp_dsc_configure() 1188 if (!crtc_state) { in dw_hdmi_qp_dsc_configure() 1198 slice_height = hdmi_dsc_get_slice_height(crtc_state in dw_hdmi_qp_dsc_configure() 1177 dw_hdmi_qp_dsc_configure(struct rockchip_hdmi *hdmi, struct rockchip_crtc_state *s, struct drm_crtc_state *crtc_state) dw_hdmi_qp_dsc_configure() argument 1690 dw_hdmi_rockchip_select_output(struct drm_connector_state *conn_state, struct drm_crtc_state *crtc_state, struct rockchip_hdmi *hdmi, unsigned int *color_format, unsigned int *output_mode, unsigned long *bus_format, unsigned int *bus_width, unsigned long *enc_out_encoding, unsigned int *eotf) dw_hdmi_rockchip_select_output() argument 1902 struct drm_crtc_state *crtc_state = conn_state->crtc->state; dw_hdmi_rockchip_check_color() local 1920 dw_hdmi_rockchip_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state) dw_hdmi_rockchip_encoder_atomic_check() argument [all...] |
H A D | rockchip_lvds.c | 166 static void rockchip_lvds_encoder_atomic_mode_set(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in rockchip_lvds_encoder_atomic_mode_set() argument 201 drm_mode_copy(&lvds->mode, &crtc_state->adjusted_mode); in rockchip_lvds_encoder_atomic_mode_set() 204 static int rockchip_lvds_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in rockchip_lvds_encoder_atomic_check() argument 207 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in rockchip_lvds_encoder_atomic_check()
|
H A D | rockchip_rgb.c | 174 static int rockchip_rgb_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in rockchip_rgb_encoder_atomic_check() argument 177 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in rockchip_rgb_encoder_atomic_check()
|
H A D | analogix_dp-rockchip.c | 362 static int rockchip_dp_drm_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in rockchip_dp_drm_encoder_atomic_check() argument 366 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in rockchip_dp_drm_encoder_atomic_check()
|
H A D | dw-dp.c | 1544 static int dw_dp_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in dw_dp_encoder_atomic_check() argument 1549 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in dw_dp_encoder_atomic_check() 1769 struct drm_crtc_state *crtc_state = bridge->encoder->crtc->state; in dw_dp_bridge_atomic_pre_enable() local 1772 drm_mode_copy(m, &crtc_state->adjusted_mode); in dw_dp_bridge_atomic_pre_enable() 1900 struct drm_crtc_state *crtc_state, in dw_dp_bridge_atomic_get_output_bus_fmts() 1907 struct drm_display_mode mode = crtc_state->mode; in dw_dp_bridge_atomic_get_output_bus_fmts() 1954 struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state) in dw_dp_bridge_atomic_check() 1899 dw_dp_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state, unsigned int *num_output_fmts) dw_dp_bridge_atomic_get_output_bus_fmts() argument 1953 dw_dp_bridge_atomic_check(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state) dw_dp_bridge_atomic_check() argument
|
H A D | dw-mipi-dsi2-rockchip.c | 845 static int dw_mipi_dsi2_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in dw_mipi_dsi2_encoder_atomic_check() argument 848 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in dw_mipi_dsi2_encoder_atomic_check() 911 static void dw_mipi_dsi2_encoder_atomic_mode_set(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in dw_mipi_dsi2_encoder_atomic_mode_set() argument 916 drm_mode_copy(&dsi2->mode, &crtc_state->adjusted_mode); in dw_mipi_dsi2_encoder_atomic_mode_set() 918 drm_mode_copy(&dsi2->slave->mode, &crtc_state->adjusted_mode); in dw_mipi_dsi2_encoder_atomic_mode_set()
|
H A D | rockchip_drm_drv.h | 318 size_t (*bandwidth)(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state, struct dmcfreq_vop_info *vop_bw_info);
|
H A D | inno_hdmi.c | 472 static int inno_hdmi_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in inno_hdmi_encoder_atomic_check() argument 475 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in inno_hdmi_encoder_atomic_check()
|
H A D | rk3066_hdmi.c | 409 static int rk3066_hdmi_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in rk3066_hdmi_encoder_atomic_check() argument 412 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in rk3066_hdmi_encoder_atomic_check()
|
H A D | dw-mipi-dsi-rockchip.c | 675 static int dw_mipi_dsi_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in dw_mipi_dsi_encoder_atomic_check() argument 678 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in dw_mipi_dsi_encoder_atomic_check()
|
H A D | cdn-dp-core.c | 641 static int cdn_dp_encoder_atomic_check(struct drm_encoder *encoder, struct drm_crtc_state *crtc_state, in cdn_dp_encoder_atomic_check() argument 644 struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state); in cdn_dp_encoder_atomic_check()
|
H A D | rockchip_drm_vop2.c | 4708 struct drm_crtc_state *crtc_state = crtc->state; in vop2_crtc_debugfs_dump() local 4714 DEBUG_PRINT("Video Port%d: %s\n", vp->id, crtc_state->active ? "ACTIVE" : "DISABLED"); in vop2_crtc_debugfs_dump() 4716 if (!crtc_state->active) { in vop2_crtc_debugfs_dump() 4981 static size_t vop2_crtc_bandwidth(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state, in vop2_crtc_bandwidth() argument 4988 struct drm_atomic_state *state = crtc_state->state; in vop2_crtc_bandwidth() 6247 static int vop2_crtc_atomic_check(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state) in vop2_crtc_atomic_check() argument
|
/device/soc/rockchip/common/vendor/drivers/gpu/drm/bridge/synopsys/ |
H A D | dw-hdmi-qp.c | 1865 struct drm_crtc_state *crtc_state;
in dw_hdmi_connector_atomic_check() local 1878 crtc_state = drm_atomic_get_crtc_state(state, crtc);
in dw_hdmi_connector_atomic_check() 1879 if (IS_ERR(crtc_state)) {
in dw_hdmi_connector_atomic_check() 1880 return PTR_ERR(crtc_state);
in dw_hdmi_connector_atomic_check() 1888 crtc_state = drm_atomic_get_crtc_state(state, crtc);
in dw_hdmi_connector_atomic_check() 1902 mode = &crtc_state->mode;
in dw_hdmi_connector_atomic_check() 1919 crtc_state = drm_atomic_get_crtc_state(state, crtc);
in dw_hdmi_connector_atomic_check() 1920 if (IS_ERR(crtc_state)) {
in dw_hdmi_connector_atomic_check() 1921 return PTR_ERR(crtc_state);
in dw_hdmi_connector_atomic_check() 1924 crtc_state in dw_hdmi_connector_atomic_check() [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/gpu/drm/bridge/synopsys/ |
H A D | dw-hdmi-qp.c | 1734 struct drm_crtc_state *crtc_state; in dw_hdmi_connector_atomic_check() local 1747 crtc_state = drm_atomic_get_crtc_state(state, crtc); in dw_hdmi_connector_atomic_check() 1748 if (IS_ERR(crtc_state)) in dw_hdmi_connector_atomic_check() 1749 return PTR_ERR(crtc_state); in dw_hdmi_connector_atomic_check() 1756 crtc_state = drm_atomic_get_crtc_state(state, crtc); in dw_hdmi_connector_atomic_check() 1770 mode = &crtc_state->mode; in dw_hdmi_connector_atomic_check() 1787 crtc_state = drm_atomic_get_crtc_state(state, crtc); in dw_hdmi_connector_atomic_check() 1788 if (IS_ERR(crtc_state)) in dw_hdmi_connector_atomic_check() 1789 return PTR_ERR(crtc_state); in dw_hdmi_connector_atomic_check() 1791 crtc_state in dw_hdmi_connector_atomic_check() [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/devfreq/ |
H A D | rockchip_drm_drv.h | 321 struct drm_crtc_state *crtc_state,
|
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/bridge/synopsys/ |
H A D | dw-hdmi.c | 3061 struct drm_crtc_state *crtc_state; in dw_hdmi_connector_atomic_check() local 3079 crtc_state = drm_atomic_get_crtc_state(state, crtc); in dw_hdmi_connector_atomic_check() 3093 mode = &crtc_state->mode; in dw_hdmi_connector_atomic_check() 3110 crtc_state = drm_atomic_get_crtc_state(state, crtc); in dw_hdmi_connector_atomic_check() 3111 if (IS_ERR(crtc_state)) { in dw_hdmi_connector_atomic_check() 3112 return PTR_ERR(crtc_state); in dw_hdmi_connector_atomic_check() 3115 crtc_state->mode_changed = true; in dw_hdmi_connector_atomic_check() 3384 struct drm_crtc_state *crtc_state, in dw_hdmi_bridge_atomic_get_output_bus_fmts() 3390 struct drm_display_mode *mode = &crtc_state->mode; in dw_hdmi_bridge_atomic_get_output_bus_fmts() 3515 struct drm_crtc_state *crtc_state, in dw_hdmi_bridge_atomic_get_input_bus_fmts() 3383 dw_hdmi_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state, unsigned int *num_output_fmts) dw_hdmi_bridge_atomic_get_output_bus_fmts() argument 3514 dw_hdmi_bridge_atomic_get_input_bus_fmts(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state, u32 output_fmt, unsigned int *num_input_fmts) dw_hdmi_bridge_atomic_get_input_bus_fmts() argument 3613 dw_hdmi_bridge_atomic_check(struct drm_bridge *bridge, struct drm_bridge_state *bridge_state, struct drm_crtc_state *crtc_state, struct drm_connector_state *conn_state) dw_hdmi_bridge_atomic_check() argument [all...] |
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/bridge/analogix/ |
H A D | analogix_dp_core.c | 1152 struct drm_crtc_state *crtc_state; in analogix_dp_atomic_check() local 1165 crtc_state = drm_atomic_get_new_crtc_state(state, conn_state->crtc); in analogix_dp_atomic_check() 1166 if (!crtc_state) { in analogix_dp_atomic_check() 1170 if (crtc_state->self_refresh_active && !dp->psr_supported) { in analogix_dp_atomic_check()
|