1project( 2 'phosphor-power', 3 'cpp', 4 default_options: [ 5 'warning_level=3', 6 'werror=true', 7 'cpp_std=c++17', 8 'prefix=/usr' 9 ], 10 license: 'Apache-2.0', 11 version: '1.0', 12) 13 14build_tests = get_option('tests') 15 16if 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 31cppfs = 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) 34phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') 35phosphor_logging = dependency('phosphor-logging') 36prog_python = import('python').find_installation('python3') 37sdbusplus = dependency('sdbusplus') 38sdbuspp = find_program('sdbus++') 39sdeventplus = dependency('sdeventplus') 40pthread = dependency('threads') 41stdplus = dependency('stdplus') 42 43systemd = dependency('systemd') 44servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir') 45 46services = [ 47 'power-supply-monitor@.service', 48 'pseq-monitor-pgood.service', 49 'pseq-monitor.service', 50 'phosphor-psu-monitor.service', 51 'phosphor-regulators.service', 52 'phosphor-regulators-config.service' 53] 54 55foreach service : services 56 configure_file(input: 'services/' + service, 57 output: service, 58 copy: true, 59 install_dir: servicedir) 60endforeach 61 62# Get the power sequencer class name 63sequencer = get_option('power_sequencer') 64if sequencer == 'ucd90160' 65 sequencer_class = 'UCD90160' 66elif sequencer == 'mihawk-cpld' 67 sequencer_class = 'MihawkCPLD' 68else 69 # power sequencer is incorrect 70 error('power sequencer is incorrect') 71endif 72 73conf = configuration_data() 74conf.set_quoted( 75 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root')) 76conf.set_quoted( 77 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root')) 78conf.set_quoted( 79 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') 80conf.set( 81 'SEQUENCER', sequencer_class) 82conf.set10( 83 'DEVICE_ACCESS', get_option('device-access')) 84 85configure_file(output: 'config.h', configuration: conf) 86 87# Ensure the generated header here winds up in the correct path in the build 88# tree such that it actually get used and doesn't get found in the sysroot 89# somewhere. Meson doesn't allow path elements (rightfully so) when specifying 90# the output filename of a target definition so the target must be defined in 91# the directory where the artifacts need to be placed. Do that now, because 92# the generated source (cpp) is needed to define the library target. 93subdir('org/open_power/Witherspoon/Fault') 94 95libpower = static_library( 96 'power', 97 error_cpp, 98 error_hpp, 99 'gpio.cpp', 100 'pmbus.cpp', 101 'utility.cpp', 102 dependencies: [ 103 cppfs, 104 phosphor_dbus_interfaces, 105 phosphor_logging, 106 sdbusplus, 107 sdeventplus, 108 ], 109) 110 111libpower_inc = include_directories('.') 112 113# Build the tools/i2c sub-directory first. Other sub-directories depend on 114# Meson variables defined there. 115subdir('tools/i2c') 116 117subdir('phosphor-regulators') 118subdir('power-sequencer') 119subdir('power-supply') 120subdir('phosphor-power-supply') 121subdir('tools/power-utils') 122if get_option('tests').enabled() 123 subdir('test') 124endif 125subdir('cold-redundancy') 126