mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
36 lines
No EOL
714 B
C
36 lines
No EOL
714 B
C
/** FIFO related helper functions
|
|
*
|
|
* These functions present a simpler interface to Xilinx' FIFO driver (XLlFifo_*)
|
|
*
|
|
* @file
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2017, Steffen Vogel
|
|
**********************************************************************************/
|
|
|
|
/** @addtogroup fpga VILLASfpga
|
|
* @{
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <xilinx/xstatus.h>
|
|
#include <xilinx/xllfifo.h>
|
|
|
|
struct fifo {
|
|
XLlFifo inst;
|
|
|
|
uint32_t baseaddr_axi4;
|
|
};
|
|
|
|
/* Forward declarations */
|
|
struct ip;
|
|
|
|
int fifo_start(struct fpga_ip *c);
|
|
|
|
ssize_t fifo_write(struct fpga_ip *c, char *buf, size_t len);
|
|
|
|
ssize_t fifo_read(struct fpga_ip *c, char *buf, size_t len);
|
|
|
|
/** @} */ |