123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /*
- * Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
- * Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
- */
- #ifndef _DP_PANEL_H_
- #define _DP_PANEL_H_
- #include <drm/sde_drm.h>
- #include "dp_aux.h"
- #include "dp_link.h"
- #include "sde_edid_parser.h"
- #include "sde_connector.h"
- #include "msm_drv.h"
- #define DP_RECEIVER_DSC_CAP_SIZE 15
- #define DP_RECEIVER_FEC_STATUS_SIZE 3
- #define DP_RECEIVER_EXT_CAP_SIZE 4
- /*
- * A source initiated power down flag is set
- * when the DP is powered off while physical
- * DP cable is still connected i.e. without
- * HPD or not initiated by sink like HPD_IRQ.
- * This can happen if framework reboots or
- * device suspends.
- */
- #define DP_PANEL_SRC_INITIATED_POWER_DOWN BIT(0)
- #define DP_EXT_REC_CAP_FIELD BIT(7)
- enum dp_lane_count {
- DP_LANE_COUNT_1 = 1,
- DP_LANE_COUNT_2 = 2,
- DP_LANE_COUNT_4 = 4,
- };
- enum dp_output_format {
- DP_OUTPUT_FORMAT_RGB,
- DP_OUTPUT_FORMAT_YCBCR420,
- DP_OUTPUT_FORMAT_YCBCR422,
- DP_OUTPUT_FORMAT_YCBCR444,
- DP_OUTPUT_FORMAT_INVALID,
- };
- #define DP_MAX_DOWNSTREAM_PORTS 0x10
- struct dp_panel_info {
- u32 h_active;
- u32 v_active;
- u32 h_back_porch;
- u32 h_front_porch;
- u32 h_sync_width;
- u32 h_active_low;
- u32 v_back_porch;
- u32 v_front_porch;
- u32 v_sync_width;
- u32 v_active_low;
- u32 h_skew;
- u32 refresh_rate;
- u32 pixel_clk_khz;
- u32 bpp;
- bool widebus_en;
- struct msm_compression_info comp_info;
- s64 dsc_overhead_fp;
- u32 pbn_no_overhead;
- u32 pbn;
- };
- struct dp_display_mode {
- struct dp_panel_info timing;
- u32 capabilities;
- s64 fec_overhead_fp;
- s64 dsc_overhead_fp;
- /**
- * @output_format:
- *
- * This is used to indicate DP output format.
- * The output format can be read from drm_mode.
- */
- enum dp_output_format output_format;
- u32 lm_count;
- };
- struct dp_panel;
- struct dp_panel_in {
- struct device *dev;
- struct dp_aux *aux;
- struct dp_link *link;
- struct dp_catalog_panel *catalog;
- struct drm_connector *connector;
- struct dp_panel *base_panel;
- struct dp_parser *parser;
- #if defined(CONFIG_SECDP)
- struct secdp_misc *sec;
- #endif
- };
- struct dp_dsc_caps {
- bool dsc_capable;
- u8 version;
- bool block_pred_en;
- u8 color_depth;
- };
- struct dp_audio;
- #define DP_PANEL_CAPS_DSC BIT(0)
- struct dp_panel {
- /* dpcd raw data */
- u8 dpcd[DP_RECEIVER_CAP_SIZE + DP_RECEIVER_EXT_CAP_SIZE + 1];
- u8 ds_ports[DP_MAX_DOWNSTREAM_PORTS];
- u8 dsc_dpcd[DP_RECEIVER_DSC_CAP_SIZE + 1];
- u8 fec_dpcd;
- u8 fec_sts_dpcd[DP_RECEIVER_FEC_STATUS_SIZE + 1];
- struct drm_dp_link link_info;
- struct sde_edid_ctrl *edid_ctrl;
- struct dp_panel_info pinfo;
- bool video_test;
- bool spd_enabled;
- u32 vic;
- u32 max_pclk_khz;
- s64 mst_target_sc;
- /* debug */
- u32 max_bw_code;
- u32 lane_count;
- u32 link_bw_code;
- u32 max_supported_bpp;
- #if defined(CONFIG_SECDP)
- bool tbox;
- u8 monitor_name[14]; /* max 13 chars + null */
- u32 dsp_type;
- struct dp_panel_info max_timing_info;
- #endif
- /* By default, stream_id is assigned to DP_INVALID_STREAM.
- * Client sets the stream id value using set_stream_id interface.
- */
- enum dp_stream_id stream_id;
- int vcpi;
- u32 channel_start_slot;
- u32 channel_total_slots;
- u32 pbn;
- u32 dsc_blks_in_use;
- u32 max_lm;
- /* DRM connector assosiated with this panel */
- struct drm_connector *connector;
- struct dp_audio *audio;
- bool audio_supported;
- struct dp_dsc_caps sink_dsc_caps;
- bool dsc_feature_enable;
- bool fec_feature_enable;
- bool dsc_en;
- bool fec_en;
- bool widebus_en;
- bool dsc_continuous_pps;
- bool mst_state;
- bool pclk_on;
- /* override debug option */
- bool mst_hide;
- bool mode_override;
- int hdisplay;
- int vdisplay;
- int vrefresh;
- int aspect_ratio;
- s64 fec_overhead_fp;
- int (*init)(struct dp_panel *dp_panel);
- int (*deinit)(struct dp_panel *dp_panel, u32 flags);
- int (*hw_cfg)(struct dp_panel *dp_panel, bool enable);
- int (*read_sink_caps)(struct dp_panel *dp_panel,
- struct drm_connector *connector, bool multi_func);
- u32 (*get_mode_bpp)(struct dp_panel *dp_panel, u32 mode_max_bpp,
- u32 mode_pclk_khz, bool dsc_en);
- int (*get_modes)(struct dp_panel *dp_panel,
- struct drm_connector *connector, struct dp_display_mode *mode);
- void (*handle_sink_request)(struct dp_panel *dp_panel);
- int (*setup_hdr)(struct dp_panel *dp_panel,
- struct drm_msm_ext_hdr_metadata *hdr_meta,
- bool dhdr_update, u64 core_clk_rate, bool flush);
- int (*set_colorspace)(struct dp_panel *dp_panel,
- u32 colorspace);
- void (*tpg_config)(struct dp_panel *dp_panel, u32 pattern);
- int (*spd_config)(struct dp_panel *dp_panel);
- bool (*hdr_supported)(struct dp_panel *dp_panel);
- int (*set_stream_info)(struct dp_panel *dp_panel,
- enum dp_stream_id stream_id, u32 ch_start_slot,
- u32 ch_tot_slots, u32 pbn, int vcpi);
- int (*read_sink_status)(struct dp_panel *dp_panel, u8 *sts, u32 size);
- int (*update_edid)(struct dp_panel *dp_panel, struct edid *edid);
- bool (*read_mst_cap)(struct dp_panel *dp_panel);
- void (*convert_to_dp_mode)(struct dp_panel *dp_panel,
- const struct drm_display_mode *drm_mode,
- struct dp_display_mode *dp_mode);
- void (*update_pps)(struct dp_panel *dp_panel, char *pps_cmd);
- int (*sink_crc_enable)(struct dp_panel *dp_panel, bool enable);
- int (*get_src_crc)(struct dp_panel *dp_panel, u16 *crc);
- int (*get_sink_crc)(struct dp_panel *dp_panel, u16 *crc);
- bool (*get_panel_on)(struct dp_panel *dp_panel);
- };
- struct dp_tu_calc_input {
- u64 lclk; /* 162, 270, 540 and 810 */
- u64 pclk_khz; /* in KHz */
- u64 hactive; /* active h-width */
- u64 hporch; /* bp + fp + pulse */
- int nlanes; /* no.of.lanes */
- int bpp; /* bits */
- int pixel_enc; /* 444, 420, 422 */
- int dsc_en; /* dsc on/off */
- int async_en; /* async mode */
- int fec_en; /* fec */
- int compress_ratio; /* 2:1 = 200, 3:1 = 300, 3.75:1 = 375 */
- int num_of_dsc_slices; /* number of slices per line */
- };
- struct dp_vc_tu_mapping_table {
- u32 vic;
- u8 lanes;
- u8 lrate; /* DP_LINK_RATE -> 162(6), 270(10), 540(20), 810 (30) */
- u8 bpp;
- u32 valid_boundary_link;
- u32 delay_start_link;
- bool boundary_moderation_en;
- u32 valid_lower_boundary_link;
- u32 upper_boundary_count;
- u32 lower_boundary_count;
- u32 tu_size_minus1;
- };
- /**
- * is_link_rate_valid() - validates the link rate
- * @lane_rate: link rate requested by the sink
- *
- * Returns true if the requested link rate is supported.
- */
- static inline bool is_link_rate_valid(u32 bw_code)
- {
- return ((bw_code == DP_LINK_BW_1_62) ||
- (bw_code == DP_LINK_BW_2_7) ||
- (bw_code == DP_LINK_BW_5_4) ||
- (bw_code == DP_LINK_BW_8_1));
- }
- /**
- * dp_link_is_lane_count_valid() - validates the lane count
- * @lane_count: lane count requested by the sink
- *
- * Returns true if the requested lane count is supported.
- */
- static inline bool is_lane_count_valid(u32 lane_count)
- {
- return (lane_count == DP_LANE_COUNT_1) ||
- (lane_count == DP_LANE_COUNT_2) ||
- (lane_count == DP_LANE_COUNT_4);
- }
- struct dp_panel *dp_panel_get(struct dp_panel_in *in);
- void dp_panel_put(struct dp_panel *dp_panel);
- void dp_panel_calc_tu_test(struct dp_tu_calc_input *in,
- struct dp_vc_tu_mapping_table *tu_table);
- #define SECDP_OPTIMAL_LINK_RATE /* use optimum link_rate, not max link_rate */
- #ifdef SECDP_OPTIMAL_LINK_RATE
- u32 secdp_gen_link_clk(struct dp_panel *dp_panel);
- #endif
- #endif /* _DP_PANEL_H_ */
|