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"
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"
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
);
35 nouveau_screen_get_vendor(struct pipe_screen
*pscreen
)
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;
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
|
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
)
76 ret
= nouveau_bo_new_tile(dev
, flags
, alignment
, size
,
77 tile_mode
, tile_flags
, &bo
);
85 nouveau_screen_bo_map(struct pipe_screen
*pscreen
,
86 struct nouveau_bo
*bo
,
91 ret
= nouveau_bo_map(bo
, map_flags
);
93 debug_printf("map failed: %d\n", ret
);
101 nouveau_screen_bo_map_range(struct pipe_screen
*pscreen
, struct nouveau_bo
*bo
,
102 unsigned offset
, unsigned length
, unsigned flags
)
106 ret
= nouveau_bo_map_range(bo
, offset
, length
, flags
);
108 nouveau_bo_unmap(bo
);
109 if (!(flags
& NOUVEAU_BO_NOWAIT
) || ret
!= -EBUSY
)
110 debug_printf("map_range failed: %d\n", ret
);
114 return (char *)bo
->map
- offset
; /* why gallium? why? */
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
);
125 nouveau_screen_bo_unmap(struct pipe_screen
*pscreen
, struct nouveau_bo
*bo
)
127 nouveau_bo_unmap(bo
);
131 nouveau_screen_bo_release(struct pipe_screen
*pscreen
, struct nouveau_bo
*bo
)
133 nouveau_bo_ref(NULL
, &bo
);
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
);
145 nouveau_screen_fence_signalled(struct pipe_screen
*screen
,
146 struct pipe_fence_handle
*pfence
)
148 return nouveau_fence_signalled(nouveau_fence(pfence
));
152 nouveau_screen_fence_finish(struct pipe_screen
*screen
,
153 struct pipe_fence_handle
*pfence
,
156 return nouveau_fence_wait(nouveau_fence(pfence
));
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;
169 ret
= nouveau_bo_handle_ref(dev
, whandle
->handle
, &bo
);
171 debug_printf("%s: ref name 0x%08x failed with %d\n",
172 __FUNCTION__
, whandle
->handle
, ret
);
176 *out_stride
= whandle
->stride
;
182 nouveau_screen_bo_get_handle(struct pipe_screen
*pscreen
,
183 struct nouveau_bo
*bo
,
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
;
200 nouveau_screen_init(struct nouveau_screen
*screen
, struct nouveau_device
*dev
)
202 struct pipe_screen
*pscreen
= &screen
->base
;
205 ret
= nouveau_channel_alloc(dev
, 0xbeef0201, 0xbeef0202,
206 512*1024, &screen
->channel
);
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
,
223 screen
->mm_VRAM
= nouveau_mm_create(dev
, NOUVEAU_BO_VRAM
, 0x000);
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
);