lima_pp.h 632 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 OR MIT */
  2. /* Copyright 2017-2019 Qiang Yu <[email protected]> */
  3. #ifndef __LIMA_PP_H__
  4. #define __LIMA_PP_H__
  5. struct lima_ip;
  6. struct lima_device;
  7. int lima_pp_resume(struct lima_ip *ip);
  8. void lima_pp_suspend(struct lima_ip *ip);
  9. int lima_pp_init(struct lima_ip *ip);
  10. void lima_pp_fini(struct lima_ip *ip);
  11. int lima_pp_bcast_resume(struct lima_ip *ip);
  12. void lima_pp_bcast_suspend(struct lima_ip *ip);
  13. int lima_pp_bcast_init(struct lima_ip *ip);
  14. void lima_pp_bcast_fini(struct lima_ip *ip);
  15. int lima_pp_pipe_init(struct lima_device *dev);
  16. void lima_pp_pipe_fini(struct lima_device *dev);
  17. #endif