1 #ifndef __NOUVEAU_SCREEN_H__
2 #define __NOUVEAU_SCREEN_H__
4 #include "pipe/p_screen.h"
5 #include "util/u_memory.h"
8 # define NOUVEAU_ENABLE_DRIVER_STATISTICS
14 extern int nouveau_mesa_debug
;
18 struct nouveau_screen
{
19 struct pipe_screen base
;
20 struct nouveau_device
*device
;
21 struct nouveau_object
*channel
;
22 struct nouveau_client
*client
;
23 struct nouveau_pushbuf
*pushbuf
;
27 unsigned vidmem_bindings
; /* PIPE_BIND_* where VRAM placement is desired */
28 unsigned sysmem_bindings
; /* PIPE_BIND_* where GART placement is desired */
29 unsigned lowmem_bindings
; /* PIPE_BIND_* that require an address < 4 GiB */
31 * For bindings with (vidmem & sysmem) bits set, PIPE_USAGE_* decides
38 struct nouveau_fence
*head
;
39 struct nouveau_fence
*tail
;
40 struct nouveau_fence
*current
;
43 void (*emit
)(struct pipe_screen
*, u32
*sequence
);
44 u32 (*update
)(struct pipe_screen
*);
47 struct nouveau_mman
*mm_VRAM
;
48 struct nouveau_mman
*mm_GART
;
50 int64_t cpu_gpu_time_delta
;
52 boolean hint_buf_keep_sysmem_copy
;
55 unsigned profiles_checked
;
56 unsigned profiles_present
;
59 #ifdef NOUVEAU_ENABLE_DRIVER_STATISTICS
63 uint64_t tex_obj_current_count
;
64 uint64_t tex_obj_current_bytes
;
65 uint64_t buf_obj_current_count
;
66 uint64_t buf_obj_current_bytes_vid
;
67 uint64_t buf_obj_current_bytes_sys
;
68 uint64_t tex_transfers_rd
;
69 uint64_t tex_transfers_wr
;
70 uint64_t tex_copy_count
;
71 uint64_t tex_blit_count
;
72 uint64_t tex_cache_flush_count
;
73 uint64_t buf_transfers_rd
;
74 uint64_t buf_transfers_wr
;
75 uint64_t buf_read_bytes_staging_vid
;
76 uint64_t buf_write_bytes_direct
;
77 uint64_t buf_write_bytes_staging_vid
;
78 uint64_t buf_write_bytes_staging_sys
;
79 uint64_t buf_copy_bytes
;
80 uint64_t buf_non_kernel_fence_sync_count
;
81 uint64_t any_non_kernel_fence_sync_count
;
82 uint64_t query_sync_count
;
83 uint64_t gpu_serialize_count
;
84 uint64_t draw_calls_array
;
85 uint64_t draw_calls_indexed
;
86 uint64_t draw_calls_fallback_count
;
87 uint64_t user_buffer_upload_bytes
;
88 uint64_t constbuf_upload_count
;
89 uint64_t constbuf_upload_bytes
;
90 uint64_t pushbuf_count
;
91 uint64_t resource_validate_count
;
97 #ifdef NOUVEAU_ENABLE_DRIVER_STATISTICS
98 # define NOUVEAU_DRV_STAT(s, n, v) do { \
99 (s)->stats.named.n += (v); \
101 # define NOUVEAU_DRV_STAT_RES(r, n, v) do { \
102 nouveau_screen((r)->base.screen)->stats.named.n += (v); \
104 # define NOUVEAU_DRV_STAT_IFD(x) x
106 # define NOUVEAU_DRV_STAT(s, n, v) do { } while(0)
107 # define NOUVEAU_DRV_STAT_RES(r, n, v) do { } while(0)
108 # define NOUVEAU_DRV_STAT_IFD(x)
111 static INLINE
struct nouveau_screen
*
112 nouveau_screen(struct pipe_screen
*pscreen
)
114 return (struct nouveau_screen
*)pscreen
;
117 boolean
nouveau_drm_screen_unref(struct nouveau_screen
*screen
);
120 nouveau_screen_bo_get_handle(struct pipe_screen
*pscreen
,
121 struct nouveau_bo
*bo
,
123 struct winsys_handle
*whandle
);
125 nouveau_screen_bo_from_handle(struct pipe_screen
*pscreen
,
126 struct winsys_handle
*whandle
,
127 unsigned *out_stride
);
130 int nouveau_screen_init(struct nouveau_screen
*, struct nouveau_device
*);
131 void nouveau_screen_fini(struct nouveau_screen
*);
133 void nouveau_screen_init_vdec(struct nouveau_screen
*);