mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
90 lines
2.3 KiB
C++
90 lines
2.3 KiB
C++
/** FIFO unit test.
|
|
*
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2017-2018, Steffen Vogel
|
|
* @license GNU General Public License (version 3)
|
|
*
|
|
* VILLASfpga
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*********************************************************************************/
|
|
|
|
#include <criterion/criterion.h>
|
|
|
|
#include <villas/log.hpp>
|
|
#include <villas/utils.hpp>
|
|
|
|
#include <villas/fpga/card.hpp>
|
|
#include <villas/fpga/ips/fifo.hpp>
|
|
|
|
#include "global.hpp"
|
|
|
|
using namespace villas;
|
|
|
|
Test(fpga, fifo, .description = "FIFO")
|
|
{
|
|
ssize_t len;
|
|
char src[255], dst[255];
|
|
size_t count = 0;
|
|
|
|
auto logger = logging.get("unittest:fifo");
|
|
|
|
for(auto& ip : state.cards.front()->ips) {
|
|
// skip non-fifo IPs
|
|
if(*ip != fpga::Vlnv("xilinx.com:ip:axi_fifo_mm_s:"))
|
|
continue;
|
|
|
|
logger->info("Testing {}", *ip);
|
|
|
|
auto fifo = dynamic_cast<fpga::ip::Fifo&>(*ip);
|
|
|
|
if(not fifo.connectLoopback()) {
|
|
continue;
|
|
}
|
|
|
|
count++;
|
|
|
|
if(not fifo.loopbackPossible()) {
|
|
logger->info("Loopback test not possible for {}", *ip);
|
|
continue;
|
|
}
|
|
|
|
/* Get some random data to compare */
|
|
memset(dst, 0, sizeof(dst));
|
|
len = utils::read_random((char *) src, sizeof(src));
|
|
if (len != sizeof(src)) {
|
|
logger->error("Failed to get random data");
|
|
continue;
|
|
}
|
|
|
|
len = fifo.write(src, sizeof(src));
|
|
if (len != sizeof(src)) {
|
|
logger->error("Failed to send to FIFO");
|
|
continue;
|
|
}
|
|
|
|
len = fifo.read(dst, sizeof(dst));
|
|
if (len != sizeof(dst)) {
|
|
logger->error("Failed to read from FIFO");
|
|
continue;
|
|
}
|
|
|
|
/* Compare data */
|
|
cr_assert_eq(memcmp(src, dst, sizeof(src)), 0, "Data not equal");
|
|
|
|
logger->info(CLR_GRN("Passed"));
|
|
}
|
|
|
|
cr_assert(count > 0, "No fifo found");
|
|
}
|