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', |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [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 | |
Jayanth Othayoth | b59b1fa | 2024-12-06 11:42:27 -0600 | [diff] [blame] | 18 | # Check if the compiler is Clang |
| 19 | if meson.get_compiler('cpp').get_id() == 'clang' |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 20 | add_global_arguments('-Wno-defaulted-function-deleted', language: 'cpp') |
Jayanth Othayoth | b59b1fa | 2024-12-06 11:42:27 -0600 | [diff] [blame] | 21 | endif |
| 22 | |
Ed Tanous | 7117245 | 2025-04-02 08:06:09 -0700 | [diff] [blame] | 23 | add_project_arguments( |
| 24 | cxx.get_supported_arguments( |
| 25 | [ |
| 26 | '-DBOOST_ALL_NO_LIB', |
| 27 | '-DBOOST_ASIO_DISABLE_THREADS', |
| 28 | '-DBOOST_ASIO_NO_DEPRECATED', |
| 29 | ], |
| 30 | ), |
| 31 | language: 'cpp', |
| 32 | ) |
| 33 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 34 | build_tests = get_option('tests') |
| 35 | |
Patrick Williams | 5c6a693 | 2023-11-29 06:44:29 -0600 | [diff] [blame] | 36 | if get_option('oe-sdk').allowed() |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 37 | # Setup OE SYSROOT |
| 38 | OECORE_TARGET_SYSROOT = run_command( |
| 39 | 'sh', |
| 40 | '-c', |
| 41 | 'echo $OECORE_TARGET_SYSROOT', |
| 42 | ).stdout().strip() |
| 43 | if OECORE_TARGET_SYSROOT == '' |
| 44 | error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') |
| 45 | endif |
| 46 | message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) |
| 47 | rpath = ':'.join( |
| 48 | [OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'], |
| 49 | ) |
| 50 | ld_so = run_command( |
| 51 | 'sh', |
| 52 | '-c', |
| 53 | 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1', |
| 54 | ).stdout().strip() |
| 55 | dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] |
Brandon Wyman | dc8e931 | 2020-02-14 17:04:18 -0600 | [diff] [blame] | 56 | else |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 57 | dynamic_linker = [] |
Brandon Wyman | dc8e931 | 2020-02-14 17:04:18 -0600 | [diff] [blame] | 58 | endif |
| 59 | |
| 60 | |
Matt Spinler | 220c246 | 2023-07-17 14:16:03 -0500 | [diff] [blame] | 61 | gmock = dependency('gmock', disabler: true, required: false) |
| 62 | gtest = dependency('gtest', main: true, disabler: true, required: false) |
Patrick Williams | 5c6a693 | 2023-11-29 06:44:29 -0600 | [diff] [blame] | 63 | if (not gtest.found() or not gmock.found()) and build_tests.allowed() |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 64 | gtest_opts = import('cmake').subproject_options() |
| 65 | gtest_opts.add_cmake_defines({'BUILD_SHARED_LIBS': 'ON'}) |
| 66 | gtest_proj = import('cmake').subproject( |
| 67 | 'googletest', |
| 68 | options: gtest_opts, |
| 69 | required: false, |
Matt Spinler | 220c246 | 2023-07-17 14:16:03 -0500 | [diff] [blame] | 70 | ) |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 71 | if gtest_proj.found() |
| 72 | gtest = declare_dependency( |
| 73 | dependencies: [ |
| 74 | dependency('threads'), |
| 75 | gtest_proj.dependency('gtest'), |
| 76 | gtest_proj.dependency('gtest_main'), |
| 77 | ], |
| 78 | ) |
| 79 | gmock = gtest_proj.dependency('gmock') |
| 80 | else |
| 81 | assert(false, 'Googletest is required if tests are enabled') |
| 82 | endif |
Matt Spinler | 220c246 | 2023-07-17 14:16:03 -0500 | [diff] [blame] | 83 | endif |
| 84 | |
| 85 | |
| 86 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 87 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') |
| 88 | phosphor_logging = dependency('phosphor-logging') |
Lei YU | 43082e7 | 2020-03-09 10:32:48 +0800 | [diff] [blame] | 89 | prog_python = import('python').find_installation('python3') |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 90 | sdbusplus = dependency('sdbusplus') |
| 91 | sdbuspp = find_program('sdbus++') |
| 92 | sdeventplus = dependency('sdeventplus') |
Cheng C Yang | e83604b | 2020-01-09 09:41:47 +0800 | [diff] [blame] | 93 | pthread = dependency('threads') |
Matthew Barth | 7cbc553 | 2020-01-29 15:13:13 -0600 | [diff] [blame] | 94 | stdplus = dependency('stdplus') |
Andrew Geissler | 89283d1 | 2020-05-30 23:17:07 -0500 | [diff] [blame] | 95 | boost = dependency('boost') |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 96 | libgpiodcxx = dependency('libgpiodcxx', default_options: ['bindings=cxx']) |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 97 | |
Patrick Williams | d694d8f | 2023-12-07 14:42:04 -0600 | [diff] [blame] | 98 | nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system') |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 99 | |
| 100 | if cxx.has_header('CLI/CLI.hpp') |
| 101 | cli11_dep = declare_dependency() |
| 102 | else |
| 103 | cli11_dep = dependency('CLI11') |
| 104 | endif |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 105 | |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 106 | systemd = dependency('systemd') |
Patrick Williams | df2f4cb | 2024-09-03 16:19:04 -0400 | [diff] [blame] | 107 | libsystemd_dep = dependency('libsystemd') |
Patrick Williams | 95f6aab | 2023-04-12 08:01:11 -0500 | [diff] [blame] | 108 | servicedir = systemd.get_variable('systemdsystemunitdir') |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 109 | |
| 110 | services = [ |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 111 | ['supply-monitor', 'power-supply-monitor@.service'], |
| 112 | ['sequencer-monitor', 'pseq-monitor-pgood.service'], |
| 113 | ['sequencer-monitor', 'pseq-monitor.service'], |
| 114 | ['supply-monitor-ng', 'phosphor-psu-monitor.service'], |
| 115 | ['regulators', 'phosphor-regulators.service'], |
| 116 | ['regulators', 'phosphor-regulators-config.service'], |
| 117 | ['regulators', 'phosphor-regulators-monitor-enable.service'], |
| 118 | ['regulators', 'phosphor-regulators-monitor-disable.service'], |
Jim Wright | 5f99bc0 | 2022-01-28 11:38:40 -0600 | [diff] [blame] | 119 | ['power-control', 'phosphor-power-control.service'], |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 120 | ] |
| 121 | |
George Liu | 6f499e6 | 2023-08-14 16:40:52 +0800 | [diff] [blame] | 122 | fs = import('fs') |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 123 | foreach service : services |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 124 | if get_option(service[0]) |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 125 | fs.copyfile( |
| 126 | 'services/' + service[1], |
George Liu | 6f499e6 | 2023-08-14 16:40:52 +0800 | [diff] [blame] | 127 | install: true, |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 128 | install_dir: servicedir, |
| 129 | ) |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 130 | endif |
Lei YU | bd3bd82 | 2019-10-10 15:28:10 +0800 | [diff] [blame] | 131 | endforeach |
| 132 | |
Andy YF Wang | 40247cc | 2019-09-06 18:30:56 +0800 | [diff] [blame] | 133 | # Get the power sequencer class name |
| 134 | sequencer = get_option('power_sequencer') |
| 135 | if sequencer == 'ucd90160' |
| 136 | sequencer_class = 'UCD90160' |
| 137 | elif sequencer == 'mihawk-cpld' |
| 138 | sequencer_class = 'MihawkCPLD' |
| 139 | else |
| 140 | # power sequencer is incorrect |
| 141 | error('power sequencer is incorrect') |
| 142 | endif |
| 143 | |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 144 | conf = configuration_data() |
| 145 | conf.set_quoted( |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 146 | 'INPUT_HISTORY_BUSNAME_ROOT', |
| 147 | get_option('input-history-busname-root'), |
| 148 | ) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 149 | conf.set_quoted( |
Patrick Williams | 516e22f | 2025-02-01 08:37:12 -0500 | [diff] [blame] | 150 | 'INPUT_HISTORY_SENSOR_ROOT', |
| 151 | get_option('input-history-sensor-root'), |
| 152 | ) |
| 153 | conf.set_quoted('INPUT_HISTORY_SYNC_GPIO', get_option('input-history-sync-gpio')) |
| 154 | conf.set_quoted('PSU_JSON_PATH', '/usr/share/phosphor-power/psu.json') |
| 155 | conf.set('SEQUENCER', sequencer_class) |
| 156 | conf.set10('DEVICE_ACCESS', get_option('device-access')) |
Brandon Wyman | 1d7a7df | 2020-03-26 10:14:05 -0500 | [diff] [blame] | 157 | conf.set10('IBM_VPD', get_option('ibm-vpd')) |
Andrew Geissler | 2125439 | 2025-04-02 10:25:39 -0500 | [diff] [blame] | 158 | conf.set('PGOOD_TIMEOUT', get_option('pgood-timeout-value')) |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 159 | |
| 160 | configure_file(output: 'config.h', configuration: conf) |
| 161 | |
| 162 | # Ensure the generated header here winds up in the correct path in the build |
| 163 | # tree such that it actually get used and doesn't get found in the sysroot |
| 164 | # somewhere. Meson doesn't allow path elements (rightfully so) when specifying |
| 165 | # the output filename of a target definition so the target must be defined in |
| 166 | # the directory where the artifacts need to be placed. Do that now, because |
| 167 | # the generated source (cpp) is needed to define the library target. |
| 168 | subdir('org/open_power/Witherspoon/Fault') |
| 169 | |
| 170 | libpower = static_library( |
| 171 | 'power', |
| 172 | error_cpp, |
| 173 | error_hpp, |
Shawn McCarney | 3cc348c | 2024-05-29 15:41:31 -0500 | [diff] [blame] | 174 | 'compatible_system_types_finder.cpp', |
Shawn McCarney | 98f4294 | 2024-05-24 17:24:32 -0500 | [diff] [blame] | 175 | 'dbus_interfaces_finder.cpp', |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 176 | 'gpio.cpp', |
| 177 | 'pmbus.cpp', |
Shawn McCarney | 5f51444 | 2024-01-04 14:03:24 -0600 | [diff] [blame] | 178 | 'temporary_file.cpp', |
Shawn McCarney | de5434d | 2024-05-22 14:07:44 -0500 | [diff] [blame] | 179 | 'temporary_subdirectory.cpp', |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 180 | 'utility.cpp', |
| 181 | dependencies: [ |
Patrick Williams | 888bebd | 2023-05-31 19:19:49 -0500 | [diff] [blame] | 182 | nlohmann_json_dep, |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 183 | phosphor_dbus_interfaces, |
| 184 | phosphor_logging, |
| 185 | sdbusplus, |
| 186 | sdeventplus, |
| 187 | ], |
| 188 | ) |
| 189 | |
Lei YU | 7c2fbbb | 2019-11-06 14:56:02 +0800 | [diff] [blame] | 190 | libpower_inc = include_directories('.') |
| 191 | |
Shawn McCarney | 4c94bc7 | 2019-12-13 17:49:31 -0600 | [diff] [blame] | 192 | # Build the tools/i2c sub-directory first. Other sub-directories depend on |
| 193 | # Meson variables defined there. |
| 194 | subdir('tools/i2c') |
| 195 | |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 196 | if get_option('regulators') |
| 197 | subdir('phosphor-regulators') |
| 198 | endif |
| 199 | if get_option('sequencer-monitor') |
| 200 | subdir('power-sequencer') |
| 201 | endif |
Jim Wright | 5f99bc0 | 2022-01-28 11:38:40 -0600 | [diff] [blame] | 202 | if get_option('power-control') |
Jim Wright | 1553cd9 | 2021-03-31 16:11:59 -0500 | [diff] [blame] | 203 | subdir('phosphor-power-sequencer') |
| 204 | endif |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 205 | if get_option('supply-monitor') |
| 206 | subdir('power-supply') |
| 207 | endif |
| 208 | if get_option('supply-monitor-ng') |
| 209 | subdir('phosphor-power-supply') |
| 210 | endif |
| 211 | if get_option('utils') |
| 212 | subdir('tools/power-utils') |
| 213 | endif |
Patrick Williams | 5c6a693 | 2023-11-29 06:44:29 -0600 | [diff] [blame] | 214 | if get_option('tests').allowed() |
Shawn McCarney | ff48143 | 2020-02-13 10:38:44 -0600 | [diff] [blame] | 215 | subdir('test') |
| 216 | endif |
Brad Bishop | 1c40f1c | 2020-04-08 19:32:43 -0400 | [diff] [blame] | 217 | if get_option('cold-redundancy') |
| 218 | subdir('cold-redundancy') |
| 219 | endif |