OSDN Git Service

bf941c1e2a6860d745d031fdf430e621d0555297
[android-x86/external-libdrm.git] / amdgpu / amdgpu_device.c
1 /*
2  * Copyright 2014 Advanced Micro Devices, Inc.
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 shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  */
23
24 /**
25  * \file amdgpu_device.c
26  *
27  *  Implementation of functions for AMD GPU device
28  *
29  */
30
31 #ifdef HAVE_CONFIG_H
32 #include "config.h"
33 #endif
34
35 #include <sys/stat.h>
36 #include <errno.h>
37 #include <string.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <unistd.h>
41
42 #include "xf86drm.h"
43 #include "amdgpu_drm.h"
44 #include "amdgpu_internal.h"
45 #include "util_hash_table.h"
46
47 #define PTR_TO_UINT(x) ((unsigned)((intptr_t)(x)))
48 #define UINT_TO_PTR(x) ((void *)((intptr_t)(x)))
49
50 pthread_mutex_t fd_mutex = PTHREAD_MUTEX_INITIALIZER;
51 static struct util_hash_table *fd_tab;
52
53 static unsigned handle_hash(void *key)
54 {
55         return PTR_TO_UINT(key);
56 }
57
58 static int handle_compare(void *key1, void *key2)
59 {
60         return PTR_TO_UINT(key1) != PTR_TO_UINT(key2);
61 }
62
63 static unsigned fd_hash(void *key)
64 {
65         int fd = PTR_TO_UINT(key);
66         char *name = drmGetPrimaryDeviceNameFromFd(fd);
67         unsigned result = 0;
68         char *c;
69
70         if (name == NULL)
71                 return 0;
72
73         for (c = name; *c; ++c)
74                 result += *c;
75
76         free(name);
77
78         return result;
79 }
80
81 static int fd_compare(void *key1, void *key2)
82 {
83         int fd1 = PTR_TO_UINT(key1);
84         int fd2 = PTR_TO_UINT(key2);
85         char *name1 = drmGetPrimaryDeviceNameFromFd(fd1);
86         char *name2 = drmGetPrimaryDeviceNameFromFd(fd2);
87         int result;
88
89         if (name1 == NULL || name2 == NULL) {
90                 free(name1);
91                 free(name2);
92                 return 0;
93         }
94
95         result = strcmp(name1, name2);
96         free(name1);
97         free(name2);
98
99         return result;
100 }
101
102 /**
103 * Get the authenticated form fd,
104 *
105 * \param   fd   - \c [in]  File descriptor for AMD GPU device
106 * \param   auth - \c [out] Pointer to output the fd is authenticated or not
107 *                          A render node fd, output auth = 0
108 *                          A legacy fd, get the authenticated for compatibility root
109 *
110 * \return   0 on success\n
111 *          >0 - AMD specific error code\n
112 *          <0 - Negative POSIX Error code
113 */
114 static int amdgpu_get_auth(int fd, int *auth)
115 {
116         int r = 0;
117         drm_client_t client = {};
118
119         if (drmGetNodeTypeFromFd(fd) == DRM_NODE_RENDER)
120                 *auth = 0;
121         else {
122                 client.idx = 0;
123                 r = drmIoctl(fd, DRM_IOCTL_GET_CLIENT, &client);
124                 if (!r)
125                         *auth = client.auth;
126         }
127         return r;
128 }
129
130 int amdgpu_device_initialize(int fd,
131                              uint32_t *major_version,
132                              uint32_t *minor_version,
133                              amdgpu_device_handle *device_handle)
134 {
135         struct amdgpu_device *dev;
136         drmVersionPtr version;
137         int r;
138         int flag_auth = 0;
139         int flag_authexist=0;
140         uint32_t accel_working = 0;
141
142         *device_handle = NULL;
143
144         pthread_mutex_lock(&fd_mutex);
145         if (!fd_tab)
146                 fd_tab = util_hash_table_create(fd_hash, fd_compare);
147         r = amdgpu_get_auth(fd, &flag_auth);
148         if (r) {
149                 pthread_mutex_unlock(&fd_mutex);
150                 return r;
151         }
152         dev = util_hash_table_get(fd_tab, UINT_TO_PTR(fd));
153         if (dev) {
154                 r = amdgpu_get_auth(dev->fd, &flag_authexist);
155                 if (r) {
156                         pthread_mutex_unlock(&fd_mutex);
157                         return r;
158                 }
159                 if ((flag_auth) && (!flag_authexist)) {
160                         dev->flink_fd = dup(fd);
161                 }
162                 *major_version = dev->major_version;
163                 *minor_version = dev->minor_version;
164                 amdgpu_device_reference(device_handle, dev);
165                 pthread_mutex_unlock(&fd_mutex);
166                 return 0;
167         }
168
169         dev = calloc(1, sizeof(struct amdgpu_device));
170         if (!dev) {
171                 pthread_mutex_unlock(&fd_mutex);
172                 return -ENOMEM;
173         }
174
175         dev->fd = -1;
176         dev->flink_fd = -1;
177
178         atomic_set(&dev->refcount, 1);
179
180         version = drmGetVersion(fd);
181         if (version->version_major != 3) {
182                 fprintf(stderr, "%s: DRM version is %d.%d.%d but this driver is "
183                         "only compatible with 3.x.x.\n",
184                         __func__,
185                         version->version_major,
186                         version->version_minor,
187                         version->version_patchlevel);
188                 drmFreeVersion(version);
189                 r = -EBADF;
190                 goto cleanup;
191         }
192
193         dev->fd = dup(fd);
194         dev->flink_fd = dev->fd;
195         dev->major_version = version->version_major;
196         dev->minor_version = version->version_minor;
197         drmFreeVersion(version);
198
199         dev->bo_flink_names = util_hash_table_create(handle_hash,
200                                                      handle_compare);
201         dev->bo_handles = util_hash_table_create(handle_hash, handle_compare);
202         pthread_mutex_init(&dev->bo_table_mutex, NULL);
203
204         /* Check if acceleration is working. */
205         r = amdgpu_query_info(dev, AMDGPU_INFO_ACCEL_WORKING, 4, &accel_working);
206         if (r)
207                 goto cleanup;
208         if (!accel_working) {
209                 r = -EBADF;
210                 goto cleanup;
211         }
212
213         r = amdgpu_query_gpu_info_init(dev);
214         if (r)
215                 goto cleanup;
216
217         dev->vamgr = amdgpu_vamgr_get_global(dev);
218
219         *major_version = dev->major_version;
220         *minor_version = dev->minor_version;
221         *device_handle = dev;
222         util_hash_table_set(fd_tab, UINT_TO_PTR(dev->fd), dev);
223         pthread_mutex_unlock(&fd_mutex);
224
225         return 0;
226
227 cleanup:
228         if (dev->fd >= 0)
229                 close(dev->fd);
230         free(dev);
231         pthread_mutex_unlock(&fd_mutex);
232         return r;
233 }
234
235 void amdgpu_device_free_internal(amdgpu_device_handle dev)
236 {
237         amdgpu_vamgr_reference(&dev->vamgr, NULL);
238         util_hash_table_destroy(dev->bo_flink_names);
239         util_hash_table_destroy(dev->bo_handles);
240         pthread_mutex_destroy(&dev->bo_table_mutex);
241         util_hash_table_remove(fd_tab, UINT_TO_PTR(dev->fd));
242         close(dev->fd);
243         if ((dev->flink_fd >= 0) && (dev->fd != dev->flink_fd))
244                 close(dev->flink_fd);
245         free(dev);
246 }
247
248 int amdgpu_device_deinitialize(amdgpu_device_handle dev)
249 {
250         amdgpu_device_reference(&dev, NULL);
251         return 0;
252 }
253
254 void amdgpu_device_reference(struct amdgpu_device **dst,
255                              struct amdgpu_device *src)
256 {
257         if (update_references(&(*dst)->refcount, &src->refcount))
258                 amdgpu_device_free_internal(*dst);
259         *dst = src;
260 }