Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / libs / mesa / src / gallium / drivers / nouveau / nouveau_screen.c
blob223e7682ccd4dd9c047dba995c67daa84688bd51
1 #include "pipe/p_defines.h"
2 #include "pipe/p_screen.h"
3 #include "pipe/p_state.h"
5 #include "util/u_memory.h"
6 #include "util/u_inlines.h"
7 #include "util/u_format.h"
8 #include "util/u_format_s3tc.h"
9 #include "util/u_string.h"
11 #include <stdio.h>
12 #include <errno.h>
14 #include "nouveau/nouveau_bo.h"
15 #include "nouveau/nouveau_mm.h"
16 #include "nouveau_winsys.h"
17 #include "nouveau_screen.h"
18 #include "nouveau_fence.h"
20 /* XXX this should go away */
21 #include "state_tracker/drm_driver.h"
22 #include "util/u_simple_screen.h"
24 static const char *
25 nouveau_screen_get_name(struct pipe_screen *pscreen)
27 struct nouveau_device *dev = nouveau_screen(pscreen)->device;
28 static char buffer[128];
30 util_snprintf(buffer, sizeof(buffer), "NV%02X", dev->chipset);
31 return buffer;
34 static const char *
35 nouveau_screen_get_vendor(struct pipe_screen *pscreen)
37 return "nouveau";
42 struct nouveau_bo *
43 nouveau_screen_bo_new(struct pipe_screen *pscreen, unsigned alignment,
44 unsigned usage, unsigned bind, unsigned size)
46 struct nouveau_device *dev = nouveau_screen(pscreen)->device;
47 struct nouveau_bo *bo = NULL;
48 uint32_t flags = NOUVEAU_BO_MAP, tile_mode = 0, tile_flags = 0;
49 int ret;
51 if (bind & PIPE_BIND_VERTEX_BUFFER)
52 flags |= nouveau_screen(pscreen)->vertex_buffer_flags;
53 else if (bind & PIPE_BIND_INDEX_BUFFER)
54 flags |= nouveau_screen(pscreen)->index_buffer_flags;
56 if (bind & (PIPE_BIND_RENDER_TARGET |
57 PIPE_BIND_DEPTH_STENCIL |
58 PIPE_BIND_SCANOUT |
59 PIPE_BIND_DISPLAY_TARGET |
60 PIPE_BIND_SAMPLER_VIEW))
62 /* TODO: this may be incorrect or suboptimal */
63 if (!(bind & PIPE_BIND_SCANOUT))
64 flags |= NOUVEAU_BO_GART;
65 if (usage != PIPE_USAGE_DYNAMIC)
66 flags |= NOUVEAU_BO_VRAM;
68 if (dev->chipset == 0x50 || dev->chipset >= 0x80) {
69 if (bind & PIPE_BIND_DEPTH_STENCIL)
70 tile_flags = 0x2800;
71 else
72 tile_flags = 0x7000;
76 ret = nouveau_bo_new_tile(dev, flags, alignment, size,
77 tile_mode, tile_flags, &bo);
78 if (ret)
79 return NULL;
81 return bo;
84 void *
85 nouveau_screen_bo_map(struct pipe_screen *pscreen,
86 struct nouveau_bo *bo,
87 unsigned map_flags)
89 int ret;
91 ret = nouveau_bo_map(bo, map_flags);
92 if (ret) {
93 debug_printf("map failed: %d\n", ret);
94 return NULL;
97 return bo->map;
100 void *
101 nouveau_screen_bo_map_range(struct pipe_screen *pscreen, struct nouveau_bo *bo,
102 unsigned offset, unsigned length, unsigned flags)
104 int ret;
106 ret = nouveau_bo_map_range(bo, offset, length, flags);
107 if (ret) {
108 nouveau_bo_unmap(bo);
109 if (!(flags & NOUVEAU_BO_NOWAIT) || ret != -EBUSY)
110 debug_printf("map_range failed: %d\n", ret);
111 return NULL;
114 return (char *)bo->map - offset; /* why gallium? why? */
117 void
118 nouveau_screen_bo_map_flush_range(struct pipe_screen *pscreen, struct nouveau_bo *bo,
119 unsigned offset, unsigned length)
121 nouveau_bo_map_flush(bo, offset, length);
124 void
125 nouveau_screen_bo_unmap(struct pipe_screen *pscreen, struct nouveau_bo *bo)
127 nouveau_bo_unmap(bo);
130 void
131 nouveau_screen_bo_release(struct pipe_screen *pscreen, struct nouveau_bo *bo)
133 nouveau_bo_ref(NULL, &bo);
136 static void
137 nouveau_screen_fence_ref(struct pipe_screen *pscreen,
138 struct pipe_fence_handle **ptr,
139 struct pipe_fence_handle *pfence)
141 nouveau_fence_ref(nouveau_fence(pfence), (struct nouveau_fence **)ptr);
144 static boolean
145 nouveau_screen_fence_signalled(struct pipe_screen *screen,
146 struct pipe_fence_handle *pfence)
148 return nouveau_fence_signalled(nouveau_fence(pfence));
151 static boolean
152 nouveau_screen_fence_finish(struct pipe_screen *screen,
153 struct pipe_fence_handle *pfence,
154 uint64_t timeout)
156 return nouveau_fence_wait(nouveau_fence(pfence));
160 struct nouveau_bo *
161 nouveau_screen_bo_from_handle(struct pipe_screen *pscreen,
162 struct winsys_handle *whandle,
163 unsigned *out_stride)
165 struct nouveau_device *dev = nouveau_screen(pscreen)->device;
166 struct nouveau_bo *bo = 0;
167 int ret;
169 ret = nouveau_bo_handle_ref(dev, whandle->handle, &bo);
170 if (ret) {
171 debug_printf("%s: ref name 0x%08x failed with %d\n",
172 __FUNCTION__, whandle->handle, ret);
173 return NULL;
176 *out_stride = whandle->stride;
177 return bo;
181 boolean
182 nouveau_screen_bo_get_handle(struct pipe_screen *pscreen,
183 struct nouveau_bo *bo,
184 unsigned stride,
185 struct winsys_handle *whandle)
187 whandle->stride = stride;
189 if (whandle->type == DRM_API_HANDLE_TYPE_SHARED) {
190 return nouveau_bo_handle_get(bo, &whandle->handle) == 0;
191 } else if (whandle->type == DRM_API_HANDLE_TYPE_KMS) {
192 whandle->handle = bo->handle;
193 return TRUE;
194 } else {
195 return FALSE;
200 nouveau_screen_init(struct nouveau_screen *screen, struct nouveau_device *dev)
202 struct pipe_screen *pscreen = &screen->base;
203 int ret;
205 ret = nouveau_channel_alloc(dev, 0xbeef0201, 0xbeef0202,
206 512*1024, &screen->channel);
207 if (ret)
208 return ret;
209 screen->device = dev;
211 pscreen->get_name = nouveau_screen_get_name;
212 pscreen->get_vendor = nouveau_screen_get_vendor;
214 pscreen->fence_reference = nouveau_screen_fence_ref;
215 pscreen->fence_signalled = nouveau_screen_fence_signalled;
216 pscreen->fence_finish = nouveau_screen_fence_finish;
218 util_format_s3tc_init();
220 screen->mm_GART = nouveau_mm_create(dev,
221 NOUVEAU_BO_GART | NOUVEAU_BO_MAP,
222 0x000);
223 screen->mm_VRAM = nouveau_mm_create(dev, NOUVEAU_BO_VRAM, 0x000);
224 return 0;
227 void
228 nouveau_screen_fini(struct nouveau_screen *screen)
230 struct pipe_winsys *ws = screen->base.winsys;
232 nouveau_mm_destroy(screen->mm_GART);
233 nouveau_mm_destroy(screen->mm_VRAM);
235 nouveau_channel_free(&screen->channel);
237 if (ws)
238 ws->destroy(ws);