af5319efd1fd9f77a34f788d495193f22613431f
[mesa.git] / src / gallium / winsys / r600 / drm / radeon_priv.h
1 /*
2 * Copyright © 2009 Jerome Glisse <glisse@freedesktop.org>
3 *
4 * This file is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
16 */
17 #ifndef RADEON_PRIV_H
18 #define RADEON_PRIV_H
19
20 #include <stdint.h>
21 #include "xf86drm.h"
22 #include "xf86drmMode.h"
23 #include <errno.h>
24 #include "radeon.h"
25
26 struct radeon;
27 struct radeon_ctx;
28
29 /*
30 * radeon functions
31 */
32 typedef int (*radeon_state_pm4_t)(struct radeon_state *state);
33 struct radeon_register {
34 unsigned offset;
35 unsigned need_reloc;
36 unsigned bo_id;
37 char name[64];
38 };
39
40 struct radeon_sub_type {
41 int shader_type;
42 const struct radeon_register *regs;
43 unsigned nstates;
44 };
45
46 struct radeon_stype_info {
47 unsigned stype;
48 unsigned num;
49 unsigned stride;
50 radeon_state_pm4_t pm4;
51 struct radeon_sub_type reginfo[R600_SHADER_MAX];
52 unsigned base_id;
53 unsigned npm4;
54 };
55
56 struct radeon {
57 int fd;
58 int refcount;
59 unsigned device;
60 unsigned family;
61 unsigned nstate;
62 unsigned nstype;
63 struct radeon_stype_info *stype;
64 };
65
66 extern struct radeon *radeon_new(int fd, unsigned device);
67 extern struct radeon *radeon_incref(struct radeon *radeon);
68 extern struct radeon *radeon_decref(struct radeon *radeon);
69 extern unsigned radeon_family_from_device(unsigned device);
70 extern int radeon_is_family_compatible(unsigned family1, unsigned family2);
71
72 int radeon_ctx_set_bo_new(struct radeon_ctx *ctx, struct radeon_bo *bo);
73 struct radeon_bo *radeon_ctx_get_bo(struct radeon_ctx *ctx, unsigned reloc);
74 void radeon_ctx_get_placement(struct radeon_ctx *ctx, unsigned reloc, u32 *placement);
75 int radeon_ctx_set_draw_new(struct radeon_ctx *ctx, struct radeon_draw *draw);
76 int radeon_ctx_draw(struct radeon_ctx *ctx);
77
78 /*
79 * r600/r700 context functions
80 */
81 extern int r600_init(struct radeon *radeon);
82 extern int r600_ctx_draw(struct radeon_ctx *ctx);
83 extern int r600_ctx_next_reloc(struct radeon_ctx *ctx, unsigned *reloc);
84
85 /*
86 * radeon state functions
87 */
88 extern u32 radeon_state_register_get(struct radeon_state *state, unsigned offset);
89 extern int radeon_state_register_set(struct radeon_state *state, unsigned offset, u32 value);
90 extern struct radeon_state *radeon_state_duplicate(struct radeon_state *state);
91 extern int radeon_state_replace_always(struct radeon_state *ostate, struct radeon_state *nstate);
92 extern int radeon_state_pm4_generic(struct radeon_state *state);
93 extern int radeon_state_reloc(struct radeon_state *state, unsigned id, unsigned bo_id);
94
95 /*
96 * radeon draw functions
97 */
98 extern int radeon_draw_pm4(struct radeon_draw *draw);
99
100 #endif