/* * Copyright 2018 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "lpc_nuvoton.hpp" #include "window_hw_interface.hpp" #include #include #include #include #include #include #include #include namespace ipmi_flash { using std::uint16_t; using std::uint32_t; using std::uint8_t; std::unique_ptr LpcMapperNuvoton::createNuvotonMapper(std::uint32_t regionAddress) { /* NOTE: Considered making one factory for both types. */ return std::make_unique(regionAddress); } void LpcMapperNuvoton::close() { } /* * The host buffer address is configured by host through * SuperIO. On BMC side the max memory can be mapped is 4kB with the caveat that * first byte of the buffer is reserved as host/BMC semaphore and not usable as * shared memory. * * Mapper returns success for (addr, len) where (addr & 0x7) == 4 and len <= * (4096 - 4). Otherwise, mapper returns either * - WindowOffset = 4 and WindowSize = len - 4 if (addr & 0x7) == 0 * - WindowSize = 0 means that the region cannot be mapped otherwise */ std::pair LpcMapperNuvoton::mapWindow(std::uint32_t address, std::uint32_t length) { /* We reserve the first 4 bytes from the mapped region; the first byte * is shared semaphore, and the number of 4 is for alignment. */ const uint32_t bmcMapReserveBytes = 4; const uint32_t bmcMapMaxSizeBytes = 4 * 1024 - bmcMapReserveBytes; if (length <= bmcMapReserveBytes) { std::fprintf(stderr, "window size %" PRIx32 " too small to map.\n", length); return std::make_pair(0, 0); } if (length > bmcMapMaxSizeBytes) { std::fprintf(stderr, "window size %" PRIx32 " not supported. Max size 4k.\n", length); length = bmcMapMaxSizeBytes; } /* If host requested region starts at an aligned address, return offset of 4 * bytes so as to skip the semaphore register. */ uint32_t windowOffset = bmcMapReserveBytes; uint32_t windowSize = length; const uint32_t addressOffset = address & 0x7; if (addressOffset == 0) { std::fprintf(stderr, "Map address offset should be 4 for Nuvoton.\n"); return std::make_pair(0, 0); } else if (addressOffset != bmcMapReserveBytes) { std::fprintf(stderr, "Map address offset should be 4 for Nuvoton.\n"); return std::make_pair(0, 0); } /* TODO: need a kernel driver to handle mapping configuration. * Until then program the register through /dev/mem. */ int fd; if ((fd = sys->open("/dev/mem", O_RDWR | O_SYNC)) == -1) { std::fprintf(stderr, "Failed to open /dev/mem\n"); sys->close(fd); return std::make_pair(0, 0); } const uint32_t bmcMapConfigBaseAddr = 0xc0001000; const uint32_t bmcMapConfigWindowSizeOffset = 0x7; const uint32_t bmcMapConfigWindowBaseOffset = 0xa; const uint8_t bmcWindowSizeValue = 0xc; // 4k const uint16_t bmcWindowBaseValue = 0x8000; // BMC phyAddr from 0xc0008000 int pageSize = sys->getpagesize(); auto mapBasePtr = reinterpret_cast( sys->mmap(nullptr, pageSize, PROT_READ | PROT_WRITE, MAP_SHARED, fd, bmcMapConfigBaseAddr)); uint8_t* bmcWindowSize = mapBasePtr + bmcMapConfigWindowSizeOffset; uint16_t* bmcWindowBase = reinterpret_cast(mapBasePtr + bmcMapConfigWindowBaseOffset); *bmcWindowSize = bmcWindowSizeValue; *bmcWindowBase = bmcWindowBaseValue; sys->munmap(mapBasePtr, pageSize); sys->close(fd); return std::make_pair(windowOffset, windowSize); } std::vector LpcMapperNuvoton::copyFrom(std::uint32_t length) { /* TODO: implement. */ return {}; } } // namespace ipmi_flash