galahad: do map/unmap counting for resources
[mesa.git] / src / gallium / drivers / r600 / r600_screen.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
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 R600_SCREEN_H
24 #define R600_SCREEN_H
25
26 #include <pipe/p_state.h>
27 #include <pipe/p_screen.h>
28 #include <pipebuffer/pb_buffer.h>
29 #include <xf86drm.h>
30 #include <radeon_drm.h>
31 #include "radeon.h"
32 #include "util/u_transfer.h"
33 #include "r600_resource.h"
34
35 /* Texture transfer. */
36 struct r600_transfer {
37 /* Base class. */
38 struct pipe_transfer transfer;
39 /* Buffer transfer. */
40 struct pipe_transfer *buffer_transfer;
41 unsigned offset;
42 struct pipe_resource *linear_texture;
43 };
44
45 enum chip_class {
46 R600,
47 R700,
48 EVERGREEN,
49 };
50
51 struct r600_screen {
52 struct pipe_screen screen;
53 struct radeon *rw;
54 enum chip_class chip_class;
55 };
56
57 static INLINE struct r600_screen *r600_screen(struct pipe_screen *screen)
58 {
59 return (struct r600_screen*)screen;
60 }
61
62 /* Buffer functions. */
63 struct pipe_resource *r600_buffer_create(struct pipe_screen *screen,
64 const struct pipe_resource *templ);
65 struct pipe_resource *r600_user_buffer_create(struct pipe_screen *screen,
66 void *ptr, unsigned bytes,
67 unsigned bind);
68 unsigned r600_buffer_is_referenced_by_cs(struct pipe_context *context,
69 struct pipe_resource *buf,
70 unsigned face, unsigned level);
71 struct pipe_resource *r600_buffer_from_handle(struct pipe_screen *screen,
72 struct winsys_handle *whandle);
73
74 /* r600_texture.c texture transfer functions. */
75 struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx,
76 struct pipe_resource *texture,
77 struct pipe_subresource sr,
78 unsigned usage,
79 const struct pipe_box *box);
80 void r600_texture_transfer_destroy(struct pipe_context *ctx,
81 struct pipe_transfer *trans);
82 void* r600_texture_transfer_map(struct pipe_context *ctx,
83 struct pipe_transfer* transfer);
84 void r600_texture_transfer_unmap(struct pipe_context *ctx,
85 struct pipe_transfer* transfer);
86 int r600_texture_scissor(struct pipe_context *ctx, struct r600_resource_texture *rtexture, unsigned level);
87 int r600_texture_cb(struct pipe_context *ctx, struct r600_resource_texture *rtexture, unsigned cb, unsigned level);
88 int r600_texture_db(struct pipe_context *ctx, struct r600_resource_texture *rtexture, unsigned level);
89 int r600_texture_from_depth(struct pipe_context *ctx, struct r600_resource_texture *rtexture, unsigned level);
90 int r600_texture_viewport(struct pipe_context *ctx, struct r600_resource_texture *rtexture, unsigned level);
91
92 /* r600_blit.c */
93 int r600_blit_uncompress_depth(struct pipe_context *ctx, struct r600_resource_texture *rtexture, unsigned level);
94
95 /* helpers */
96 int r600_conv_pipe_format(unsigned pformat, unsigned *format);
97 int r600_conv_pipe_prim(unsigned pprim, unsigned *prim);
98
99 void r600_init_screen_texture_functions(struct pipe_screen *screen);
100
101 #endif