1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
9 #include <drm/msm_drm.h>
17 #define DPRX_EXTENDED_DPCD_FIELD 0x2200
19 #define DP_DOWNSTREAM_PORTS 4
20 #define DP_DOWNSTREAM_CAP_SIZE 4
22 struct dp_display_mode {
23 struct drm_display_mode drm_mode;
32 struct drm_dp_aux *aux;
34 struct dp_catalog *catalog;
44 u8 dpcd[DP_RECEIVER_CAP_SIZE + 1];
45 u8 ds_cap_info[DP_DOWNSTREAM_PORTS * DP_DOWNSTREAM_CAP_SIZE];
49 struct dp_link_info link_info;
50 struct drm_dp_desc desc;
52 struct drm_connector *connector;
53 struct dp_display_mode dp_mode;
54 struct dp_panel_psr psr_cap;
64 int dp_panel_init_panel_info(struct dp_panel *dp_panel);
65 int dp_panel_deinit(struct dp_panel *dp_panel);
66 int dp_panel_timing_cfg(struct dp_panel *dp_panel);
67 void dp_panel_dump_regs(struct dp_panel *dp_panel);
68 int dp_panel_read_sink_caps(struct dp_panel *dp_panel,
69 struct drm_connector *connector);
70 u32 dp_panel_get_mode_bpp(struct dp_panel *dp_panel, u32 mode_max_bpp,
72 int dp_panel_get_modes(struct dp_panel *dp_panel,
73 struct drm_connector *connector);
74 void dp_panel_handle_sink_request(struct dp_panel *dp_panel);
75 void dp_panel_tpg_config(struct dp_panel *dp_panel, bool enable);
78 * is_link_rate_valid() - validates the link rate
79 * @lane_rate: link rate requested by the sink
81 * Returns true if the requested link rate is supported.
83 static inline bool is_link_rate_valid(u32 bw_code)
85 return (bw_code == DP_LINK_BW_1_62 ||
86 bw_code == DP_LINK_BW_2_7 ||
87 bw_code == DP_LINK_BW_5_4 ||
88 bw_code == DP_LINK_BW_8_1);
92 * dp_link_is_lane_count_valid() - validates the lane count
93 * @lane_count: lane count requested by the sink
95 * Returns true if the requested lane count is supported.
97 static inline bool is_lane_count_valid(u32 lane_count)
99 return (lane_count == 1 ||
104 struct dp_panel *dp_panel_get(struct dp_panel_in *in);
105 void dp_panel_put(struct dp_panel *dp_panel);
106 #endif /* _DP_PANEL_H_ */