Matt Spinler | 974c916 | 2017-08-04 08:36:37 -0500 | [diff] [blame] | 1 | /** |
| 2 | * Copyright © 2017 IBM Corporation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | #include "utility.hpp" |
| 17 | |
Lei YU | cfc040c | 2019-10-29 17:10:26 +0800 | [diff] [blame] | 18 | #include "types.hpp" |
| 19 | |
Lei YU | 7dc31bb | 2019-08-30 10:07:08 +0800 | [diff] [blame] | 20 | #include <fstream> |
| 21 | |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 22 | namespace phosphor |
Matt Spinler | 974c916 | 2017-08-04 08:36:37 -0500 | [diff] [blame] | 23 | { |
| 24 | namespace power |
| 25 | { |
| 26 | namespace util |
| 27 | { |
| 28 | |
| 29 | constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper"; |
| 30 | constexpr auto MAPPER_PATH = "/xyz/openbmc_project/object_mapper"; |
| 31 | constexpr auto MAPPER_INTERFACE = "xyz.openbmc_project.ObjectMapper"; |
| 32 | |
| 33 | using namespace phosphor::logging; |
Lei YU | 7dc31bb | 2019-08-30 10:07:08 +0800 | [diff] [blame] | 34 | using json = nlohmann::json; |
Matt Spinler | 48b4a43 | 2017-08-04 11:57:37 -0500 | [diff] [blame] | 35 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 36 | std::string getService(const std::string& path, const std::string& interface, |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 37 | sdbusplus::bus_t& bus, bool logError) |
Matt Spinler | 974c916 | 2017-08-04 08:36:37 -0500 | [diff] [blame] | 38 | { |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 39 | auto method = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, |
| 40 | MAPPER_INTERFACE, "GetObject"); |
Matt Spinler | 974c916 | 2017-08-04 08:36:37 -0500 | [diff] [blame] | 41 | |
| 42 | method.append(path); |
| 43 | method.append(std::vector<std::string>({interface})); |
| 44 | |
| 45 | auto reply = bus.call(method); |
Matt Spinler | 974c916 | 2017-08-04 08:36:37 -0500 | [diff] [blame] | 46 | |
| 47 | std::map<std::string, std::vector<std::string>> response; |
| 48 | reply.read(response); |
| 49 | |
| 50 | if (response.empty()) |
| 51 | { |
Matthew Barth | d262440 | 2020-02-03 15:35:12 -0600 | [diff] [blame] | 52 | if (logError) |
| 53 | { |
Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 54 | log<level::ERR>( |
| 55 | std::string("Error in mapper response for getting service name " |
| 56 | "PATH=" + |
| 57 | path + " INTERFACE=" + interface) |
| 58 | .c_str()); |
Matthew Barth | d262440 | 2020-02-03 15:35:12 -0600 | [diff] [blame] | 59 | } |
Matt Spinler | 974c916 | 2017-08-04 08:36:37 -0500 | [diff] [blame] | 60 | return std::string{}; |
| 61 | } |
| 62 | |
| 63 | return response.begin()->first; |
| 64 | } |
| 65 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 66 | DbusPropertyMap getAllProperties(sdbusplus::bus_t& bus, const std::string& path, |
Adriana Kobylak | 4e8b335 | 2021-03-16 20:38:50 +0000 | [diff] [blame] | 67 | const std::string& interface, |
| 68 | const std::string& service) |
| 69 | { |
| 70 | DbusPropertyMap properties; |
| 71 | |
| 72 | auto serviceStr = service; |
| 73 | if (serviceStr.empty()) |
| 74 | { |
| 75 | serviceStr = getService(path, interface, bus); |
| 76 | if (serviceStr.empty()) |
| 77 | { |
| 78 | return properties; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | auto method = bus.new_method_call(serviceStr.c_str(), path.c_str(), |
| 83 | PROPERTY_INTF, "GetAll"); |
| 84 | method.append(interface); |
| 85 | auto reply = bus.call(method); |
| 86 | reply.read(properties); |
| 87 | return properties; |
| 88 | } |
| 89 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 90 | DbusSubtree getSubTree(sdbusplus::bus_t& bus, const std::string& path, |
Brandon Wyman | c761b5f | 2020-11-05 18:30:41 -0600 | [diff] [blame] | 91 | const std::string& interface, int32_t depth) |
| 92 | { |
| 93 | auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, |
| 94 | MAPPER_INTERFACE, "GetSubTree"); |
| 95 | mapperCall.append(path); |
| 96 | mapperCall.append(depth); |
| 97 | mapperCall.append(std::vector<std::string>({interface})); |
| 98 | |
| 99 | auto reply = bus.call(mapperCall); |
| 100 | |
| 101 | DbusSubtree response; |
| 102 | reply.read(response); |
| 103 | return response; |
| 104 | } |
| 105 | |
Lei YU | 7dc31bb | 2019-08-30 10:07:08 +0800 | [diff] [blame] | 106 | json loadJSONFromFile(const char* path) |
| 107 | { |
| 108 | std::ifstream ifs(path); |
| 109 | if (!ifs.good()) |
| 110 | { |
Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 111 | log<level::ERR>(std::string("Unable to open file " |
| 112 | "PATH=" + |
| 113 | std::string(path)) |
| 114 | .c_str()); |
Lei YU | 7dc31bb | 2019-08-30 10:07:08 +0800 | [diff] [blame] | 115 | return nullptr; |
| 116 | } |
| 117 | auto data = json::parse(ifs, nullptr, false); |
| 118 | if (data.is_discarded()) |
| 119 | { |
Jay Meyer | 6a3fd2c | 2020-08-25 16:37:16 -0500 | [diff] [blame] | 120 | log<level::ERR>(std::string("Failed to parse json " |
| 121 | "PATH=" + |
| 122 | std::string(path)) |
| 123 | .c_str()); |
Lei YU | 7dc31bb | 2019-08-30 10:07:08 +0800 | [diff] [blame] | 124 | return nullptr; |
| 125 | } |
| 126 | return data; |
| 127 | } |
| 128 | |
Lei YU | 4070546 | 2019-10-09 17:07:11 +0800 | [diff] [blame] | 129 | phosphor::pmbus::Type getPMBusAccessType(const json& json) |
| 130 | { |
| 131 | using namespace phosphor::pmbus; |
| 132 | Type type; |
| 133 | |
| 134 | auto typeStr = json.at("inventoryPMBusAccessType"); |
| 135 | |
| 136 | if (typeStr == "Hwmon") |
| 137 | { |
| 138 | type = Type::Hwmon; |
| 139 | } |
| 140 | else if (typeStr == "DeviceDebug") |
| 141 | { |
| 142 | type = Type::DeviceDebug; |
| 143 | } |
| 144 | else if (typeStr == "Debug") |
| 145 | { |
| 146 | type = Type::Debug; |
| 147 | } |
| 148 | else if (typeStr == "HwmonDeviceDebug") |
| 149 | { |
| 150 | type = Type::HwmonDeviceDebug; |
| 151 | } |
| 152 | else |
| 153 | { |
| 154 | type = Type::Base; |
| 155 | } |
| 156 | return type; |
| 157 | } |
| 158 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 159 | bool isPoweredOn(sdbusplus::bus_t& bus, bool defaultState) |
Lei YU | cfc040c | 2019-10-29 17:10:26 +0800 | [diff] [blame] | 160 | { |
Lei YU | e8c9cd6 | 2019-11-04 14:24:41 +0800 | [diff] [blame] | 161 | int32_t state = defaultState; |
Lei YU | cfc040c | 2019-10-29 17:10:26 +0800 | [diff] [blame] | 162 | |
| 163 | try |
| 164 | { |
Lei YU | e8c9cd6 | 2019-11-04 14:24:41 +0800 | [diff] [blame] | 165 | // When state = 1, system is powered on |
Lei YU | cfc040c | 2019-10-29 17:10:26 +0800 | [diff] [blame] | 166 | auto service = util::getService(POWER_OBJ_PATH, POWER_IFACE, bus); |
| 167 | getProperty<int32_t>(POWER_IFACE, "state", POWER_OBJ_PATH, service, bus, |
| 168 | state); |
| 169 | } |
Patrick Williams | c1d4de5 | 2021-10-06 12:45:57 -0500 | [diff] [blame] | 170 | catch (const std::exception& e) |
Lei YU | cfc040c | 2019-10-29 17:10:26 +0800 | [diff] [blame] | 171 | { |
Lei YU | e8c9cd6 | 2019-11-04 14:24:41 +0800 | [diff] [blame] | 172 | log<level::INFO>("Failed to get power state."); |
Lei YU | cfc040c | 2019-10-29 17:10:26 +0800 | [diff] [blame] | 173 | } |
| 174 | return state != 0; |
| 175 | } |
| 176 | |
Patrick Williams | 7354ce6 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 177 | std::vector<std::string> getPSUInventoryPaths(sdbusplus::bus_t& bus) |
Lei YU | e8c9cd6 | 2019-11-04 14:24:41 +0800 | [diff] [blame] | 178 | { |
| 179 | std::vector<std::string> paths; |
| 180 | auto method = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, |
| 181 | MAPPER_INTERFACE, "GetSubTreePaths"); |
| 182 | method.append(INVENTORY_OBJ_PATH); |
| 183 | method.append(0); // Depth 0 to search all |
| 184 | method.append(std::vector<std::string>({PSU_INVENTORY_IFACE})); |
| 185 | auto reply = bus.call(method); |
| 186 | |
| 187 | reply.read(paths); |
| 188 | return paths; |
| 189 | } |
| 190 | |
Matt Spinler | f0f02b9 | 2018-10-25 16:12:43 -0500 | [diff] [blame] | 191 | } // namespace util |
| 192 | } // namespace power |
Lei YU | ab09332 | 2019-10-09 16:43:22 +0800 | [diff] [blame] | 193 | } // namespace phosphor |