blob: 07f50a44c0b31bca3b7dc06d2862f3e694256f43 [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
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()
Patrick Williams516e22f2025-02-01 08:37:12 -050026 # Setup OE SYSROOT
27 OECORE_TARGET_SYSROOT = run_command(
28 'sh',
29 '-c',
30 'echo $OECORE_TARGET_SYSROOT',
31 ).stdout().strip()
32 if OECORE_TARGET_SYSROOT == ''
33 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
34 endif
35 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
36 rpath = ':'.join(
37 [OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'],
38 )
39 ld_so = run_command(
40 'sh',
41 '-c',
42 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1',
43 ).stdout().strip()
44 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
Brandon Wymandc8e9312020-02-14 17:04:18 -060045else
Patrick Williams516e22f2025-02-01 08:37:12 -050046 dynamic_linker = []
Brandon Wymandc8e9312020-02-14 17:04:18 -060047endif
48
49
Matt Spinler220c2462023-07-17 14:16:03 -050050gmock = dependency('gmock', disabler: true, required: false)
51gtest = dependency('gtest', main: true, disabler: true, required: false)
Patrick Williams5c6a6932023-11-29 06:44:29 -060052if (not gtest.found() or not gmock.found()) and build_tests.allowed()
Patrick Williams516e22f2025-02-01 08:37:12 -050053 gtest_opts = import('cmake').subproject_options()
54 gtest_opts.add_cmake_defines({'BUILD_SHARED_LIBS': 'ON'})
55 gtest_proj = import('cmake').subproject(
56 'googletest',
57 options: gtest_opts,
58 required: false,
Matt Spinler220c2462023-07-17 14:16:03 -050059 )
Patrick Williams516e22f2025-02-01 08:37:12 -050060 if gtest_proj.found()
61 gtest = declare_dependency(
62 dependencies: [
63 dependency('threads'),
64 gtest_proj.dependency('gtest'),
65 gtest_proj.dependency('gtest_main'),
66 ],
67 )
68 gmock = gtest_proj.dependency('gmock')
69 else
70 assert(false, 'Googletest is required if tests are enabled')
71 endif
Matt Spinler220c2462023-07-17 14:16:03 -050072endif
73
74
75
Brad Bishop39b370a2019-09-02 02:37:32 -040076phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
77phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080078prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040079sdbusplus = dependency('sdbusplus')
80sdbuspp = find_program('sdbus++')
81sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080082pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060083stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050084boost = dependency('boost')
Patrick Williams516e22f2025-02-01 08:37:12 -050085libgpiodcxx = dependency('libgpiodcxx', default_options: ['bindings=cxx'])
Patrick Williams888bebd2023-05-31 19:19:49 -050086
Patrick Williamsd694d8f2023-12-07 14:42:04 -060087nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system')
Patrick Williams888bebd2023-05-31 19:19:49 -050088
89if cxx.has_header('CLI/CLI.hpp')
90 cli11_dep = declare_dependency()
91else
92 cli11_dep = dependency('CLI11')
93endif
Brad Bishop39b370a2019-09-02 02:37:32 -040094
Lei YUbd3bd822019-10-10 15:28:10 +080095systemd = dependency('systemd')
Patrick Williamsdf2f4cb2024-09-03 16:19:04 -040096libsystemd_dep = dependency('libsystemd')
Patrick Williams95f6aab2023-04-12 08:01:11 -050097servicedir = systemd.get_variable('systemdsystemunitdir')
Lei YUbd3bd822019-10-10 15:28:10 +080098
99services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400100 ['supply-monitor', 'power-supply-monitor@.service'],
101 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
102 ['sequencer-monitor', 'pseq-monitor.service'],
103 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
104 ['regulators', 'phosphor-regulators.service'],
105 ['regulators', 'phosphor-regulators-config.service'],
106 ['regulators', 'phosphor-regulators-monitor-enable.service'],
107 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Jim Wright5f99bc02022-01-28 11:38:40 -0600108 ['power-control', 'phosphor-power-control.service'],
Lei YUbd3bd822019-10-10 15:28:10 +0800109]
110
George Liu6f499e62023-08-14 16:40:52 +0800111fs = import('fs')
Lei YUbd3bd822019-10-10 15:28:10 +0800112foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400113 if get_option(service[0])
Patrick Williams516e22f2025-02-01 08:37:12 -0500114 fs.copyfile(
115 'services/' + service[1],
George Liu6f499e62023-08-14 16:40:52 +0800116 install: true,
Patrick Williams516e22f2025-02-01 08:37:12 -0500117 install_dir: servicedir,
118 )
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400119 endif
Lei YUbd3bd822019-10-10 15:28:10 +0800120endforeach
121
Andy YF Wang40247cc2019-09-06 18:30:56 +0800122# Get the power sequencer class name
123sequencer = get_option('power_sequencer')
124if sequencer == 'ucd90160'
125 sequencer_class = 'UCD90160'
126elif sequencer == 'mihawk-cpld'
127 sequencer_class = 'MihawkCPLD'
128else
129 # power sequencer is incorrect
130 error('power sequencer is incorrect')
131endif
132
Brad Bishop39b370a2019-09-02 02:37:32 -0400133conf = configuration_data()
134conf.set_quoted(
Patrick Williams516e22f2025-02-01 08:37:12 -0500135 'INPUT_HISTORY_BUSNAME_ROOT',
136 get_option('input-history-busname-root'),
137)
Brad Bishop39b370a2019-09-02 02:37:32 -0400138conf.set_quoted(
Patrick Williams516e22f2025-02-01 08:37:12 -0500139 'INPUT_HISTORY_SENSOR_ROOT',
140 get_option('input-history-sensor-root'),
141)
142conf.set_quoted('INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio'))
143conf.set_quoted('PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
144conf.set('SEQUENCER', sequencer_class)
145conf.set10('DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500146conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -0400147
148configure_file(output: 'config.h', configuration: conf)
149
150# Ensure the generated header here winds up in the correct path in the build
151# tree such that it actually get used and doesn't get found in the sysroot
152# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
153# the output filename of a target definition so the target must be defined in
154# the directory where the artifacts need to be placed. Do that now, because
155# the generated source (cpp) is needed to define the library target.
156subdir('org/open_power/Witherspoon/Fault')
157
158libpower = static_library(
159 'power',
160 error_cpp,
161 error_hpp,
Shawn McCarney3cc348c2024-05-29 15:41:31 -0500162 'compatible_system_types_finder.cpp',
Shawn McCarney98f42942024-05-24 17:24:32 -0500163 'dbus_interfaces_finder.cpp',
Brad Bishop39b370a2019-09-02 02:37:32 -0400164 'gpio.cpp',
165 'pmbus.cpp',
Shawn McCarney5f514442024-01-04 14:03:24 -0600166 'temporary_file.cpp',
Shawn McCarneyde5434d2024-05-22 14:07:44 -0500167 'temporary_subdirectory.cpp',
Brad Bishop39b370a2019-09-02 02:37:32 -0400168 'utility.cpp',
169 dependencies: [
Patrick Williams888bebd2023-05-31 19:19:49 -0500170 nlohmann_json_dep,
Brad Bishop39b370a2019-09-02 02:37:32 -0400171 phosphor_dbus_interfaces,
172 phosphor_logging,
173 sdbusplus,
174 sdeventplus,
175 ],
176)
177
Lei YU7c2fbbb2019-11-06 14:56:02 +0800178libpower_inc = include_directories('.')
179
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600180# Build the tools/i2c sub-directory first. Other sub-directories depend on
181# Meson variables defined there.
182subdir('tools/i2c')
183
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400184if get_option('regulators')
185 subdir('phosphor-regulators')
186endif
187if get_option('sequencer-monitor')
188 subdir('power-sequencer')
189endif
Jim Wright5f99bc02022-01-28 11:38:40 -0600190if get_option('power-control')
Jim Wright1553cd92021-03-31 16:11:59 -0500191 subdir('phosphor-power-sequencer')
192endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400193if get_option('supply-monitor')
194 subdir('power-supply')
195endif
196if get_option('supply-monitor-ng')
197 subdir('phosphor-power-supply')
198endif
199if get_option('utils')
200 subdir('tools/power-utils')
201endif
Patrick Williams5c6a6932023-11-29 06:44:29 -0600202if get_option('tests').allowed()
Shawn McCarneyff481432020-02-13 10:38:44 -0600203 subdir('test')
204endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400205if get_option('cold-redundancy')
206 subdir('cold-redundancy')
207endif