mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: MIT */
 | |
| #ifndef __NVKM_GR_H__
 | |
| #define __NVKM_GR_H__
 | |
| #include <core/engine.h>
 | |
| 
 | |
| struct nvkm_gr {
 | |
| 	const struct nvkm_gr_func *func;
 | |
| 	struct nvkm_engine engine;
 | |
| };
 | |
| 
 | |
| u64 nvkm_gr_units(struct nvkm_gr *);
 | |
| int nvkm_gr_tlb_flush(struct nvkm_gr *);
 | |
| int nvkm_gr_ctxsw_pause(struct nvkm_device *);
 | |
| int nvkm_gr_ctxsw_resume(struct nvkm_device *);
 | |
| u32 nvkm_gr_ctxsw_inst(struct nvkm_device *);
 | |
| 
 | |
| int nv04_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv10_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv15_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv17_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv20_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv25_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv2a_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv30_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv34_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv35_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv40_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv44_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int nv50_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int g84_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gt200_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int mcp79_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gt215_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int mcp89_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gf100_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gf104_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gf108_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gf110_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gf117_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gf119_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gk104_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gk110_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gk110b_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gk208_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gk20a_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gm107_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gm200_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gm20b_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gp100_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gp102_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gp104_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gp107_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gp108_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gp10b_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int gv100_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| int tu102_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
 | |
| #endif
 | 
