123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- #ifndef _SDE_FENCE_H_
- #define _SDE_FENCE_H_
- #include <linux/kernel.h>
- #include <linux/errno.h>
- #include <linux/mutex.h>
- #include <linux/soc/qcom/msm_hw_fence.h>
- #ifndef CHAR_BIT
- #define CHAR_BIT 8
- #endif
- #define HW_FENCE_TRIGGER_SEL_CMD_MODE 0x0
- #define HW_FENCE_TRIGGER_SEL_PROG_LINE_COUNT 0x1
- #define HW_FENCE_TRIGGER_SEL_VID_MODE 0x2
- #define SDE_INPUT_HW_FENCE_TIMESTAMP BIT(0)
- #define SDE_OUTPUT_HW_FENCE_TIMESTAMP BIT(1)
- #define SDE_FENCE_NAME_SIZE 24
- #define MAX_SDE_HFENCE_OUT_SIGNAL_PING_PONG 2
- enum sde_fence_error_state {
- NO_ERROR,
- SET_ERROR_ONLY_CMD_RELEASE,
- SET_ERROR_ONLY_CMD_RETIRE,
- SET_ERROR_ONLY_VID,
- HANDLE_OUT_OF_ORDER,
- };
- struct sde_fence_error_ctx {
- u32 last_good_frame_fence_seqno;
- u32 curr_frame_fence_seqno;
- int fence_error_status;
- enum sde_fence_error_state fence_error_state;
- };
- struct sde_fence_context {
- unsigned int commit_count;
- unsigned int done_count;
- uint32_t drm_id;
- struct kref kref;
- spinlock_t lock;
- spinlock_t list_lock;
- u64 context;
- struct sde_fence_error_ctx sde_fence_error_ctx;
- struct list_head fence_list_head;
- char name[SDE_FENCE_NAME_SIZE];
- };
- struct sde_hw_fence_error_cb_data {
- int ctl_idx;
- struct sde_kms *sde_kms;
- };
- enum sde_fence_event {
- SDE_FENCE_SIGNAL,
- SDE_FENCE_RESET_TIMELINE,
- SDE_FENCE_SIGNAL_ERROR
- };
- struct sde_hw_fence_data {
- int client_id;
- enum hw_fence_client_id hw_fence_client_id;
- void *hw_fence_handle;
- struct msm_hw_fence_mem_addr mem_descriptor;
- u32 *txq_tx_wm_va;
- u32 *txq_wr_ptr_pa;
- u32 ipcc_in_client;
- u32 ipcc_in_signal;
- u32 ipcc_out_signal_pp[MAX_SDE_HFENCE_OUT_SIGNAL_PING_PONG];
- u32 ipcc_out_signal_pp_idx;
- u32 ipcc_out_client;
- u32 ipcc_this_client;
- u64 dma_context;
- u32 hw_fence_array_seqno;
- struct sde_hw_fence_error_cb_data sde_hw_fence_error_cb_data;
- };
- #if IS_ENABLED(CONFIG_SYNC_FILE)
- void *sde_sync_get(uint64_t fd);
- void sde_sync_put(void *fence);
- signed long sde_sync_wait(void *fence, long timeout_ms, int *error_status);
- uint32_t sde_sync_get_name_prefix(void *fence);
- struct sde_fence_context *sde_fence_init(const char *name,
- uint32_t drm_id);
- int sde_hw_fence_init(struct sde_hw_ctl *hw_ctl, struct sde_kms *sde_kms, bool use_dpu_ipcc,
- struct msm_mmu *mmu);
- void sde_hw_fence_deinit(struct sde_hw_ctl *hw_ctl);
- int sde_fence_register_hw_fences_wait(struct sde_hw_ctl *hw_ctl, struct dma_fence **fences,
- u32 num_fences);
- void sde_fence_output_hw_fence_dir_write_init(struct sde_hw_ctl *hw_ctl);
- int sde_fence_update_hw_fences_txq(struct sde_fence_context *ctx, bool vid_mode, u32 line_count,
- u32 debugfs_hw_fence);
- int sde_fence_update_input_hw_fence_signal(struct sde_hw_ctl *ctl, u32 debugfs_hw_fence,
- struct sde_hw_mdp *hw_mdp, bool disable);
- void sde_fence_error_ctx_update(struct sde_fence_context *ctx, int input_fence_status,
- enum sde_fence_error_state sde_fence_error_state);
- void sde_fence_deinit(struct sde_fence_context *fence);
- void sde_fence_prepare(struct sde_fence_context *fence);
- int sde_fence_create(struct sde_fence_context *fence, uint64_t *val,
- uint32_t offset, struct sde_hw_ctl *hw_ctl);
- void sde_fence_signal(struct sde_fence_context *fence, ktime_t ts,
- enum sde_fence_event fence_event, struct sde_hw_ctl *hw_ctl);
- void sde_fence_timeline_status(struct sde_fence_context *ctx,
- struct drm_mode_object *drm_obj);
- void sde_debugfs_timeline_dump(struct sde_fence_context *ctx,
- struct drm_mode_object *drm_obj, struct seq_file **s);
- void sde_fence_list_dump(struct dma_fence *fence, struct seq_file **s);
- void sde_fence_dump(struct dma_fence *fence);
- #else
- static inline void *sde_sync_get(uint64_t fd)
- {
- return NULL;
- }
- static inline void sde_sync_put(void *fence)
- {
- }
- static inline signed long sde_sync_wait(void *fence, long timeout_ms, int *error_status)
- {
- return 0;
- }
- static inline uint32_t sde_sync_get_name_prefix(void *fence)
- {
- return 0x0;
- }
- static inline struct sde_fence_context *sde_fence_init(const char *name,
- uint32_t drm_id)
- {
-
- return NULL;
- }
- static inline void sde_fence_deinit(struct sde_fence_context *fence)
- {
-
- }
- static inline int sde_fence_get(struct sde_fence_context *fence, uint64_t *val)
- {
- return -EINVAL;
- }
- static inline void sde_fence_signal(struct sde_fence_context *fence,
- ktime_t ts, bool reset_timeline)
- {
-
- }
- static inline void sde_fence_prepare(struct sde_fence_context *fence)
- {
-
- }
- static inline int sde_fence_create(struct sde_fence_context *fence,
- uint64_t *val, uint32_t offset)
- {
- return 0;
- }
- static inline void sde_fence_timeline_status(struct sde_fence_context *ctx,
- struct drm_mode_object *drm_obj);
- {
-
- }
- void sde_debugfs_timeline_dump(struct sde_fence_context *ctx,
- struct drm_mode_object *drm_obj, struct seq_file **s)
- {
-
- }
- void sde_fence_list_dump(struct dma_fence *fence, struct seq_file **s)
- {
-
- }
- void sde_fence_dump(struct dma_fence *fence)
- {
-
- }
- #endif
- #endif
|