OSDN Git Service

etnaviv: change get_abs_timeout(..) to use ns.
[android-x86/external-libdrm.git] / etnaviv / etnaviv_pipe.c
1 /*
2  * Copyright (C) 2014-2015 Etnaviv Project
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  *
23  * Authors:
24  *    Christian Gmeiner <christian.gmeiner@gmail.com>
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include <config.h>
29 #endif
30
31 #include "etnaviv_priv.h"
32
33 int etna_pipe_wait(struct etna_pipe *pipe, uint32_t timestamp, uint32_t ms)
34 {
35         struct etna_device *dev = pipe->gpu->dev;
36         int ret;
37
38         struct drm_etnaviv_wait_fence req = {
39                 .pipe = pipe->gpu->core,
40                 .fence = timestamp,
41         };
42
43         if (ms == 0)
44                 req.flags |= ETNA_WAIT_NONBLOCK;
45
46         get_abs_timeout(&req.timeout, ms * 1000000);
47
48         ret = drmCommandWrite(dev->fd, DRM_ETNAVIV_WAIT_FENCE, &req, sizeof(req));
49         if (ret) {
50                 ERROR_MSG("wait-fence failed! %d (%s)", ret, strerror(errno));
51                 return ret;
52         }
53
54         return 0;
55 }
56
57 void etna_pipe_del(struct etna_pipe *pipe)
58 {
59         free(pipe);
60 }
61
62 struct etna_pipe *etna_pipe_new(struct etna_gpu *gpu, enum etna_pipe_id id)
63 {
64         struct etna_pipe *pipe;
65
66         pipe = calloc(1, sizeof(*pipe));
67         if (!pipe) {
68                 ERROR_MSG("allocation failed");
69                 goto fail;
70         }
71
72         pipe->id = id;
73         pipe->gpu = gpu;
74
75         return pipe;
76 fail:
77         return NULL;
78 }