blob: a590265cfbe6fa455c443f6fc37e746d29926683 [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 -040033gmock = 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')
Patrick Williams95f6aab2023-04-12 08:01:11 -050048servicedir = systemd.get_variable('systemdsystemunitdir')
Lei YUbd3bd822019-10-10 15:28:10 +080049
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'],
Jim Wright5f99bc02022-01-28 11:38:40 -060059 ['power-control', 'phosphor-power-control.service'],
Lei YUbd3bd822019-10-10 15:28:10 +080060]
61
62foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -040063 if get_option(service[0])
64 configure_file(input: 'services/' + service[1],
65 output: service[1],
Lei YUbd3bd822019-10-10 15:28:10 +080066 copy: true,
67 install_dir: servicedir)
Brad Bishop1c40f1c2020-04-08 19:32:43 -040068 endif
Lei YUbd3bd822019-10-10 15:28:10 +080069endforeach
70
Andy YF Wang40247cc2019-09-06 18:30:56 +080071# Get the power sequencer class name
72sequencer = get_option('power_sequencer')
73if sequencer == 'ucd90160'
74 sequencer_class = 'UCD90160'
75elif sequencer == 'mihawk-cpld'
76 sequencer_class = 'MihawkCPLD'
77else
78 # power sequencer is incorrect
79 error('power sequencer is incorrect')
80endif
81
Brad Bishop39b370a2019-09-02 02:37:32 -040082conf = configuration_data()
83conf.set_quoted(
84 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
85conf.set_quoted(
86 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +080087conf.set_quoted(
Brandon Wyman18a24d92022-04-19 22:48:34 +000088 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio'))
89conf.set_quoted(
George Liu690e7802019-08-23 11:04:01 +080090 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +080091conf.set(
92 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -040093conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +080094 'DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -050095conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -040096
97configure_file(output: 'config.h', configuration: conf)
98
99# Ensure the generated header here winds up in the correct path in the build
100# tree such that it actually get used and doesn't get found in the sysroot
101# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
102# the output filename of a target definition so the target must be defined in
103# the directory where the artifacts need to be placed. Do that now, because
104# the generated source (cpp) is needed to define the library target.
105subdir('org/open_power/Witherspoon/Fault')
106
107libpower = static_library(
108 'power',
109 error_cpp,
110 error_hpp,
111 'gpio.cpp',
112 'pmbus.cpp',
113 'utility.cpp',
114 dependencies: [
Brad Bishop39b370a2019-09-02 02:37:32 -0400115 phosphor_dbus_interfaces,
116 phosphor_logging,
117 sdbusplus,
118 sdeventplus,
119 ],
120)
121
Lei YU7c2fbbb2019-11-06 14:56:02 +0800122libpower_inc = include_directories('.')
123
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600124# Build the tools/i2c sub-directory first. Other sub-directories depend on
125# Meson variables defined there.
126subdir('tools/i2c')
127
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400128if get_option('regulators')
129 subdir('phosphor-regulators')
130endif
131if get_option('sequencer-monitor')
132 subdir('power-sequencer')
133endif
Jim Wright5f99bc02022-01-28 11:38:40 -0600134if get_option('power-control')
Jim Wright1553cd92021-03-31 16:11:59 -0500135 subdir('phosphor-power-sequencer')
136endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400137if get_option('supply-monitor')
138 subdir('power-supply')
139endif
140if get_option('supply-monitor-ng')
141 subdir('phosphor-power-supply')
142endif
143if get_option('utils')
144 subdir('tools/power-utils')
145endif
Shawn McCarneyff481432020-02-13 10:38:44 -0600146if get_option('tests').enabled()
147 subdir('test')
148endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400149if get_option('cold-redundancy')
150 subdir('cold-redundancy')
151endif