blob: 446912d2d2cfeab4edcc1df1049844198b6ab4ee [file] [log] [blame]
Brad Bishop919e4082020-10-27 18:55:19 -04001project(
2 'openpower-proc-control',
3 'cpp',
4 default_options: [
5 'warning_level=3',
6 'werror=true',
Brad Bishopf38b35e2020-11-08 10:42:34 -05007 'cpp_std=c++17',
8 'buildtype=debugoptimized',
9 'b_ndebug=if-release',
Brad Bishop919e4082020-10-27 18:55:19 -040010 ],
11 license: 'Apache-2.0',
12 version: '1.0',
13)
14add_project_arguments('-Wno-psabi', language: 'cpp')
15
Brad Bishopf38b35e2020-11-08 10:42:34 -050016if get_option('cpp_std') != 'c++17'
17 error('This project requires c++17')
18endif
19
20if(get_option('buildtype') == 'minsize')
21 add_project_arguments('-DNDEBUG', language : 'cpp')
22endif
23
Brad Bishop919e4082020-10-27 18:55:19 -040024cxx = meson.get_compiler('cpp')
25
26extra_sources = []
27extra_dependencies = []
28extra_unit_files = []
29
Jayanth Othayoth38405472021-07-26 06:16:44 -050030# Configuration header file(config.h) generation
31conf_data = configuration_data()
32
33conf_data.set_quoted('DEVTREE_EXPORT_FILTER_FILE', get_option('DEVTREE_EXPORT_FILTER_FILE'),
34 description : 'Path to the phal devtree export filter file'
35 )
36
37conf_data.set_quoted('DEVTREE_EXP_FILE', get_option('DEVTREE_EXP_FILE'),
38 description : 'Path to the devtree export copy file'
39 )
40
41configure_file(configuration : conf_data,
42 output : 'config.h'
43 )
44
Brad Bishop919e4082020-10-27 18:55:19 -040045unit_subs = configuration_data()
Brad Bishopa5b4b1b2020-11-08 12:14:03 -050046unit_subs.set('bindir', join_paths(get_option('prefix'), get_option('bindir')))
47unit_subs.set('ENABLE_PHAL_TRUE', '#')
Brad Bishop919e4082020-10-27 18:55:19 -040048
49if get_option('phal').enabled() and get_option('p9').enabled()
50 error('phal and p9 cannot be selected at the same time')
51endif
52
53build_p9 = not get_option('p9').disabled()
54build_openfsi = not get_option('openfsi').disabled()
55build_phal = get_option('phal').enabled()
56
57if get_option('phal').enabled() and not get_option('p9').disabled()
58 build_p9 = false
59endif
60
61summary('building p9', build_p9)
62summary('building openfsi', build_openfsi)
63summary('building phal', build_phal)
64
65if build_p9
66 extra_sources += [
67 'procedures/p9/cleanup_pcie.cpp',
68 'procedures/p9/set_sync_fsi_clock_mode.cpp',
69 'procedures/p9/start_host.cpp',
70 'procedures/p9/start_host_mpreboot.cpp',
71 ]
72endif
73if build_openfsi
74 extra_sources += [
75 'procedures/openfsi/scan.cpp',
76 ]
77endif
78if build_phal
79 extra_sources += [
80 'procedures/phal/start_host.cpp',
81 'procedures/phal/set_SPI_mux.cpp',
Chirag Sharmaa2576932020-12-05 23:17:41 -060082 'procedures/phal/proc_pre_poweroff.cpp',
Jayanth Othayothcf2da1b2021-07-29 03:15:20 -050083 'procedures/phal/check_host_running.cpp',
84 'procedures/phal/import_devtree.cpp',
Jayanth Othayoth25e39c82021-07-12 01:00:17 -050085 'extensions/phal/common_utils.cpp',
Jayanth Othayothc3d6b872021-07-28 05:07:25 -050086 'extensions/phal/pdbg_utils.cpp',
Jayanth Othayoth6552de02021-07-12 00:55:57 -050087 'extensions/phal/create_pel.cpp',
88 'extensions/phal/phal_error.cpp',
Brad Bishop919e4082020-10-27 18:55:19 -040089 ]
90 extra_dependencies += [
91 dependency('libdt-api'),
Brad Bishop919e4082020-10-27 18:55:19 -040092 cxx.find_library('ekb'),
93 cxx.find_library('ipl'),
94 ]
95 extra_unit_files = [
Andrew Geissler1dc08292021-06-22 17:14:54 -050096 'service_files/set-spi-mux.service',
97 'service_files/phal-reinit-devtree.service',
98 'service_files/proc-pre-poweroff@.service',
Andrew Geissler8e73da02021-06-23 15:43:21 -050099 'service_files/op-reset-host-check@.service',
Andrew Geissler3292c062021-06-23 21:11:10 -0500100 'service_files/op-reset-host-clear.service',
Jayanth Othayotha089bd22021-07-30 01:32:31 -0500101 'service_files/phal-import-devtree@.service',
Jayanth Othayoth07e9a6a2021-07-30 03:52:13 -0500102 'service_files/phal-export-devtree@.service',
Brad Bishop919e4082020-10-27 18:55:19 -0400103 ]
Brad Bishopa5b4b1b2020-11-08 12:14:03 -0500104 unit_subs.set('ENABLE_PHAL_TRUE', '')
Brad Bishop919e4082020-10-27 18:55:19 -0400105endif
106
107executable(
108 'openpower-proc-control',
109 [
110 'cfam_access.cpp',
111 'ext_interface.cpp',
112 'filedescriptor.cpp',
113 'proc_control.cpp',
Brad Bishop919e4082020-10-27 18:55:19 -0400114 'targeting.cpp',
115 'procedures/common/cfam_overrides.cpp',
116 'procedures/common/cfam_reset.cpp',
117 'procedures/common/enter_mpreboot.cpp',
118 'procedures/common/collect_sbe_hb_data.cpp',
Jayanth Othayothc4831812021-06-08 01:33:40 -0500119 'util.cpp',
Brad Bishop919e4082020-10-27 18:55:19 -0400120 ] + extra_sources,
121 dependencies: [
122 dependency('libgpiodcxx'),
123 cxx.find_library('pdbg'),
124 dependency('phosphor-dbus-interfaces'),
125 dependency('phosphor-logging'),
126 dependency('sdbusplus'),
127 dependency('threads'),
Jayanth Othayothc4831812021-06-08 01:33:40 -0500128 dependency('fmt'),
Brad Bishopce08fb92020-11-08 09:50:48 -0500129 ] + extra_dependencies,
130 install: true
Brad Bishop919e4082020-10-27 18:55:19 -0400131)
132
133executable(
134 'openpower-proc-nmi',
135 [
136 'nmi_main.cpp',
137 'nmi_interface.cpp',
138 ],
139 dependencies: [
140 cxx.find_library('pdbg'),
141 dependency('phosphor-dbus-interfaces'),
142 dependency('phosphor-logging'),
143 dependency('sdbusplus'),
Brad Bishopce08fb92020-11-08 09:50:48 -0500144 ],
145 install: true
Brad Bishop919e4082020-10-27 18:55:19 -0400146)
147
Jayanth Othayoth13c57ad2021-07-16 06:02:21 -0500148if build_phal
149 executable(
150 'phal-export-devtree',
151 [
152 'extensions/phal/devtree_export.cpp',
153 'extensions/phal/fw_update_watch.cpp',
Jayanth Othayoth38405472021-07-26 06:16:44 -0500154 'extensions/phal/pdbg_utils.cpp',
155 'extensions/phal/create_pel.cpp',
156 'util.cpp',
Jayanth Othayoth13c57ad2021-07-16 06:02:21 -0500157 ],
158 dependencies: [
159 dependency('phosphor-logging'),
160 dependency('sdbusplus'),
161 dependency('sdeventplus'),
162 dependency('fmt'),
Jayanth Othayoth38405472021-07-26 06:16:44 -0500163 dependency('phosphor-dbus-interfaces'),
164 cxx.find_library('pdbg'),
Jayanth Othayoth13c57ad2021-07-16 06:02:21 -0500165 ],
166 install: true
167 )
168endif
169
Brad Bishop919e4082020-10-27 18:55:19 -0400170unit_files = [
Andrew Geissler1dc08292021-06-22 17:14:54 -0500171 'service_files/pcie-poweroff@.service',
172 'service_files/xyz.openbmc_project.Control.Host.NMI.service',
173 'service_files/op-stop-instructions@.service',
174 'service_files/op-cfam-reset.service',
175 'service_files/op-continue-mpreboot@.service',
176 'service_files/op-enter-mpreboot@.service',
Brad Bishop919e4082020-10-27 18:55:19 -0400177] + extra_unit_files
178
179systemd_system_unit_dir = dependency('systemd').get_pkgconfig_variable(
180 'systemdsystemunitdir',
181 define_variable: ['prefix', get_option('prefix')])
182foreach u : unit_files
183 configure_file(
184 configuration: unit_subs,
185 input: u + '.in',
186 install: true,
187 install_dir: systemd_system_unit_dir,
Andrew Geissler1dc08292021-06-22 17:14:54 -0500188 output: '@BASENAME@'
Brad Bishop919e4082020-10-27 18:55:19 -0400189 )
190endforeach
191
192if not get_option('tests').disabled()
Brad Bishop919e4082020-10-27 18:55:19 -0400193 test(
194 'utest',
195 executable(
196 'utest',
197 'test/utest.cpp',
198 'targeting.cpp',
199 'filedescriptor.cpp',
200 dependencies: [
Brad Bishop5d482d92020-11-08 09:45:18 -0500201 dependency('gtest', main: true),
Brad Bishop919e4082020-10-27 18:55:19 -0400202 dependency('phosphor-logging'),
203 ],
204 implicit_include_directories: false,
205 include_directories: '.',
206 )
207 )
208endif