blob: a53192258188fee2c19bdf360cc58a8004ec24d0 [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 Williamsb8378872021-10-06 15:38:44 -05007 'cpp_std=c++20',
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 Williams95f6aab2023-04-12 08:01:11 -050013 meson_version: '>=0.58.0',
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
Brad Bishop39b370a2019-09-02 02:37:32 -040035gmock = dependency('gmock', disabler: true, required: build_tests)
36gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
Brad Bishop39b370a2019-09-02 02:37:32 -040037phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
38phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080039prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040040sdbusplus = dependency('sdbusplus')
41sdbuspp = find_program('sdbus++')
42sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080043pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060044stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050045boost = dependency('boost')
Brandon Wymanb76ab242020-09-16 18:06:06 -050046fmt = dependency('fmt')
Patrick Williams888bebd2023-05-31 19:19:49 -050047libgpiodcxx = dependency('libgpiodcxx',
48 default_options: ['bindings=cxx'])
49
50if cxx.has_header('nlohmann/json.hpp')
51 nlohmann_json_dep = declare_dependency()
52else
53 subproject('nlohmann', required: false)
54 nlohmann_json_dep = declare_dependency(
55 include_directories: [
56 'subprojects/nlohmann-json/single_include',
57 'subprojects/nlohmann-json/single_include/nlohmann',
58 ]
59 )
60endif
61
62if cxx.has_header('CLI/CLI.hpp')
63 cli11_dep = declare_dependency()
64else
65 cli11_dep = dependency('CLI11')
66endif
Brad Bishop39b370a2019-09-02 02:37:32 -040067
Lei YUbd3bd822019-10-10 15:28:10 +080068systemd = dependency('systemd')
Patrick Williams95f6aab2023-04-12 08:01:11 -050069servicedir = systemd.get_variable('systemdsystemunitdir')
Lei YUbd3bd822019-10-10 15:28:10 +080070
71services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -040072 ['supply-monitor', 'power-supply-monitor@.service'],
73 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
74 ['sequencer-monitor', 'pseq-monitor.service'],
75 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
76 ['regulators', 'phosphor-regulators.service'],
77 ['regulators', 'phosphor-regulators-config.service'],
78 ['regulators', 'phosphor-regulators-monitor-enable.service'],
79 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Jim Wright5f99bc02022-01-28 11:38:40 -060080 ['power-control', 'phosphor-power-control.service'],
Lei YUbd3bd822019-10-10 15:28:10 +080081]
82
83foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -040084 if get_option(service[0])
85 configure_file(input: 'services/' + service[1],
86 output: service[1],
Lei YUbd3bd822019-10-10 15:28:10 +080087 copy: true,
88 install_dir: servicedir)
Brad Bishop1c40f1c2020-04-08 19:32:43 -040089 endif
Lei YUbd3bd822019-10-10 15:28:10 +080090endforeach
91
Andy YF Wang40247cc2019-09-06 18:30:56 +080092# Get the power sequencer class name
93sequencer = get_option('power_sequencer')
94if sequencer == 'ucd90160'
95 sequencer_class = 'UCD90160'
96elif sequencer == 'mihawk-cpld'
97 sequencer_class = 'MihawkCPLD'
98else
99 # power sequencer is incorrect
100 error('power sequencer is incorrect')
101endif
102
Brad Bishop39b370a2019-09-02 02:37:32 -0400103conf = configuration_data()
104conf.set_quoted(
105 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
106conf.set_quoted(
107 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +0800108conf.set_quoted(
Brandon Wyman18a24d92022-04-19 22:48:34 +0000109 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio'))
110conf.set_quoted(
George Liu690e7802019-08-23 11:04:01 +0800111 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +0800112conf.set(
113 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -0400114conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +0800115 'DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -0500116conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -0400117
118configure_file(output: 'config.h', configuration: conf)
119
120# Ensure the generated header here winds up in the correct path in the build
121# tree such that it actually get used and doesn't get found in the sysroot
122# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
123# the output filename of a target definition so the target must be defined in
124# the directory where the artifacts need to be placed. Do that now, because
125# the generated source (cpp) is needed to define the library target.
126subdir('org/open_power/Witherspoon/Fault')
127
128libpower = static_library(
129 'power',
130 error_cpp,
131 error_hpp,
132 'gpio.cpp',
133 'pmbus.cpp',
134 'utility.cpp',
135 dependencies: [
Patrick Williams888bebd2023-05-31 19:19:49 -0500136 nlohmann_json_dep,
Brad Bishop39b370a2019-09-02 02:37:32 -0400137 phosphor_dbus_interfaces,
138 phosphor_logging,
139 sdbusplus,
140 sdeventplus,
141 ],
142)
143
Lei YU7c2fbbb2019-11-06 14:56:02 +0800144libpower_inc = include_directories('.')
145
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600146# Build the tools/i2c sub-directory first. Other sub-directories depend on
147# Meson variables defined there.
148subdir('tools/i2c')
149
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400150if get_option('regulators')
151 subdir('phosphor-regulators')
152endif
153if get_option('sequencer-monitor')
154 subdir('power-sequencer')
155endif
Jim Wright5f99bc02022-01-28 11:38:40 -0600156if get_option('power-control')
Jim Wright1553cd92021-03-31 16:11:59 -0500157 subdir('phosphor-power-sequencer')
158endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400159if get_option('supply-monitor')
160 subdir('power-supply')
161endif
162if get_option('supply-monitor-ng')
163 subdir('phosphor-power-supply')
164endif
165if get_option('utils')
166 subdir('tools/power-utils')
167endif
Shawn McCarneyff481432020-02-13 10:38:44 -0600168if get_option('tests').enabled()
169 subdir('test')
170endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400171if get_option('cold-redundancy')
172 subdir('cold-redundancy')
173endif