Blame view

include/xilinx.h 3.28 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
   *********************************************************************/
2df9d5c43   Michal Simek   fpga: xilinx: Fix...
14
  typedef enum {			/* typedef xilinx_iface */
53677ef18   Wolfgang Denk   Big white-space c...
15
16
17
18
19
20
21
  	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) */
6b2450143   Siva Durga Prasad Paladugu   fpga: xilinx: zyn...
23
  	csu_dma,		/* csu_dma interface (zynqmp) */
53677ef18   Wolfgang Denk   Big white-space c...
24
  	max_xilinx_iface_type	/* insert all new types before this */
2df9d5c43   Michal Simek   fpga: xilinx: Fix...
25
  } xilinx_iface;			/* end, typedef xilinx_iface */
c609719b8   wdenk   Initial revision
26

2df9d5c43   Michal Simek   fpga: xilinx: Fix...
27
  typedef enum {			/* typedef xilinx_family */
53677ef18   Wolfgang Denk   Big white-space c...
28
  	min_xilinx_type,	/* low range check value */
b625b9aef   Michal Simek   fpga: spartan2: A...
29
  	xilinx_spartan2,	/* Spartan-II Family */
2df9d5c43   Michal Simek   fpga: xilinx: Fix...
30
  	xilinx_virtexE,		/* Virtex-E Family */
d9071ce0a   Michal Simek   fpga: virtex2: Av...
31
  	xilinx_virtex2,		/* Virtex2 Family */
2a6e3869f   Michal Simek   fpga: spartan3: A...
32
  	xilinx_spartan3,	/* Spartan-III Family */
d5dae85f2   Michal Simek   fpga: zynq: Add s...
33
  	xilinx_zynq,		/* Zynq Family */
6b2450143   Siva Durga Prasad Paladugu   fpga: xilinx: zyn...
34
  	xilinx_zynqmp,		/* ZynqMP Family */
53677ef18   Wolfgang Denk   Big white-space c...
35
  	max_xilinx_type		/* insert all new types before this */
2df9d5c43   Michal Simek   fpga: xilinx: Fix...
36
  } xilinx_family;		/* end, typedef xilinx_family */
c609719b8   wdenk   Initial revision
37

f8c1be981   Michal Simek   fpga: xilinx: Avo...
38
  typedef struct {		/* typedef xilinx_desc */
2df9d5c43   Michal Simek   fpga: xilinx: Fix...
39
40
  	xilinx_family family;	/* part type */
  	xilinx_iface iface;	/* interface type */
53677ef18   Wolfgang Denk   Big white-space c...
41
42
43
  	size_t size;		/* bytes of data part can accept */
  	void *iface_fns;	/* interface function table */
  	int cookie;		/* implementation specific cookie */
14cfc4f37   Michal Simek   fpga: xilinx: Sim...
44
  	struct xilinx_fpga_op *operations; /* operations */
6631db477   Michal Simek   fpga: Check devic...
45
  	char *name;		/* device name in bitstream */
f8c1be981   Michal Simek   fpga: xilinx: Avo...
46
  } xilinx_desc;			/* end, typedef xilinx_desc */
c609719b8   wdenk   Initial revision
47

14cfc4f37   Michal Simek   fpga: xilinx: Sim...
48
  struct xilinx_fpga_op {
7a78bd267   Michal Simek   fpga: Define bits...
49
  	int (*load)(xilinx_desc *, const void *, size_t, bitstream_type);
1a897668a   Siva Durga Prasad Paladugu   fpga: Added suppo...
50
  	int (*loadfs)(xilinx_desc *, const void *, size_t, fpga_fs_info *);
14cfc4f37   Michal Simek   fpga: xilinx: Sim...
51
52
53
  	int (*dump)(xilinx_desc *, const void *, size_t);
  	int (*info)(xilinx_desc *);
  };
c609719b8   wdenk   Initial revision
54
55
  /* Generic Xilinx Functions
   *********************************************************************/
7a78bd267   Michal Simek   fpga: Define bits...
56
57
  int xilinx_load(xilinx_desc *desc, const void *image, size_t size,
  		bitstream_type bstype);
f8c1be981   Michal Simek   fpga: xilinx: Avo...
58
59
  int xilinx_dump(xilinx_desc *desc, const void *buf, size_t bsize);
  int xilinx_info(xilinx_desc *desc);
1a897668a   Siva Durga Prasad Paladugu   fpga: Added suppo...
60
61
  int xilinx_loadfs(xilinx_desc *desc, const void *buf, size_t bsize,
  		  fpga_fs_info *fpga_fsinfo);
c609719b8   wdenk   Initial revision
62
63
64
  
  /* Board specific implementation specific function types
   *********************************************************************/
2df9d5c43   Michal Simek   fpga: xilinx: Fix...
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  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);
c609719b8   wdenk   Initial revision
79
80
  
  #endif  /* _XILINX_H_ */