Lines Matching refs:pipe
29 drm_public int etna_pipe_wait(struct etna_pipe *pipe, uint32_t timestamp, uint32_t ms)
31 return etna_pipe_wait_ns(pipe, timestamp, ms * 1000000);
34 drm_public int etna_pipe_wait_ns(struct etna_pipe *pipe, uint32_t timestamp, uint64_t ns)
36 struct etna_device *dev = pipe->gpu->dev;
40 .pipe = pipe->gpu->core,
58 drm_public void etna_pipe_del(struct etna_pipe *pipe)
60 free(pipe);
65 struct etna_pipe *pipe;
67 pipe = calloc(1, sizeof(*pipe));
68 if (!pipe) {
73 pipe->id = id;
74 pipe->gpu = gpu;
76 return pipe;