Merge ../mesa into vulkan
[mesa.git] / src / gallium / winsys / radeon / drm / radeon_drm_winsys.h
1 /*
2 * Copyright © 2009 Corbin Simpson
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
15 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
17 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 * USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * The above copyright notice and this permission notice (including the
23 * next paragraph) shall be included in all copies or substantial portions
24 * of the Software.
25 */
26 /*
27 * Authors:
28 * Corbin Simpson <MostAwesomeDude@gmail.com>
29 */
30 #ifndef RADEON_DRM_WINSYS_H
31 #define RADEON_DRM_WINSYS_H
32
33 #include "gallium/drivers/radeon/radeon_winsys.h"
34 #include "pipebuffer/pb_cache.h"
35 #include "os/os_thread.h"
36 #include "util/list.h"
37 #include <radeon_drm.h>
38
39 #ifndef DRM_RADEON_GEM_USERPTR
40
41 #define DRM_RADEON_GEM_USERPTR 0x2d
42
43 #define RADEON_GEM_USERPTR_READONLY (1 << 0)
44 #define RADEON_GEM_USERPTR_ANONONLY (1 << 1)
45 #define RADEON_GEM_USERPTR_VALIDATE (1 << 2)
46 #define RADEON_GEM_USERPTR_REGISTER (1 << 3)
47
48 struct drm_radeon_gem_userptr {
49 uint64_t addr;
50 uint64_t size;
51 uint32_t flags;
52 uint32_t handle;
53 };
54
55 #endif
56
57 struct radeon_drm_cs;
58
59 enum radeon_generation {
60 DRV_R300,
61 DRV_R600,
62 DRV_SI
63 };
64
65 struct radeon_drm_winsys {
66 struct radeon_winsys base;
67 struct pipe_reference reference;
68 struct pb_cache bo_cache;
69
70 int fd; /* DRM file descriptor */
71 int num_cs; /* The number of command streams created. */
72 uint64_t allocated_vram;
73 uint64_t allocated_gtt;
74 uint64_t buffer_wait_time; /* time spent in buffer_wait in ns */
75 uint64_t num_cs_flushes;
76
77 enum radeon_generation gen;
78 struct radeon_info info;
79 uint32_t va_start;
80 uint32_t va_unmap_working;
81 uint32_t accel_working2;
82
83 /* List of buffer GEM names. Protected by bo_handles_mutex. */
84 struct util_hash_table *bo_names;
85 /* List of buffer handles. Protectded by bo_handles_mutex. */
86 struct util_hash_table *bo_handles;
87 /* List of buffer virtual memory ranges. Protectded by bo_handles_mutex. */
88 struct util_hash_table *bo_vas;
89 pipe_mutex bo_handles_mutex;
90 pipe_mutex bo_va_mutex;
91
92 uint64_t va_offset;
93 struct list_head va_holes;
94
95 /* BO size alignment */
96 unsigned size_align;
97
98 struct radeon_surface_manager *surf_man;
99
100 uint32_t num_cpus; /* Number of CPUs. */
101
102 struct radeon_drm_cs *hyperz_owner;
103 pipe_mutex hyperz_owner_mutex;
104 struct radeon_drm_cs *cmask_owner;
105 pipe_mutex cmask_owner_mutex;
106
107 /* rings submission thread */
108 pipe_mutex cs_stack_lock;
109 pipe_semaphore cs_queued;
110 pipe_thread thread;
111 int kill_thread;
112 int ncs;
113 struct radeon_drm_cs *cs_stack[RING_LAST];
114 };
115
116 static inline struct radeon_drm_winsys *
117 radeon_drm_winsys(struct radeon_winsys *base)
118 {
119 return (struct radeon_drm_winsys*)base;
120 }
121
122 void radeon_drm_ws_queue_cs(struct radeon_drm_winsys *ws, struct radeon_drm_cs *cs);
123 void radeon_surface_init_functions(struct radeon_drm_winsys *ws);
124
125 #endif