xilinx.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * (C) Copyright 2002
  3. * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <fpga.h>
  8. #ifndef _XILINX_H_
  9. #define _XILINX_H_
  10. /* Xilinx types
  11. *********************************************************************/
  12. typedef enum { /* typedef xilinx_iface */
  13. min_xilinx_iface_type, /* low range check value */
  14. slave_serial, /* serial data and external clock */
  15. master_serial, /* serial data w/ internal clock (not used) */
  16. slave_parallel, /* parallel data w/ external latch */
  17. jtag_mode, /* jtag/tap serial (not used ) */
  18. master_selectmap, /* master SelectMap (virtex2) */
  19. slave_selectmap, /* slave SelectMap (virtex2) */
  20. devcfg, /* devcfg interface (zynq) */
  21. csu_dma, /* csu_dma interface (zynqmp) */
  22. max_xilinx_iface_type /* insert all new types before this */
  23. } xilinx_iface; /* end, typedef xilinx_iface */
  24. typedef enum { /* typedef xilinx_family */
  25. min_xilinx_type, /* low range check value */
  26. xilinx_spartan2, /* Spartan-II Family */
  27. xilinx_virtexE, /* Virtex-E Family */
  28. xilinx_virtex2, /* Virtex2 Family */
  29. xilinx_spartan3, /* Spartan-III Family */
  30. xilinx_zynq, /* Zynq Family */
  31. xilinx_zynqmp, /* ZynqMP Family */
  32. max_xilinx_type /* insert all new types before this */
  33. } xilinx_family; /* end, typedef xilinx_family */
  34. typedef struct { /* typedef xilinx_desc */
  35. xilinx_family family; /* part type */
  36. xilinx_iface iface; /* interface type */
  37. size_t size; /* bytes of data part can accept */
  38. void *iface_fns; /* interface function table */
  39. int cookie; /* implementation specific cookie */
  40. struct xilinx_fpga_op *operations; /* operations */
  41. char *name; /* device name in bitstream */
  42. } xilinx_desc; /* end, typedef xilinx_desc */
  43. struct xilinx_fpga_op {
  44. int (*load)(xilinx_desc *, const void *, size_t, bitstream_type);
  45. int (*loadfs)(xilinx_desc *, const void *, size_t, fpga_fs_info *);
  46. int (*dump)(xilinx_desc *, const void *, size_t);
  47. int (*info)(xilinx_desc *);
  48. };
  49. /* Generic Xilinx Functions
  50. *********************************************************************/
  51. int xilinx_load(xilinx_desc *desc, const void *image, size_t size,
  52. bitstream_type bstype);
  53. int xilinx_dump(xilinx_desc *desc, const void *buf, size_t bsize);
  54. int xilinx_info(xilinx_desc *desc);
  55. int xilinx_loadfs(xilinx_desc *desc, const void *buf, size_t bsize,
  56. fpga_fs_info *fpga_fsinfo);
  57. /* Board specific implementation specific function types
  58. *********************************************************************/
  59. typedef int (*xilinx_pgm_fn)(int assert_pgm, int flush, int cookie);
  60. typedef int (*xilinx_init_fn)(int cookie);
  61. typedef int (*xilinx_err_fn)(int cookie);
  62. typedef int (*xilinx_done_fn)(int cookie);
  63. typedef int (*xilinx_clk_fn)(int assert_clk, int flush, int cookie);
  64. typedef int (*xilinx_cs_fn)(int assert_cs, int flush, int cookie);
  65. typedef int (*xilinx_wr_fn)(int assert_write, int flush, int cookie);
  66. typedef int (*xilinx_rdata_fn)(unsigned char *data, int cookie);
  67. typedef int (*xilinx_wdata_fn)(unsigned char data, int flush, int cookie);
  68. typedef int (*xilinx_busy_fn)(int cookie);
  69. typedef int (*xilinx_abort_fn)(int cookie);
  70. typedef int (*xilinx_pre_fn)(int cookie);
  71. typedef int (*xilinx_post_fn)(int cookie);
  72. typedef int (*xilinx_bwr_fn)(void *buf, size_t len, int flush, int cookie);
  73. #endif /* _XILINX_H_ */