search for: nvc0_swmthd_vblsem_offset_low

Displaying 1 result from an estimated 1 matches for "nvc0_swmthd_vblsem_offset_low".

2012 Jul 27
0
[PATCH 3/3] nouveau: add vblank methods on newer cards
...tc) return pch->dispc_vma[crtc].offset; } +static int +nvc0_swmthd_vblsem_offset_high(struct nouveau_channel *chan, + u32 class, u32 mthd, u32 data) +{ + struct nvc0_software_chan *pch = chan->engctx[NVOBJ_ENGINE_SW]; + + pch->base.vblank.ctxdma = data; + return 0; +} + +static int +nvc0_swmthd_vblsem_offset_low(struct nouveau_channel *chan, + u32 class, u32 mthd, u32 data) +{ + struct nvc0_software_chan *pch = chan->engctx[NVOBJ_ENGINE_SW]; + + pch->base.vblank.offset = data; + return 0; +} + +static int +nvc0_swmthd_vblsem_release_val(struct nouveau_channel *chan, + u32 class, u32 mthd, u3...