Blame view

include/xilinx.h 2.84 KB
c609719b8   wdenk   Initial revision
1
2
3
4
  /*
   * (C) Copyright 2002
   * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
5
   * SPDX-License-Identifier:	GPL-2.0+
c609719b8   wdenk   Initial revision
6
7
8
9
10
11
   */
  
  #include <fpga.h>
  
  #ifndef _XILINX_H_
  #define _XILINX_H_
c609719b8   wdenk   Initial revision
12
13
  /* Xilinx types
   *********************************************************************/
53677ef18   Wolfgang Denk   Big white-space c...
14
15
16
17
18
19
20
21
  typedef enum {			/* typedef Xilinx_iface */
  	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)            */
d5dae85f2   Michal Simek   fpga: zynq: Add s...
22
  	devcfg,			/* devcfg interface (zynq) */
53677ef18   Wolfgang Denk   Big white-space c...
23
24
  	max_xilinx_iface_type	/* insert all new types before this */
  } Xilinx_iface;			/* end, typedef Xilinx_iface */
c609719b8   wdenk   Initial revision
25

53677ef18   Wolfgang Denk   Big white-space c...
26
27
28
29
30
31
  typedef enum {			/* typedef Xilinx_Family */
  	min_xilinx_type,	/* low range check value */
  	Xilinx_Spartan2,	/* Spartan-II Family */
  	Xilinx_VirtexE,		/* Virtex-E Family */
  	Xilinx_Virtex2,		/* Virtex2 Family */
  	Xilinx_Spartan3,	/* Spartan-III Family */
d5dae85f2   Michal Simek   fpga: zynq: Add s...
32
  	xilinx_zynq,		/* Zynq Family */
53677ef18   Wolfgang Denk   Big white-space c...
33
34
  	max_xilinx_type		/* insert all new types before this */
  } Xilinx_Family;		/* end, typedef Xilinx_Family */
c609719b8   wdenk   Initial revision
35

53677ef18   Wolfgang Denk   Big white-space c...
36
37
38
39
40
41
  typedef struct {		/* typedef Xilinx_desc */
  	Xilinx_Family family;	/* part type */
  	Xilinx_iface iface;	/* interface type */
  	size_t size;		/* bytes of data part can accept */
  	void *iface_fns;	/* interface function table */
  	int cookie;		/* implementation specific cookie */
6631db477   Michal Simek   fpga: Check devic...
42
  	char *name;		/* device name in bitstream */
53677ef18   Wolfgang Denk   Big white-space c...
43
  } Xilinx_desc;			/* end, typedef Xilinx_desc */
c609719b8   wdenk   Initial revision
44
45
46
  
  /* Generic Xilinx Functions
   *********************************************************************/
e6a857da7   Wolfgang Denk   fpga: constify to...
47
48
49
  extern int xilinx_load(Xilinx_desc *desc, const void *image, size_t size);
  extern int xilinx_dump(Xilinx_desc *desc, const void *buf, size_t bsize);
  extern int xilinx_info(Xilinx_desc *desc);
c609719b8   wdenk   Initial revision
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  
  /* Board specific implementation specific function types
   *********************************************************************/
  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 );
89083346d   Wolfgang Wegner   add block write f...
66
  typedef int (*Xilinx_bwr_fn)( void *buf, size_t len, int flush, int cookie );
c609719b8   wdenk   Initial revision
67
68
  
  #endif  /* _XILINX_H_ */