blob: 6ce40e8b2da5e538aaaf7de29df167a813f5283d [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
Jayanth Othayothb59b1fa2024-12-06 11:42:27 -060018# Check if the compiler is Clang
19if meson.get_compiler('cpp').get_id() == 'clang'
20 add_global_arguments('-Wno-defaulted-function-deleted', language: 'cpp')
21endif
22
Brad Bishop39b370a2019-09-02 02:37:32 -040023build_tests = get_option('tests')
24
Patrick Williams5c6a6932023-11-29 06:44:29 -060025if get_option('oe-sdk').allowed()
Brandon Wymandc8e9312020-02-14 17:04:18 -060026 # Setup OE SYSROOT
27 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
28 if OECORE_TARGET_SYSROOT == ''
29 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
30 endif
31 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
32 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
33 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
34 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
35else
36 dynamic_linker = []
37endif
38
39
Matt Spinler220c2462023-07-17 14:16:03 -050040gmock = dependency('gmock', disabler: true, required: false)
41gtest = dependency('gtest', main: true, disabler: true, required: false)
Patrick Williams5c6a6932023-11-29 06:44:29 -060042if (not gtest.found() or not gmock.found()) and build_tests.allowed()
Matt Spinler220c2462023-07-17 14:16:03 -050043 gtest_opts = import('cmake').subproject_options()
44 gtest_opts.add_cmake_defines({
45 'BUILD_SHARED_LIBS': 'ON'
46 })
47 gtest_proj = import('cmake').subproject('googletest',
48 options: gtest_opts,
49 required: false)
50 if gtest_proj.found()
51 gtest = declare_dependency(
52 dependencies: [
53 dependency('threads'),
54 gtest_proj.dependency('gtest'),
55 gtest_proj.dependency('gtest_main'),
56 ]
57 )
58 gmock = gtest_proj.dependency('gmock')
59 else
60 assert(false, 'Googletest is required if tests are enabled')
61 endif
62endif
63
64
65
Brad Bishop39b370a2019-09-02 02:37:32 -040066phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
67phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080068prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040069sdbusplus = dependency('sdbusplus')
70sdbuspp = find_program('sdbus++')
71sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080072pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060073stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050074boost = dependency('boost')
Patrick Williams888bebd2023-05-31 19:19:49 -050075libgpiodcxx = dependency('libgpiodcxx',
76 default_options: ['bindings=cxx'])
77
Patrick Williamsd694d8f2023-12-07 14:42:04 -060078nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system')
Patrick Williams888bebd2023-05-31 19:19:49 -050079
80if cxx.has_header('CLI/CLI.hpp')
81 cli11_dep = declare_dependency()
82else
83 cli11_dep = dependency('CLI11')
84endif
Brad Bishop39b370a2019-09-02 02:37:32 -040085
Lei YUbd3bd822019-10-10 15:28:10 +080086systemd = dependency('systemd')
Patrick Williamsdf2f4cb2024-09-03 16:19:04 -040087libsystemd_dep = dependency('libsystemd')
Patrick Williams95f6aab2023-04-12 08:01:11 -050088servicedir = systemd.get_variable('systemdsystemunitdir')
Lei YUbd3bd822019-10-10 15:28:10 +080089
90services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -040091 ['supply-monitor', 'power-supply-monitor@.service'],
92 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
93 ['sequencer-monitor', 'pseq-monitor.service'],
94 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
95 ['regulators', 'phosphor-regulators.service'],
96 ['regulators', 'phosphor-regulators-config.service'],
97 ['regulators', 'phosphor-regulators-monitor-enable.service'],
98 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Jim Wright5f99bc02022-01-28 11:38:40 -060099 ['power-control', 'phosphor-power-control.service'],
Lei YUbd3bd822019-10-10 15:28:10 +0800100]
101
George Liu6f499e62023-08-14 16:40:52 +0800102fs = import('fs')
Lei YUbd3bd822019-10-10 15:28:10 +0800103foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400104 if get_option(service[0])
George Liu6f499e62023-08-14 16:40:52 +0800105 fs.copyfile('services/' + service[1],
106 install: true,
107 install_dir: servicedir)
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400108 endif
Lei YUbd3bd822019-10-10 15:28:10 +0800109endforeach
110
Andy YF Wang40247cc2019-09-06 18:30:56 +0800111# Get the power sequencer class name
112sequencer = get_option('power_sequencer')
113if sequencer == 'ucd90160'
114 sequencer_class = 'UCD90160'
115elif sequencer == 'mihawk-cpld'
116 sequencer_class = 'MihawkCPLD'
117else
118 # power sequencer is incorrect
119 error('power sequencer is incorrect')
120endif
121
Brad Bishop39b370a2019-09-02 02:37:32 -0400122conf = configuration_data()
123conf.set_quoted(
124 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
125conf.set_quoted(
126 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +0800127conf.set_quoted(
Brandon Wyman18a24d92022-04-19 22:48:34 +0000128 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio'))
129conf.set_quoted(
George Liu690e7802019-08-23 11:04:01 +0800130 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +0800131conf.set(
132 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -0400133conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +0800134 'DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500135conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -0400136
137configure_file(output: 'config.h', configuration: conf)
138
139# Ensure the generated header here winds up in the correct path in the build
140# tree such that it actually get used and doesn't get found in the sysroot
141# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
142# the output filename of a target definition so the target must be defined in
143# the directory where the artifacts need to be placed. Do that now, because
144# the generated source (cpp) is needed to define the library target.
145subdir('org/open_power/Witherspoon/Fault')
146
147libpower = static_library(
148 'power',
149 error_cpp,
150 error_hpp,
Shawn McCarney3cc348c2024-05-29 15:41:31 -0500151 'compatible_system_types_finder.cpp',
Shawn McCarney98f42942024-05-24 17:24:32 -0500152 'dbus_interfaces_finder.cpp',
Brad Bishop39b370a2019-09-02 02:37:32 -0400153 'gpio.cpp',
154 'pmbus.cpp',
Shawn McCarney5f514442024-01-04 14:03:24 -0600155 'temporary_file.cpp',
Shawn McCarneyde5434d2024-05-22 14:07:44 -0500156 'temporary_subdirectory.cpp',
Brad Bishop39b370a2019-09-02 02:37:32 -0400157 'utility.cpp',
158 dependencies: [
Patrick Williams888bebd2023-05-31 19:19:49 -0500159 nlohmann_json_dep,
Brad Bishop39b370a2019-09-02 02:37:32 -0400160 phosphor_dbus_interfaces,
161 phosphor_logging,
162 sdbusplus,
163 sdeventplus,
164 ],
165)
166
Lei YU7c2fbbb2019-11-06 14:56:02 +0800167libpower_inc = include_directories('.')
168
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600169# Build the tools/i2c sub-directory first. Other sub-directories depend on
170# Meson variables defined there.
171subdir('tools/i2c')
172
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400173if get_option('regulators')
174 subdir('phosphor-regulators')
175endif
176if get_option('sequencer-monitor')
177 subdir('power-sequencer')
178endif
Jim Wright5f99bc02022-01-28 11:38:40 -0600179if get_option('power-control')
Jim Wright1553cd92021-03-31 16:11:59 -0500180 subdir('phosphor-power-sequencer')
181endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400182if get_option('supply-monitor')
183 subdir('power-supply')
184endif
185if get_option('supply-monitor-ng')
186 subdir('phosphor-power-supply')
187endif
188if get_option('utils')
189 subdir('tools/power-utils')
190endif
Patrick Williams5c6a6932023-11-29 06:44:29 -0600191if get_option('tests').allowed()
Shawn McCarneyff481432020-02-13 10:38:44 -0600192 subdir('test')
193endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400194if get_option('cold-redundancy')
195 subdir('cold-redundancy')
196endif