4298242f6b915877aac0d36c72450f0fe5800b41
[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/cppwrap.cpp',
41 'midgard/disassemble.c',
42
43 'bifrost/disassemble.c',
44
45 'pandecode/common.c',
46 'pandecode/decode.c',
47
48 'pan_context.c',
49 'pan_afbc.c',
50 'pan_blit.c',
51 'pan_job.c',
52 'pan_drm.c',
53 'pan_allocate.c',
54 'pan_assemble.c',
55 'pan_format.c',
56 'pan_blending.c',
57 'pan_blend_shaders.c',
58 'pan_pretty_print.c',
59 'pan_fragment.c',
60 'pan_scoreboard.c',
61 'pan_sfbd.c',
62 'pan_mfbd.c',
63 'pan_tiler.c',
64 )
65
66 panfrost_includes = [
67 inc_common,
68 inc_gallium,
69 inc_gallium_aux,
70 inc_include,
71 inc_src,
72 inc_panfrost,
73 include_directories('include'),
74 include_directories('midgard'),
75 include_directories('bifrost'),
76 ]
77
78 compile_args_panfrost = [
79 '-DGALLIUM_PANFROST',
80 '-Wno-pointer-arith'
81 ]
82
83 midgard_nir_algebraic_c = custom_target(
84 'midgard_nir_algebraic.c',
85 input : 'midgard/midgard_nir_algebraic.py',
86 output : 'midgard_nir_algebraic.c',
87 command : [
88 prog_python, '@INPUT@',
89 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'),
90 ],
91 capture : true,
92 depend_files : nir_algebraic_py,
93 )
94
95 libpanfrost = static_library(
96 'panfrost',
97 [files_panfrost, midgard_nir_algebraic_c],
98 dependencies: [
99 dep_thread,
100 dep_libdrm,
101 idep_nir
102 ],
103 include_directories : panfrost_includes,
104 c_args : [c_vis_args, c_msvc_compat_args, compile_args_panfrost],
105 )
106
107 driver_panfrost = declare_dependency(
108 compile_args : compile_args_panfrost,
109 link_with : [libpanfrost, libpanfrostwinsys, libpanfrost_shared],
110 )
111
112 files_bifrost = files(
113 'bifrost/disassemble.c',
114 'bifrost/cmdline.c',
115 )
116
117 bifrost_compiler = executable(
118 'bifrost_compiler',
119 [files_bifrost],
120 include_directories : [
121 inc_common,
122 inc_src,
123 inc_include,
124 inc_gallium,
125 inc_gallium_aux,
126 include_directories('bifrost')
127 ],
128 dependencies : [
129 dep_thread,
130 idep_nir
131 ],
132 link_with : [
133 libgallium,
134 libglsl_standalone,
135 libmesa_util
136 ],
137 build_by_default : true
138 )
139
140 files_pandecode = files(
141 'pandecode/cmdline.c',
142 'pandecode/common.c',
143 'pandecode/decode.c',
144
145 'pan_pretty_print.c',
146
147 'midgard/disassemble.c',
148 'midgard/midgard_ops.c',
149 'bifrost/disassemble.c',
150 )
151
152 pandecode = executable(
153 'pandecode',
154 files_pandecode,
155 include_directories : panfrost_includes,
156 dependencies : [
157 dep_thread,
158 ],
159 link_with : [
160 libmesa_util
161 ],
162 build_by_default : true
163 )