Home | History | Annotate | Line # | Download | only in gr
      1 /*	$NetBSD: nv10.h,v 1.3 2021/12/18 23:45:36 riastradh Exp $	*/
      2 
      3 /* SPDX-License-Identifier: MIT */
      4 #ifndef __NV10_GR_H__
      5 #define __NV10_GR_H__
      6 #include "priv.h"
      7 
      8 int nv10_gr_new_(const struct nvkm_gr_func *, struct nvkm_device *, int index,
      9 		 struct nvkm_gr **);
     10 int nv10_gr_init(struct nvkm_gr *);
     11 void nv10_gr_intr(struct nvkm_gr *);
     12 void nv10_gr_tile(struct nvkm_gr *, int, struct nvkm_fb_tile *);
     13 
     14 int nv10_gr_chan_new(struct nvkm_gr *, struct nvkm_fifo_chan *,
     15 		     const struct nvkm_oclass *, struct nvkm_object **);
     16 #endif
     17