1 /**************************************************************************
2 *
3 * Copyright 2015 Advanced Micro Devices, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include <assert.h>
29
30 #include "pipe/p_screen.h"
31 #include "pipe-loader/pipe_loader.h"
32 #include "frontend/drm_driver.h"
33
34 #include "util/u_memory.h"
35 #include "vl/vl_winsys.h"
36
37 #include "loader.h"
38
39 static void
40 vl_drm_screen_destroy(struct vl_screen *vscreen);
41
42 struct vl_screen *
vl_drm_screen_create(int fd,bool honor_dri_prime)43 vl_drm_screen_create(int fd, bool honor_dri_prime)
44 {
45 struct vl_screen *vscreen;
46 int libva_owned_fd = -1;
47
48 if (honor_dri_prime) {
49 /* Pass a non-NULL value as the 2nd param in order to not
50 * close the original fd - it's owned by libva.
51 * If fd is overriden, we'll close after the call to
52 * pipe_loader_drm_probe_fd because pipe_loader dups the fd.
53 */
54 loader_get_user_preferred_fd(&fd, &libva_owned_fd);
55 }
56
57 vscreen = CALLOC_STRUCT(vl_screen);
58 if (!vscreen)
59 return NULL;
60
61 if (pipe_loader_drm_probe_fd(&vscreen->dev, fd, false))
62 vscreen->pscreen = pipe_loader_create_screen(vscreen->dev, false);
63
64 if (libva_owned_fd >= 0 && libva_owned_fd != fd)
65 close(fd);
66
67 if (!vscreen->pscreen)
68 goto release_pipe;
69
70 vscreen->destroy = vl_drm_screen_destroy;
71 vscreen->texture_from_drawable = NULL;
72 vscreen->get_dirty_area = NULL;
73 vscreen->get_timestamp = NULL;
74 vscreen->set_next_timestamp = NULL;
75 vscreen->get_private = NULL;
76 return vscreen;
77
78 release_pipe:
79 if (vscreen->dev)
80 pipe_loader_release(&vscreen->dev, 1);
81
82 FREE(vscreen);
83 return NULL;
84 }
85
86 static void
vl_drm_screen_destroy(struct vl_screen * vscreen)87 vl_drm_screen_destroy(struct vl_screen *vscreen)
88 {
89 assert(vscreen);
90
91 vscreen->pscreen->destroy(vscreen->pscreen);
92 pipe_loader_release(&vscreen->dev, 1);
93 /* CHECK: The VAAPI loader/user preserves ownership of the original fd */
94 FREE(vscreen);
95 }
96