78f38685826239b4571a0d21588cc32063d85dcb
[mesa.git] / src / gallium / drivers / v3d / 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_libv3d = files(
22 'v3d_blit.c',
23 'v3d_bufmgr.c',
24 'v3d_bufmgr.h',
25 'v3d_cl.c',
26 'v3d_cl.h',
27 'v3d_context.c',
28 'v3d_context.h',
29 'v3d_fence.c',
30 'v3d_formats.c',
31 'v3d_job.c',
32 'v3d_program.c',
33 'v3d_query.c',
34 'v3d_resource.c',
35 'v3d_resource.h',
36 'v3d_screen.c',
37 'v3d_screen.h',
38 'v3d_simulator.c',
39 'v3d_simulator_wrapper.cpp',
40 'v3d_uniforms.c',
41 )
42
43 files_per_version = files(
44 'v3dx_draw.c',
45 'v3dx_emit.c',
46 'v3dx_format_table.c',
47 'v3dx_job.c',
48 'v3dx_rcl.c',
49 'v3dx_simulator.c',
50 'v3dx_state.c',
51 )
52
53 v3d_driinfo_h = custom_target(
54 'v3d_driinfo.h',
55 input : files(
56 '../../../util/merge_driinfo.py',
57 '../../auxiliary/pipe-loader/driinfo_gallium.h', 'driinfo_v3d.h'
58 ),
59 output : 'v3d_driinfo.h',
60 command : [prog_python, '@INPUT@'],
61 capture : true,
62 )
63 v3d_args = ['-DV3D_BUILD_NEON']
64
65 dep_v3dv3 = dependency('v3dv3', required: false)
66 if dep_v3dv3.found()
67 v3d_args += '-DUSE_V3D_SIMULATOR'
68 endif
69
70 v3d_versions = ['33', '41']
71
72 per_version_libs = []
73 foreach ver : v3d_versions
74 per_version_libs += static_library(
75 'v3d-v' + ver,
76 [files_per_version, v3d_xml_pack],
77 include_directories : [
78 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom,
79 inc_gallium_drivers,
80 ],
81 c_args : [c_vis_args, v3d_args, '-DV3D_VERSION=' + ver],
82 cpp_args : [cpp_vis_args],
83 dependencies : [dep_v3dv3, dep_libdrm, dep_valgrind, idep_nir_headers],
84 )
85
86 endforeach
87
88 v3d_neon_c_args = []
89 if host_machine.cpu_family() == 'arm'
90 v3d_neon_c_args = '-mfpu=neon'
91 endif
92
93 libv3d_neon = static_library(
94 'v3d_neon',
95 'v3d_tiling.c',
96 include_directories : [
97 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom,
98 inc_gallium_drivers,
99 ],
100 c_args : [c_vis_args, v3d_args, v3d_neon_c_args],
101 dependencies : [dep_v3dv3, dep_libdrm, dep_valgrind, idep_nir_headers],
102 )
103
104 libv3d = static_library(
105 'v3d',
106 [
107 files_libv3d,
108 v3d_xml_pack,
109 v3d_driinfo_h
110 ],
111 include_directories : [
112 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom,
113 inc_gallium_drivers,
114 ],
115 c_args : [c_vis_args, v3d_args],
116 cpp_args : [cpp_vis_args, v3d_args],
117 dependencies : [dep_v3dv3, dep_libdrm, dep_valgrind, idep_nir_headers],
118 link_with: [per_version_libs, libv3d_neon],
119 )
120
121 driver_v3d = declare_dependency(
122 compile_args : '-DGALLIUM_V3D',
123 link_with : [libv3d, libv3dwinsys, libbroadcom_cle, libbroadcom_v3d],
124 sources : v3d_driinfo_h,
125 dependencies : idep_nir,
126 )