Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
0002 /* Copyright 2017-2019 Qiang Yu <yuq825@gmail.com> */
0003 
0004 #ifndef __LIMA_PP_H__
0005 #define __LIMA_PP_H__
0006 
0007 struct lima_ip;
0008 struct lima_device;
0009 
0010 int lima_pp_resume(struct lima_ip *ip);
0011 void lima_pp_suspend(struct lima_ip *ip);
0012 int lima_pp_init(struct lima_ip *ip);
0013 void lima_pp_fini(struct lima_ip *ip);
0014 
0015 int lima_pp_bcast_resume(struct lima_ip *ip);
0016 void lima_pp_bcast_suspend(struct lima_ip *ip);
0017 int lima_pp_bcast_init(struct lima_ip *ip);
0018 void lima_pp_bcast_fini(struct lima_ip *ip);
0019 
0020 int lima_pp_pipe_init(struct lima_device *dev);
0021 void lima_pp_pipe_fini(struct lima_device *dev);
0022 
0023 #endif