You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

282 lines
8.2KB

  1. -- 'Bucket Brigade' FIFO
  2. -- 16 deep
  3. -- 8-bit data
  4. --
  5. -- Version : 1.10
  6. -- Version Date : 3rd December 2003
  7. -- Reason : '--translate' directives changed to '--synthesis translate' directives
  8. --
  9. -- Version : 1.00
  10. -- Version Date : 14th October 2002
  11. --
  12. -- Start of design entry : 14th October 2002
  13. --
  14. -- Ken Chapman
  15. -- Xilinx Ltd
  16. -- Benchmark House
  17. -- 203 Brooklands Road
  18. -- Weybridge
  19. -- Surrey KT13 ORH
  20. -- United Kingdom
  21. --
  22. -- chapman@xilinx.com
  23. --
  24. ------------------------------------------------------------------------------------
  25. --
  26. -- NOTICE:
  27. --
  28. -- Copyright Xilinx, Inc. 2002. This code may be contain portions patented by other
  29. -- third parties. By providing this core as one possible implementation of a standard,
  30. -- Xilinx is making no representation that the provided implementation of this standard
  31. -- is free from any claims of infringement by any third party. Xilinx expressly
  32. -- disclaims any warranty with respect to the adequacy of the implementation, including
  33. -- but not limited to any warranty or representation that the implementation is free
  34. -- from claims of any third party. Futhermore, Xilinx is providing this core as a
  35. -- courtesy to you and suggests that you contact all third parties to obtain the
  36. -- necessary rights to use this implementation.
  37. --
  38. ------------------------------------------------------------------------------------
  39. --
  40. -- Library declarations
  41. --
  42. -- The Unisim Library is used to define Xilinx primitives. It is also used during
  43. -- simulation. The source can be viewed at %XILINX%\vhdl\src\unisims\unisim_VCOMP.vhd
  44. --
  45. library IEEE;
  46. use IEEE.STD_LOGIC_1164.ALL;
  47. use IEEE.STD_LOGIC_ARITH.ALL;
  48. use IEEE.STD_LOGIC_UNSIGNED.ALL;
  49. library unisim;
  50. use unisim.vcomponents.all;
  51. --
  52. ------------------------------------------------------------------------------------
  53. --
  54. -- Main Entity for BBFIFO_16x8
  55. --
  56. entity bbfifo_16x8 is
  57. Port ( data_in : in std_logic_vector(7 downto 0);
  58. data_out : out std_logic_vector(7 downto 0);
  59. reset : in std_logic;
  60. write : in std_logic;
  61. read : in std_logic;
  62. full : out std_logic;
  63. half_full : out std_logic;
  64. data_present : out std_logic;
  65. clk : in std_logic);
  66. end bbfifo_16x8;
  67. --
  68. ------------------------------------------------------------------------------------
  69. --
  70. -- Start of Main Architecture for BBFIFO_16x8
  71. --
  72. architecture low_level_definition of bbfifo_16x8 is
  73. --
  74. ------------------------------------------------------------------------------------
  75. --
  76. ------------------------------------------------------------------------------------
  77. --
  78. -- Signals used in BBFIFO_16x8
  79. --
  80. ------------------------------------------------------------------------------------
  81. --
  82. signal pointer : std_logic_vector(3 downto 0);
  83. signal next_count : std_logic_vector(3 downto 0);
  84. signal half_count : std_logic_vector(3 downto 0);
  85. signal count_carry : std_logic_vector(2 downto 0);
  86. signal pointer_zero : std_logic;
  87. signal pointer_full : std_logic;
  88. signal decode_data_present : std_logic;
  89. signal data_present_int : std_logic;
  90. signal valid_write : std_logic;
  91. --
  92. --
  93. ------------------------------------------------------------------------------------
  94. --
  95. -- Attributes to define LUT contents during implementation
  96. -- The information is repeated in the generic map for functional simulation--
  97. --
  98. ------------------------------------------------------------------------------------
  99. --
  100. attribute INIT : string;
  101. attribute INIT of zero_lut : label is "0001";
  102. attribute INIT of full_lut : label is "8000";
  103. attribute INIT of dp_lut : label is "BFA0";
  104. attribute INIT of valid_lut : label is "C4";
  105. --
  106. ------------------------------------------------------------------------------------
  107. --
  108. -- Start of BBFIFO_16x8 circuit description
  109. --
  110. ------------------------------------------------------------------------------------
  111. --
  112. begin
  113. -- SRL16E data storage
  114. data_width_loop: for i in 0 to 7 generate
  115. --
  116. attribute INIT : string;
  117. attribute INIT of data_srl : label is "0000";
  118. --
  119. begin
  120. data_srl: SRL16E
  121. --synthesis translate_off
  122. generic map (INIT => X"0000")
  123. --synthesis translate_on
  124. port map( D => data_in(i),
  125. CE => valid_write,
  126. CLK => clk,
  127. A0 => pointer(0),
  128. A1 => pointer(1),
  129. A2 => pointer(2),
  130. A3 => pointer(3),
  131. Q => data_out(i) );
  132. end generate data_width_loop;
  133. -- 4-bit counter to act as data pointer
  134. -- Counter is clock enabled by 'data_present'
  135. -- Counter will be reset when 'reset' is active
  136. -- Counter will increment when 'valid_write' is active
  137. count_width_loop: for i in 0 to 3 generate
  138. --
  139. attribute INIT : string;
  140. attribute INIT of count_lut : label is "6606";
  141. --
  142. begin
  143. register_bit: FDRE
  144. port map ( D => next_count(i),
  145. Q => pointer(i),
  146. CE => data_present_int,
  147. R => reset,
  148. C => clk);
  149. count_lut: LUT4
  150. --synthesis translate_off
  151. generic map (INIT => X"6606")
  152. --synthesis translate_on
  153. port map( I0 => pointer(i),
  154. I1 => read,
  155. I2 => pointer_zero,
  156. I3 => write,
  157. O => half_count(i));
  158. lsb_count: if i=0 generate
  159. begin
  160. count_muxcy: MUXCY
  161. port map( DI => pointer(i),
  162. CI => valid_write,
  163. S => half_count(i),
  164. O => count_carry(i));
  165. count_xor: XORCY
  166. port map( LI => half_count(i),
  167. CI => valid_write,
  168. O => next_count(i));
  169. end generate lsb_count;
  170. mid_count: if i>0 and i<3 generate
  171. begin
  172. count_muxcy: MUXCY
  173. port map( DI => pointer(i),
  174. CI => count_carry(i-1),
  175. S => half_count(i),
  176. O => count_carry(i));
  177. count_xor: XORCY
  178. port map( LI => half_count(i),
  179. CI => count_carry(i-1),
  180. O => next_count(i));
  181. end generate mid_count;
  182. upper_count: if i=3 generate
  183. begin
  184. count_xor: XORCY
  185. port map( LI => half_count(i),
  186. CI => count_carry(i-1),
  187. O => next_count(i));
  188. end generate upper_count;
  189. end generate count_width_loop;
  190. -- Detect when pointer is zero and maximum
  191. zero_lut: LUT4
  192. --synthesis translate_off
  193. generic map (INIT => X"0001")
  194. --synthesis translate_on
  195. port map( I0 => pointer(0),
  196. I1 => pointer(1),
  197. I2 => pointer(2),
  198. I3 => pointer(3),
  199. O => pointer_zero );
  200. full_lut: LUT4
  201. --synthesis translate_off
  202. generic map (INIT => X"8000")
  203. --synthesis translate_on
  204. port map( I0 => pointer(0),
  205. I1 => pointer(1),
  206. I2 => pointer(2),
  207. I3 => pointer(3),
  208. O => pointer_full );
  209. -- Data Present status
  210. dp_lut: LUT4
  211. --synthesis translate_off
  212. generic map (INIT => X"BFA0")
  213. --synthesis translate_on
  214. port map( I0 => write,
  215. I1 => read,
  216. I2 => pointer_zero,
  217. I3 => data_present_int,
  218. O => decode_data_present );
  219. dp_flop: FDR
  220. port map ( D => decode_data_present,
  221. Q => data_present_int,
  222. R => reset,
  223. C => clk);
  224. -- Valid write signal
  225. valid_lut: LUT3
  226. --synthesis translate_off
  227. generic map (INIT => X"C4")
  228. --synthesis translate_on
  229. port map( I0 => pointer_full,
  230. I1 => write,
  231. I2 => read,
  232. O => valid_write );
  233. -- assign internal signals to outputs
  234. full <= pointer_full;
  235. half_full <= pointer(3);
  236. data_present <= data_present_int;
  237. end low_level_definition;
  238. ------------------------------------------------------------------------------------
  239. --
  240. -- END OF FILE BBFIFO_16x8.VHD
  241. --
  242. ------------------------------------------------------------------------------------