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