1  /* SPDX-License-Identifier: MIT */
2  /*
3   * Copyright © 2024 Intel Corporation
4   */
5  
6  #ifndef __INTEL_ENCODER_H__
7  #define __INTEL_ENCODER_H__
8  
9  struct intel_display;
10  struct intel_encoder;
11  
12  void intel_encoder_link_check_init(struct intel_encoder *encoder,
13  				   void (*callback)(struct intel_encoder *encoder));
14  void intel_encoder_link_check_queue_work(struct intel_encoder *encoder, int delay_ms);
15  void intel_encoder_link_check_flush_work(struct intel_encoder *encoder);
16  
17  void intel_encoder_suspend_all(struct intel_display *display);
18  void intel_encoder_shutdown_all(struct intel_display *display);
19  
20  #endif /* __INTEL_ENCODER_H__ */
21