#pragma once #include "interface.hpp" #include "internal/sys.hpp" #include "io.hpp" #include #include namespace host_tool { struct LpcRegion { /* Host LPC address at which the chunk is to be mapped. */ std::uint32_t address; /* Size of the chunk to be mapped. */ std::uint32_t length; } __attribute__((packed)); class LpcDataHandler : public DataInterface { public: LpcDataHandler(ipmiblob::BlobInterface* blob, HostIoInterface* io, long address, long length, const internal::Sys* sys = &internal::sys_impl) : blob(blob), io(io), address(address), length(length), sys(sys){}; bool sendContents(const std::string& input, std::uint16_t session) override; ipmi_flash::FirmwareBlobHandler::UpdateFlags supportedType() const override { return ipmi_flash::FirmwareBlobHandler::UpdateFlags::lpc; } private: ipmiblob::BlobInterface* blob; HostIoInterface* io; long address; long length; const internal::Sys* sys; }; } // namespace host_tool