1/*
2 * Copyright © 2011 Intel Corporation
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 (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 NONINFRINGEMENT.  IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24#ifndef BRW_PROGRAM_H
25#define BRW_PROGRAM_H
26
27#include "compiler/brw_compiler.h"
28#include "nir.h"
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34struct brw_context;
35struct blob;
36struct blob_reader;
37
38enum brw_param_domain {
39   BRW_PARAM_DOMAIN_BUILTIN = 0,
40   BRW_PARAM_DOMAIN_PARAMETER,
41   BRW_PARAM_DOMAIN_UNIFORM,
42   BRW_PARAM_DOMAIN_IMAGE,
43};
44
45#define BRW_PARAM(domain, val)   (BRW_PARAM_DOMAIN_##domain << 24 | (val))
46#define BRW_PARAM_DOMAIN(param)  ((uint32_t)(param) >> 24)
47#define BRW_PARAM_VALUE(param)   ((uint32_t)(param) & 0x00ffffff)
48
49#define BRW_PARAM_PARAMETER(idx, comp) \
50   BRW_PARAM(PARAMETER, ((idx) << 2) | (comp))
51#define BRW_PARAM_PARAMETER_IDX(param)    (BRW_PARAM_VALUE(param) >> 2)
52#define BRW_PARAM_PARAMETER_COMP(param)   (BRW_PARAM_VALUE(param) & 0x3)
53
54#define BRW_PARAM_UNIFORM(idx)            BRW_PARAM(UNIFORM, (idx))
55#define BRW_PARAM_UNIFORM_IDX(param)      BRW_PARAM_VALUE(param)
56
57#define BRW_PARAM_IMAGE(idx, offset) BRW_PARAM(IMAGE, ((idx) << 8) | (offset))
58#define BRW_PARAM_IMAGE_IDX(value)        (BRW_PARAM_VALUE(value) >> 8)
59#define BRW_PARAM_IMAGE_OFFSET(value)     (BRW_PARAM_VALUE(value) & 0xf)
60
61struct nir_shader *brw_create_nir(struct brw_context *brw,
62                                  const struct gl_shader_program *shader_prog,
63                                  struct gl_program *prog,
64                                  gl_shader_stage stage,
65                                  bool is_scalar);
66
67void brw_shader_gather_info(nir_shader *nir, struct gl_program *prog);
68
69void brw_setup_tex_for_precompile(const struct gen_device_info *devinfo,
70                                  struct brw_sampler_prog_key_data *tex,
71                                  struct gl_program *prog);
72
73void brw_populate_sampler_prog_key_data(struct gl_context *ctx,
74				        const struct gl_program *prog,
75				        struct brw_sampler_prog_key_data *key);
76void brw_debug_recompile(struct brw_context *brw, gl_shader_stage stage,
77                         unsigned api_id, unsigned prog_string_id, void *key);
78uint32_t
79brw_assign_common_binding_table_offsets(const struct gen_device_info *devinfo,
80                                        const struct gl_program *prog,
81                                        struct brw_stage_prog_data *stage_prog_data,
82                                        uint32_t next_binding_table_offset);
83
84void
85brw_prog_key_set_id(union brw_any_prog_key *key, gl_shader_stage stage,
86                    unsigned id);
87
88void
89brw_populate_default_key(const struct gen_device_info *devinfo,
90                         union brw_any_prog_key *prog_key,
91                         struct gl_shader_program *sh_prog,
92                         struct gl_program *prog);
93
94void
95brw_stage_prog_data_free(const void *prog_data);
96
97void
98brw_dump_arb_asm(const char *stage, struct gl_program *prog);
99
100bool brw_vs_precompile(struct gl_context *ctx, struct gl_program *prog);
101bool brw_tcs_precompile(struct gl_context *ctx,
102                        struct gl_shader_program *shader_prog,
103                        struct gl_program *prog);
104bool brw_tes_precompile(struct gl_context *ctx,
105                        struct gl_shader_program *shader_prog,
106                        struct gl_program *prog);
107bool brw_gs_precompile(struct gl_context *ctx, struct gl_program *prog);
108bool brw_fs_precompile(struct gl_context *ctx, struct gl_program *prog);
109bool brw_cs_precompile(struct gl_context *ctx, struct gl_program *prog);
110
111GLboolean brw_link_shader(struct gl_context *ctx, struct gl_shader_program *prog);
112
113void brw_upload_tcs_prog(struct brw_context *brw);
114void brw_tcs_populate_key(struct brw_context *brw,
115                          struct brw_tcs_prog_key *key);
116void brw_tcs_populate_default_key(const struct gen_device_info *devinfo,
117                                  struct brw_tcs_prog_key *key,
118                                  struct gl_shader_program *sh_prog,
119                                  struct gl_program *prog);
120void brw_upload_tes_prog(struct brw_context *brw);
121void brw_tes_populate_key(struct brw_context *brw,
122                          struct brw_tes_prog_key *key);
123void brw_tes_populate_default_key(const struct gen_device_info *devinfo,
124                                  struct brw_tes_prog_key *key,
125                                  struct gl_shader_program *sh_prog,
126                                  struct gl_program *prog);
127
128void brw_write_blob_program_data(struct blob *binary, gl_shader_stage stage,
129                                 const void *program,
130                                 struct brw_stage_prog_data *prog_data);
131bool brw_read_blob_program_data(struct blob_reader *binary,
132                                struct gl_program *prog, gl_shader_stage stage,
133                                const uint8_t **program,
134                                struct brw_stage_prog_data *prog_data);
135
136#ifdef __cplusplus
137} /* extern "C" */
138#endif
139
140#endif
141