Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
0002 /* Copyright 2018-2019 Qiang Yu <yuq825@gmail.com> */
0003 
0004 #ifndef __LIMA_DLBU_H__
0005 #define __LIMA_DLBU_H__
0006 
0007 struct lima_ip;
0008 struct lima_device;
0009 
0010 void lima_dlbu_enable(struct lima_device *dev, int num_pp);
0011 void lima_dlbu_disable(struct lima_device *dev);
0012 
0013 void lima_dlbu_set_reg(struct lima_ip *ip, u32 *reg);
0014 
0015 int lima_dlbu_resume(struct lima_ip *ip);
0016 void lima_dlbu_suspend(struct lima_ip *ip);
0017 int lima_dlbu_init(struct lima_ip *ip);
0018 void lima_dlbu_fini(struct lima_ip *ip);
0019 
0020 #endif