blob: 91c976b6afac322af2208df6bd9905c1207c8ccd [file] [log] [blame]
#pragma once
#include "data_handler.hpp"
#include "lpc_interface.hpp"
#include <cstdint>
#include <memory>
#include <vector>
namespace blobs
{
struct LpcRegion
{
/* Host LPC address where the chunk is to be mapped. */
std::uint32_t address;
/* Size of the chunk to be mapped. */
std::uint32_t length;
} __attribute__((packed));
/**
* Data Handler for configuration the ASPEED LPC memory region, reading and
* writing data.
*/
class LpcDataHandler : public DataInterface
{
public:
/**
* Create an LpcDataHandler.
*
* @param[in] mapper - pointer to a mapper implementation to use.
*/
explicit LpcDataHandler(std::unique_ptr<LpcMapperInterface> mapper) :
mapper(std::move(mapper))
{
}
bool open() override;
bool close() override;
std::vector<std::uint8_t> copyFrom(std::uint32_t length) override;
bool write(const std::vector<std::uint8_t>& configuration) override;
std::vector<std::uint8_t> read() override;
private:
std::unique_ptr<LpcMapperInterface> mapper;
};
} // namespace blobs