lima_gp.h 448 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 OR MIT */
  2. /* Copyright 2017-2019 Qiang Yu <[email protected]> */
  3. #ifndef __LIMA_GP_H__
  4. #define __LIMA_GP_H__
  5. struct lima_ip;
  6. struct lima_device;
  7. int lima_gp_resume(struct lima_ip *ip);
  8. void lima_gp_suspend(struct lima_ip *ip);
  9. int lima_gp_init(struct lima_ip *ip);
  10. void lima_gp_fini(struct lima_ip *ip);
  11. int lima_gp_pipe_init(struct lima_device *dev);
  12. void lima_gp_pipe_fini(struct lima_device *dev);
  13. #endif