blob: 32e1d8c883b53cde127259f0bbbe556aa889f482 [file] [log] [blame]
#pragma once
#include "interface.hpp"
#include "internal/sys.hpp"
#include "io.hpp"
#include <cstdint>
#include <ipmiblob/blob_interface.hpp>
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,
std::uint32_t address, std::uint32_t 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;
std::uint32_t address;
std::uint32_t length;
const internal::Sys* sys;
};
} // namespace host_tool