#include "config.h" #include "occ_pass_through.hpp" #include #include #include #include #include #include #include #include #include #include #include namespace open_power { namespace occ { using namespace phosphor::logging; using namespace sdbusplus::org::open_power::OCC::Device::Error; PassThrough::PassThrough( const char* path #ifdef POWER10 , std::unique_ptr& powerModeRef #endif ) : Iface(utils::getBus(), path), path(path), #ifdef POWER10 pmode(powerModeRef), #endif devicePath(OCC_DEV_PATH + std::to_string((this->path.back() - '0') + 1)), occInstance(this->path.back() - '0'), activeStatusSignal( utils::getBus(), sdbusRule::propertiesChanged(path, "org.open_power.OCC.Status"), std::bind(std::mem_fn(&PassThrough::activeStatusEvent), this, std::placeholders::_1)), occCmd(occInstance, path) { // Nothing to do. } std::vector PassThrough::send(std::vector command) { std::vector response{}; // OCC only understands [bytes] so need array of bytes. Doing this // because rest-server currently treats all int* as 32 bit integer. std::vector cmdInBytes, rsp; cmdInBytes.resize(command.size()); // Populate uint8_t version of vector. std::transform(command.begin(), command.end(), cmdInBytes.begin(), [](decltype(cmdInBytes)::value_type x) { return x; }); rsp = send(cmdInBytes); response.resize(rsp.size()); std::transform(rsp.begin(), rsp.end(), response.begin(), [](decltype(response)::value_type x) { return x; }); return response; } std::vector PassThrough::send(std::vector command) { std::vector response{}; if (!occActive) { log( std::format( "PassThrough::send() - OCC{} not active, command not sent", occInstance) .c_str()); return response; } log( std::format("PassThrough::send() Sending 0x{:02X} command to OCC{}", command.front(), occInstance) .c_str()); CmdStatus status = occCmd.send(command, response); if (status == CmdStatus::SUCCESS) { if (response.size() >= 5) { log( std::format("PassThrough::send() response had {} bytes", response.size()) .c_str()); } else { log("PassThrough::send() Invalid OCC response"); dump_hex(response); } } else { log( std::format( "PassThrough::send(): OCC command failed with status {}", uint32_t(status)) .c_str()); } return response; } bool PassThrough::setMode(const uint8_t mode, const uint16_t modeData) { #ifdef POWER10 SysPwrMode newMode = SysPwrMode(mode); if ((!VALID_POWER_MODE_SETTING(newMode)) && (!VALID_OEM_POWER_MODE_SETTING(newMode))) { log( std::format( "PassThrough::setMode() Unsupported mode {} requested (0x{:04X})", newMode, modeData) .c_str()); return false; } if (((newMode == SysPwrMode::FFO) || (newMode == SysPwrMode::SFP)) && (modeData == 0)) { log( std::format( "PassThrough::setMode() Mode {} requires non-zero frequency point.", newMode) .c_str()); return false; } if (!pmode) { log("PassThrough::setMode: PowerMode is not defined!"); return false; } log( std::format("PassThrough::setMode() Setting Power Mode {} (data: {})", newMode, modeData) .c_str()); return pmode->setMode(newMode, modeData); #else log( std::format( "PassThrough::setMode() No support to setting Power Mode {} (data: {})", mode, modeData) .c_str()); return false; #endif } // Called at OCC Status change signal void PassThrough::activeStatusEvent(sdbusplus::message_t& msg) { std::string statusInterface; std::map> msgData; msg.read(statusInterface, msgData); auto propertyMap = msgData.find("OccActive"); if (propertyMap != msgData.end()) { // Extract the OccActive property if (std::get(propertyMap->second)) { occActive = true; } else { occActive = false; } } return; } } // namespace occ } // namespace open_power