We need this for Turing ACR, but it's present from Volta onwards. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
15 lines
299 B
C
15 lines
299 B
C
#ifndef __NVKM_GSP_H__
|
|
#define __NVKM_GSP_H__
|
|
#define nvkm_gsp(p) container_of((p), struct nvkm_gsp, subdev)
|
|
#include <core/subdev.h>
|
|
|
|
struct nvkm_gsp {
|
|
struct nvkm_subdev subdev;
|
|
u32 addr;
|
|
|
|
struct nvkm_falcon *falcon;
|
|
};
|
|
|
|
int gv100_gsp_new(struct nvkm_device *, int, struct nvkm_gsp **);
|
|
#endif
|