blob: fc8ca4b32126dbec4382cd1853779fc9e18f3595 [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,
const internal::Sys* sys = &internal::sys_impl) :
blob(blob),
io(io), sys(sys){};
bool sendContents(const std::string& input, std::uint16_t session) override;
blobs::FirmwareBlobHandler::UpdateFlags supportedType() const override
{
return blobs::FirmwareBlobHandler::UpdateFlags::lpc;
}
private:
ipmiblob::BlobInterface* blob;
HostIoInterface* io;
const internal::Sys* sys;
};
} // namespace host_tool