blob: eef6b828a6e173566341723c02a2a28984686868 [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',
8 'prefix=/usr'
Brad Bishop39b370a2019-09-02 02:37:32 -04009 ],
10 license: 'Apache-2.0',
11 version: '1.0',
12)
13
14build_tests = get_option('tests')
15
Brandon Wymandc8e9312020-02-14 17:04:18 -060016if get_option('oe-sdk').enabled()
17 # Setup OE SYSROOT
18 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
19 if OECORE_TARGET_SYSROOT == ''
20 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
21 endif
22 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
23 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
24 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
25 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
26else
27 dynamic_linker = []
28endif
29
30
Brad Bishop39b370a2019-09-02 02:37:32 -040031cppfs = meson.get_compiler('cpp').find_library('stdc++fs')
32gmock = dependency('gmock', disabler: true, required: build_tests)
33gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
Brad Bishop39b370a2019-09-02 02:37:32 -040034phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
35phosphor_logging = dependency('phosphor-logging')
Lei YU43082e72020-03-09 10:32:48 +080036prog_python = import('python').find_installation('python3')
Brad Bishop39b370a2019-09-02 02:37:32 -040037sdbusplus = dependency('sdbusplus')
38sdbuspp = find_program('sdbus++')
39sdeventplus = dependency('sdeventplus')
Cheng C Yange83604b2020-01-09 09:41:47 +080040pthread = dependency('threads')
Matthew Barth7cbc5532020-01-29 15:13:13 -060041stdplus = dependency('stdplus')
Andrew Geissler89283d12020-05-30 23:17:07 -050042boost = dependency('boost')
Brad Bishop39b370a2019-09-02 02:37:32 -040043
Lei YUbd3bd822019-10-10 15:28:10 +080044systemd = dependency('systemd')
45servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir')
46
47services = [
Brad Bishop1c40f1c2020-04-08 19:32:43 -040048 ['supply-monitor', 'power-supply-monitor@.service'],
49 ['sequencer-monitor', 'pseq-monitor-pgood.service'],
50 ['sequencer-monitor', 'pseq-monitor.service'],
51 ['supply-monitor-ng', 'phosphor-psu-monitor.service'],
52 ['regulators', 'phosphor-regulators.service'],
53 ['regulators', 'phosphor-regulators-config.service'],
54 ['regulators', 'phosphor-regulators-monitor-enable.service'],
55 ['regulators', 'phosphor-regulators-monitor-disable.service'],
Lei YUbd3bd822019-10-10 15:28:10 +080056]
57
58foreach service : services
Brad Bishop1c40f1c2020-04-08 19:32:43 -040059 if get_option(service[0])
60 configure_file(input: 'services/' + service[1],
61 output: service[1],
Lei YUbd3bd822019-10-10 15:28:10 +080062 copy: true,
63 install_dir: servicedir)
Brad Bishop1c40f1c2020-04-08 19:32:43 -040064 endif
Lei YUbd3bd822019-10-10 15:28:10 +080065endforeach
66
Andy YF Wang40247cc2019-09-06 18:30:56 +080067# Get the power sequencer class name
68sequencer = get_option('power_sequencer')
69if sequencer == 'ucd90160'
70 sequencer_class = 'UCD90160'
71elif sequencer == 'mihawk-cpld'
72 sequencer_class = 'MihawkCPLD'
73else
74 # power sequencer is incorrect
75 error('power sequencer is incorrect')
76endif
77
Brad Bishop39b370a2019-09-02 02:37:32 -040078conf = configuration_data()
79conf.set_quoted(
80 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
81conf.set_quoted(
82 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +080083conf.set_quoted(
84 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +080085conf.set(
86 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -040087conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +080088 'DEVICE_ACCESS', get_option('device-access'))
Brandon Wyman1d7a7df2020-03-26 10:14:05 -050089conf.set10('IBM_VPD', get_option('ibm-vpd'))
Brad Bishop39b370a2019-09-02 02:37:32 -040090
91configure_file(output: 'config.h', configuration: conf)
92
93# Ensure the generated header here winds up in the correct path in the build
94# tree such that it actually get used and doesn't get found in the sysroot
95# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
96# the output filename of a target definition so the target must be defined in
97# the directory where the artifacts need to be placed. Do that now, because
98# the generated source (cpp) is needed to define the library target.
99subdir('org/open_power/Witherspoon/Fault')
100
101libpower = static_library(
102 'power',
103 error_cpp,
104 error_hpp,
105 'gpio.cpp',
106 'pmbus.cpp',
107 'utility.cpp',
108 dependencies: [
109 cppfs,
Brad Bishop39b370a2019-09-02 02:37:32 -0400110 phosphor_dbus_interfaces,
111 phosphor_logging,
112 sdbusplus,
113 sdeventplus,
114 ],
115)
116
Lei YU7c2fbbb2019-11-06 14:56:02 +0800117libpower_inc = include_directories('.')
118
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600119# Build the tools/i2c sub-directory first. Other sub-directories depend on
120# Meson variables defined there.
121subdir('tools/i2c')
122
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400123if get_option('regulators')
124 subdir('phosphor-regulators')
125endif
126if get_option('sequencer-monitor')
127 subdir('power-sequencer')
128endif
129if get_option('supply-monitor')
130 subdir('power-supply')
131endif
132if get_option('supply-monitor-ng')
133 subdir('phosphor-power-supply')
134endif
135if get_option('utils')
136 subdir('tools/power-utils')
137endif
Shawn McCarneyff481432020-02-13 10:38:44 -0600138if get_option('tests').enabled()
139 subdir('test')
140endif
Brad Bishop1c40f1c2020-04-08 19:32:43 -0400141if get_option('cold-redundancy')
142 subdir('cold-redundancy')
143endif