amd/common/gfx10: add register JSON
[mesa.git] / src / amd / common / meson.build
1 # Copyright © 2017 Intel Corporation
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 sid_tables_h = custom_target(
22 'sid_tables_h',
23 input : ['sid_tables.py', 'sid.h', '../registers/amdgfxregs.json', '../registers/pkt3.json',
24 '../registers/gfx10.json', '../registers/gfx10-rsrc.json'],
25 output : 'sid_tables.h',
26 command : [prog_python, '@INPUT@'],
27 capture : true,
28 )
29
30 amdgfxregs_h = custom_target(
31 'amdgfxregs_h',
32 input : ['../registers/makeregheader.py', '../registers/amdgfxregs.json', '../registers/pkt3.json',
33 '../registers/gfx10.json', '../registers/gfx10-rsrc.json'],
34 output : 'amdgfxregs.h',
35 command : [prog_python, '@INPUT@', '--sort', 'address', '--guard', 'AMDGFXREGS_H'],
36 capture : true,
37 )
38
39 amd_common_files = files(
40 'ac_binary.c',
41 'ac_binary.h',
42 'ac_exp_param.h',
43 'ac_llvm_build.c',
44 'ac_llvm_build.h',
45 'ac_llvm_cull.c',
46 'ac_llvm_cull.h',
47 'ac_llvm_helper.cpp',
48 'ac_llvm_util.c',
49 'ac_llvm_util.h',
50 'ac_shader_abi.h',
51 'ac_shader_util.c',
52 'ac_shader_util.h',
53 'ac_nir_to_llvm.c',
54 'ac_nir_to_llvm.h',
55 'ac_gpu_info.c',
56 'ac_gpu_info.h',
57 'ac_rtld.c',
58 'ac_rtld.h',
59 'ac_surface.c',
60 'ac_surface.h',
61 'ac_debug.c',
62 'ac_debug.h',
63 )
64
65 libamd_common = static_library(
66 'amd_common',
67 [amd_common_files, sid_tables_h, amdgfxregs_h],
68 include_directories : [
69 inc_common, inc_compiler, inc_mesa, inc_mapi, inc_amd,
70 ],
71 dependencies : [
72 dep_llvm, dep_thread, dep_elf, dep_libdrm_amdgpu, dep_valgrind,
73 idep_nir_headers,
74 ],
75 c_args : [c_vis_args],
76 cpp_args : [cpp_vis_args],
77 )
78
79 idep_amdgfxregs_h = declare_dependency(sources : [amdgfxregs_h])