Merge branch '7.8'
[mesa.git] / src / gallium / drivers / r300 / r300_winsys.h
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #ifndef R300_WINSYS_H
24 #define R300_WINSYS_H
25
26 /* The public interface header for the r300 pipe driver.
27 * Any winsys hosting this pipe needs to implement r300_winsys and then
28 * call r300_create_screen to start things. */
29
30 #include "pipe/p_defines.h"
31 #include "pipe/p_state.h"
32
33 #include "r300_defines.h"
34
35 struct r300_winsys_buffer;
36
37 enum r300_value_id {
38 R300_VID_PCI_ID,
39 R300_VID_GB_PIPES,
40 R300_VID_Z_PIPES,
41 R300_VID_SQUARE_TILING_SUPPORT,
42 R300_VID_DRM_2_3_0,
43 };
44
45 enum r300_reference_domain { /* bitfield */
46 R300_REF_CS = 1,
47 R300_REF_HW = 2
48 };
49
50 struct r300_winsys_screen {
51 void (*destroy)(struct r300_winsys_screen *ws);
52
53 /**
54 * Buffer management. Buffer attributes are mostly fixed over its lifetime.
55 *
56 * Remember that gallium gets to choose the interface it needs, and the
57 * window systems must then implement that interface (rather than the
58 * other way around...).
59 *
60 * usage is a bitmask of R300_WINSYS_BUFFER_USAGE_PIXEL/VERTEX/INDEX/CONSTANT. This
61 * usage argument is only an optimization hint, not a guarantee, therefore
62 * proper behavior must be observed in all circumstances.
63 *
64 * alignment indicates the client's alignment requirements, eg for
65 * SSE instructions.
66 */
67 struct r300_winsys_buffer *(*buffer_create)(struct r300_winsys_screen *ws,
68 unsigned alignment,
69 unsigned usage,
70 unsigned size);
71
72 /**
73 * Map the entire data store of a buffer object into the client's address.
74 * flags is bitmask of R300_WINSYS_BUFFER_USAGE_CPU_READ/WRITE flags.
75 */
76 void *(*buffer_map)( struct r300_winsys_screen *ws,
77 struct r300_winsys_buffer *buf,
78 unsigned usage);
79
80 void (*buffer_unmap)( struct r300_winsys_screen *ws,
81 struct r300_winsys_buffer *buf );
82
83 void (*buffer_destroy)( struct r300_winsys_buffer *buf );
84
85
86 void (*buffer_reference)(struct r300_winsys_screen *rws,
87 struct r300_winsys_buffer **pdst,
88 struct r300_winsys_buffer *src);
89
90 boolean (*buffer_references)(struct r300_winsys_buffer *a,
91 struct r300_winsys_buffer *b);
92
93 void (*buffer_flush_range)(struct r300_winsys_screen *rws,
94 struct r300_winsys_buffer *buf,
95 unsigned offset,
96 unsigned length);
97
98 /* Add a pipe_resource to the list of buffer objects to validate. */
99 boolean (*add_buffer)(struct r300_winsys_screen *winsys,
100 struct r300_winsys_buffer *buf,
101 uint32_t rd,
102 uint32_t wd);
103
104
105 /* Revalidate all currently setup pipe_buffers.
106 * Returns TRUE if a flush is required. */
107 boolean (*validate)(struct r300_winsys_screen* winsys);
108
109 /* Check to see if there's room for commands. */
110 boolean (*check_cs)(struct r300_winsys_screen* winsys, int size);
111
112 /* Start a command emit. */
113 void (*begin_cs)(struct r300_winsys_screen* winsys,
114 int size,
115 const char* file,
116 const char* function,
117 int line);
118
119 /* Write a dword to the command buffer. */
120 void (*write_cs_dword)(struct r300_winsys_screen* winsys, uint32_t dword);
121
122 /* Write a table of dwords to the command buffer. */
123 void (*write_cs_table)(struct r300_winsys_screen* winsys,
124 const void *dwords, unsigned count);
125
126 /* Write a relocated dword to the command buffer. */
127 void (*write_cs_reloc)(struct r300_winsys_screen *winsys,
128 struct r300_winsys_buffer *buf,
129 uint32_t rd,
130 uint32_t wd,
131 uint32_t flags);
132
133 /* Finish a command emit. */
134 void (*end_cs)(struct r300_winsys_screen* winsys,
135 const char* file,
136 const char* function,
137 int line);
138
139 /* Flush the CS. */
140 void (*flush_cs)(struct r300_winsys_screen* winsys);
141
142 /* winsys flush - callback from winsys when flush required */
143 void (*set_flush_cb)(struct r300_winsys_screen *winsys,
144 void (*flush_cb)(void *), void *data);
145
146 void (*reset_bos)(struct r300_winsys_screen *winsys);
147
148 void (*buffer_get_tiling)(struct r300_winsys_screen *winsys,
149 struct r300_winsys_buffer *buffer,
150 enum r300_buffer_tiling *microtiled,
151 enum r300_buffer_tiling *macrotiled);
152
153 void (*buffer_set_tiling)(struct r300_winsys_screen *winsys,
154 struct r300_winsys_buffer *buffer,
155 uint32_t pitch,
156 enum r300_buffer_tiling microtiled,
157 enum r300_buffer_tiling macrotiled);
158
159 uint32_t (*get_value)(struct r300_winsys_screen *winsys,
160 enum r300_value_id vid);
161
162 struct r300_winsys_buffer *(*buffer_from_handle)(struct r300_winsys_screen *winsys,
163 struct pipe_screen *screen,
164 struct winsys_handle *whandle,
165 unsigned *stride);
166 boolean (*buffer_get_handle)(struct r300_winsys_screen *winsys,
167 struct r300_winsys_buffer *buffer,
168 unsigned stride,
169 struct winsys_handle *whandle);
170
171 boolean (*is_buffer_referenced)(struct r300_winsys_screen *winsys,
172 struct r300_winsys_buffer *buffer,
173 enum r300_reference_domain domain);
174 };
175
176 struct r300_winsys_screen *
177 r300_winsys_screen(struct pipe_screen *screen);
178
179 /* Creates a new r300 screen. */
180 struct pipe_screen* r300_create_screen(struct r300_winsys_screen *rws);
181
182 #endif /* R300_WINSYS_H */