1project( 2 'phosphor-power', 3 'cpp', 4 default_options: [ 5 'warning_level=3', 6 'werror=true', 7 'cpp_std=c++23', 8 'buildtype=debugoptimized', 9 'prefix=/usr' 10 ], 11 license: 'Apache-2.0', 12 version: '1.0', 13 meson_version: '>=1.1.1', 14) 15 16cxx = meson.get_compiler('cpp') 17 18build_tests = get_option('tests') 19 20if get_option('oe-sdk').allowed() 21 # Setup OE SYSROOT 22 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip() 23 if OECORE_TARGET_SYSROOT == '' 24 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') 25 endif 26 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) 27 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib']) 28 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip() 29 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] 30else 31 dynamic_linker = [] 32endif 33 34 35gmock = dependency('gmock', disabler: true, required: false) 36gtest = dependency('gtest', main: true, disabler: true, required: false) 37if (not gtest.found() or not gmock.found()) and build_tests.allowed() 38 gtest_opts = import('cmake').subproject_options() 39 gtest_opts.add_cmake_defines({ 40 'BUILD_SHARED_LIBS': 'ON' 41 }) 42 gtest_proj = import('cmake').subproject('googletest', 43 options: gtest_opts, 44 required: false) 45 if gtest_proj.found() 46 gtest = declare_dependency( 47 dependencies: [ 48 dependency('threads'), 49 gtest_proj.dependency('gtest'), 50 gtest_proj.dependency('gtest_main'), 51 ] 52 ) 53 gmock = gtest_proj.dependency('gmock') 54 else 55 assert(false, 'Googletest is required if tests are enabled') 56 endif 57endif 58 59 60 61phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') 62phosphor_logging = dependency('phosphor-logging') 63prog_python = import('python').find_installation('python3') 64sdbusplus = dependency('sdbusplus') 65sdbuspp = find_program('sdbus++') 66sdeventplus = dependency('sdeventplus') 67pthread = dependency('threads') 68stdplus = dependency('stdplus') 69boost = dependency('boost') 70libgpiodcxx = dependency('libgpiodcxx', 71 default_options: ['bindings=cxx']) 72 73nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system') 74 75if cxx.has_header('CLI/CLI.hpp') 76 cli11_dep = declare_dependency() 77else 78 cli11_dep = dependency('CLI11') 79endif 80 81systemd = dependency('systemd') 82servicedir = systemd.get_variable('systemdsystemunitdir') 83 84services = [ 85 ['supply-monitor', 'power-supply-monitor@.service'], 86 ['sequencer-monitor', 'pseq-monitor-pgood.service'], 87 ['sequencer-monitor', 'pseq-monitor.service'], 88 ['supply-monitor-ng', 'phosphor-psu-monitor.service'], 89 ['regulators', 'phosphor-regulators.service'], 90 ['regulators', 'phosphor-regulators-config.service'], 91 ['regulators', 'phosphor-regulators-monitor-enable.service'], 92 ['regulators', 'phosphor-regulators-monitor-disable.service'], 93 ['power-control', 'phosphor-power-control.service'], 94] 95 96fs = import('fs') 97foreach service : services 98 if get_option(service[0]) 99 fs.copyfile('services/' + service[1], 100 install: true, 101 install_dir: servicedir) 102 endif 103endforeach 104 105# Get the power sequencer class name 106sequencer = get_option('power_sequencer') 107if sequencer == 'ucd90160' 108 sequencer_class = 'UCD90160' 109elif sequencer == 'mihawk-cpld' 110 sequencer_class = 'MihawkCPLD' 111else 112 # power sequencer is incorrect 113 error('power sequencer is incorrect') 114endif 115 116conf = configuration_data() 117conf.set_quoted( 118 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root')) 119conf.set_quoted( 120 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root')) 121conf.set_quoted( 122 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio')) 123conf.set_quoted( 124 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') 125conf.set( 126 'SEQUENCER', sequencer_class) 127conf.set10( 128 'DEVICE_ACCESS', get_option('device-access')) 129conf.set10('IBM_VPD', get_option('ibm-vpd')) 130 131configure_file(output: 'config.h', configuration: conf) 132 133# Ensure the generated header here winds up in the correct path in the build 134# tree such that it actually get used and doesn't get found in the sysroot 135# somewhere. Meson doesn't allow path elements (rightfully so) when specifying 136# the output filename of a target definition so the target must be defined in 137# the directory where the artifacts need to be placed. Do that now, because 138# the generated source (cpp) is needed to define the library target. 139subdir('org/open_power/Witherspoon/Fault') 140 141libpower = static_library( 142 'power', 143 error_cpp, 144 error_hpp, 145 'compatible_system_types_finder.cpp', 146 'dbus_interfaces_finder.cpp', 147 'gpio.cpp', 148 'pmbus.cpp', 149 'temporary_file.cpp', 150 'temporary_subdirectory.cpp', 151 'utility.cpp', 152 dependencies: [ 153 nlohmann_json_dep, 154 phosphor_dbus_interfaces, 155 phosphor_logging, 156 sdbusplus, 157 sdeventplus, 158 ], 159) 160 161libpower_inc = include_directories('.') 162 163# Build the tools/i2c sub-directory first. Other sub-directories depend on 164# Meson variables defined there. 165subdir('tools/i2c') 166 167if get_option('regulators') 168 subdir('phosphor-regulators') 169endif 170if get_option('sequencer-monitor') 171 subdir('power-sequencer') 172endif 173if get_option('power-control') 174 subdir('phosphor-power-sequencer') 175endif 176if get_option('supply-monitor') 177 subdir('power-supply') 178endif 179if get_option('supply-monitor-ng') 180 subdir('phosphor-power-supply') 181endif 182if get_option('utils') 183 subdir('tools/power-utils') 184endif 185if get_option('tests').allowed() 186 subdir('test') 187endif 188if get_option('cold-redundancy') 189 subdir('cold-redundancy') 190endif 191