OSDN Git Service

freedreno: add chip-id property
[android-x86/external-libdrm.git] / freedreno / msm / msm_pipe.c
1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2
3 /*
4  * Copyright (C) 2013 Rob Clark <robclark@freedesktop.org>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the next
14  * paragraph) shall be included in all copies or substantial portions of the
15  * Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  *
25  * Authors:
26  *    Rob Clark <robclark@freedesktop.org>
27  */
28
29 #include "msm_priv.h"
30
31
32 static int msm_pipe_get_param(struct fd_pipe *pipe,
33                 enum fd_param_id param, uint64_t *value)
34 {
35         struct msm_pipe *msm_pipe = to_msm_pipe(pipe);
36         switch(param) {
37         case FD_DEVICE_ID: // XXX probably get rid of this..
38         case FD_GPU_ID:
39                 *value = msm_pipe->gpu_id;
40                 return 0;
41         case FD_GMEM_SIZE:
42                 *value = msm_pipe->gmem;
43                 return 0;
44         case FD_CHIP_ID:
45                 *value = msm_pipe->chip_id;
46                 return 0;
47         default:
48                 ERROR_MSG("invalid param id: %d", param);
49                 return -1;
50         }
51 }
52
53 static int msm_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp)
54 {
55         struct fd_device *dev = pipe->dev;
56         struct drm_msm_wait_fence req = {
57                         .fence = timestamp,
58         };
59         int ret;
60
61         get_abs_timeout(&req.timeout, 5000);
62
63         ret = drmCommandWrite(dev->fd, DRM_MSM_WAIT_FENCE, &req, sizeof(req));
64         if (ret) {
65                 ERROR_MSG("wait-fence failed! %d (%s)", ret, strerror(errno));
66                 return ret;
67         }
68
69         return 0;
70 }
71
72 static void msm_pipe_destroy(struct fd_pipe *pipe)
73 {
74         struct msm_pipe *msm_pipe = to_msm_pipe(pipe);
75         free(msm_pipe);
76 }
77
78 static struct fd_pipe_funcs funcs = {
79                 .ringbuffer_new = msm_ringbuffer_new,
80                 .get_param = msm_pipe_get_param,
81                 .wait = msm_pipe_wait,
82                 .destroy = msm_pipe_destroy,
83 };
84
85 static uint64_t get_param(struct fd_device *dev, uint32_t pipe, uint32_t param)
86 {
87         struct drm_msm_param req = {
88                         .pipe = pipe,
89                         .param = param,
90         };
91         int ret;
92
93         ret = drmCommandWriteRead(dev->fd, DRM_MSM_GET_PARAM, &req, sizeof(req));
94         if (ret) {
95                 ERROR_MSG("get-param failed! %d (%s)", ret, strerror(errno));
96                 return 0;
97         }
98
99         return req.value;
100 }
101
102 struct fd_pipe * msm_pipe_new(struct fd_device *dev, enum fd_pipe_id id)
103 {
104         static const uint32_t pipe_id[] = {
105                         [FD_PIPE_3D] = MSM_PIPE_3D0,
106                         [FD_PIPE_2D] = MSM_PIPE_2D0,
107         };
108         struct msm_pipe *msm_pipe = NULL;
109         struct fd_pipe *pipe = NULL;
110
111         msm_pipe = calloc(1, sizeof(*msm_pipe));
112         if (!msm_pipe) {
113                 ERROR_MSG("allocation failed");
114                 goto fail;
115         }
116
117         pipe = &msm_pipe->base;
118         pipe->funcs = &funcs;
119
120         msm_pipe->pipe = pipe_id[id];
121         msm_pipe->gpu_id = get_param(dev, pipe_id[id], MSM_PARAM_GPU_ID);
122         msm_pipe->gmem   = get_param(dev, pipe_id[id], MSM_PARAM_GMEM_SIZE);
123         msm_pipe->chip_id = get_param(dev, pipe_id[id], MSM_PARAM_CHIP_ID);
124
125         if (! msm_pipe->gpu_id)
126                 goto fail;
127
128         INFO_MSG("Pipe Info:");
129         INFO_MSG(" GPU-id:          %d", msm_pipe->gpu_id);
130         INFO_MSG(" Chip-id:         0x%08x", msm_pipe->chip_id);
131         INFO_MSG(" GMEM size:       0x%08x", msm_pipe->gmem);
132
133         return pipe;
134 fail:
135         if (pipe)
136                 fd_pipe_del(pipe);
137         return NULL;
138 }