blob: 2bc4b50a52ed3b2b932f5a71adc1115d2bc3bef5 [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')
Brad Bishop39b370a2019-09-02 02:37:32 -040042
Lei YUbd3bd822019-10-10 15:28:10 +080043systemd = dependency('systemd')
44servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir')
45
46services = [
47 'power-supply-monitor@.service',
48 'pseq-monitor-pgood.service',
Brandon Wymanbd1c4ff2020-01-14 14:09:56 -060049 'pseq-monitor.service',
Matthew Barth1efdd622019-12-20 14:16:31 -060050 'phosphor-psu-monitor.service',
51 'phosphor-regulators.service'
Lei YUbd3bd822019-10-10 15:28:10 +080052]
53
54foreach service : services
55 configure_file(input: 'services/' + service,
56 output: service,
57 copy: true,
58 install_dir: servicedir)
59endforeach
60
Andy YF Wang40247cc2019-09-06 18:30:56 +080061# Get the power sequencer class name
62sequencer = get_option('power_sequencer')
63if sequencer == 'ucd90160'
64 sequencer_class = 'UCD90160'
65elif sequencer == 'mihawk-cpld'
66 sequencer_class = 'MihawkCPLD'
67else
68 # power sequencer is incorrect
69 error('power sequencer is incorrect')
70endif
71
Brad Bishop39b370a2019-09-02 02:37:32 -040072conf = configuration_data()
73conf.set_quoted(
74 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root'))
75conf.set_quoted(
76 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root'))
George Liu690e7802019-08-23 11:04:01 +080077conf.set_quoted(
78 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json')
Andy YF Wang40247cc2019-09-06 18:30:56 +080079conf.set(
80 'SEQUENCER', sequencer_class)
Brad Bishop39b370a2019-09-02 02:37:32 -040081conf.set10(
Andy YF Wang40247cc2019-09-06 18:30:56 +080082 'DEVICE_ACCESS', get_option('device-access'))
Brad Bishop39b370a2019-09-02 02:37:32 -040083
84configure_file(output: 'config.h', configuration: conf)
85
86# Ensure the generated header here winds up in the correct path in the build
87# tree such that it actually get used and doesn't get found in the sysroot
88# somewhere. Meson doesn't allow path elements (rightfully so) when specifying
89# the output filename of a target definition so the target must be defined in
90# the directory where the artifacts need to be placed. Do that now, because
91# the generated source (cpp) is needed to define the library target.
92subdir('org/open_power/Witherspoon/Fault')
93
94libpower = static_library(
95 'power',
96 error_cpp,
97 error_hpp,
98 'gpio.cpp',
99 'pmbus.cpp',
100 'utility.cpp',
101 dependencies: [
102 cppfs,
Brad Bishop39b370a2019-09-02 02:37:32 -0400103 phosphor_dbus_interfaces,
104 phosphor_logging,
105 sdbusplus,
106 sdeventplus,
107 ],
108)
109
Lei YU7c2fbbb2019-11-06 14:56:02 +0800110libpower_inc = include_directories('.')
111
Shawn McCarney4c94bc72019-12-13 17:49:31 -0600112# Build the tools/i2c sub-directory first. Other sub-directories depend on
113# Meson variables defined there.
114subdir('tools/i2c')
115
Shawn McCarneya2461b32019-10-24 18:53:01 -0500116subdir('phosphor-regulators')
Brad Bishop39b370a2019-09-02 02:37:32 -0400117subdir('power-sequencer')
118subdir('power-supply')
Brandon Wyman2ad76bd2019-08-26 17:15:04 -0500119subdir('phosphor-power-supply')
Lei YU0bf1b782019-08-29 16:02:30 +0800120subdir('tools/power-utils')
Shawn McCarneyff481432020-02-13 10:38:44 -0600121if get_option('tests').enabled()
122 subdir('test')
123endif
Cheng C Yange83604b2020-01-09 09:41:47 +0800124subdir('cold-redundancy')