blob: 677a9fda3e865e5fe14afc1a30e5c5510868b4c2 [file] [log] [blame]
Patrick Venturee7728422018-11-14 20:16:33 -08001#include "lpc_aspeed.hpp"
2
3#include "lpc_interface.hpp"
4
5#include <cstdint>
6#include <memory>
7#include <utility>
8
9namespace blobs
10{
11
12std::unique_ptr<LpcMapperInterface> LpcMapperAspeed::createAspeedMapper()
13{
14 /* NOTE: considered using a joint factory to create one or the other, for
15 * now, separate factories.
16 */
17 return std::make_unique<LpcMapperAspeed>();
18}
19
20std::pair<std::uint32_t, std::uint32_t>
21 LpcMapperAspeed::mapWindow(std::uint32_t address, std::uint32_t length)
22{
23 return std::make_pair(0, 0);
24}
25
26} // namespace blobs