mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 08:13:56 -04:00
Adds support for allocating VIDEO_DECODER classes from RM. Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Signed-off-by: Dave Airlie <airlied@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230918202149.4343-42-skeggsb@gmail.com
27 lines
722 B
C
27 lines
722 B
C
/* 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_sclass sclass[];
|
|
};
|
|
|
|
struct nvkm_nvdec_fwif {
|
|
int version;
|
|
int (*load)(struct nvkm_nvdec *, int ver,
|
|
const struct nvkm_nvdec_fwif *);
|
|
const struct nvkm_nvdec_func *func;
|
|
};
|
|
|
|
extern const struct nvkm_nvdec_fwif gm107_nvdec_fwif[];
|
|
|
|
int nvkm_nvdec_new_(const struct nvkm_nvdec_fwif *fwif, struct nvkm_device *,
|
|
enum nvkm_subdev_type, int, u32 addr, struct nvkm_nvdec **);
|
|
|
|
int r535_nvdec_new(const struct nvkm_engine_func *, struct nvkm_device *,
|
|
enum nvkm_subdev_type, int, struct nvkm_nvdec **);
|
|
#endif
|