License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / drivers / gpu / drm / nouveau / include / nvkm / engine / gr.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
e3c71eb2
BS
2#ifndef __NVKM_GR_H__
3#define __NVKM_GR_H__
e3c71eb2 4#include <core/engine.h>
b8bf04e1 5
e3c71eb2 6struct nvkm_gr {
27f3d6cf 7 const struct nvkm_gr_func *func;
c85ee6ca 8 struct nvkm_engine engine;
b8bf04e1
BS
9};
10
c85ee6ca
BS
11u64 nvkm_gr_units(struct nvkm_gr *);
12int nvkm_gr_tlb_flush(struct nvkm_gr *);
13
14int nv04_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
15int nv10_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
16int nv15_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
17int nv17_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
18int nv20_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
19int nv25_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
20int nv2a_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
21int nv30_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
22int nv34_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
23int nv35_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
24int nv40_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
25int nv44_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
26int nv50_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
27int g84_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
28int gt200_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
29int mcp79_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
30int gt215_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
31int mcp89_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
32int gf100_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
33int gf104_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
34int gf108_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
35int gf110_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
36int gf117_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
37int gf119_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
38int gk104_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
39int gk110_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
40int gk110b_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
41int gk208_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
42int gk20a_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
43int gm107_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
9ec28052 44int gm200_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
c85ee6ca 45int gm20b_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
52fa0866 46int gp100_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
424321be 47int gp102_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
b2c4ef70 48int gp107_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
51751f7d 49int gp10b_gr_new(struct nvkm_device *, int, struct nvkm_gr **);
b8bf04e1 50#endif