AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2019 Intel 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 | |
| 17 | #include "pfr_mgr.hpp" |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 18 | |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 19 | namespace pfr |
| 20 | { |
| 21 | |
| 22 | static constexpr uint8_t activeImage = 0; |
| 23 | static constexpr uint8_t recoveryImage = 1; |
| 24 | |
AppaRao Puli | 0e75891 | 2020-01-29 03:07:54 +0530 | [diff] [blame] | 25 | std::shared_ptr<sdbusplus::asio::dbus_interface> associationIface; |
| 26 | std::set<std::tuple<std::string, std::string, std::string>> associations; |
| 27 | |
AppaRao Puli | 67d184c | 2020-05-29 00:48:33 +0530 | [diff] [blame] | 28 | PfrVersion::PfrVersion(sdbusplus::asio::object_server& srv_, |
| 29 | std::shared_ptr<sdbusplus::asio::connection>& conn_, |
| 30 | const std::string& path_, const ImageType& imgType_, |
| 31 | const std::string& purpose_) : |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 32 | server(srv_), |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 33 | conn(conn_), path(path_), imgType(imgType_), purpose(purpose_) |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 34 | { |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 35 | version = getFirmwareVersion(imgType); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 36 | |
| 37 | std::string objPath = "/xyz/openbmc_project/software/" + path; |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 38 | versionIface = |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 39 | server.add_interface(objPath, "xyz.openbmc_project.Software.Version"); |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 40 | versionIface->register_property("Purpose", purpose); |
| 41 | versionIface->register_property( |
| 42 | versionStr, version, |
| 43 | // Override set |
AppaRao Puli | 67d184c | 2020-05-29 00:48:33 +0530 | [diff] [blame] | 44 | [this](const std::string& req, std::string& propertyValue) { |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 45 | if (internalSet) |
| 46 | { |
| 47 | if (req != propertyValue) |
| 48 | { |
| 49 | version = req; |
| 50 | propertyValue = req; |
| 51 | return 1; |
| 52 | } |
| 53 | } |
| 54 | return 0; |
| 55 | }); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 56 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 57 | versionIface->initialize(); |
AppaRao Puli | d6f46c4 | 2019-07-19 22:34:04 +0530 | [diff] [blame] | 58 | |
AppaRao Puli | 916d600 | 2019-12-18 01:37:02 +0530 | [diff] [blame] | 59 | std::string activation = |
| 60 | "xyz.openbmc_project.Software.Activation.Activations.StandbySpare"; |
| 61 | |
| 62 | if ((imgType == ImageType::bmcActive) || |
| 63 | (imgType == ImageType::biosActive) || |
| 64 | (imgType == ImageType::cpldActive)) |
Vikram Bodireddy | 0fd4dde | 2019-12-06 15:48:00 +0530 | [diff] [blame] | 65 | { |
AppaRao Puli | 916d600 | 2019-12-18 01:37:02 +0530 | [diff] [blame] | 66 | // Running images so set Activations to "Active" |
Vikram Bodireddy | 0fd4dde | 2019-12-06 15:48:00 +0530 | [diff] [blame] | 67 | activation = |
| 68 | "xyz.openbmc_project.Software.Activation.Activations.Active"; |
AppaRao Puli | 916d600 | 2019-12-18 01:37:02 +0530 | [diff] [blame] | 69 | |
AppaRao Puli | 0e75891 | 2020-01-29 03:07:54 +0530 | [diff] [blame] | 70 | // For all Active images, functional endpoints must be added. This is |
| 71 | // used in bmcweb & ipmi for fetching active component versions. |
| 72 | |
| 73 | // TODO: We have redundant active firmware version objects for BMC |
| 74 | // and BIOS active images. BMC version is read from /etc/os-release |
| 75 | // BIOS version is read from SMBIOS. Since it provides more |
| 76 | // version information, Lets expose those as functional. |
| 77 | // Down the line, Redundant inventory objects need to be addressed. |
| 78 | if (imgType == ImageType::cpldActive) |
| 79 | { |
| 80 | associations.emplace("functional", "software_version", objPath); |
| 81 | } |
Vikram Bodireddy | 0fd4dde | 2019-12-06 15:48:00 +0530 | [diff] [blame] | 82 | } |
| 83 | |
AppaRao Puli | d6f46c4 | 2019-07-19 22:34:04 +0530 | [diff] [blame] | 84 | std::string reqActNone = |
| 85 | "xyz.openbmc_project.Software.Activation.RequestedActivations.None"; |
| 86 | auto activationIface = server.add_interface( |
| 87 | objPath, "xyz.openbmc_project.Software.Activation"); |
| 88 | activationIface->register_property("Activation", activation); |
| 89 | activationIface->register_property("RequestedActivation", reqActNone); |
| 90 | |
| 91 | activationIface->initialize(); |
AppaRao Puli | 0e75891 | 2020-01-29 03:07:54 +0530 | [diff] [blame] | 92 | |
| 93 | // All the components exposed under PFR.Manager are updateable. |
| 94 | // Lets add objPath endpoints to 'updatable' association |
| 95 | associations.emplace("updateable", "software_version", objPath); |
| 96 | associationIface->set_property("Associations", associations); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 97 | } |
| 98 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 99 | void PfrVersion::updateVersion() |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 100 | { |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 101 | if (versionIface && versionIface->is_initialized()) |
| 102 | { |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 103 | std::string ver = getFirmwareVersion(imgType); |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 104 | internalSet = true; |
| 105 | versionIface->set_property(versionStr, ver); |
| 106 | internalSet = false; |
| 107 | } |
| 108 | return; |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 109 | } |
| 110 | |
AppaRao Puli | 67d184c | 2020-05-29 00:48:33 +0530 | [diff] [blame] | 111 | PfrConfig::PfrConfig(sdbusplus::asio::object_server& srv_, |
| 112 | std::shared_ptr<sdbusplus::asio::connection>& conn_) : |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 113 | server(srv_), |
| 114 | conn(conn_) |
| 115 | { |
AppaRao Puli | cc1ed68 | 2019-10-01 12:29:40 +0530 | [diff] [blame] | 116 | pfrCfgIface = server.add_interface("/xyz/openbmc_project/pfr", |
| 117 | "xyz.openbmc_project.PFR.Attributes"); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 118 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 119 | getProvisioningStatus(ufmLocked, ufmProvisioned); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 120 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 121 | pfrCfgIface->register_property(ufmProvisionedStr, ufmProvisioned, |
| 122 | // Override set |
| 123 | [this](const bool req, bool propertyValue) { |
| 124 | if (internalSet) |
| 125 | { |
| 126 | if (req != propertyValue) |
| 127 | { |
| 128 | ufmProvisioned = req; |
| 129 | propertyValue = req; |
| 130 | return 1; |
| 131 | } |
| 132 | } |
| 133 | return 0; |
| 134 | }); |
| 135 | |
| 136 | pfrCfgIface->register_property(ufmLockedStr, ufmLocked, |
| 137 | // Override set |
| 138 | [this](const bool req, bool propertyValue) { |
| 139 | if (internalSet) |
| 140 | { |
| 141 | if (req != propertyValue) |
| 142 | { |
| 143 | ufmLocked = req; |
| 144 | propertyValue = req; |
| 145 | return 1; |
| 146 | } |
| 147 | } |
| 148 | return 0; |
| 149 | }); |
| 150 | |
| 151 | pfrCfgIface->initialize(); |
AppaRao Puli | 0e75891 | 2020-01-29 03:07:54 +0530 | [diff] [blame] | 152 | |
| 153 | associationIface = |
| 154 | server.add_interface("/xyz/openbmc_project/software", |
| 155 | "xyz.openbmc_project.Association.Definitions"); |
| 156 | associationIface->register_property("Associations", associations); |
| 157 | associationIface->initialize(); |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | void PfrConfig::updateProvisioningStatus() |
| 161 | { |
| 162 | if (pfrCfgIface && pfrCfgIface->is_initialized()) |
| 163 | { |
| 164 | bool lockVal = false; |
| 165 | bool provVal = false; |
| 166 | getProvisioningStatus(lockVal, provVal); |
| 167 | internalSet = true; |
| 168 | pfrCfgIface->set_property(ufmProvisionedStr, provVal); |
| 169 | pfrCfgIface->set_property(ufmLockedStr, lockVal); |
| 170 | internalSet = false; |
| 171 | } |
| 172 | return; |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | } // namespace pfr |