1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVKM_SW_PRIV_H__
3 #define __NVKM_SW_PRIV_H__
4 #define nvkm_sw(p) container_of((p), struct nvkm_sw, engine)
8 int nvkm_sw_new_(const struct nvkm_sw_func
*, struct nvkm_device
*,
9 int index
, struct nvkm_sw
**);
11 struct nvkm_sw_chan_sclass
{
12 int (*ctor
)(struct nvkm_sw_chan
*, const struct nvkm_oclass
*,
13 void *data
, u32 size
, struct nvkm_object
**);
14 struct nvkm_sclass base
;
18 int (*chan_new
)(struct nvkm_sw
*, struct nvkm_fifo_chan
*,
19 const struct nvkm_oclass
*, struct nvkm_object
**);
20 const struct nvkm_sw_chan_sclass sclass
[];