The namespace of NVKM is being changed to nvkm_ instead of nouveau_, which will be used for the DRM part of the driver. This is being done in order to make it very clear as to what part of the driver a given symbol belongs to, and as a minor step towards splitting the DRM driver out to be able to stand on its own (for virt). Because there's already a large amount of churn here anyway, this is as good a time as any to also switch to NVIDIA's device and chipset naming to ease collaboration with them. A comparison of objdump disassemblies proves no code changes. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
45 lines
1 KiB
C
45 lines
1 KiB
C
#ifndef __NVKM_SW_NV50_H__
|
|
#define __NVKM_SW_NV50_H__
|
|
#include <engine/sw.h>
|
|
#include <core/notify.h>
|
|
|
|
struct nv50_sw_oclass {
|
|
struct nvkm_oclass base;
|
|
struct nvkm_oclass *cclass;
|
|
struct nvkm_oclass *sclass;
|
|
};
|
|
|
|
struct nv50_sw_priv {
|
|
struct nvkm_sw base;
|
|
};
|
|
|
|
int nv50_sw_ctor(struct nvkm_object *, struct nvkm_object *,
|
|
struct nvkm_oclass *, void *, u32,
|
|
struct nvkm_object **);
|
|
|
|
struct nv50_sw_cclass {
|
|
struct nvkm_oclass base;
|
|
int (*vblank)(struct nvkm_notify *);
|
|
};
|
|
|
|
struct nv50_sw_chan {
|
|
struct nvkm_sw_chan base;
|
|
struct {
|
|
struct nvkm_notify notify[4];
|
|
u32 channel;
|
|
u32 ctxdma;
|
|
u64 offset;
|
|
u32 value;
|
|
} vblank;
|
|
};
|
|
|
|
int nv50_sw_context_ctor(struct nvkm_object *,
|
|
struct nvkm_object *,
|
|
struct nvkm_oclass *, void *, u32,
|
|
struct nvkm_object **);
|
|
void nv50_sw_context_dtor(struct nvkm_object *);
|
|
|
|
int nv50_sw_mthd_vblsem_value(struct nvkm_object *, u32, void *, u32);
|
|
int nv50_sw_mthd_vblsem_release(struct nvkm_object *, u32, void *, u32);
|
|
int nv50_sw_mthd_flip(struct nvkm_object *, u32, void *, u32);
|
|
#endif
|