]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/xilinx.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / xilinx.h
CommitLineData
c609719b
WD
1/*
2 * (C) Copyright 2002
3 * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
c609719b
WD
6 */
7
8#include <fpga.h>
9
10#ifndef _XILINX_H_
11#define _XILINX_H_
12
c609719b
WD
13/* Xilinx types
14 *********************************************************************/
53677ef1
WD
15typedef enum { /* typedef Xilinx_iface */
16 min_xilinx_iface_type, /* low range check value */
17 slave_serial, /* serial data and external clock */
18 master_serial, /* serial data w/ internal clock (not used) */
19 slave_parallel, /* parallel data w/ external latch */
20 jtag_mode, /* jtag/tap serial (not used ) */
21 master_selectmap, /* master SelectMap (virtex2) */
22 slave_selectmap, /* slave SelectMap (virtex2) */
d5dae85f 23 devcfg, /* devcfg interface (zynq) */
53677ef1
WD
24 max_xilinx_iface_type /* insert all new types before this */
25} Xilinx_iface; /* end, typedef Xilinx_iface */
c609719b 26
53677ef1
WD
27typedef enum { /* typedef Xilinx_Family */
28 min_xilinx_type, /* low range check value */
29 Xilinx_Spartan2, /* Spartan-II Family */
30 Xilinx_VirtexE, /* Virtex-E Family */
31 Xilinx_Virtex2, /* Virtex2 Family */
32 Xilinx_Spartan3, /* Spartan-III Family */
d5dae85f 33 xilinx_zynq, /* Zynq Family */
53677ef1
WD
34 max_xilinx_type /* insert all new types before this */
35} Xilinx_Family; /* end, typedef Xilinx_Family */
c609719b 36
53677ef1
WD
37typedef struct { /* typedef Xilinx_desc */
38 Xilinx_Family family; /* part type */
39 Xilinx_iface iface; /* interface type */
40 size_t size; /* bytes of data part can accept */
41 void *iface_fns; /* interface function table */
42 int cookie; /* implementation specific cookie */
6631db47 43 char *name; /* device name in bitstream */
53677ef1 44} Xilinx_desc; /* end, typedef Xilinx_desc */
c609719b
WD
45
46/* Generic Xilinx Functions
47 *********************************************************************/
e6a857da
WD
48extern int xilinx_load(Xilinx_desc *desc, const void *image, size_t size);
49extern int xilinx_dump(Xilinx_desc *desc, const void *buf, size_t bsize);
50extern int xilinx_info(Xilinx_desc *desc);
c609719b
WD
51
52/* Board specific implementation specific function types
53 *********************************************************************/
54typedef int (*Xilinx_pgm_fn)( int assert_pgm, int flush, int cookie );
55typedef int (*Xilinx_init_fn)( int cookie );
56typedef int (*Xilinx_err_fn)( int cookie );
57typedef int (*Xilinx_done_fn)( int cookie );
58typedef int (*Xilinx_clk_fn)( int assert_clk, int flush, int cookie );
59typedef int (*Xilinx_cs_fn)( int assert_cs, int flush, int cookie );
60typedef int (*Xilinx_wr_fn)( int assert_write, int flush, int cookie );
61typedef int (*Xilinx_rdata_fn)( unsigned char *data, int cookie );
62typedef int (*Xilinx_wdata_fn)( unsigned char data, int flush, int cookie );
63typedef int (*Xilinx_busy_fn)( int cookie );
64typedef int (*Xilinx_abort_fn)( int cookie );
65typedef int (*Xilinx_pre_fn)( int cookie );
66typedef int (*Xilinx_post_fn)( int cookie );
89083346 67typedef int (*Xilinx_bwr_fn)( void *buf, size_t len, int flush, int cookie );
c609719b
WD
68
69#endif /* _XILINX_H_ */