blob: fff20a7eb0e5dd000cb8d61c6484be4411ba3c7e [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',
Matthew Barthd13feab2019-12-20 14:09:19 -06007 'cpp_std=c++17',
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',
13)
14
15build_tests = get_option('tests')
16
Brandon Wymandc8e9312020-02-14 17:04:18 -060017if get_option('oe-sdk').enabled()
18 # Setup OE SYSROOT
19 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
20 if OECORE_TARGET_SYSROOT == ''
21 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
22 endif
23 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
24 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
25 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
26 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
27else
28 dynamic_linker = []
29endif
30
31
Brad Bishop39b370a2019-09-02 02:37:32 -040032cppfs = meson.get_compiler('cpp').find_library('stdc++fs')
33gmock = dependency('gmock', disabler: true, required: build_tests)
34gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
Brad Bishop39b370a2019-09-02 02:37:32 -040035phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
36phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080037prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040038sdbusplus = dependency('sdbusplus')
39sdbuspp = find_program('sdbus++')
40sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080041pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060042stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050043boost = dependency('boost')
Brandon Wymanb76ab242020-09-16 18:06:06 -050044fmt = dependency('fmt')
B. J. Wyman681b2a32021-04-20 22:31:22 +000045libgpiodcxx = dependency('libgpiodcxx')
Brad Bishop39b370a2019-09-02 02:37:32 -040046
Lei YUbd3bd822019-10-10 15:28:10 +080047systemd = dependency('systemd')
48servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir')
49
50services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -040051 ['supply-monitor', 'power-supply-monitor@.service'],
52 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
53 ['sequencer-monitor', 'pseq-monitor.service'],
54 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
55 ['regulators', 'phosphor-regulators.service'],
56 ['regulators', 'phosphor-regulators-config.service'],
57 ['regulators', 'phosphor-regulators-monitor-enable.service'],
58 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Lei YUbd3bd822019-10-10 15:28:10 +080059]
60
61foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -040062 if get_option(service[0])
63 configure_file(input: 'services/' + service[1],
64 output: service[1],
Lei YUbd3bd822019-10-10 15:28:10 +080065 copy: true,
66 install_dir: servicedir)
Brad Bishop1c40f1c2020-04-08 19:32:43 -040067 endif
Lei YUbd3bd822019-10-10 15:28:10 +080068endforeach
69
Andy YF Wang40247cc2019-09-06 18:30:56 +080070# Get the power sequencer class name
71sequencer = get_option('power_sequencer')
72if sequencer == 'ucd90160'
73 sequencer_class = 'UCD90160'
74elif sequencer == 'mihawk-cpld'
75 sequencer_class = 'MihawkCPLD'
76else
77 # power sequencer is incorrect
78 error('power sequencer is incorrect')
79endif
80
Brad Bishop39b370a2019-09-02 02:37:32 -040081conf = configuration_data()
82conf.set_quoted(
83 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
84conf.set_quoted(
85 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +080086conf.set_quoted(
87 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +080088conf.set(
89 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -040090conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +080091 'DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -050092conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -040093
94configure_file(output: 'config.h', configuration: conf)
95
96# Ensure the generated header here winds up in the correct path in the build
97# tree such that it actually get used and doesn't get found in the sysroot
98# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
99# the output filename of a target definition so the target must be defined in
100# the directory where the artifacts need to be placed. Do that now, because
101# the generated source (cpp) is needed to define the library target.
102subdir('org/open_power/Witherspoon/Fault')
103
104libpower = static_library(
105 'power',
106 error_cpp,
107 error_hpp,
108 'gpio.cpp',
109 'pmbus.cpp',
110 'utility.cpp',
111 dependencies: [
112 cppfs,
Brad Bishop39b370a2019-09-02 02:37:32 -0400113 phosphor_dbus_interfaces,
114 phosphor_logging,
115 sdbusplus,
116 sdeventplus,
117 ],
118)
119
Lei YU7c2fbbb2019-11-06 14:56:02 +0800120libpower_inc = include_directories('.')
121
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600122# Build the tools/i2c sub-directory first. Other sub-directories depend on
123# Meson variables defined there.
124subdir('tools/i2c')
125
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400126if get_option('regulators')
127 subdir('phosphor-regulators')
128endif
129if get_option('sequencer-monitor')
130 subdir('power-sequencer')
131endif
Jim Wright1553cd92021-03-31 16:11:59 -0500132if get_option('sequencer-monitor-ng')
133 subdir('phosphor-power-sequencer')
134endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400135if get_option('supply-monitor')
136 subdir('power-supply')
137endif
138if get_option('supply-monitor-ng')
139 subdir('phosphor-power-supply')
140endif
141if get_option('utils')
142 subdir('tools/power-utils')
143endif
Shawn McCarneyff481432020-02-13 10:38:44 -0600144if get_option('tests').enabled()
145 subdir('test')
146endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400147if get_option('cold-redundancy')
148 subdir('cold-redundancy')
149endif