2021-05-27 00:09:36 +05:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef __NVKM_NVDEC_PRIV_H__
|
|
|
|
#define __NVKM_NVDEC_PRIV_H__
|
|
|
|
#include <engine/nvdec.h>
|
|
|
|
|
|
|
|
struct nvkm_nvdec_func {
|
|
|
|
const struct nvkm_falcon_func *flcn;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nvkm_nvdec_fwif {
|
|
|
|
int version;
|
|
|
|
int (*load)(struct nvkm_nvdec *, int ver,
|
|
|
|
const struct nvkm_nvdec_fwif *);
|
|
|
|
const struct nvkm_nvdec_func *func;
|
|
|
|
};
|
|
|
|
|
2021-09-23 21:59:15 +05:00
|
|
|
int nvkm_nvdec_new_(const struct nvkm_nvdec_fwif *fwif,
|
|
|
|
struct nvkm_device *, int, struct nvkm_nvdec **);
|
2021-05-27 00:09:36 +05:00
|
|
|
#endif
|