2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Rich Ireland, Enterasys Networks, rireland@enterasys.com.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fpga.h>
|
|
|
|
|
|
|
|
#ifndef _XILINX_H_
|
|
|
|
#define _XILINX_H_
|
|
|
|
|
|
|
|
/* Xilinx types
|
|
|
|
*********************************************************************/
|
2014-03-13 11:58:20 +00:00
|
|
|
typedef enum { /* typedef xilinx_iface */
|
2008-05-20 14:00:29 +00:00
|
|
|
min_xilinx_iface_type, /* low range check value */
|
|
|
|
slave_serial, /* serial data and external clock */
|
|
|
|
master_serial, /* serial data w/ internal clock (not used) */
|
|
|
|
slave_parallel, /* parallel data w/ external latch */
|
|
|
|
jtag_mode, /* jtag/tap serial (not used ) */
|
|
|
|
master_selectmap, /* master SelectMap (virtex2) */
|
|
|
|
slave_selectmap, /* slave SelectMap (virtex2) */
|
2013-04-22 13:43:02 +00:00
|
|
|
devcfg, /* devcfg interface (zynq) */
|
2016-01-13 10:55:37 +00:00
|
|
|
csu_dma, /* csu_dma interface (zynqmp) */
|
2008-05-20 14:00:29 +00:00
|
|
|
max_xilinx_iface_type /* insert all new types before this */
|
2014-03-13 11:58:20 +00:00
|
|
|
} xilinx_iface; /* end, typedef xilinx_iface */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2014-03-13 11:58:20 +00:00
|
|
|
typedef enum { /* typedef xilinx_family */
|
2008-05-20 14:00:29 +00:00
|
|
|
min_xilinx_type, /* low range check value */
|
2014-03-13 10:23:43 +00:00
|
|
|
xilinx_spartan2, /* Spartan-II Family */
|
2014-03-13 11:58:20 +00:00
|
|
|
xilinx_virtexE, /* Virtex-E Family */
|
2014-03-13 10:33:36 +00:00
|
|
|
xilinx_virtex2, /* Virtex2 Family */
|
2014-03-13 10:28:42 +00:00
|
|
|
xilinx_spartan3, /* Spartan-III Family */
|
2013-04-22 13:43:02 +00:00
|
|
|
xilinx_zynq, /* Zynq Family */
|
2016-01-13 10:55:37 +00:00
|
|
|
xilinx_zynqmp, /* ZynqMP Family */
|
2008-05-20 14:00:29 +00:00
|
|
|
max_xilinx_type /* insert all new types before this */
|
2014-03-13 11:58:20 +00:00
|
|
|
} xilinx_family; /* end, typedef xilinx_family */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2014-03-13 11:49:21 +00:00
|
|
|
typedef struct { /* typedef xilinx_desc */
|
2014-03-13 11:58:20 +00:00
|
|
|
xilinx_family family; /* part type */
|
|
|
|
xilinx_iface iface; /* interface type */
|
2008-05-20 14:00:29 +00:00
|
|
|
size_t size; /* bytes of data part can accept */
|
|
|
|
void *iface_fns; /* interface function table */
|
|
|
|
int cookie; /* implementation specific cookie */
|
2014-03-13 12:07:57 +00:00
|
|
|
struct xilinx_fpga_op *operations; /* operations */
|
2013-04-26 13:04:48 +00:00
|
|
|
char *name; /* device name in bitstream */
|
2014-03-13 11:49:21 +00:00
|
|
|
} xilinx_desc; /* end, typedef xilinx_desc */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2014-03-13 12:07:57 +00:00
|
|
|
struct xilinx_fpga_op {
|
2014-05-02 12:09:30 +00:00
|
|
|
int (*load)(xilinx_desc *, const void *, size_t, bitstream_type);
|
2014-03-14 11:05:37 +00:00
|
|
|
int (*loadfs)(xilinx_desc *, const void *, size_t, fpga_fs_info *);
|
2014-03-13 12:07:57 +00:00
|
|
|
int (*dump)(xilinx_desc *, const void *, size_t);
|
|
|
|
int (*info)(xilinx_desc *);
|
|
|
|
};
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/* Generic Xilinx Functions
|
|
|
|
*********************************************************************/
|
2014-05-02 12:09:30 +00:00
|
|
|
int xilinx_load(xilinx_desc *desc, const void *image, size_t size,
|
|
|
|
bitstream_type bstype);
|
2014-03-13 11:49:21 +00:00
|
|
|
int xilinx_dump(xilinx_desc *desc, const void *buf, size_t bsize);
|
|
|
|
int xilinx_info(xilinx_desc *desc);
|
2014-03-14 11:05:37 +00:00
|
|
|
int xilinx_loadfs(xilinx_desc *desc, const void *buf, size_t bsize,
|
|
|
|
fpga_fs_info *fpga_fsinfo);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/* Board specific implementation specific function types
|
|
|
|
*********************************************************************/
|
2014-03-13 11:58:20 +00:00
|
|
|
typedef int (*xilinx_pgm_fn)(int assert_pgm, int flush, int cookie);
|
|
|
|
typedef int (*xilinx_init_fn)(int cookie);
|
|
|
|
typedef int (*xilinx_err_fn)(int cookie);
|
|
|
|
typedef int (*xilinx_done_fn)(int cookie);
|
|
|
|
typedef int (*xilinx_clk_fn)(int assert_clk, int flush, int cookie);
|
|
|
|
typedef int (*xilinx_cs_fn)(int assert_cs, int flush, int cookie);
|
|
|
|
typedef int (*xilinx_wr_fn)(int assert_write, int flush, int cookie);
|
|
|
|
typedef int (*xilinx_rdata_fn)(unsigned char *data, int cookie);
|
|
|
|
typedef int (*xilinx_wdata_fn)(unsigned char data, int flush, int cookie);
|
|
|
|
typedef int (*xilinx_busy_fn)(int cookie);
|
|
|
|
typedef int (*xilinx_abort_fn)(int cookie);
|
|
|
|
typedef int (*xilinx_pre_fn)(int cookie);
|
|
|
|
typedef int (*xilinx_post_fn)(int cookie);
|
|
|
|
typedef int (*xilinx_bwr_fn)(void *buf, size_t len, int flush, int cookie);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#endif /* _XILINX_H_ */
|