mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
35 lines
No EOL
870 B
C
35 lines
No EOL
870 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 2015-2016, Steffen Vogel
|
|
* This file is part of S2SS. All Rights Reserved. Proprietary and confidential.
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
**********************************************************************************/
|
|
|
|
#ifndef _FPGA_FIFO_H_
|
|
#define _FPGA_FIFO_H_
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <xilinx/xstatus.h>
|
|
#include <xilinx/xllfifo.h>
|
|
|
|
struct fifo {
|
|
XLlFifo inst;
|
|
|
|
uint32_t baseaddr_axi4;
|
|
};
|
|
|
|
/* Forward declaration */
|
|
struct ip;
|
|
|
|
int fifo_init(struct ip *c);
|
|
|
|
ssize_t fifo_write(struct ip *c, char *buf, size_t len);
|
|
|
|
ssize_t fifo_read(struct ip *c, char *buf, size_t len);
|
|
|
|
#endif /* _FPGA_FIFO_H_ */ |