blob: c32e295674553b0b72f65d88a4ae236755471939 [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
16build_tests = get_option('tests')
17
Brandon Wymandc8e9312020-02-14 17:04:18 -060018if get_option('oe-sdk').enabled()
19 # Setup OE SYSROOT
20 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
21 if OECORE_TARGET_SYSROOT == ''
22 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
23 endif
24 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
25 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
26 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
27 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
28else
29 dynamic_linker = []
30endif
31
32
Brad Bishop39b370a2019-09-02 02:37:32 -040033cppfs = meson.get_compiler('cpp').find_library('stdc++fs')
34gmock = dependency('gmock', disabler: true, required: build_tests)
35gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
Brad Bishop39b370a2019-09-02 02:37:32 -040036phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
37phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080038prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040039sdbusplus = dependency('sdbusplus')
40sdbuspp = find_program('sdbus++')
41sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080042pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060043stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050044boost = dependency('boost')
Brandon Wymanb76ab242020-09-16 18:06:06 -050045fmt = dependency('fmt')
B. J. Wyman681b2a32021-04-20 22:31:22 +000046libgpiodcxx = dependency('libgpiodcxx')
Brad Bishop39b370a2019-09-02 02:37:32 -040047
Lei YUbd3bd822019-10-10 15:28:10 +080048systemd = dependency('systemd')
Patrick Williams95f6aab2023-04-12 08:01:11 -050049servicedir = systemd.get_variable('systemdsystemunitdir')
Lei YUbd3bd822019-10-10 15:28:10 +080050
51services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -040052 ['supply-monitor', 'power-supply-monitor@.service'],
53 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
54 ['sequencer-monitor', 'pseq-monitor.service'],
55 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
56 ['regulators', 'phosphor-regulators.service'],
57 ['regulators', 'phosphor-regulators-config.service'],
58 ['regulators', 'phosphor-regulators-monitor-enable.service'],
59 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Jim Wright5f99bc02022-01-28 11:38:40 -060060 ['power-control', 'phosphor-power-control.service'],
Lei YUbd3bd822019-10-10 15:28:10 +080061]
62
63foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -040064 if get_option(service[0])
65 configure_file(input: 'services/' + service[1],
66 output: service[1],
Lei YUbd3bd822019-10-10 15:28:10 +080067 copy: true,
68 install_dir: servicedir)
Brad Bishop1c40f1c2020-04-08 19:32:43 -040069 endif
Lei YUbd3bd822019-10-10 15:28:10 +080070endforeach
71
Andy YF Wang40247cc2019-09-06 18:30:56 +080072# Get the power sequencer class name
73sequencer = get_option('power_sequencer')
74if sequencer == 'ucd90160'
75 sequencer_class = 'UCD90160'
76elif sequencer == 'mihawk-cpld'
77 sequencer_class = 'MihawkCPLD'
78else
79 # power sequencer is incorrect
80 error('power sequencer is incorrect')
81endif
82
Brad Bishop39b370a2019-09-02 02:37:32 -040083conf = configuration_data()
84conf.set_quoted(
85 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
86conf.set_quoted(
87 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +080088conf.set_quoted(
Brandon Wyman18a24d92022-04-19 22:48:34 +000089 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio'))
90conf.set_quoted(
George Liu690e7802019-08-23 11:04:01 +080091 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +080092conf.set(
93 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -040094conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +080095 'DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -050096conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -040097
98configure_file(output: 'config.h', configuration: conf)
99
100# Ensure the generated header here winds up in the correct path in the build
101# tree such that it actually get used and doesn't get found in the sysroot
102# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
103# the output filename of a target definition so the target must be defined in
104# the directory where the artifacts need to be placed. Do that now, because
105# the generated source (cpp) is needed to define the library target.
106subdir('org/open_power/Witherspoon/Fault')
107
108libpower = static_library(
109 'power',
110 error_cpp,
111 error_hpp,
112 'gpio.cpp',
113 'pmbus.cpp',
114 'utility.cpp',
115 dependencies: [
116 cppfs,
Brad Bishop39b370a2019-09-02 02:37:32 -0400117 phosphor_dbus_interfaces,
118 phosphor_logging,
119 sdbusplus,
120 sdeventplus,
121 ],
122)
123
Lei YU7c2fbbb2019-11-06 14:56:02 +0800124libpower_inc = include_directories('.')
125
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600126# Build the tools/i2c sub-directory first. Other sub-directories depend on
127# Meson variables defined there.
128subdir('tools/i2c')
129
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400130if get_option('regulators')
131 subdir('phosphor-regulators')
132endif
133if get_option('sequencer-monitor')
134 subdir('power-sequencer')
135endif
Jim Wright5f99bc02022-01-28 11:38:40 -0600136if get_option('power-control')
Jim Wright1553cd92021-03-31 16:11:59 -0500137 subdir('phosphor-power-sequencer')
138endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400139if get_option('supply-monitor')
140 subdir('power-supply')
141endif
142if get_option('supply-monitor-ng')
143 subdir('phosphor-power-supply')
144endif
145if get_option('utils')
146 subdir('tools/power-utils')
147endif
Shawn McCarneyff481432020-02-13 10:38:44 -0600148if get_option('tests').enabled()
149 subdir('test')
150endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400151if get_option('cold-redundancy')
152 subdir('cold-redundancy')
153endif