xilinx.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * (C) Copyright 2002
  3. * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. *
  23. */
  24. #include <fpga.h>
  25. #ifndef _XILINX_H_
  26. #define _XILINX_H_
  27. /* Xilinx Model definitions
  28. *********************************************************************/
  29. #define CFG_SPARTAN2 CFG_FPGA_DEV( 0x1 )
  30. #define CFG_VIRTEX_E CFG_FPGA_DEV( 0x2 )
  31. #define CFG_VIRTEX2 CFG_FPGA_DEV( 0x4 )
  32. #define CFG_XILINX_SPARTAN2 (CFG_FPGA_XILINX | CFG_SPARTAN2)
  33. #define CFG_XILINX_VIRTEX_E (CFG_FPGA_XILINX | CFG_VIRTEX_E)
  34. #define CFG_XILINX_VIRTEX2 (CFG_FPGA_XILINX | CFG_VIRTEX2)
  35. /* XXX - Add new models here */
  36. /* Xilinx Interface definitions
  37. *********************************************************************/
  38. #define CFG_XILINX_IF_SS CFG_FPGA_IF( 0x1 ) /* slave serial */
  39. #define CFG_XILINX_IF_MS CFG_FPGA_IF( 0x2 ) /* master serial */
  40. #define CFG_XILINX_IF_SP CFG_FPGA_IF( 0x4 ) /* slave parallel */
  41. #define CFG_XILINX_IF_JTAG CFG_FPGA_IF( 0x8 ) /* jtag */
  42. #define CFG_XILINX_IF_MSM CFG_FPGA_IF( 0x10 ) /* master selectmap */
  43. #define CFG_XILINX_IF_SSM CFG_FPGA_IF( 0x20 ) /* slave selectmap */
  44. /* Xilinx types
  45. *********************************************************************/
  46. typedef enum { /* typedef Xilinx_iface */
  47. min_xilinx_iface_type, /* low range check value */
  48. slave_serial, /* serial data and external clock */
  49. master_serial, /* serial data w/ internal clock (not used) */
  50. slave_parallel, /* parallel data w/ external latch */
  51. jtag_mode, /* jtag/tap serial (not used ) */
  52. master_selectmap, /* master SelectMap (virtex2) */
  53. slave_selectmap, /* slave SelectMap (virtex2) */
  54. max_xilinx_iface_type /* insert all new types before this */
  55. } Xilinx_iface; /* end, typedef Xilinx_iface */
  56. typedef enum { /* typedef Xilinx_Family */
  57. min_xilinx_type, /* low range check value */
  58. Xilinx_Spartan2, /* Spartan-II Family */
  59. Xilinx_VirtexE, /* Virtex-E Family */
  60. Xilinx_Virtex2, /* Virtex2 Family */
  61. max_xilinx_type /* insert all new types before this */
  62. } Xilinx_Family; /* end, typedef Xilinx_Family */
  63. typedef struct { /* typedef Xilinx_desc */
  64. Xilinx_Family family; /* part type */
  65. Xilinx_iface iface; /* interface type */
  66. size_t size; /* bytes of data part can accept */
  67. void * iface_fns; /* interface function table */
  68. int cookie; /* implementation specific cookie */
  69. } Xilinx_desc; /* end, typedef Xilinx_desc */
  70. /* Generic Xilinx Functions
  71. *********************************************************************/
  72. extern int xilinx_load( Xilinx_desc *desc, void *image, size_t size );
  73. extern int xilinx_dump( Xilinx_desc *desc, void *buf, size_t bsize );
  74. extern int xilinx_info( Xilinx_desc *desc );
  75. extern int xilinx_reloc( Xilinx_desc *desc, ulong reloc_offset );
  76. /* Board specific implementation specific function types
  77. *********************************************************************/
  78. typedef int (*Xilinx_pgm_fn)( int assert_pgm, int flush, int cookie );
  79. typedef int (*Xilinx_init_fn)( int cookie );
  80. typedef int (*Xilinx_err_fn)( int cookie );
  81. typedef int (*Xilinx_done_fn)( int cookie );
  82. typedef int (*Xilinx_clk_fn)( int assert_clk, int flush, int cookie );
  83. typedef int (*Xilinx_cs_fn)( int assert_cs, int flush, int cookie );
  84. typedef int (*Xilinx_wr_fn)( int assert_write, int flush, int cookie );
  85. typedef int (*Xilinx_rdata_fn)( unsigned char *data, int cookie );
  86. typedef int (*Xilinx_wdata_fn)( unsigned char data, int flush, int cookie );
  87. typedef int (*Xilinx_busy_fn)( int cookie );
  88. typedef int (*Xilinx_abort_fn)( int cookie );
  89. typedef int (*Xilinx_pre_fn)( int cookie );
  90. typedef int (*Xilinx_post_fn)( int cookie );
  91. #endif /* _XILINX_H_ */