spartan2.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. #ifndef _SPARTAN2_H_
  25. #define _SPARTAN2_H_
  26. #include <xilinx.h>
  27. extern int Spartan2_load( Xilinx_desc *desc, void *image, size_t size );
  28. extern int Spartan2_dump( Xilinx_desc *desc, void *buf, size_t bsize );
  29. extern int Spartan2_info( Xilinx_desc *desc );
  30. /* Slave Parallel Implementation function table */
  31. typedef struct {
  32. Xilinx_pre_fn pre;
  33. Xilinx_pgm_fn pgm;
  34. Xilinx_init_fn init;
  35. Xilinx_err_fn err;
  36. Xilinx_done_fn done;
  37. Xilinx_clk_fn clk;
  38. Xilinx_cs_fn cs;
  39. Xilinx_wr_fn wr;
  40. Xilinx_rdata_fn rdata;
  41. Xilinx_wdata_fn wdata;
  42. Xilinx_busy_fn busy;
  43. Xilinx_abort_fn abort;
  44. Xilinx_post_fn post;
  45. } Xilinx_Spartan2_Slave_Parallel_fns;
  46. /* Slave Serial Implementation function table */
  47. typedef struct {
  48. Xilinx_pre_fn pre;
  49. Xilinx_pgm_fn pgm;
  50. Xilinx_clk_fn clk;
  51. Xilinx_init_fn init;
  52. Xilinx_done_fn done;
  53. Xilinx_wr_fn wr;
  54. Xilinx_post_fn post;
  55. } Xilinx_Spartan2_Slave_Serial_fns;
  56. /* Device Image Sizes
  57. *********************************************************************/
  58. /* Spartan-II (2.5V) */
  59. #define XILINX_XC2S15_SIZE 197728/8
  60. #define XILINX_XC2S30_SIZE 336800/8
  61. #define XILINX_XC2S50_SIZE 559232/8
  62. #define XILINX_XC2S100_SIZE 781248/8
  63. #define XILINX_XC2S150_SIZE 1040128/8
  64. #define XILINX_XC2S200_SIZE 1335872/8
  65. /* Spartan-IIE (1.8V) */
  66. #define XILINX_XC2S50E_SIZE 630048/8
  67. #define XILINX_XC2S100E_SIZE 863840/8
  68. #define XILINX_XC2S150E_SIZE 1134496/8
  69. #define XILINX_XC2S200E_SIZE 1442016/8
  70. #define XILINX_XC2S300E_SIZE 1875648/8
  71. /* Descriptor Macros
  72. *********************************************************************/
  73. /* Spartan-II devices */
  74. #define XILINX_XC2S15_DESC(iface, fn_table, cookie) \
  75. { Xilinx_Spartan2, iface, XILINX_XC2S15_SIZE, fn_table, cookie }
  76. #define XILINX_XC2S30_DESC(iface, fn_table, cookie) \
  77. { Xilinx_Spartan2, iface, XILINX_XC2S30_SIZE, fn_table, cookie }
  78. #define XILINX_XC2S50_DESC(iface, fn_table, cookie) \
  79. { Xilinx_Spartan2, iface, XILINX_XC2S50_SIZE, fn_table, cookie }
  80. #define XILINX_XC2S100_DESC(iface, fn_table, cookie) \
  81. { Xilinx_Spartan2, iface, XILINX_XC2S100_SIZE, fn_table, cookie }
  82. #define XILINX_XC2S150_DESC(iface, fn_table, cookie) \
  83. { Xilinx_Spartan2, iface, XILINX_XC2S150_SIZE, fn_table, cookie }
  84. #define XILINX_XC2S200_DESC(iface, fn_table, cookie) \
  85. { Xilinx_Spartan2, iface, XILINX_XC2S200_SIZE, fn_table, cookie }
  86. #define XILINX_XC2S50E_DESC(iface, fn_table, cookie) \
  87. { Xilinx_Spartan2, iface, XILINX_XC2S50E_SIZE, fn_table, cookie }
  88. #define XILINX_XC2S100E_DESC(iface, fn_table, cookie) \
  89. { Xilinx_Spartan2, iface, XILINX_XC2S100E_SIZE, fn_table, cookie }
  90. #define XILINX_XC2S150E_DESC(iface, fn_table, cookie) \
  91. { Xilinx_Spartan2, iface, XILINX_XC2S150E_SIZE, fn_table, cookie }
  92. #define XILINX_XC2S200E_DESC(iface, fn_table, cookie) \
  93. { Xilinx_Spartan2, iface, XILINX_XC2S200E_SIZE, fn_table, cookie }
  94. #define XILINX_XC2S300E_DESC(iface, fn_table, cookie) \
  95. { Xilinx_Spartan2, iface, XILINX_XC2S300E_SIZE, fn_table, cookie }
  96. #endif /* _SPARTAN2_H_ */