Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 1 | project( |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 2 | 'phosphor-power', |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 3 | 'cpp', |
| 4 | default_options: [ |
| 5 | 'warning_level=3', |
| 6 | 'werror=true', |
Matthew Barth | d13feab | 2019-12-20 14:09:19 -0600 | [diff] [blame] | 7 | 'cpp_std=c++17', |
| 8 | 'prefix=/usr' |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 9 | ], |
| 10 | license: 'Apache-2.0', |
| 11 | version: '1.0', |
| 12 | ) |
| 13 | |
| 14 | build_tests = get_option('tests') |
| 15 | |
Brandon Wyman | dc8e931 | 2020-02-14 17:04:18 -0600 | [diff] [blame] | 16 | if 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] |
| 26 | else |
| 27 | dynamic_linker = [] |
| 28 | endif |
| 29 | |
| 30 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 31 | cppfs = meson.get_compiler('cpp').find_library('stdc++fs') |
| 32 | gmock = dependency('gmock', disabler: true, required: build_tests) |
| 33 | gtest = dependency('gtest', main: true, disabler: true, required: build_tests) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 34 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') |
| 35 | phosphor_logging = dependency('phosphor-logging') |
Lei YU | 43082e7 | 2020-03-09 10:32:48 +0800 | [diff] [blame] | 36 | prog_python = import('python').find_installation('python3') |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 37 | sdbusplus = dependency('sdbusplus') |
| 38 | sdbuspp = find_program('sdbus++') |
| 39 | sdeventplus = dependency('sdeventplus') |
Cheng C Yang | e83604b | 2020-01-09 09:41:47 +0800 | [diff] [blame] | 40 | pthread = dependency('threads') |
Matthew Barth | 7cbc553 | 2020-01-29 15:13:13 -0600 | [diff] [blame] | 41 | stdplus = dependency('stdplus') |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 42 | |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 43 | systemd = dependency('systemd') |
| 44 | servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir') |
| 45 | |
| 46 | services = [ |
| 47 | 'power-supply-monitor@.service', |
| 48 | 'pseq-monitor-pgood.service', |
Brandon Wyman | bd1c4ff | 2020-01-14 14:09:56 -0600 | [diff] [blame] | 49 | 'pseq-monitor.service', |
Matthew Barth | 1efdd62 | 2019-12-20 14:16:31 -0600 | [diff] [blame] | 50 | 'phosphor-psu-monitor.service', |
| 51 | 'phosphor-regulators.service' |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 52 | ] |
| 53 | |
| 54 | foreach service : services |
| 55 | configure_file(input: 'services/' + service, |
| 56 | output: service, |
| 57 | copy: true, |
| 58 | install_dir: servicedir) |
| 59 | endforeach |
| 60 | |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 61 | # Get the power sequencer class name |
| 62 | sequencer = get_option('power_sequencer') |
| 63 | if sequencer == 'ucd90160' |
| 64 | sequencer_class = 'UCD90160' |
| 65 | elif sequencer == 'mihawk-cpld' |
| 66 | sequencer_class = 'MihawkCPLD' |
| 67 | else |
| 68 | # power sequencer is incorrect |
| 69 | error('power sequencer is incorrect') |
| 70 | endif |
| 71 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 72 | conf = configuration_data() |
| 73 | conf.set_quoted( |
| 74 | 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root')) |
| 75 | conf.set_quoted( |
| 76 | 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root')) |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 77 | conf.set_quoted( |
| 78 | 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 79 | conf.set( |
| 80 | 'SEQUENCER', sequencer_class) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 81 | conf.set10( |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 82 | 'DEVICE_ACCESS', get_option('device-access')) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 83 | |
| 84 | configure_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. |
| 92 | subdir('org/open_power/Witherspoon/Fault') |
| 93 | |
| 94 | libpower = static_library( |
| 95 | 'power', |
| 96 | error_cpp, |
| 97 | error_hpp, |
| 98 | 'gpio.cpp', |
| 99 | 'pmbus.cpp', |
| 100 | 'utility.cpp', |
| 101 | dependencies: [ |
| 102 | cppfs, |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 103 | phosphor_dbus_interfaces, |
| 104 | phosphor_logging, |
| 105 | sdbusplus, |
| 106 | sdeventplus, |
| 107 | ], |
| 108 | ) |
| 109 | |
Lei YU | 7c2fbbb | 2019-11-06 14:56:02 +0800 | [diff] [blame] | 110 | libpower_inc = include_directories('.') |
| 111 | |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 112 | # Build the tools/i2c sub-directory first. Other sub-directories depend on |
| 113 | # Meson variables defined there. |
| 114 | subdir('tools/i2c') |
| 115 | |
Shawn McCarney | a2461b3 | 2019-10-24 18:53:01 -0500 | [diff] [blame] | 116 | subdir('phosphor-regulators') |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 117 | subdir('power-sequencer') |
| 118 | subdir('power-supply') |
Brandon Wyman | 2ad76bd | 2019-08-26 17:15:04 -0500 | [diff] [blame] | 119 | subdir('phosphor-power-supply') |
Lei YU | 0bf1b78 | 2019-08-29 16:02:30 +0800 | [diff] [blame] | 120 | subdir('tools/power-utils') |
Shawn McCarney | ff48143 | 2020-02-13 10:38:44 -0600 | [diff] [blame] | 121 | if get_option('tests').enabled() |
| 122 | subdir('test') |
| 123 | endif |
Cheng C Yang | e83604b | 2020-01-09 09:41:47 +0800 | [diff] [blame] | 124 | subdir('cold-redundancy') |