blob: cbdf8ef5bd5cd1bf70ebc08b8dad3e24af85717c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#pragma once
#include "data_handler.hpp"
#include "window_hw_interface.hpp"
#include <cstdint>
#include <memory>
#include <vector>
namespace ipmi_flash
{
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<HardwareMapperInterface> mapper) :
mapper(std::move(mapper)), initialized(false)
{
}
bool open() override;
bool close() override;
std::vector<std::uint8_t> copyFrom(std::uint32_t length) override;
bool writeMeta(const std::vector<std::uint8_t>& configuration) override;
std::vector<std::uint8_t> readMeta() override;
private:
bool setInitializedAndReturn(bool value)
{
initialized = value;
return value;
}
std::unique_ptr<HardwareMapperInterface> mapper;
bool initialized;
};
} // namespace ipmi_flash
|