blob: c8211d4cb91a923dee7dc6369f82a36c9a7f86b8 [file] [log] [blame]
AppaRao Pulie63eeda2019-07-05 16:25:38 +05301/*
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#pragma once
18
AppaRao Pulie4e95652019-07-19 16:52:01 +053019#include "pfr.hpp"
20
AppaRao Puli67d184c2020-05-29 00:48:33 +053021#include <boost/asio.hpp>
22#include <phosphor-logging/log.hpp>
23#include <sdbusplus/asio/object_server.hpp>
24
25#include <string>
26
AppaRao Pulie63eeda2019-07-05 16:25:38 +053027namespace pfr
28{
29
AppaRao Puli67d184c2020-05-29 00:48:33 +053030static constexpr const char* versionPurposeBMC =
AppaRao Pulie4e95652019-07-19 16:52:01 +053031 "xyz.openbmc_project.Software.Version.VersionPurpose.BMC";
AppaRao Puli67d184c2020-05-29 00:48:33 +053032static constexpr const char* versionPurposeHost =
AppaRao Pulie4e95652019-07-19 16:52:01 +053033 "xyz.openbmc_project.Software.Version.VersionPurpose.Host";
AppaRao Puli67d184c2020-05-29 00:48:33 +053034static constexpr const char* versionPurposeOther =
AppaRao Pulie4e95652019-07-19 16:52:01 +053035 "xyz.openbmc_project.Software.Version.VersionPurpose.Other";
36
AppaRao Puli67d184c2020-05-29 00:48:33 +053037static constexpr const char* versionStr = "Version";
38static constexpr const char* ufmProvisionedStr = "UfmProvisioned";
39static constexpr const char* ufmLockedStr = "UfmLocked";
Chalapathi Venkataramashettyf8819702021-02-03 09:43:46 +000040static constexpr const char* ufmSupportStr = "UfmSupport";
AppaRao Pulie4e95652019-07-19 16:52:01 +053041
AppaRao Pulie63eeda2019-07-05 16:25:38 +053042class PfrVersion
43{
44 public:
AppaRao Puli67d184c2020-05-29 00:48:33 +053045 PfrVersion(sdbusplus::asio::object_server& srv_,
46 std::shared_ptr<sdbusplus::asio::connection>& conn_,
47 const std::string& path_, const ImageType& imgType_,
48 const std::string& purpose_);
AppaRao Pulie63eeda2019-07-05 16:25:38 +053049 ~PfrVersion() = default;
50
51 std::shared_ptr<sdbusplus::asio::connection> conn;
52
AppaRao Pulie4e95652019-07-19 16:52:01 +053053 void updateVersion();
54
AppaRao Pulie63eeda2019-07-05 16:25:38 +053055 private:
AppaRao Puli67d184c2020-05-29 00:48:33 +053056 sdbusplus::asio::object_server& server;
AppaRao Pulie4e95652019-07-19 16:52:01 +053057 std::shared_ptr<sdbusplus::asio::dbus_interface> versionIface;
58 bool internalSet = false;
AppaRao Pulie63eeda2019-07-05 16:25:38 +053059
60 std::string path;
61 std::string version;
62 std::string purpose;
AppaRao Pulie4e95652019-07-19 16:52:01 +053063 ImageType imgType;
AppaRao Pulie63eeda2019-07-05 16:25:38 +053064};
65
66class PfrConfig
67{
68 public:
AppaRao Puli67d184c2020-05-29 00:48:33 +053069 PfrConfig(sdbusplus::asio::object_server& srv_,
70 std::shared_ptr<sdbusplus::asio::connection>& conn_);
AppaRao Pulie63eeda2019-07-05 16:25:38 +053071 ~PfrConfig() = default;
72
73 std::shared_ptr<sdbusplus::asio::connection> conn;
74
AppaRao Pulie4e95652019-07-19 16:52:01 +053075 void updateProvisioningStatus();
76
AppaRao Pulie63eeda2019-07-05 16:25:38 +053077 private:
AppaRao Puli67d184c2020-05-29 00:48:33 +053078 sdbusplus::asio::object_server& server;
AppaRao Pulie4e95652019-07-19 16:52:01 +053079 std::shared_ptr<sdbusplus::asio::dbus_interface> pfrCfgIface;
80 bool internalSet = false;
AppaRao Pulie63eeda2019-07-05 16:25:38 +053081
AppaRao Pulie4e95652019-07-19 16:52:01 +053082 bool ufmProvisioned;
83 bool ufmLocked;
Chalapathi Venkataramashettyf8819702021-02-03 09:43:46 +000084 bool ufmSupport;
AppaRao Pulie63eeda2019-07-05 16:25:38 +053085};
86
Chalapathi Venkataramashettybcc7ce12021-05-17 04:27:21 +000087// Firmware resiliency major map.
88// {<CPLD association>, {<Redfish MessageID>, <Error reason> })
89static const boost::container::flat_map<uint8_t,
90 std::pair<std::string, std::string>>
91 majorErrorCodeMapRev2 = {
92 {0x03, {"FirmwareResiliencyError", "Firmware update failed"}}};
93
AppaRao Pulie63eeda2019-07-05 16:25:38 +053094} // namespace pfr