trace: Fix pipe_shader_state dumping.
[mesa.git] / src / gallium / drivers / nv50 / nv50_program.h
1 /*
2 * Copyright 2010 Ben Skeggs
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23 #ifndef __NV50_PROG_H__
24 #define __NV50_PROG_H__
25
26 struct nv50_context;
27
28 #include "pipe/p_state.h"
29 #include "pipe/p_shader_tokens.h"
30
31 #define NV50_CAP_MAX_PROGRAM_TEMPS 64
32
33 struct nv50_varying {
34 uint8_t id; /* tgsi index */
35 uint8_t hw; /* hw index, nv50 wants flat FP inputs last */
36
37 unsigned mask : 4;
38 unsigned linear : 1;
39 unsigned pad : 3;
40
41 ubyte sn; /* semantic name */
42 ubyte si; /* semantic index */
43 };
44
45 struct nv50_stream_output_state
46 {
47 uint32_t ctrl;
48 uint16_t stride[4];
49 uint8_t num_attribs[4];
50 uint8_t map_size;
51 uint8_t map[128];
52 };
53
54 struct nv50_program {
55 struct pipe_shader_state pipe;
56
57 ubyte type;
58 boolean translated;
59 boolean uses_lmem;
60
61 uint32_t *code;
62 unsigned code_size;
63 unsigned code_base;
64 uint32_t *immd;
65 unsigned immd_size;
66 unsigned parm_size; /* size limit of uniform buffer */
67
68 ubyte max_gpr; /* REG_ALLOC_TEMP */
69 ubyte max_out; /* REG_ALLOC_RESULT or FP_RESULT_COUNT */
70
71 ubyte in_nr;
72 ubyte out_nr;
73 struct nv50_varying in[16];
74 struct nv50_varying out[16];
75
76 struct {
77 uint32_t attrs[3]; /* VP_ATTR_EN_0,1 and VP_GP_BUILTIN_ATTR_EN */
78 ubyte psiz; /* output slot of point size */
79 ubyte bfc[2]; /* indices into varying for FFC (FP) or BFC (VP) */
80 ubyte edgeflag;
81 ubyte clpd[2]; /* output slot of clip distance[i]'s 1st component */
82 ubyte clpd_nr;
83 } vp;
84
85 struct {
86 uint32_t flags[2]; /* 0x19a8, 196c */
87 uint32_t interp; /* 0x1988 */
88 uint32_t colors; /* 0x1904 */
89 } fp;
90
91 struct {
92 ubyte primid; /* primitive id output register */
93 uint8_t vert_count;
94 uint8_t prim_type; /* point, line strip or tri strip */
95 } gp;
96
97 void *fixups; /* relocation records */
98
99 struct nouveau_heap *mem;
100
101 struct nv50_stream_output_state *so;
102 };
103
104 boolean nv50_program_translate(struct nv50_program *, uint16_t chipset);
105 boolean nv50_program_upload_code(struct nv50_context *, struct nv50_program *);
106 void nv50_program_destroy(struct nv50_context *, struct nv50_program *);
107
108 #endif /* __NV50_PROG_H__ */