These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / gpu / drm / nouveau / include / nvkm / subdev / mc.h
1 #ifndef __NVKM_MC_H__
2 #define __NVKM_MC_H__
3 #include <core/subdev.h>
4
5 struct nvkm_mc {
6         const struct nvkm_mc_func *func;
7         struct nvkm_subdev subdev;
8 };
9
10 void nvkm_mc_intr(struct nvkm_mc *, bool *handled);
11 void nvkm_mc_intr_unarm(struct nvkm_mc *);
12 void nvkm_mc_intr_rearm(struct nvkm_mc *);
13 void nvkm_mc_unk260(struct nvkm_mc *, u32 data);
14
15 int nv04_mc_new(struct nvkm_device *, int, struct nvkm_mc **);
16 int nv44_mc_new(struct nvkm_device *, int, struct nvkm_mc **);
17 int nv50_mc_new(struct nvkm_device *, int, struct nvkm_mc **);
18 int g98_mc_new(struct nvkm_device *, int, struct nvkm_mc **);
19 int gf100_mc_new(struct nvkm_device *, int, struct nvkm_mc **);
20 int gk20a_mc_new(struct nvkm_device *, int, struct nvkm_mc **);
21 #endif