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
21files_libvc4 = files(
22  'kernel/vc4_drv.h',
23  'kernel/vc4_gem.c',
24  'kernel/vc4_packet.h',
25  'kernel/vc4_render_cl.c',
26  'kernel/vc4_validate.c',
27  'kernel/vc4_validate_shaders.c',
28  'vc4_blit.c',
29  'vc4_bufmgr.c',
30  'vc4_bufmgr.h',
31  'vc4_cl.c',
32  'vc4_cl_dump.c',
33  'vc4_cl_dump.h',
34  'vc4_cl.h',
35  'vc4_context.c',
36  'vc4_context.h',
37  'vc4_draw.c',
38  'vc4_emit.c',
39  'vc4_fence.c',
40  'vc4_formats.c',
41  'vc4_job.c',
42  'vc4_nir_lower_blend.c',
43  'vc4_nir_lower_io.c',
44  'vc4_nir_lower_txf_ms.c',
45  'vc4_opt_algebraic.c',
46  'vc4_opt_constant_folding.c',
47  'vc4_opt_copy_propagation.c',
48  'vc4_opt_dead_code.c',
49  'vc4_opt_peephole_sf.c',
50  'vc4_opt_small_immediates.c',
51  'vc4_opt_vpm.c',
52  'vc4_opt_coalesce_ff_writes.c',
53  'vc4_program.c',
54  'vc4_qir.c',
55  'vc4_qir_emit_uniform_stream_resets.c',
56  'vc4_qir_live_variables.c',
57  'vc4_qir_lower_uniforms.c',
58  'vc4_qir_schedule.c',
59  'vc4_qir_validate.c',
60  'vc4_qir.h',
61  'vc4_qpu.c',
62  'vc4_qpu_defines.h',
63  'vc4_qpu_disasm.c',
64  'vc4_qpu_emit.c',
65  'vc4_qpu.h',
66  'vc4_qpu_schedule.c',
67  'vc4_qpu_validate.c',
68  'vc4_query.c',
69  'vc4_register_allocate.c',
70  'vc4_reorder_uniforms.c',
71  'vc4_resource.c',
72  'vc4_resource.h',
73  'vc4_screen.c',
74  'vc4_screen.h',
75  'vc4_simulator.c',
76  'vc4_simulator_validate.h',
77  'vc4_state.c',
78  'vc4_tiling.c',
79  'vc4_tiling_lt.c',
80  'vc4_tiling.h',
81  'vc4_uniforms.c',
82)
83
84vc4_c_args = []
85
86libvc4_neon = []
87if host_machine.cpu_family() == 'arm'
88  libvc4_neon = static_library(
89    'vc4_neon',
90    'vc4_tiling_lt_neon.c',
91    include_directories : [
92      inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom
93    ],
94    c_args : '-mfpu=neon',
95  )
96  vc4_c_args += '-DUSE_ARM_ASM'
97endif
98
99if dep_simpenrose.found()
100  vc4_c_args += '-DUSE_VC4_SIMULATOR'
101endif
102
103libvc4 = static_library(
104  'vc4',
105  [files_libvc4, v3d_xml_pack],
106  include_directories : [
107    inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom,
108    inc_gallium_drivers,
109  ],
110  link_with: libvc4_neon,
111  c_args : [vc4_c_args],
112  gnu_symbol_visibility : 'hidden',
113  dependencies : [dep_simpenrose, dep_libdrm, dep_valgrind, idep_nir_headers],
114  build_by_default : false,
115)
116
117driver_vc4 = declare_dependency(
118  compile_args : '-DGALLIUM_VC4',
119  link_with : [libvc4, libvc4winsys, libbroadcom_cle, libbroadcom_v3d],
120  dependencies : idep_nir,
121)
122