2019-02-12 12:28:13 +00:00
|
|
|
#ifndef __NVKM_GSP_H__
|
|
|
|
#define __NVKM_GSP_H__
|
|
|
|
#define nvkm_gsp(p) container_of((p), struct nvkm_gsp, subdev)
|
|
|
|
#include <core/subdev.h>
|
2020-01-14 20:34:21 +00:00
|
|
|
#include <core/falcon.h>
|
2019-02-12 12:28:13 +00:00
|
|
|
|
|
|
|
struct nvkm_gsp {
|
|
|
|
struct nvkm_subdev subdev;
|
2020-01-14 20:34:21 +00:00
|
|
|
struct nvkm_falcon falcon;
|
2019-02-12 12:28:13 +00:00
|
|
|
};
|
2019-02-12 12:28:13 +00:00
|
|
|
|
|
|
|
int gv100_gsp_new(struct nvkm_device *, int, struct nvkm_gsp **);
|
2019-02-12 12:28:13 +00:00
|
|
|
#endif
|