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 | 5d79d36 | 2023-07-12 11:15:35 -0500 | [diff] [blame] | 7 | 'cpp_std=c++23', |
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 | 5d79d36 | 2023-07-12 11:15:35 -0500 | [diff] [blame] | 13 | meson_version: '>=1.1.1', |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 14 | ) |
| 15 | |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 16 | cxx = meson.get_compiler('cpp') |
| 17 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 18 | build_tests = get_option('tests') |
| 19 | |
Brandon Wyman | dc8e931 | 2020-02-14 17:04:18 -0600 | [diff] [blame] | 20 | if get_option('oe-sdk').enabled() |
| 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] |
| 30 | else |
| 31 | dynamic_linker = [] |
| 32 | endif |
| 33 | |
| 34 | |
Matt Spinler | 220c246 | 2023-07-17 14:16:03 -0500 | [diff] [blame] | 35 | gmock = dependency('gmock', disabler: true, required: false) |
| 36 | gtest = dependency('gtest', main: true, disabler: true, required: false) |
| 37 | if (not gtest.found() or not gmock.found()) and build_tests.enabled() |
| 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 |
| 57 | endif |
| 58 | |
| 59 | |
| 60 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 61 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') |
| 62 | phosphor_logging = dependency('phosphor-logging') |
Lei YU | 43082e7 | 2020-03-09 10:32:48 +0800 | [diff] [blame] | 63 | prog_python = import('python').find_installation('python3') |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 64 | sdbusplus = dependency('sdbusplus') |
| 65 | sdbuspp = find_program('sdbus++') |
| 66 | sdeventplus = dependency('sdeventplus') |
Cheng C Yang | e83604b | 2020-01-09 09:41:47 +0800 | [diff] [blame] | 67 | pthread = dependency('threads') |
Matthew Barth | 7cbc553 | 2020-01-29 15:13:13 -0600 | [diff] [blame] | 68 | stdplus = dependency('stdplus') |
Andrew Geissler | 89283d1 | 2020-05-30 23:17:07 -0500 | [diff] [blame] | 69 | boost = dependency('boost') |
Matt Spinler | d3de364 | 2023-07-17 14:25:54 -0500 | [diff] [blame] | 70 | fmt = dependency('fmt', required: false) |
| 71 | if 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') |
| 81 | endif |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 82 | libgpiodcxx = dependency('libgpiodcxx', |
| 83 | default_options: ['bindings=cxx']) |
| 84 | |
| 85 | if cxx.has_header('nlohmann/json.hpp') |
| 86 | nlohmann_json_dep = declare_dependency() |
| 87 | else |
Matt Spinler | b0475e7 | 2023-07-17 14:24:03 -0500 | [diff] [blame] | 88 | nlohmann_json_dep = dependency('nlohmann-json') |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 89 | endif |
| 90 | |
| 91 | if cxx.has_header('CLI/CLI.hpp') |
| 92 | cli11_dep = declare_dependency() |
| 93 | else |
| 94 | cli11_dep = dependency('CLI11') |
| 95 | endif |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 96 | |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 97 | systemd = dependency('systemd') |
Patrick Williams | 95f6aab | 2023-04-12 08:01:11 -0500 | [diff] [blame] | 98 | servicedir = systemd.get_variable('systemdsystemunitdir') |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 99 | |
| 100 | services = [ |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 101 | ['supply-monitor', 'power-supply-monitor@.service'], |
| 102 | ['sequencer-monitor', 'pseq-monitor-pgood.service'], |
| 103 | ['sequencer-monitor', 'pseq-monitor.service'], |
| 104 | ['supply-monitor-ng', 'phosphor-psu-monitor.service'], |
| 105 | ['regulators', 'phosphor-regulators.service'], |
| 106 | ['regulators', 'phosphor-regulators-config.service'], |
| 107 | ['regulators', 'phosphor-regulators-monitor-enable.service'], |
| 108 | ['regulators', 'phosphor-regulators-monitor-disable.service'], |
Jim Wright | 5f99bc0 | 2022-01-28 11:38:40 -0600 | [diff] [blame] | 109 | ['power-control', 'phosphor-power-control.service'], |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 110 | ] |
| 111 | |
George Liu | 6f499e6 | 2023-08-14 16:40:52 +0800 | [diff] [blame] | 112 | fs = import('fs') |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 113 | foreach service : services |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 114 | if get_option(service[0]) |
George Liu | 6f499e6 | 2023-08-14 16:40:52 +0800 | [diff] [blame] | 115 | fs.copyfile('services/' + service[1], |
| 116 | install: true, |
| 117 | install_dir: servicedir) |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 118 | endif |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 119 | endforeach |
| 120 | |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 121 | # Get the power sequencer class name |
| 122 | sequencer = get_option('power_sequencer') |
| 123 | if sequencer == 'ucd90160' |
| 124 | sequencer_class = 'UCD90160' |
| 125 | elif sequencer == 'mihawk-cpld' |
| 126 | sequencer_class = 'MihawkCPLD' |
| 127 | else |
| 128 | # power sequencer is incorrect |
| 129 | error('power sequencer is incorrect') |
| 130 | endif |
| 131 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 132 | conf = configuration_data() |
| 133 | conf.set_quoted( |
| 134 | 'INPUT_HISTORY_BUSNAME_ROOT', get_option('input-history-busname-root')) |
| 135 | conf.set_quoted( |
| 136 | 'INPUT_HISTORY_SENSOR_ROOT', get_option('input-history-sensor-root')) |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 137 | conf.set_quoted( |
Brandon Wyman | 18a24d9 | 2022-04-19 22:48:34 +0000 | [diff] [blame] | 138 | 'INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio')) |
| 139 | conf.set_quoted( |
George Liu | 690e780 | 2019-08-23 11:04:01 +0800 | [diff] [blame] | 140 | 'PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 141 | conf.set( |
| 142 | 'SEQUENCER', sequencer_class) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 143 | conf.set10( |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 144 | 'DEVICE_ACCESS', get_option('device-access')) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 145 | conf.set10('IBM_VPD', get_option('ibm-vpd')) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 146 | |
| 147 | configure_file(output: 'config.h', configuration: conf) |
| 148 | |
| 149 | # Ensure the generated header here winds up in the correct path in the build |
| 150 | # tree such that it actually get used and doesn't get found in the sysroot |
| 151 | # somewhere. Meson doesn't allow path elements (rightfully so) when specifying |
| 152 | # the output filename of a target definition so the target must be defined in |
| 153 | # the directory where the artifacts need to be placed. Do that now, because |
| 154 | # the generated source (cpp) is needed to define the library target. |
| 155 | subdir('org/open_power/Witherspoon/Fault') |
| 156 | |
| 157 | libpower = static_library( |
| 158 | 'power', |
| 159 | error_cpp, |
| 160 | error_hpp, |
| 161 | 'gpio.cpp', |
| 162 | 'pmbus.cpp', |
| 163 | 'utility.cpp', |
| 164 | dependencies: [ |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 165 | nlohmann_json_dep, |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 166 | phosphor_dbus_interfaces, |
| 167 | phosphor_logging, |
| 168 | sdbusplus, |
| 169 | sdeventplus, |
| 170 | ], |
| 171 | ) |
| 172 | |
Lei YU | 7c2fbbb | 2019-11-06 14:56:02 +0800 | [diff] [blame] | 173 | libpower_inc = include_directories('.') |
| 174 | |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 175 | # Build the tools/i2c sub-directory first. Other sub-directories depend on |
| 176 | # Meson variables defined there. |
| 177 | subdir('tools/i2c') |
| 178 | |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 179 | if get_option('regulators') |
| 180 | subdir('phosphor-regulators') |
| 181 | endif |
| 182 | if get_option('sequencer-monitor') |
| 183 | subdir('power-sequencer') |
| 184 | endif |
Jim Wright | 5f99bc0 | 2022-01-28 11:38:40 -0600 | [diff] [blame] | 185 | if get_option('power-control') |
Jim Wright | 1553cd9 | 2021-03-31 16:11:59 -0500 | [diff] [blame] | 186 | subdir('phosphor-power-sequencer') |
| 187 | endif |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 188 | if get_option('supply-monitor') |
| 189 | subdir('power-supply') |
| 190 | endif |
| 191 | if get_option('supply-monitor-ng') |
| 192 | subdir('phosphor-power-supply') |
| 193 | endif |
| 194 | if get_option('utils') |
| 195 | subdir('tools/power-utils') |
| 196 | endif |
Shawn McCarney | ff48143 | 2020-02-13 10:38:44 -0600 | [diff] [blame] | 197 | if get_option('tests').enabled() |
| 198 | subdir('test') |
| 199 | endif |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 200 | if get_option('cold-redundancy') |
| 201 | subdir('cold-redundancy') |
| 202 | endif |