xref: /openbmc/u-boot/include/xilinx.h (revision 2df9d5c4)
1 /*
2  * (C) Copyright 2002
3  * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <fpga.h>
9 
10 #ifndef _XILINX_H_
11 #define _XILINX_H_
12 
13 /* Xilinx types
14  *********************************************************************/
15 typedef 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)            */
23 	devcfg,			/* devcfg interface (zynq) */
24 	max_xilinx_iface_type	/* insert all new types before this */
25 } xilinx_iface;			/* end, typedef xilinx_iface */
26 
27 typedef 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 */
33 	xilinx_zynq,		/* Zynq Family */
34 	max_xilinx_type		/* insert all new types before this */
35 } xilinx_family;		/* end, typedef xilinx_family */
36 
37 typedef 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 */
43 	char *name;		/* device name in bitstream */
44 } xilinx_desc;			/* end, typedef xilinx_desc */
45 
46 /* Generic Xilinx Functions
47  *********************************************************************/
48 int xilinx_load(xilinx_desc *desc, const void *image, size_t size);
49 int xilinx_dump(xilinx_desc *desc, const void *buf, size_t bsize);
50 int xilinx_info(xilinx_desc *desc);
51 
52 /* Board specific implementation specific function types
53  *********************************************************************/
54 typedef int (*xilinx_pgm_fn)(int assert_pgm, int flush, int cookie);
55 typedef int (*xilinx_init_fn)(int cookie);
56 typedef int (*xilinx_err_fn)(int cookie);
57 typedef int (*xilinx_done_fn)(int cookie);
58 typedef int (*xilinx_clk_fn)(int assert_clk, int flush, int cookie);
59 typedef int (*xilinx_cs_fn)(int assert_cs, int flush, int cookie);
60 typedef int (*xilinx_wr_fn)(int assert_write, int flush, int cookie);
61 typedef int (*xilinx_rdata_fn)(unsigned char *data, int cookie);
62 typedef int (*xilinx_wdata_fn)(unsigned char data, int flush, int cookie);
63 typedef int (*xilinx_busy_fn)(int cookie);
64 typedef int (*xilinx_abort_fn)(int cookie);
65 typedef int (*xilinx_pre_fn)(int cookie);
66 typedef int (*xilinx_post_fn)(int cookie);
67 typedef int (*xilinx_bwr_fn)(void *buf, size_t len, int flush, int cookie);
68 
69 #endif  /* _XILINX_H_ */
70