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 | |
| 19 | namespace intel |
| 20 | { |
| 21 | namespace pfr |
| 22 | { |
| 23 | |
| 24 | static constexpr uint8_t activeImage = 0; |
| 25 | static constexpr uint8_t recoveryImage = 1; |
| 26 | |
| 27 | PfrVersion::PfrVersion(sdbusplus::asio::object_server &srv_, |
| 28 | std::shared_ptr<sdbusplus::asio::connection> &conn_, |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 29 | const std::string &path_, const ImageType &imgType_, |
| 30 | const std::string &purpose_) : |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 31 | server(srv_), |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 32 | conn(conn_), path(path_), imgType(imgType_), purpose(purpose_) |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 33 | { |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 34 | version = getFirmwareVersion(imgType); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 35 | |
| 36 | std::string objPath = "/xyz/openbmc_project/software/" + path; |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 37 | versionIface = |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 38 | server.add_interface(objPath, "xyz.openbmc_project.Software.Version"); |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 39 | versionIface->register_property("Purpose", purpose); |
| 40 | versionIface->register_property( |
| 41 | versionStr, version, |
| 42 | // Override set |
| 43 | [this](const std::string &req, std::string &propertyValue) { |
| 44 | if (internalSet) |
| 45 | { |
| 46 | if (req != propertyValue) |
| 47 | { |
| 48 | version = req; |
| 49 | propertyValue = req; |
| 50 | return 1; |
| 51 | } |
| 52 | } |
| 53 | return 0; |
| 54 | }); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 55 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 56 | versionIface->initialize(); |
AppaRao Puli | d6f46c4 | 2019-07-19 22:34:04 +0530 | [diff] [blame] | 57 | |
AppaRao Puli | 916d600 | 2019-12-18 01:37:02 +0530 | [diff] [blame] | 58 | std::string activation = |
| 59 | "xyz.openbmc_project.Software.Activation.Activations.StandbySpare"; |
| 60 | |
| 61 | if ((imgType == ImageType::bmcActive) || |
| 62 | (imgType == ImageType::biosActive) || |
| 63 | (imgType == ImageType::cpldActive)) |
Vikram Bodireddy | 0fd4dde | 2019-12-06 15:48:00 +0530 | [diff] [blame] | 64 | { |
AppaRao Puli | 916d600 | 2019-12-18 01:37:02 +0530 | [diff] [blame] | 65 | // Running images so set Activations to "Active" |
Vikram Bodireddy | 0fd4dde | 2019-12-06 15:48:00 +0530 | [diff] [blame] | 66 | activation = |
| 67 | "xyz.openbmc_project.Software.Activation.Activations.Active"; |
AppaRao Puli | 916d600 | 2019-12-18 01:37:02 +0530 | [diff] [blame] | 68 | |
| 69 | /* For all Active images, functional endpoints must be added. This * |
| 70 | * will be used in bmcweb for showing active component versions. */ |
| 71 | using Association = std::tuple<std::string, std::string, std::string>; |
| 72 | std::vector<Association> associations; |
| 73 | associations.push_back( |
| 74 | Association("functional", "software_version", objPath)); |
| 75 | auto associationsIface = |
| 76 | server.add_interface("/xyz/openbmc_project/software", |
| 77 | "xyz.openbmc_project.Association.Definitions"); |
| 78 | associationsIface->register_property("Associations", associations); |
| 79 | associationsIface->initialize(); |
Vikram Bodireddy | 0fd4dde | 2019-12-06 15:48:00 +0530 | [diff] [blame] | 80 | } |
| 81 | |
AppaRao Puli | d6f46c4 | 2019-07-19 22:34:04 +0530 | [diff] [blame] | 82 | std::string reqActNone = |
| 83 | "xyz.openbmc_project.Software.Activation.RequestedActivations.None"; |
| 84 | auto activationIface = server.add_interface( |
| 85 | objPath, "xyz.openbmc_project.Software.Activation"); |
| 86 | activationIface->register_property("Activation", activation); |
| 87 | activationIface->register_property("RequestedActivation", reqActNone); |
| 88 | |
| 89 | activationIface->initialize(); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 90 | } |
| 91 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 92 | void PfrVersion::updateVersion() |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 93 | { |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 94 | if (versionIface && versionIface->is_initialized()) |
| 95 | { |
AppaRao Puli | 4b639a2 | 2019-10-01 18:12:59 +0530 | [diff] [blame] | 96 | std::string ver = getFirmwareVersion(imgType); |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 97 | internalSet = true; |
| 98 | versionIface->set_property(versionStr, ver); |
| 99 | internalSet = false; |
| 100 | } |
| 101 | return; |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | PfrConfig::PfrConfig(sdbusplus::asio::object_server &srv_, |
| 105 | std::shared_ptr<sdbusplus::asio::connection> &conn_) : |
| 106 | server(srv_), |
| 107 | conn(conn_) |
| 108 | { |
AppaRao Puli | cc1ed68 | 2019-10-01 12:29:40 +0530 | [diff] [blame] | 109 | pfrCfgIface = server.add_interface("/xyz/openbmc_project/pfr", |
| 110 | "xyz.openbmc_project.PFR.Attributes"); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 111 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 112 | getProvisioningStatus(ufmLocked, ufmProvisioned); |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 113 | |
AppaRao Puli | e4e9565 | 2019-07-19 16:52:01 +0530 | [diff] [blame] | 114 | pfrCfgIface->register_property(ufmProvisionedStr, ufmProvisioned, |
| 115 | // Override set |
| 116 | [this](const bool req, bool propertyValue) { |
| 117 | if (internalSet) |
| 118 | { |
| 119 | if (req != propertyValue) |
| 120 | { |
| 121 | ufmProvisioned = req; |
| 122 | propertyValue = req; |
| 123 | return 1; |
| 124 | } |
| 125 | } |
| 126 | return 0; |
| 127 | }); |
| 128 | |
| 129 | pfrCfgIface->register_property(ufmLockedStr, ufmLocked, |
| 130 | // Override set |
| 131 | [this](const bool req, bool propertyValue) { |
| 132 | if (internalSet) |
| 133 | { |
| 134 | if (req != propertyValue) |
| 135 | { |
| 136 | ufmLocked = req; |
| 137 | propertyValue = req; |
| 138 | return 1; |
| 139 | } |
| 140 | } |
| 141 | return 0; |
| 142 | }); |
| 143 | |
| 144 | pfrCfgIface->initialize(); |
| 145 | } |
| 146 | |
| 147 | void PfrConfig::updateProvisioningStatus() |
| 148 | { |
| 149 | if (pfrCfgIface && pfrCfgIface->is_initialized()) |
| 150 | { |
| 151 | bool lockVal = false; |
| 152 | bool provVal = false; |
| 153 | getProvisioningStatus(lockVal, provVal); |
| 154 | internalSet = true; |
| 155 | pfrCfgIface->set_property(ufmProvisionedStr, provVal); |
| 156 | pfrCfgIface->set_property(ufmLockedStr, lockVal); |
| 157 | internalSet = false; |
| 158 | } |
| 159 | return; |
AppaRao Puli | e63eeda | 2019-07-05 16:25:38 +0530 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | } // namespace pfr |
| 163 | } // namespace intel |