broadcom/vc5: Port the simulator to support V3D 4.1
[mesa.git] / src / gallium / drivers / vc5 / meson.build
1 # Copyright © 2017 Broadcom
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9 #
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12 #
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 files_libvc5 = files(
22 'vc5_blit.c',
23 'vc5_bufmgr.c',
24 'vc5_bufmgr.h',
25 'vc5_cl.c',
26 'vc5_cl.h',
27 'vc5_context.c',
28 'vc5_context.h',
29 'vc5_draw.c',
30 'vc5_emit.c',
31 'vc5_fence.c',
32 'vc5_formats.c',
33 'vc5_job.c',
34 'vc5_program.c',
35 'vc5_query.c',
36 'vc5_resource.c',
37 'vc5_resource.h',
38 'vc5_screen.c',
39 'vc5_screen.h',
40 'vc5_simulator.c',
41 'vc5_simulator_wrapper.cpp',
42 'vc5_state.c',
43 'vc5_tiling.c',
44 'vc5_tiling.h',
45 'vc5_uniforms.c',
46 )
47
48 files_per_version = files(
49 'v3dx_simulator.c',
50 'vc5_rcl.c',
51 )
52
53 v3dv3_c_args = []
54 dep_v3dv3 = dependency('v3dv3')
55 if dep_v3dv3.found()
56 v3dv3_c_args = '-DUSE_VC5_SIMULATOR'
57 endif
58
59 vc5_versions = ['33', '41']
60
61 per_version_libs = []
62 foreach ver : vc5_versions
63 per_version_libs += static_library(
64 'vc5-v' + ver,
65 [files_per_version, v3d_xml_pack, nir_opcodes_h, nir_builder_opcodes_h],
66 include_directories : [
67 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom,
68 inc_gallium_drivers, inc_drm_uapi,
69 ],
70 c_args : [c_vis_args, v3dv3_c_args, '-DV3D_VERSION=' + ver],
71 cpp_args : [cpp_vis_args],
72 dependencies : [dep_v3dv3, dep_libdrm, dep_valgrind],
73 )
74
75 endforeach
76
77 libvc5 = static_library(
78 'vc5',
79 [files_libvc5, v3d_xml_pack],
80 include_directories : [
81 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom,
82 inc_gallium_drivers, inc_drm_uapi,
83 ],
84 c_args : [c_vis_args, v3dv3_c_args],
85 cpp_args : [cpp_vis_args, v3dv3_c_args],
86 dependencies : [dep_v3dv3, dep_libdrm, dep_valgrind, idep_nir_headers],
87 link_with: per_version_libs,
88 )
89
90 driver_vc5 = declare_dependency(
91 compile_args : '-DGALLIUM_VC5',
92 link_with : [libvc5, libvc5winsys, libbroadcom_cle, libbroadcom_vc5],
93 dependencies : idep_nir,
94 )