Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 1 | #include "config.h" |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 2 | |
| 3 | #include "occ_pass_through.hpp" |
| 4 | |
| 5 | #include "elog-errors.hpp" |
| 6 | |
| 7 | #include <errno.h> |
| 8 | #include <fcntl.h> |
| 9 | #include <unistd.h> |
| 10 | |
| 11 | #include <algorithm> |
| 12 | #include <memory> |
| 13 | #include <org/open_power/OCC/Device/error.hpp> |
| 14 | #include <phosphor-logging/elog.hpp> |
| 15 | #include <phosphor-logging/log.hpp> |
| 16 | #include <string> |
Deepak Kodihalli | 6b492fb | 2017-03-18 01:09:28 -0500 | [diff] [blame] | 17 | namespace open_power |
| 18 | { |
| 19 | namespace occ |
| 20 | { |
Deepak Kodihalli | 6b492fb | 2017-03-18 01:09:28 -0500 | [diff] [blame] | 21 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 22 | PassThrough::PassThrough(sdbusplus::bus::bus& bus, const char* path) : |
| 23 | Iface(bus, path), path(path), |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 24 | devicePath(OCC_DEV_PATH + std::to_string((this->path.back() - '0') + 1)), |
| 25 | activeStatusSignal( |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 26 | bus, sdbusRule::propertiesChanged(path, "org.open_power.OCC.Status"), |
| 27 | std::bind(std::mem_fn(&PassThrough::activeStatusEvent), this, |
| 28 | std::placeholders::_1)) |
Deepak Kodihalli | 6b492fb | 2017-03-18 01:09:28 -0500 | [diff] [blame] | 29 | { |
Vishwanatha Subbanna | 38b08d7 | 2017-04-14 18:12:14 +0530 | [diff] [blame] | 30 | // Nothing to do. |
| 31 | } |
| 32 | |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 33 | void PassThrough::openDevice() |
Vishwanatha Subbanna | 38b08d7 | 2017-04-14 18:12:14 +0530 | [diff] [blame] | 34 | { |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 35 | using namespace phosphor::logging; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 36 | using namespace sdbusplus::org::open_power::OCC::Device::Error; |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 37 | |
Eddie James | 4f4712d | 2018-06-21 15:57:02 -0500 | [diff] [blame] | 38 | if (!occActive) |
| 39 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 40 | log<level::INFO>("OCC is inactive; cannot perform pass-through"); |
| 41 | return; |
Eddie James | 4f4712d | 2018-06-21 15:57:02 -0500 | [diff] [blame] | 42 | } |
| 43 | |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 44 | fd = open(devicePath.c_str(), O_RDWR | O_NONBLOCK); |
Vishwanatha Subbanna | 38b08d7 | 2017-04-14 18:12:14 +0530 | [diff] [blame] | 45 | if (fd < 0) |
| 46 | { |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 47 | // This would log and terminate since its not handled. |
| 48 | elog<OpenFailure>( |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 49 | phosphor::logging::org::open_power::OCC::Device::OpenFailure:: |
| 50 | CALLOUT_ERRNO(errno), |
| 51 | phosphor::logging::org::open_power::OCC::Device::OpenFailure:: |
| 52 | CALLOUT_DEVICE_PATH(devicePath.c_str())); |
Vishwanatha Subbanna | 38b08d7 | 2017-04-14 18:12:14 +0530 | [diff] [blame] | 53 | } |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 54 | return; |
| 55 | } |
| 56 | |
| 57 | void PassThrough::closeDevice() |
| 58 | { |
| 59 | if (fd >= 0) |
| 60 | { |
| 61 | close(fd); |
Eddie James | 4f4712d | 2018-06-21 15:57:02 -0500 | [diff] [blame] | 62 | fd = -1; |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 63 | } |
Deepak Kodihalli | 6b492fb | 2017-03-18 01:09:28 -0500 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | std::vector<int32_t> PassThrough::send(std::vector<int32_t> command) |
| 67 | { |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 68 | using namespace phosphor::logging; |
Vishwanatha Subbanna | ee4d83d | 2017-06-29 18:35:00 +0530 | [diff] [blame] | 69 | using namespace sdbusplus::org::open_power::OCC::Device::Error; |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 70 | |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 71 | std::vector<int32_t> response{}; |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 72 | |
Eddie James | 4f4712d | 2018-06-21 15:57:02 -0500 | [diff] [blame] | 73 | openDevice(); |
| 74 | |
| 75 | if (fd < 0) |
| 76 | { |
| 77 | // OCC is inactive; empty response |
| 78 | return response; |
| 79 | } |
| 80 | |
Vishwanatha Subbanna | 7d700e2 | 2017-05-19 19:58:01 +0530 | [diff] [blame] | 81 | // OCC only understands [bytes] so need array of bytes. Doing this |
| 82 | // because rest-server currently treats all int* as 32 bit integer. |
| 83 | std::vector<uint8_t> cmdInBytes; |
| 84 | cmdInBytes.resize(command.size()); |
| 85 | |
| 86 | // Populate uint8_t version of vector. |
| 87 | std::transform(command.begin(), command.end(), cmdInBytes.begin(), |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 88 | [](decltype(cmdInBytes)::value_type x) { return x; }); |
Vishwanatha Subbanna | 7d700e2 | 2017-05-19 19:58:01 +0530 | [diff] [blame] | 89 | |
| 90 | ssize_t size = cmdInBytes.size() * sizeof(decltype(cmdInBytes)::value_type); |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 91 | auto rc = write(fd, cmdInBytes.data(), size); |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 92 | if (rc < 0 || (rc != size)) |
| 93 | { |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 94 | // This would log and terminate since its not handled. |
| 95 | elog<WriteFailure>( |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 96 | phosphor::logging::org::open_power::OCC::Device::WriteFailure:: |
| 97 | CALLOUT_ERRNO(errno), |
| 98 | phosphor::logging::org::open_power::OCC::Device::WriteFailure:: |
| 99 | CALLOUT_DEVICE_PATH(devicePath.c_str())); |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | // Now read the response. This would be the content of occ-sram |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 103 | while (1) |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 104 | { |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 105 | uint8_t data{}; |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 106 | auto len = read(fd, &data, sizeof(data)); |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 107 | if (len > 0) |
| 108 | { |
| 109 | response.emplace_back(data); |
| 110 | } |
| 111 | else if (len < 0 && errno == EAGAIN) |
| 112 | { |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 113 | // We may have data coming still. |
| 114 | // This driver does not need a sleep for a retry. |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 115 | continue; |
| 116 | } |
| 117 | else if (len == 0) |
| 118 | { |
| 119 | // We have read all that we can. |
| 120 | break; |
| 121 | } |
| 122 | else |
| 123 | { |
Vishwanatha Subbanna | 9bb065b | 2017-04-18 14:25:26 +0530 | [diff] [blame] | 124 | // This would log and terminate since its not handled. |
| 125 | elog<ReadFailure>( |
Gunnar Mills | 94df8c9 | 2018-09-14 14:50:03 -0500 | [diff] [blame] | 126 | phosphor::logging::org::open_power::OCC::Device::ReadFailure:: |
| 127 | CALLOUT_ERRNO(errno), |
| 128 | phosphor::logging::org::open_power::OCC::Device::ReadFailure:: |
| 129 | CALLOUT_DEVICE_PATH(devicePath.c_str())); |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 130 | } |
| 131 | } |
| 132 | |
Eddie James | 4f4712d | 2018-06-21 15:57:02 -0500 | [diff] [blame] | 133 | closeDevice(); |
| 134 | |
Vishwanatha Subbanna | 67d50ad | 2017-04-17 23:21:52 +0530 | [diff] [blame] | 135 | return response; |
Deepak Kodihalli | 6b492fb | 2017-03-18 01:09:28 -0500 | [diff] [blame] | 136 | } |
| 137 | |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 138 | // Called at OCC Status change signal |
| 139 | void PassThrough::activeStatusEvent(sdbusplus::message::message& msg) |
| 140 | { |
| 141 | std::string statusInterface; |
| 142 | std::map<std::string, sdbusplus::message::variant<bool>> msgData; |
| 143 | msg.read(statusInterface, msgData); |
| 144 | |
| 145 | auto propertyMap = msgData.find("OccActive"); |
| 146 | if (propertyMap != msgData.end()) |
| 147 | { |
| 148 | // Extract the OccActive property |
| 149 | if (sdbusplus::message::variant_ns::get<bool>(propertyMap->second)) |
| 150 | { |
Eddie James | 4f4712d | 2018-06-21 15:57:02 -0500 | [diff] [blame] | 151 | occActive = true; |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 152 | } |
| 153 | else |
| 154 | { |
Eddie James | 4f4712d | 2018-06-21 15:57:02 -0500 | [diff] [blame] | 155 | occActive = false; |
Vishwanatha Subbanna | 3e5422e | 2017-08-10 18:25:26 +0530 | [diff] [blame] | 156 | this->closeDevice(); |
| 157 | } |
| 158 | } |
| 159 | return; |
| 160 | } |
| 161 | |
Deepak Kodihalli | 6b492fb | 2017-03-18 01:09:28 -0500 | [diff] [blame] | 162 | } // namespace occ |
| 163 | } // namespace open_power |