123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /*
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
- * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
- */
- #ifndef _SDE_HW_INTF_H
- #define _SDE_HW_INTF_H
- #include "sde_hw_catalog.h"
- #include "sde_hw_mdss.h"
- #include "sde_hw_util.h"
- #include "sde_kms.h"
- struct sde_hw_intf;
- /* intf timing settings */
- struct intf_timing_params {
- u32 width; /* active width */
- u32 height; /* active height */
- u32 xres; /* Display panel width */
- u32 yres; /* Display panel height */
- u32 h_back_porch;
- u32 h_front_porch;
- u32 v_back_porch;
- u32 v_front_porch;
- u32 hsync_pulse_width;
- u32 vsync_pulse_width;
- u32 hsync_polarity;
- u32 vsync_polarity;
- u32 border_clr;
- u32 underflow_clr;
- u32 hsync_skew;
- u32 v_front_porch_fixed;
- bool wide_bus_en;
- bool compression_en;
- u32 extra_dto_cycles; /* for DP only */
- bool dsc_4hs_merge; /* DSC 4HS merge */
- bool poms_align_vsync; /* poms with vsync aligned */
- u32 dce_bytes_per_line;
- u32 vrefresh;
- };
- struct intf_prog_fetch {
- u8 enable;
- /* vsync counter for the front porch pixel line */
- u32 fetch_start;
- };
- struct intf_status {
- u8 is_en; /* interface timing engine is enabled or not */
- bool is_prog_fetch_en; /* interface prog fetch counter is enabled or not */
- u32 frame_count; /* frame count since timing engine enabled */
- u32 line_count; /* current line count including blanking */
- };
- struct intf_tear_status {
- u32 read_frame_count; /* frame count for tear init value */
- u32 read_line_count; /* line count for tear init value */
- u32 write_frame_count; /* frame count for tear write */
- u32 write_line_count; /* line count for tear write */
- };
- struct intf_avr_params {
- u32 default_fps;
- u32 min_fps;
- u32 avr_mode; /* one of enum @sde_rm_qsync_modes */
- u32 avr_step_lines; /* 0 or 1 means disabled */
- };
- /**
- * struct intf_wd_jitter_params : Interface to the INTF WD Jitter params.
- * jitter : max instantaneous jitter.
- * ltj_max : max long term jitter value.
- * ltj_slope : slope of long term jitter.
- */
- struct intf_wd_jitter_params {
- u32 jitter;
- u32 ltj_max;
- u32 ltj_slope;
- };
- /**
- * struct sde_hw_intf_ops : Interface to the interface Hw driver functions
- * Assumption is these functions will be called after clocks are enabled
- * @ setup_timing_gen : programs the timing engine
- * @ setup_prog_fetch : enables/disables the programmable fetch logic
- * @ setup_rot_start : enables/disables the rotator start trigger
- * @ enable_timing: enable/disable timing engine
- * @ get_status: returns if timing engine is enabled or not
- * @ setup_misr: enables/disables MISR in HW register
- * @ collect_misr: reads and stores MISR data from HW register
- * @ get_line_count: reads current vertical line counter
- * @ get_underrun_line_count: reads current underrun pixel clock count and
- * converts it into line count
- * @setup_vsync_source: Configure vsync source selection for intf
- * @configure_wd_jitter: Configure WD jitter.
- * @bind_pingpong_blk: enable/disable the connection with pingpong which will
- * feed pixels to this interface
- */
- struct sde_hw_intf_ops {
- void (*setup_timing_gen)(struct sde_hw_intf *intf,
- const struct intf_timing_params *p,
- const struct sde_format *fmt);
- void (*setup_prg_fetch)(struct sde_hw_intf *intf,
- const struct intf_prog_fetch *fetch);
- void (*setup_rot_start)(struct sde_hw_intf *intf,
- const struct intf_prog_fetch *fetch);
- void (*enable_timing)(struct sde_hw_intf *intf,
- u8 enable);
- void (*get_status)(struct sde_hw_intf *intf,
- struct intf_status *status);
- void (*setup_misr)(struct sde_hw_intf *intf,
- bool enable, u32 frame_count);
- int (*collect_misr)(struct sde_hw_intf *intf,
- bool nonblock, u32 *misr_value);
- /**
- * returns the current scan line count of the display
- * video mode panels use get_line_count whereas get_vsync_info
- * is used for command mode panels
- */
- u32 (*get_line_count)(struct sde_hw_intf *intf);
- u32 (*get_underrun_line_count)(struct sde_hw_intf *intf);
- void (*setup_vsync_source)(struct sde_hw_intf *intf, u32 frame_rate);
- void (*configure_wd_jitter)(struct sde_hw_intf *intf,
- struct intf_wd_jitter_params *wd_jitter);
- void (*bind_pingpong_blk)(struct sde_hw_intf *intf,
- bool enable,
- const enum sde_pingpong pp);
- /**
- * enables vysnc generation and sets up init value of
- * read pointer and programs the tear check cofiguration
- */
- int (*setup_tearcheck)(struct sde_hw_intf *intf,
- struct sde_hw_tear_check *cfg);
- /**
- * enables tear check block
- */
- int (*enable_tearcheck)(struct sde_hw_intf *intf,
- bool enable);
- /**
- * updates tearcheck configuration
- */
- void (*update_tearcheck)(struct sde_hw_intf *intf,
- struct sde_hw_tear_check *cfg);
- /**
- * read, modify, write to either set or clear listening to external TE
- * @Return: 1 if TE was originally connected, 0 if not, or -ERROR
- */
- int (*connect_external_te)(struct sde_hw_intf *intf,
- bool enable_external_te);
- /**
- * provides the programmed and current
- * line_count
- */
- int (*get_vsync_info)(struct sde_hw_intf *intf,
- struct sde_hw_pp_vsync_info *info);
- /**
- * configure and enable the autorefresh config
- */
- int (*setup_autorefresh)(struct sde_hw_intf *intf,
- struct sde_hw_autorefresh *cfg);
- /**
- * retrieve autorefresh config from hardware
- */
- int (*get_autorefresh)(struct sde_hw_intf *intf,
- struct sde_hw_autorefresh *cfg);
- /**
- * poll until write pointer transmission starts
- * @Return: 0 on success, -ETIMEDOUT on timeout
- */
- int (*poll_timeout_wr_ptr)(struct sde_hw_intf *intf, u32 timeout_us);
- /**
- * Select vsync signal for tear-effect configuration
- */
- void (*vsync_sel)(struct sde_hw_intf *intf, u32 vsync_source);
- /**
- * Program the AVR_TOTAL for min fps rate
- */
- int (*avr_setup)(struct sde_hw_intf *intf,
- const struct intf_timing_params *params,
- const struct intf_avr_params *avr_params);
- /**
- * Signal the trigger on each commit for AVR
- */
- void (*avr_trigger)(struct sde_hw_intf *ctx);
- /**
- * Enable AVR and select the mode
- */
- void (*avr_ctrl)(struct sde_hw_intf *intf,
- const struct intf_avr_params *avr_params);
- /**
- * Indicates the AVR armed status
- *
- * @return: false if a trigger is pending, else true while AVR is enabled
- */
- u32 (*get_avr_status)(struct sde_hw_intf *intf);
- /**
- * Enable/disable 64 bit compressed data input to interface block
- */
- void (*enable_compressed_input)(struct sde_hw_intf *intf,
- bool compression_en, bool dsc_4hs_merge);
- /**
- * Check the intf tear check status and reset it to start_pos
- */
- int (*check_and_reset_tearcheck)(struct sde_hw_intf *intf,
- struct intf_tear_status *status);
- /**
- * Reset the interface frame & line counter
- */
- void (*reset_counter)(struct sde_hw_intf *intf);
- /**
- * Get the HW vsync timestamp counter
- */
- u64 (*get_vsync_timestamp)(struct sde_hw_intf *intf, bool is_vid);
- /**
- * Enable processing of 2 pixels per clock
- */
- void (*enable_wide_bus)(struct sde_hw_intf *intf, bool enable);
- /**
- * Get the INTF interrupt status
- */
- u32 (*get_intr_status)(struct sde_hw_intf *intf);
- /**
- * Override tear check rd_ptr_val with adjusted_linecnt
- * when qsync is enabled.
- */
- void (*override_tear_rd_ptr_val)(struct sde_hw_intf *intf,
- u32 adjusted_linecnt);
- };
- struct sde_hw_intf {
- struct sde_hw_blk_reg_map hw;
- /* intf */
- enum sde_intf idx;
- const struct sde_intf_cfg *cap;
- const struct sde_mdss_cfg *mdss;
- struct split_pipe_cfg cfg;
- /* ops */
- struct sde_hw_intf_ops ops;
- };
- /**
- * to_sde_hw_intf - convert base hw object to sde_hw_intf container
- * @hw: Pointer to hardware block register map object
- * return: Pointer to hardware block container
- */
- static inline struct sde_hw_intf *to_sde_hw_intf(struct sde_hw_blk_reg_map *hw)
- {
- return container_of(hw, struct sde_hw_intf, hw);
- }
- /**
- * sde_hw_intf_init(): Initializes the intf driver for the passed
- * interface idx.
- * @idx: interface index for which driver object is required
- * @addr: mapped register io address of MDP
- * @m : pointer to mdss catalog data
- */
- struct sde_hw_blk_reg_map *sde_hw_intf_init(enum sde_intf idx,
- void __iomem *addr,
- struct sde_mdss_cfg *m);
- /**
- * sde_hw_intf_destroy(): Destroys INTF driver context
- * @hw: Pointer to hardware block register map object
- */
- void sde_hw_intf_destroy(struct sde_hw_blk_reg_map *hw);
- #endif /*_SDE_HW_INTF_H */
|