blob: 9fe350c06fb8ddc25e427f701bc542f1129ed7ef [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',
Patrick Williams516e22f2025-02-01 08:37:12 -05009 '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
Jayanth Othayothb59b1fa2024-12-06 11:42:27 -060018# Check if the compiler is Clang
19if meson.get_compiler('cpp').get_id() == 'clang'
Patrick Williams516e22f2025-02-01 08:37:12 -050020 add_global_arguments('-Wno-defaulted-function-deleted', language: 'cpp')
Jayanth Othayothb59b1fa2024-12-06 11:42:27 -060021endif
22
Ed Tanous71172452025-04-02 08:06:09 -070023add_project_arguments(
24 cxx.get_supported_arguments(
25 [
26 '-DBOOST_ALL_NO_LIB',
27 '-DBOOST_ASIO_DISABLE_THREADS',
28 '-DBOOST_ASIO_NO_DEPRECATED',
29 ],
30 ),
31 language: 'cpp',
32)
33
Brad Bishop39b370a2019-09-02 02:37:32 -040034build_tests = get_option('tests')
35
Patrick Williams5c6a6932023-11-29 06:44:29 -060036if get_option('oe-sdk').allowed()
Patrick Williams516e22f2025-02-01 08:37:12 -050037 # Setup OE SYSROOT
38 OECORE_TARGET_SYSROOT = run_command(
39 'sh',
40 '-c',
41 'echo $OECORE_TARGET_SYSROOT',
42 ).stdout().strip()
43 if OECORE_TARGET_SYSROOT == ''
44 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
45 endif
46 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
47 rpath = ':'.join(
48 [OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'],
49 )
50 ld_so = run_command(
51 'sh',
52 '-c',
53 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1',
54 ).stdout().strip()
55 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
Brandon Wymandc8e9312020-02-14 17:04:18 -060056else
Patrick Williams516e22f2025-02-01 08:37:12 -050057 dynamic_linker = []
Brandon Wymandc8e9312020-02-14 17:04:18 -060058endif
59
60
Matt Spinler220c2462023-07-17 14:16:03 -050061gmock = dependency('gmock', disabler: true, required: false)
62gtest = dependency('gtest', main: true, disabler: true, required: false)
Patrick Williams5c6a6932023-11-29 06:44:29 -060063if (not gtest.found() or not gmock.found()) and build_tests.allowed()
Patrick Williams516e22f2025-02-01 08:37:12 -050064 gtest_opts = import('cmake').subproject_options()
65 gtest_opts.add_cmake_defines({'BUILD_SHARED_LIBS': 'ON'})
66 gtest_proj = import('cmake').subproject(
67 'googletest',
68 options: gtest_opts,
69 required: false,
Matt Spinler220c2462023-07-17 14:16:03 -050070 )
Patrick Williams516e22f2025-02-01 08:37:12 -050071 if gtest_proj.found()
72 gtest = declare_dependency(
73 dependencies: [
74 dependency('threads'),
75 gtest_proj.dependency('gtest'),
76 gtest_proj.dependency('gtest_main'),
77 ],
78 )
79 gmock = gtest_proj.dependency('gmock')
80 else
81 assert(false, 'Googletest is required if tests are enabled')
82 endif
Matt Spinler220c2462023-07-17 14:16:03 -050083endif
84
85
86
Brad Bishop39b370a2019-09-02 02:37:32 -040087phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
88phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080089prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040090sdbusplus = dependency('sdbusplus')
91sdbuspp = find_program('sdbus++')
92sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080093pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060094stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050095boost = dependency('boost')
Shawn McCarney39d15212025-07-29 17:46:21 -050096libgpiodcxx = dependency(
97 'libgpiodcxx',
98 default_options: ['bindings=cxx'],
99 version: '<1.7.0',
100)
Patrick Williams888bebd2023-05-31 19:19:49 -0500101
Patrick Williamsd694d8f2023-12-07 14:42:04 -0600102nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system')
Patrick Williams888bebd2023-05-31 19:19:49 -0500103
104if cxx.has_header('CLI/CLI.hpp')
105 cli11_dep = declare_dependency()
106else
107 cli11_dep = dependency('CLI11')
108endif
Brad Bishop39b370a2019-09-02 02:37:32 -0400109
Lei YUbd3bd822019-10-10 15:28:10 +0800110systemd = dependency('systemd')
Patrick Williamsdf2f4cb2024-09-03 16:19:04 -0400111libsystemd_dep = dependency('libsystemd')
Patrick Williamsb95e8de2025-07-09 11:27:09 -0400112servicedir = systemd.get_variable('systemd_system_unit_dir')
Lei YUbd3bd822019-10-10 15:28:10 +0800113
114services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400115 ['supply-monitor', 'power-supply-monitor@.service'],
116 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
117 ['sequencer-monitor', 'pseq-monitor.service'],
118 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
119 ['regulators', 'phosphor-regulators.service'],
120 ['regulators', 'phosphor-regulators-config.service'],
121 ['regulators', 'phosphor-regulators-monitor-enable.service'],
122 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Jim Wright5f99bc02022-01-28 11:38:40 -0600123 ['power-control', 'phosphor-power-control.service'],
Lei YUbd3bd822019-10-10 15:28:10 +0800124]
125
George Liu6f499e62023-08-14 16:40:52 +0800126fs = import('fs')
Lei YUbd3bd822019-10-10 15:28:10 +0800127foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400128 if get_option(service[0])
Patrick Williams516e22f2025-02-01 08:37:12 -0500129 fs.copyfile(
130 'services/' + service[1],
George Liu6f499e62023-08-14 16:40:52 +0800131 install: true,
Patrick Williams516e22f2025-02-01 08:37:12 -0500132 install_dir: servicedir,
133 )
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400134 endif
Lei YUbd3bd822019-10-10 15:28:10 +0800135endforeach
136
Andy YF Wang40247cc2019-09-06 18:30:56 +0800137# Get the power sequencer class name
138sequencer = get_option('power_sequencer')
139if sequencer == 'ucd90160'
140 sequencer_class = 'UCD90160'
141elif sequencer == 'mihawk-cpld'
142 sequencer_class = 'MihawkCPLD'
143else
144 # power sequencer is incorrect
145 error('power sequencer is incorrect')
146endif
147
Brad Bishop39b370a2019-09-02 02:37:32 -0400148conf = configuration_data()
149conf.set_quoted(
Patrick Williams516e22f2025-02-01 08:37:12 -0500150 'INPUT_HISTORY_BUSNAME_ROOT',
151 get_option('input-history-busname-root'),
152)
Brad Bishop39b370a2019-09-02 02:37:32 -0400153conf.set_quoted(
Patrick Williams516e22f2025-02-01 08:37:12 -0500154 'INPUT_HISTORY_SENSOR_ROOT',
155 get_option('input-history-sensor-root'),
156)
157conf.set_quoted('INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio'))
158conf.set_quoted('PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
159conf.set('SEQUENCER', sequencer_class)
160conf.set10('DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500161conf.set10('IBM_VPD', get_option('ibm-vpd'))
Andrew Geissler21254392025-04-02 10:25:39 -0500162conf.set('PGOOD_TIMEOUT', get_option('pgood-timeout-value'))
Brad Bishop39b370a2019-09-02 02:37:32 -0400163
164configure_file(output: 'config.h', configuration: conf)
165
166# Ensure the generated header here winds up in the correct path in the build
167# tree such that it actually get used and doesn't get found in the sysroot
168# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
169# the output filename of a target definition so the target must be defined in
170# the directory where the artifacts need to be placed. Do that now, because
171# the generated source (cpp) is needed to define the library target.
172subdir('org/open_power/Witherspoon/Fault')
173
174libpower = static_library(
175 'power',
176 error_cpp,
177 error_hpp,
Shawn McCarney3cc348c2024-05-29 15:41:31 -0500178 'compatible_system_types_finder.cpp',
Shawn McCarney98f42942024-05-24 17:24:32 -0500179 'dbus_interfaces_finder.cpp',
Brad Bishop39b370a2019-09-02 02:37:32 -0400180 'gpio.cpp',
181 'pmbus.cpp',
Shawn McCarney5f514442024-01-04 14:03:24 -0600182 'temporary_file.cpp',
Shawn McCarneyde5434d2024-05-22 14:07:44 -0500183 'temporary_subdirectory.cpp',
Brad Bishop39b370a2019-09-02 02:37:32 -0400184 'utility.cpp',
185 dependencies: [
Patrick Williams888bebd2023-05-31 19:19:49 -0500186 nlohmann_json_dep,
Brad Bishop39b370a2019-09-02 02:37:32 -0400187 phosphor_dbus_interfaces,
188 phosphor_logging,
189 sdbusplus,
190 sdeventplus,
191 ],
192)
193
Lei YU7c2fbbb2019-11-06 14:56:02 +0800194libpower_inc = include_directories('.')
195
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600196# Build the tools/i2c sub-directory first. Other sub-directories depend on
197# Meson variables defined there.
198subdir('tools/i2c')
199
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400200if get_option('regulators')
201 subdir('phosphor-regulators')
202endif
203if get_option('sequencer-monitor')
204 subdir('power-sequencer')
205endif
Jim Wright5f99bc02022-01-28 11:38:40 -0600206if get_option('power-control')
Jim Wright1553cd92021-03-31 16:11:59 -0500207 subdir('phosphor-power-sequencer')
208endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400209if get_option('supply-monitor')
210 subdir('power-supply')
211endif
212if get_option('supply-monitor-ng')
213 subdir('phosphor-power-supply')
214endif
215if get_option('utils')
216 subdir('tools/power-utils')
217endif
Patrick Williams5c6a6932023-11-29 06:44:29 -0600218if get_option('tests').allowed()
Shawn McCarneyff481432020-02-13 10:38:44 -0600219 subdir('test')
220endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400221if get_option('cold-redundancy')
222 subdir('cold-redundancy')
223endif