1 #ifndef __NVKM_GR_PRIV_H__
2 #define __NVKM_GR_PRIV_H__
3 #define nvkm_gr(p) container_of((p), struct nvkm_gr, engine)
4 #include <engine/gr.h>
5 #include <core/enum.h>
6 struct nvkm_fb_tile;
7 struct nvkm_fifo_chan;
8 
9 int nvkm_gr_ctor(const struct nvkm_gr_func *, struct nvkm_device *,
10 		 int index, bool enable, struct nvkm_gr *);
11 
12 bool nv04_gr_idle(struct nvkm_gr *);
13 
14 struct nvkm_gr_func {
15 	void *(*dtor)(struct nvkm_gr *);
16 	int (*oneinit)(struct nvkm_gr *);
17 	int (*init)(struct nvkm_gr *);
18 	int (*fini)(struct nvkm_gr *, bool);
19 	void (*intr)(struct nvkm_gr *);
20 	void (*tile)(struct nvkm_gr *, int region, struct nvkm_fb_tile *);
21 	int (*tlb_flush)(struct nvkm_gr *);
22 	int (*chan_new)(struct nvkm_gr *, struct nvkm_fifo_chan *,
23 			const struct nvkm_oclass *, struct nvkm_object **);
24 	int (*object_get)(struct nvkm_gr *, int, struct nvkm_sclass *);
25 	/* Returns chipset-specific counts of units packed into an u64.
26 	 */
27 	u64 (*units)(struct nvkm_gr *);
28 	bool (*chsw_load)(struct nvkm_gr *);
29 	struct nvkm_sclass sclass[];
30 };
31 
32 extern const struct nvkm_bitfield nv04_gr_nsource[];
33 extern const struct nvkm_object_func nv04_gr_object;
34 
35 extern const struct nvkm_bitfield nv10_gr_intr_name[];
36 extern const struct nvkm_bitfield nv10_gr_nstatus[];
37 
38 extern const struct nvkm_enum nv50_data_error_names[];
39 #endif
40