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') 70fmt = dependency('fmt', required: false) 71if not fmt.found() 72 fmt_proj = import('cmake').subproject( 73 'fmt', 74 cmake_options: [ 75 '-DCMAKE_POSITION_INDEPENDENT_CODE=ON', 76 '-DMASTER_PROJECT=OFF' 77 ], 78 required: false) 79 assert(fmt_proj.found(), 'fmtlib is required') 80 fmt = fmt_proj.dependency('fmt') 81endif 82libgpiodcxx = dependency('libgpiodcxx', 83 default_options: ['bindings=cxx']) 84 85nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system') 86 87if cxx.has_header('CLI/CLI.hpp') 88 cli11_dep = declare_dependency() 89else 90 cli11_dep = dependency('CLI11') 91endif 92 93systemd = dependency('systemd') 94servicedir = systemd.get_variable('systemdsystemunitdir') 95 96services = [ 97 ['supply-monitor', 'power-supply-monitor@.service'], 98 ['sequencer-monitor', 'pseq-monitor-pgood.service'], 99 ['sequencer-monitor', 'pseq-monitor.service'], 100 ['supply-monitor-ng', 'phosphor-psu-monitor.service'], 101 ['regulators', 'phosphor-regulators.service'], 102 ['regulators', 'phosphor-regulators-config.service'], 103 ['regulators', 'phosphor-regulators-monitor-enable.service'], 104 ['regulators', 'phosphor-regulators-monitor-disable.service'], 105 ['power-control', 'phosphor-power-control.service'], 106] 107 108fs = import('fs') 109foreach service : services 110 if get_option(service[0]) 111 fs.copyfile('services/' + service[1], 112 install: true, 113 install_dir: servicedir) 114 endif 115endforeach 116 117# Get the power sequencer class name 118sequencer = get_option('power_sequencer') 119if sequencer == 'ucd90160' 120 sequencer_class = 'UCD90160' 121elif sequencer == 'mihawk-cpld' 122 sequencer_class = 'MihawkCPLD' 123else 124 # power sequencer is incorrect 125 error('power sequencer is incorrect') 126endif 127 128conf = configuration_data() 129conf.set_quoted( 130 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root')) 131conf.set_quoted( 132 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root')) 133conf.set_quoted( 134 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio')) 135conf.set_quoted( 136 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') 137conf.set( 138 'SEQUENCER', sequencer_class) 139conf.set10( 140 'DEVICE_ACCESS', get_option('device-access')) 141conf.set10('IBM_VPD', get_option('ibm-vpd')) 142 143configure_file(output: 'config.h', configuration: conf) 144 145# Ensure the generated header here winds up in the correct path in the build 146# tree such that it actually get used and doesn't get found in the sysroot 147# somewhere. Meson doesn't allow path elements (rightfully so) when specifying 148# the output filename of a target definition so the target must be defined in 149# the directory where the artifacts need to be placed. Do that now, because 150# the generated source (cpp) is needed to define the library target. 151subdir('org/open_power/Witherspoon/Fault') 152 153libpower = static_library( 154 'power', 155 error_cpp, 156 error_hpp, 157 'gpio.cpp', 158 'pmbus.cpp', 159 'temporary_file.cpp', 160 'utility.cpp', 161 dependencies: [ 162 nlohmann_json_dep, 163 phosphor_dbus_interfaces, 164 phosphor_logging, 165 sdbusplus, 166 sdeventplus, 167 ], 168) 169 170libpower_inc = include_directories('.') 171 172# Build the tools/i2c sub-directory first. Other sub-directories depend on 173# Meson variables defined there. 174subdir('tools/i2c') 175 176if get_option('regulators') 177 subdir('phosphor-regulators') 178endif 179if get_option('sequencer-monitor') 180 subdir('power-sequencer') 181endif 182if get_option('power-control') 183 subdir('phosphor-power-sequencer') 184endif 185if get_option('supply-monitor') 186 subdir('power-supply') 187endif 188if get_option('supply-monitor-ng') 189 subdir('phosphor-power-supply') 190endif 191if get_option('utils') 192 subdir('tools/power-utils') 193endif 194if get_option('tests').allowed() 195 subdir('test') 196endif 197if get_option('cold-redundancy') 198 subdir('cold-redundancy') 199endif 200