r600g: remove radeon_bo::handle
[mesa.git] / src / gallium / winsys / r600 / drm / r600_priv.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 * Authors:
24 * Jerome Glisse
25 */
26 #ifndef R600_PRIV_H
27 #define R600_PRIV_H
28
29 #include "r600.h"
30 #include "../../radeon/drm/radeon_winsys.h"
31 #include "util/u_hash_table.h"
32 #include "os/os_thread.h"
33 #include "radeon_drm.h"
34
35 #define PKT_COUNT_C 0xC000FFFF
36 #define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
37
38 struct radeon {
39 struct radeon_winsys *ws;
40 struct radeon_info info;
41 unsigned family;
42 enum chip_class chip_class;
43 struct r600_tiling_info tiling_info;
44 };
45
46 /* these flags are used in register flags and added into block flags */
47 #define REG_FLAG_NEED_BO 1
48 #define REG_FLAG_DIRTY_ALWAYS 2
49 #define REG_FLAG_RV6XX_SBU 4
50 #define REG_FLAG_NOT_R600 8
51 #define REG_FLAG_ENABLE_ALWAYS 16
52 #define BLOCK_FLAG_RESOURCE 32
53 #define REG_FLAG_FLUSH_CHANGE 64
54
55 struct r600_reg {
56 unsigned offset;
57 unsigned flags;
58 unsigned flush_flags;
59 unsigned flush_mask;
60 };
61
62 #define BO_BOUND_TEXTURE 1
63 struct radeon_bo {
64 struct pipe_reference reference;
65 struct pb_buffer *buf;
66 struct radeon_winsys_cs_handle *cs_buf;
67 unsigned size;
68
69 unsigned last_flush;
70 unsigned binding;
71 };
72
73 struct r600_bo {
74 struct pipe_reference reference; /* this must be the first member for the r600_bo_reference inline to work */
75 /* DO NOT MOVE THIS ^ */
76 unsigned domains;
77 struct radeon_bo *bo;
78 };
79
80 /*
81 * radeon_pciid.c
82 */
83 unsigned radeon_family_from_device(unsigned device);
84
85 /*
86 * radeon_bo.c
87 */
88 struct radeon_bo *radeon_bo(struct radeon *radeon, unsigned handle,
89 unsigned size, unsigned alignment, unsigned bind, unsigned initial_domain);
90 void radeon_bo_reference(struct radeon *radeon, struct radeon_bo **dst,
91 struct radeon_bo *src);
92
93 /*
94 * r600_hw_context.c
95 */
96 void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
97 unsigned flush_mask, struct r600_bo *rbo);
98 struct r600_bo *r600_context_reg_bo(struct r600_context *ctx, unsigned offset);
99 int r600_context_add_block(struct r600_context *ctx, const struct r600_reg *reg, unsigned nreg,
100 unsigned opcode, unsigned offset_base);
101 void r600_context_pipe_state_set_resource(struct r600_context *ctx, struct r600_pipe_resource_state *state, struct r600_block *block);
102 void r600_context_block_emit_dirty(struct r600_context *ctx, struct r600_block *block);
103 void r600_context_block_resource_emit_dirty(struct r600_context *ctx, struct r600_block *block);
104 void r600_context_dirty_block(struct r600_context *ctx, struct r600_block *block,
105 int dirty, int index);
106 int r600_setup_block_table(struct r600_context *ctx);
107 void r600_context_reg(struct r600_context *ctx,
108 unsigned offset, unsigned value,
109 unsigned mask);
110 void r600_init_cs(struct r600_context *ctx);
111 int r600_resource_init(struct r600_context *ctx, struct r600_range *range, unsigned offset, unsigned nblocks, unsigned stride, struct r600_reg *reg, int nreg, unsigned offset_base);
112
113 static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, struct r600_bo *rbo)
114 {
115 struct radeon_bo *bo = rbo->bo;
116 unsigned reloc_index;
117
118 assert(bo != NULL);
119
120 reloc_index = ctx->radeon->ws->cs_add_reloc(ctx->cs, bo->cs_buf,
121 rbo->domains, rbo->domains);
122
123 if (reloc_index >= ctx->creloc)
124 ctx->creloc = reloc_index+1;
125
126 radeon_bo_reference(ctx->radeon, &ctx->bo[reloc_index], bo);
127 return reloc_index * 4;
128 }
129
130 /*
131 * r600_bo.c
132 */
133 void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
134
135 #endif