6b907f155ae66beac8a9ac6c9f87a0be6f3fbcec
[mesa.git] / src / gallium / drivers / panfrost / meson.build
1 # Copyright © 2017 Intel Corporation
2 # Copyright © 2018 Alyssa Rosenzweig
3
4 # Permission is hereby granted, free of charge, to any person obtaining a copy
5 # of this software and associated documentation files (the "Software"), to deal
6 # in the Software without restriction, including without limitation the rights
7 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 # copies of the Software, and to permit persons to whom the Software is
9 # 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 THE
17 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 # SOFTWARE.
21
22 files_panfrost = files(
23 'pan_public.h',
24 'pan_screen.c',
25 'pan_screen.h',
26 'pan_resource.c',
27 'pan_resource.h',
28
29 'midgard/midgard_compile.c',
30 'midgard/mir.c',
31 'midgard/midgard_print.c',
32 'midgard/midgard_schedule.c',
33 'midgard/midgard_emit.c',
34 'midgard/midgard_ra.c',
35 'midgard/midgard_ra_pipeline.c',
36 'midgard/midgard_liveness.c',
37 'midgard/midgard_ops.c',
38
39 'midgard/nir_lower_blend.c',
40 'midgard/nir_lower_framebuffer.c',
41 'midgard/cppwrap.cpp',
42 'midgard/disassemble.c',
43
44 'bifrost/disassemble.c',
45
46 'pandecode/common.c',
47 'pandecode/decode.c',
48
49 'pan_context.c',
50 'pan_afbc.c',
51 'pan_blit.c',
52 'pan_job.c',
53 'pan_drm.c',
54 'pan_allocate.c',
55 'pan_assemble.c',
56 'pan_format.c',
57 'pan_blending.c',
58 'pan_blend_shaders.c',
59 'pan_blend_cso.c',
60 'pan_pretty_print.c',
61 'pan_fragment.c',
62 'pan_invocation.c',
63 'pan_instancing.c',
64 'pan_scoreboard.c',
65 'pan_sfbd.c',
66 'pan_mfbd.c',
67 'pan_tiler.c',
68 )
69
70 panfrost_includes = [
71 inc_common,
72 inc_gallium,
73 inc_gallium_aux,
74 inc_include,
75 inc_src,
76 inc_panfrost,
77 include_directories('include'),
78 include_directories('midgard'),
79 include_directories('bifrost'),
80 ]
81
82 compile_args_panfrost = [
83 '-DGALLIUM_PANFROST',
84 '-Wno-pointer-arith'
85 ]
86
87 midgard_nir_algebraic_c = custom_target(
88 'midgard_nir_algebraic.c',
89 input : 'midgard/midgard_nir_algebraic.py',
90 output : 'midgard_nir_algebraic.c',
91 command : [
92 prog_python, '@INPUT@',
93 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'),
94 ],
95 capture : true,
96 depend_files : nir_algebraic_py,
97 )
98
99 libpanfrost = static_library(
100 'panfrost',
101 [files_panfrost, midgard_nir_algebraic_c],
102 dependencies: [
103 dep_thread,
104 dep_libdrm,
105 idep_nir
106 ],
107 include_directories : panfrost_includes,
108 c_args : [c_vis_args, c_msvc_compat_args, compile_args_panfrost],
109 )
110
111 driver_panfrost = declare_dependency(
112 compile_args : compile_args_panfrost,
113 link_with : [libpanfrost, libpanfrostwinsys, libpanfrost_shared],
114 )
115
116 files_bifrost = files(
117 'bifrost/disassemble.c',
118 'bifrost/cmdline.c',
119 )
120
121 bifrost_compiler = executable(
122 'bifrost_compiler',
123 [files_bifrost],
124 include_directories : [
125 inc_common,
126 inc_src,
127 inc_include,
128 inc_gallium,
129 inc_gallium_aux,
130 include_directories('bifrost')
131 ],
132 dependencies : [
133 dep_thread,
134 idep_nir
135 ],
136 link_with : [
137 libgallium,
138 libglsl_standalone,
139 libmesa_util
140 ],
141 build_by_default : true
142 )
143
144 files_pandecode = files(
145 'pandecode/cmdline.c',
146 'pandecode/common.c',
147 'pandecode/decode.c',
148
149 'pan_pretty_print.c',
150
151 'midgard/disassemble.c',
152 'midgard/midgard_ops.c',
153 'bifrost/disassemble.c',
154 )
155
156 pandecode = executable(
157 'pandecode',
158 files_pandecode,
159 include_directories : panfrost_includes,
160 dependencies : [
161 dep_thread,
162 ],
163 link_with : [
164 libmesa_util
165 ],
166 build_by_default : true
167 )