summaryrefslogtreecommitdiff
path: root/psu-manager/include/utility.hpp
blob: d0df858f6cd16476e4ac9a2bfd5635c79d94ec33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
// Copyright (c) 2019 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
*/

#pragma once
#include <boost/container/flat_map.hpp>
#include <chrono>
#include <cstdint>
#include <iostream>
#include <sdbusplus/asio/connection.hpp>

const constexpr char* entityManagerName = "xyz.openbmc_project.EntityManager";
static const constexpr char* redundancyInterface =
    "xyz.openbmc_project.Control.PowerSupplyRedundancy";
static const constexpr std::array<const char*, 1> psuEventInterface = {
    "xyz.openbmc_project.State.Decorator.OperationalStatus"};

using BasicVariantType =
    std::variant<std::vector<std::string>, std::vector<uint64_t>, std::string,
                 int64_t, uint64_t, double, int32_t, uint32_t, int16_t,
                 uint16_t, uint8_t, bool>;

using PropertyMapType =
    boost::container::flat_map<std::string, BasicVariantType>;

using GetSubTreeType = std::vector<
    std::pair<std::string,
              std::vector<std::pair<std::string, std::vector<std::string>>>>>;

constexpr std::chrono::microseconds dbusTimeout(5000);

using Value = sdbusplus::message::variant<bool, uint8_t, int16_t, uint16_t,
                                          int32_t, uint32_t, int64_t, uint64_t,
                                          double, std::string>;

enum class PSUState
{
    normal,
    acLost
};

void getPSUEvent(
    const std::array<const char*, 1>& type,
    const std::shared_ptr<sdbusplus::asio::connection>& dbusConnection,
    const std::string& psuName, PSUState& state);

int i2cSet(uint8_t bus, uint8_t slaveAddr, uint8_t regAddr, uint8_t value);
int i2cGet(uint8_t bus, uint8_t slaveAddr, uint8_t regAddr, int& value);
int i2cPing(int fd, uint8_t slaveAddr);
int setPingFd(int& fd, uint64_t bus);