Lines Matching refs:fctx
41 struct nv10_fence_chan *fctx = chan->fence; in nv17_fence_sync() local
57 PUSH_MTHD(ppush, NV176E, SET_CONTEXT_DMA_SEMAPHORE, fctx->sema.handle, in nv17_fence_sync()
65 PUSH_MTHD(npush, NV176E, SET_CONTEXT_DMA_SEMAPHORE, fctx->sema.handle, in nv17_fence_sync()
81 struct nv10_fence_chan *fctx; in nv17_fence_context_new() local
86 fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL); in nv17_fence_context_new()
87 if (!fctx) in nv17_fence_context_new()
90 nouveau_fence_context_new(chan, &fctx->base); in nv17_fence_context_new()
91 fctx->base.emit = nv10_fence_emit; in nv17_fence_context_new()
92 fctx->base.read = nv10_fence_read; in nv17_fence_context_new()
93 fctx->base.sync = nv17_fence_sync; in nv17_fence_context_new()
103 &fctx->sema); in nv17_fence_context_new()