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', |
Patrick Williams | b837887 | 2021-10-06 15:38:44 -0500 | [diff] [blame] | 7 | 'cpp_std=c++20', |
Brandon Wyman | 81d6cde | 2021-03-09 16:00:04 -0600 | [diff] [blame] | 8 | 'buildtype=debugoptimized', |
Matthew Barth | d13feab | 2019-12-20 14:09:19 -0600 | [diff] [blame] | 9 | 'prefix=/usr' |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 10 | ], |
| 11 | license: 'Apache-2.0', |
| 12 | version: '1.0', |
Patrick Williams | b837887 | 2021-10-06 15:38:44 -0500 | [diff] [blame] | 13 | meson_version: '>=0.57.0', |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 14 | ) |
| 15 | |
| 16 | build_tests = get_option('tests') |
| 17 | |
Brandon Wyman | dc8e931 | 2020-02-14 17:04:18 -0600 | [diff] [blame] | 18 | if get_option('oe-sdk').enabled() |
| 19 | # Setup OE SYSROOT |
| 20 | OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip() |
| 21 | if OECORE_TARGET_SYSROOT == '' |
| 22 | error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') |
| 23 | endif |
| 24 | message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) |
| 25 | rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib']) |
| 26 | ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip() |
| 27 | dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] |
| 28 | else |
| 29 | dynamic_linker = [] |
| 30 | endif |
| 31 | |
| 32 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 33 | cppfs = meson.get_compiler('cpp').find_library('stdc++fs') |
| 34 | gmock = dependency('gmock', disabler: true, required: build_tests) |
| 35 | gtest = dependency('gtest', main: true, disabler: true, required: build_tests) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 36 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') |
| 37 | phosphor_logging = dependency('phosphor-logging') |
Lei YU | 43082e7 | 2020-03-09 10:32:48 +0800 | [diff] [blame] | 38 | prog_python = import('python').find_installation('python3') |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 39 | sdbusplus = dependency('sdbusplus') |
| 40 | sdbuspp = find_program('sdbus++') |
| 41 | sdeventplus = dependency('sdeventplus') |
Cheng C Yang | e83604b | 2020-01-09 09:41:47 +0800 | [diff] [blame] | 42 | pthread = dependency('threads') |
Matthew Barth | 7cbc553 | 2020-01-29 15:13:13 -0600 | [diff] [blame] | 43 | stdplus = dependency('stdplus') |
Andrew Geissler | 89283d1 | 2020-05-30 23:17:07 -0500 | [diff] [blame] | 44 | boost = dependency('boost') |
Brandon Wyman | b76ab24 | 2020-09-16 18:06:06 -0500 | [diff] [blame] | 45 | fmt = dependency('fmt') |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 46 | libgpiodcxx = dependency('libgpiodcxx') |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 47 | |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 48 | systemd = dependency('systemd') |
| 49 | servicedir = systemd.get_pkgconfig_variable('systemdsystemunitdir') |
| 50 | |
| 51 | services = [ |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 52 | ['supply-monitor', 'power-supply-monitor@.service'], |
| 53 | ['sequencer-monitor', 'pseq-monitor-pgood.service'], |
| 54 | ['sequencer-monitor', 'pseq-monitor.service'], |
| 55 | ['supply-monitor-ng', 'phosphor-psu-monitor.service'], |
| 56 | ['regulators', 'phosphor-regulators.service'], |
| 57 | ['regulators', 'phosphor-regulators-config.service'], |
| 58 | ['regulators', 'phosphor-regulators-monitor-enable.service'], |
| 59 | ['regulators', 'phosphor-regulators-monitor-disable.service'], |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 60 | ] |
| 61 | |
| 62 | foreach service : services |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 63 | if get_option(service[0]) |
| 64 | configure_file(input: 'services/' + service[1], |
| 65 | output: service[1], |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 66 | copy: true, |
| 67 | install_dir: servicedir) |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 68 | endif |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 69 | endforeach |
| 70 | |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 71 | # Get the power sequencer class name |
| 72 | sequencer = get_option('power_sequencer') |
| 73 | if sequencer == 'ucd90160' |
| 74 | sequencer_class = 'UCD90160' |
| 75 | elif sequencer == 'mihawk-cpld' |
| 76 | sequencer_class = 'MihawkCPLD' |
| 77 | else |
| 78 | # power sequencer is incorrect |
| 79 | error('power sequencer is incorrect') |
| 80 | endif |
| 81 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 82 | conf = configuration_data() |
| 83 | conf.set_quoted( |
| 84 | 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root')) |
| 85 | conf.set_quoted( |
| 86 | 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root')) |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 87 | conf.set_quoted( |
| 88 | 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 89 | conf.set( |
| 90 | 'SEQUENCER', sequencer_class) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 91 | conf.set10( |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 92 | 'DEVICE_ACCESS', get_option('device-access')) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 93 | conf.set10('IBM_VPD', get_option('ibm-vpd')) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 94 | |
| 95 | configure_file(output: 'config.h', configuration: conf) |
| 96 | |
| 97 | # Ensure the generated header here winds up in the correct path in the build |
| 98 | # tree such that it actually get used and doesn't get found in the sysroot |
| 99 | # somewhere. Meson doesn't allow path elements (rightfully so) when specifying |
| 100 | # the output filename of a target definition so the target must be defined in |
| 101 | # the directory where the artifacts need to be placed. Do that now, because |
| 102 | # the generated source (cpp) is needed to define the library target. |
| 103 | subdir('org/open_power/Witherspoon/Fault') |
| 104 | |
| 105 | libpower = static_library( |
| 106 | 'power', |
| 107 | error_cpp, |
| 108 | error_hpp, |
| 109 | 'gpio.cpp', |
| 110 | 'pmbus.cpp', |
| 111 | 'utility.cpp', |
| 112 | dependencies: [ |
| 113 | cppfs, |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 114 | phosphor_dbus_interfaces, |
| 115 | phosphor_logging, |
| 116 | sdbusplus, |
| 117 | sdeventplus, |
| 118 | ], |
| 119 | ) |
| 120 | |
Lei YU | 7c2fbbb | 2019-11-06 14:56:02 +0800 | [diff] [blame] | 121 | libpower_inc = include_directories('.') |
| 122 | |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 123 | # Build the tools/i2c sub-directory first. Other sub-directories depend on |
| 124 | # Meson variables defined there. |
| 125 | subdir('tools/i2c') |
| 126 | |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 127 | if get_option('regulators') |
| 128 | subdir('phosphor-regulators') |
| 129 | endif |
| 130 | if get_option('sequencer-monitor') |
| 131 | subdir('power-sequencer') |
| 132 | endif |
Jim Wright | 1553cd9 | 2021-03-31 16:11:59 -0500 | [diff] [blame] | 133 | if get_option('sequencer-monitor-ng') |
| 134 | subdir('phosphor-power-sequencer') |
| 135 | endif |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 136 | if get_option('supply-monitor') |
| 137 | subdir('power-supply') |
| 138 | endif |
| 139 | if get_option('supply-monitor-ng') |
| 140 | subdir('phosphor-power-supply') |
| 141 | endif |
| 142 | if get_option('utils') |
| 143 | subdir('tools/power-utils') |
| 144 | endif |
Shawn McCarney | ff48143 | 2020-02-13 10:38:44 -0600 | [diff] [blame] | 145 | if get_option('tests').enabled() |
| 146 | subdir('test') |
| 147 | endif |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 148 | if get_option('cold-redundancy') |
| 149 | subdir('cold-redundancy') |
| 150 | endif |