mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-21 06:50:25 +00:00

Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Reviewed-by: Lyude Paul <lyude@redhat.com>
21 lines
443 B
C
21 lines
443 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NVKM_SW_NV50_H__
|
|
#define __NVKM_SW_NV50_H__
|
|
#define nv50_sw_chan(p) container_of((p), struct nv50_sw_chan, base)
|
|
#include "priv.h"
|
|
#include "chan.h"
|
|
#include "nvsw.h"
|
|
#include <core/event.h>
|
|
|
|
struct nv50_sw_chan {
|
|
struct nvkm_sw_chan base;
|
|
struct {
|
|
struct nvkm_event_ntfy notify[4];
|
|
u32 ctxdma;
|
|
u64 offset;
|
|
u32 value;
|
|
} vblank;
|
|
};
|
|
|
|
void *nv50_sw_chan_dtor(struct nvkm_sw_chan *);
|
|
#endif
|