blob: 369d2560928f209a73ea1df523f3cc26b86431ed [file] [log] [blame]
Brad Bishop39b370a2019-09-02 02:37:32 -04001project(
George Liu690e7802019-08-23 11:04:01 +08002 'phosphor-power',
Brad Bishop39b370a2019-09-02 02:37:32 -04003 'cpp',
4 default_options: [
5 'warning_level=3',
6 'werror=true',
Patrick Williams5d79d362023-07-12 11:15:35 -05007 'cpp_std=c++23',
Brandon Wyman81d6cde2021-03-09 16:00:04 -06008 'buildtype=debugoptimized',
Matthew Barthd13feab2019-12-20 14:09:19 -06009 'prefix=/usr'
Brad Bishop39b370a2019-09-02 02:37:32 -040010 ],
11 license: 'Apache-2.0',
12 version: '1.0',
Patrick Williams5d79d362023-07-12 11:15:35 -050013 meson_version: '>=1.1.1',
Brad Bishop39b370a2019-09-02 02:37:32 -040014)
15
Patrick Williams888bebd2023-05-31 19:19:49 -050016cxx = meson.get_compiler('cpp')
17
Brad Bishop39b370a2019-09-02 02:37:32 -040018build_tests = get_option('tests')
19
Brandon Wymandc8e9312020-02-14 17:04:18 -060020if get_option('oe-sdk').enabled()
21 # Setup OE SYSROOT
22 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
23 if OECORE_TARGET_SYSROOT == ''
24 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
25 endif
26 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
27 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
28 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
29 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
30else
31 dynamic_linker = []
32endif
33
34
Matt Spinler220c2462023-07-17 14:16:03 -050035gmock = dependency('gmock', disabler: true, required: false)
36gtest = dependency('gtest', main: true, disabler: true, required: false)
37if (not gtest.found() or not gmock.found()) and build_tests.enabled()
38 gtest_opts = import('cmake').subproject_options()
39 gtest_opts.add_cmake_defines({
40 'BUILD_SHARED_LIBS': 'ON'
41 })
42 gtest_proj = import('cmake').subproject('googletest',
43 options: gtest_opts,
44 required: false)
45 if gtest_proj.found()
46 gtest = declare_dependency(
47 dependencies: [
48 dependency('threads'),
49 gtest_proj.dependency('gtest'),
50 gtest_proj.dependency('gtest_main'),
51 ]
52 )
53 gmock = gtest_proj.dependency('gmock')
54 else
55 assert(false, 'Googletest is required if tests are enabled')
56 endif
57endif
58
59
60
Brad Bishop39b370a2019-09-02 02:37:32 -040061phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
62phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080063prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040064sdbusplus = dependency('sdbusplus')
65sdbuspp = find_program('sdbus++')
66sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080067pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060068stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050069boost = dependency('boost')
Matt Spinlerd3de3642023-07-17 14:25:54 -050070fmt = dependency('fmt', required: false)
71if not fmt.found()
72 fmt_proj = import('cmake').subproject(
73 'fmt',
74 cmake_options: [
75 '-DCMAKE_POSITION_INDEPENDENT_CODE=ON',
76 '-DMASTER_PROJECT=OFF'
77 ],
78 required: false)
79 assert(fmt_proj.found(), 'fmtlib is required')
80 fmt = fmt_proj.dependency('fmt')
81endif
Patrick Williams888bebd2023-05-31 19:19:49 -050082libgpiodcxx = dependency('libgpiodcxx',
83 default_options: ['bindings=cxx'])
84
85if cxx.has_header('nlohmann/json.hpp')
86 nlohmann_json_dep = declare_dependency()
87else
88 subproject('nlohmann', required: false)
89 nlohmann_json_dep = declare_dependency(
90 include_directories: [
91 'subprojects/nlohmann-json/single_include',
92 'subprojects/nlohmann-json/single_include/nlohmann',
93 ]
94 )
95endif
96
97if cxx.has_header('CLI/CLI.hpp')
98 cli11_dep = declare_dependency()
99else
100 cli11_dep = dependency('CLI11')
101endif
Brad Bishop39b370a2019-09-02 02:37:32 -0400102
Lei YUbd3bd822019-10-10 15:28:10 +0800103systemd = dependency('systemd')
Patrick Williams95f6aab2023-04-12 08:01:11 -0500104servicedir = systemd.get_variable('systemdsystemunitdir')
Lei YUbd3bd822019-10-10 15:28:10 +0800105
106services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400107 ['supply-monitor', 'power-supply-monitor@.service'],
108 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
109 ['sequencer-monitor', 'pseq-monitor.service'],
110 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
111 ['regulators', 'phosphor-regulators.service'],
112 ['regulators', 'phosphor-regulators-config.service'],
113 ['regulators', 'phosphor-regulators-monitor-enable.service'],
114 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Jim Wright5f99bc02022-01-28 11:38:40 -0600115 ['power-control', 'phosphor-power-control.service'],
Lei YUbd3bd822019-10-10 15:28:10 +0800116]
117
George Liu6f499e62023-08-14 16:40:52 +0800118fs = import('fs')
Lei YUbd3bd822019-10-10 15:28:10 +0800119foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400120 if get_option(service[0])
George Liu6f499e62023-08-14 16:40:52 +0800121 fs.copyfile('services/' + service[1],
122 install: true,
123 install_dir: servicedir)
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400124 endif
Lei YUbd3bd822019-10-10 15:28:10 +0800125endforeach
126
Andy YF Wang40247cc2019-09-06 18:30:56 +0800127# Get the power sequencer class name
128sequencer = get_option('power_sequencer')
129if sequencer == 'ucd90160'
130 sequencer_class = 'UCD90160'
131elif sequencer == 'mihawk-cpld'
132 sequencer_class = 'MihawkCPLD'
133else
134 # power sequencer is incorrect
135 error('power sequencer is incorrect')
136endif
137
Brad Bishop39b370a2019-09-02 02:37:32 -0400138conf = configuration_data()
139conf.set_quoted(
140 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
141conf.set_quoted(
142 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +0800143conf.set_quoted(
Brandon Wyman18a24d92022-04-19 22:48:34 +0000144 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio'))
145conf.set_quoted(
George Liu690e7802019-08-23 11:04:01 +0800146 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +0800147conf.set(
148 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -0400149conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +0800150 'DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500151conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -0400152
153configure_file(output: 'config.h', configuration: conf)
154
155# Ensure the generated header here winds up in the correct path in the build
156# tree such that it actually get used and doesn't get found in the sysroot
157# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
158# the output filename of a target definition so the target must be defined in
159# the directory where the artifacts need to be placed. Do that now, because
160# the generated source (cpp) is needed to define the library target.
161subdir('org/open_power/Witherspoon/Fault')
162
163libpower = static_library(
164 'power',
165 error_cpp,
166 error_hpp,
167 'gpio.cpp',
168 'pmbus.cpp',
169 'utility.cpp',
170 dependencies: [
Patrick Williams888bebd2023-05-31 19:19:49 -0500171 nlohmann_json_dep,
Brad Bishop39b370a2019-09-02 02:37:32 -0400172 phosphor_dbus_interfaces,
173 phosphor_logging,
174 sdbusplus,
175 sdeventplus,
176 ],
177)
178
Lei YU7c2fbbb2019-11-06 14:56:02 +0800179libpower_inc = include_directories('.')
180
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600181# Build the tools/i2c sub-directory first. Other sub-directories depend on
182# Meson variables defined there.
183subdir('tools/i2c')
184
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400185if get_option('regulators')
186 subdir('phosphor-regulators')
187endif
188if get_option('sequencer-monitor')
189 subdir('power-sequencer')
190endif
Jim Wright5f99bc02022-01-28 11:38:40 -0600191if get_option('power-control')
Jim Wright1553cd92021-03-31 16:11:59 -0500192 subdir('phosphor-power-sequencer')
193endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400194if get_option('supply-monitor')
195 subdir('power-supply')
196endif
197if get_option('supply-monitor-ng')
198 subdir('phosphor-power-supply')
199endif
200if get_option('utils')
201 subdir('tools/power-utils')
202endif
Shawn McCarneyff481432020-02-13 10:38:44 -0600203if get_option('tests').enabled()
204 subdir('test')
205endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400206if get_option('cold-redundancy')
207 subdir('cold-redundancy')
208endif