spartan2.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * (C) Copyright 2002
  3. * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _SPARTAN2_H_
  8. #define _SPARTAN2_H_
  9. #include <xilinx.h>
  10. /* Slave Parallel Implementation function table */
  11. typedef struct {
  12. xilinx_pre_fn pre;
  13. xilinx_pgm_fn pgm;
  14. xilinx_init_fn init;
  15. xilinx_err_fn err;
  16. xilinx_done_fn done;
  17. xilinx_clk_fn clk;
  18. xilinx_cs_fn cs;
  19. xilinx_wr_fn wr;
  20. xilinx_rdata_fn rdata;
  21. xilinx_wdata_fn wdata;
  22. xilinx_busy_fn busy;
  23. xilinx_abort_fn abort;
  24. xilinx_post_fn post;
  25. } xilinx_spartan2_slave_parallel_fns;
  26. /* Slave Serial Implementation function table */
  27. typedef struct {
  28. xilinx_pre_fn pre;
  29. xilinx_pgm_fn pgm;
  30. xilinx_clk_fn clk;
  31. xilinx_init_fn init;
  32. xilinx_done_fn done;
  33. xilinx_wr_fn wr;
  34. xilinx_post_fn post;
  35. } xilinx_spartan2_slave_serial_fns;
  36. #if defined(CONFIG_FPGA_SPARTAN2)
  37. extern struct xilinx_fpga_op spartan2_op;
  38. # define FPGA_SPARTAN2_OPS &spartan2_op
  39. #else
  40. # define FPGA_SPARTAN2_OPS NULL
  41. #endif
  42. /* Device Image Sizes
  43. *********************************************************************/
  44. /* Spartan-II (2.5V) */
  45. #define XILINX_XC2S15_SIZE 197728/8
  46. #define XILINX_XC2S30_SIZE 336800/8
  47. #define XILINX_XC2S50_SIZE 559232/8
  48. #define XILINX_XC2S100_SIZE 781248/8
  49. #define XILINX_XC2S150_SIZE 1040128/8
  50. #define XILINX_XC2S200_SIZE 1335872/8
  51. /* Spartan-IIE (1.8V) */
  52. #define XILINX_XC2S50E_SIZE 630048/8
  53. #define XILINX_XC2S100E_SIZE 863840/8
  54. #define XILINX_XC2S150E_SIZE 1134496/8
  55. #define XILINX_XC2S200E_SIZE 1442016/8
  56. #define XILINX_XC2S300E_SIZE 1875648/8
  57. /* Descriptor Macros
  58. *********************************************************************/
  59. /* Spartan-II devices */
  60. #define XILINX_XC2S15_DESC(iface, fn_table, cookie) \
  61. { xilinx_spartan2, iface, XILINX_XC2S15_SIZE, fn_table, cookie, \
  62. FPGA_SPARTAN2_OPS }
  63. #define XILINX_XC2S30_DESC(iface, fn_table, cookie) \
  64. { xilinx_spartan2, iface, XILINX_XC2S30_SIZE, fn_table, cookie, \
  65. FPGA_SPARTAN2_OPS }
  66. #define XILINX_XC2S50_DESC(iface, fn_table, cookie) \
  67. { xilinx_spartan2, iface, XILINX_XC2S50_SIZE, fn_table, cookie, \
  68. FPGA_SPARTAN2_OPS }
  69. #define XILINX_XC2S100_DESC(iface, fn_table, cookie) \
  70. { xilinx_spartan2, iface, XILINX_XC2S100_SIZE, fn_table, cookie, \
  71. FPGA_SPARTAN2_OPS }
  72. #define XILINX_XC2S150_DESC(iface, fn_table, cookie) \
  73. { xilinx_spartan2, iface, XILINX_XC2S150_SIZE, fn_table, cookie, \
  74. FPGA_SPARTAN2_OPS }
  75. #define XILINX_XC2S200_DESC(iface, fn_table, cookie) \
  76. { xilinx_spartan2, iface, XILINX_XC2S200_SIZE, fn_table, cookie, \
  77. FPGA_SPARTAN2_OPS }
  78. #define XILINX_XC2S50E_DESC(iface, fn_table, cookie) \
  79. { xilinx_spartan2, iface, XILINX_XC2S50E_SIZE, fn_table, cookie, \
  80. FPGA_SPARTAN2_OPS }
  81. #define XILINX_XC2S100E_DESC(iface, fn_table, cookie) \
  82. { xilinx_spartan2, iface, XILINX_XC2S100E_SIZE, fn_table, cookie, \
  83. FPGA_SPARTAN2_OPS }
  84. #define XILINX_XC2S150E_DESC(iface, fn_table, cookie) \
  85. { xilinx_spartan2, iface, XILINX_XC2S150E_SIZE, fn_table, cookie, \
  86. FPGA_SPARTAN2_OPS }
  87. #define XILINX_XC2S200E_DESC(iface, fn_table, cookie) \
  88. { xilinx_spartan2, iface, XILINX_XC2S200E_SIZE, fn_table, cookie, \
  89. FPGA_SPARTAN2_OPS }
  90. #define XILINX_XC2S300E_DESC(iface, fn_table, cookie) \
  91. { xilinx_spartan2, iface, XILINX_XC2S300E_SIZE, fn_table, cookie, \
  92. FPGA_SPARTAN2_OPS }
  93. #endif /* _SPARTAN2_H_ */