lima,panfrost: Move lima_tiling.c/h to /src/panfrost
[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_swizzle.c',
57 'pan_blending.c',
58 'pan_blend_shaders.c',
59 'pan_pretty_print.c',
60 'pan_fragment.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 include_directories('include'),
73 include_directories('midgard'),
74 include_directories('bifrost'),
75 ]
76
77 compile_args_panfrost = [
78 '-DGALLIUM_PANFROST',
79 '-Wno-pointer-arith'
80 ]
81
82 midgard_nir_algebraic_c = custom_target(
83 'midgard_nir_algebraic.c',
84 input : 'midgard/midgard_nir_algebraic.py',
85 output : 'midgard_nir_algebraic.c',
86 command : [
87 prog_python, '@INPUT@',
88 '-p', join_paths(meson.source_root(), 'src/compiler/nir/'),
89 ],
90 capture : true,
91 depend_files : nir_algebraic_py,
92 )
93
94 libpanfrost = static_library(
95 'panfrost',
96 [files_panfrost, midgard_nir_algebraic_c],
97 dependencies: [
98 dep_thread,
99 dep_libdrm,
100 idep_nir
101 ],
102 include_directories : panfrost_includes,
103 c_args : [c_vis_args, c_msvc_compat_args, compile_args_panfrost],
104 )
105
106 driver_panfrost = declare_dependency(
107 compile_args : compile_args_panfrost,
108 link_with : [libpanfrost, libpanfrostwinsys],
109 )
110
111 files_bifrost = files(
112 'bifrost/disassemble.c',
113 'bifrost/cmdline.c',
114 )
115
116 bifrost_compiler = executable(
117 'bifrost_compiler',
118 [files_bifrost],
119 include_directories : [
120 inc_common,
121 inc_src,
122 inc_include,
123 inc_gallium,
124 inc_gallium_aux,
125 include_directories('bifrost')
126 ],
127 dependencies : [
128 dep_thread,
129 idep_nir
130 ],
131 link_with : [
132 libgallium,
133 libglsl_standalone,
134 libmesa_util
135 ],
136 build_by_default : true
137 )
138
139 files_pandecode = files(
140 'pandecode/cmdline.c',
141 'pandecode/common.c',
142 'pandecode/decode.c',
143
144 'pan_pretty_print.c',
145
146 'midgard/disassemble.c',
147 'midgard/midgard_ops.c',
148 'bifrost/disassemble.c',
149 )
150
151 pandecode = executable(
152 'pandecode',
153 files_pandecode,
154 include_directories : panfrost_includes,
155 dependencies : [
156 dep_thread,
157 ],
158 link_with : [
159 libmesa_util
160 ],
161 build_by_default : true
162 )