1 | --------------------------------------------------------------------------------- |
---|
2 | -- Company: |
---|
3 | -- Engineer: KIEGAING EMMANUEL GEL EN 5 |
---|
4 | -- |
---|
5 | -- Create Date: 03:56:34 05/06/2011 |
---|
6 | -- Design Name: |
---|
7 | -- Module Name: Sheduler - Behavioral |
---|
8 | -- Project Name: |
---|
9 | -- Target Devices: |
---|
10 | -- Tool versions: |
---|
11 | -- Description: Module de l'ordonnanceur du switch crossbar |
---|
12 | -- l'algorithme utilisée est le DPA (diagonal propagation arbiter) |
---|
13 | -- |
---|
14 | -- Dependencies: |
---|
15 | -- |
---|
16 | -- Revision: |
---|
17 | -- Revision 0.01 - File Created |
---|
18 | -- Additional Comments: |
---|
19 | -- |
---|
20 | ---------------------------------------------------------------------------------- |
---|
21 | library IEEE; |
---|
22 | use IEEE.STD_LOGIC_1164.ALL; |
---|
23 | use IEEE.STD_LOGIC_ARITH.ALL; |
---|
24 | use IEEE.STD_LOGIC_UNSIGNED.ALL; |
---|
25 | --use Work.Sheduler_package.all; |
---|
26 | |
---|
27 | ---- Uncomment the following library declaration if instantiating |
---|
28 | ---- any Xilinx primitives in this code. |
---|
29 | --library UNISIM; |
---|
30 | --use UNISIM.VComponents.all; |
---|
31 | entity Scheduler8_8 is |
---|
32 | Port ( Req : in STD_LOGIC_VECTOR (64 downto 1); |
---|
33 | Fifo_full : in STD_LOGIC_VECTOR (8 downto 1); |
---|
34 | clk : in STD_LOGIC; |
---|
35 | reset : in STD_LOGIC; |
---|
36 | priority_rotation : in STD_LOGIC_VECTOR (8 downto 1); |
---|
37 | port_grant : out STD_LOGIC_VECTOR (64 downto 1)); |
---|
38 | end Scheduler8_8; |
---|
39 | |
---|
40 | architecture Behavioral of Scheduler8_8 is |
---|
41 | --Declaration du types |
---|
42 | --tableau de signaux de connexion des cellules arbitres |
---|
43 | TYPE C_Bar_Signal_Array IS ARRAY(15 downto 1) of STD_LOGIC_VECTOR(8 downto 1); |
---|
44 | -- declaration du composant cellule d'arbitrage |
---|
45 | Component Arbiter |
---|
46 | PORT (P, Fifo_full,Request, West,North : in STD_LOGIC; |
---|
47 | Grant,East,South : out STD_LOGIC ); |
---|
48 | End Component;--Signaux de connexion des cellues |
---|
49 | Constant NB_IO : positive:=8; --le nombre de ports d'entrée/sortie |
---|
50 | constant NB_IO2 :positive:=NB_IO**2; -- le carré du nombre de ports d'E/S |
---|
51 | SIGNAL south_2_north : C_Bar_Signal_Array; -- connexion south north |
---|
52 | SIGNAL east_2_west : C_Bar_Signal_Array; -- connexion east west |
---|
53 | SIGNAL Signal_mask : C_Bar_Signal_Array;-- connexion des masques de priorité |
---|
54 | SIGNAL Signal_grant : C_Bar_Signal_Array;-- connexion des signaux de validation |
---|
55 | Signal Fifo_out_full : STD_LOGIC_VECTOR (NB_IO downto 1); |
---|
56 | SIGNAL Signal_priority : STD_LOGIC_VECTOR (15 DOWNTO 1);--signal pour la connection des vecteur de priorité |
---|
57 | SIGNAL High : std_logic;--niveau pour les cellules des extremités nord et ouest |
---|
58 | signal grant_latch : std_logic_vector(NB_IO2 downto 1); |
---|
59 | signal priority_rotation_en : std_logic; |
---|
60 | signal Grant,request,req_grant,Grant_bak : std_logic_vector(NB_IO2 downto 1):=(others=>'0'); |
---|
61 | signal Mreq : std_logic_vector(NB_IO2 downto 1):=(others=>'1'); |
---|
62 | begin |
---|
63 | |
---|
64 | --validation de la rotation de priorité lorsque aucun port n'emet |
---|
65 | req_grant<=(req and grant ); |
---|
66 | priority_rotation_en <= '1' when unsigned(priority_rotation) = 2**NB_IO-1 else '0'; |
---|
67 | request<=req and mreq; |
---|
68 | --latch servant qui memorise le signal grant pendant a transmission |
---|
69 | grant_latch_process : process(clk) |
---|
70 | begin |
---|
71 | if rising_edge(clk) then |
---|
72 | if reset = '1' then |
---|
73 | grant_latch <= (others => '0'); |
---|
74 | Fifo_out_full<=(others => '0'); |
---|
75 | elsif priority_rotation_en = '1' or unsigned(req_grant)=0 then |
---|
76 | grant_latch <= Grant; |
---|
77 | Fifo_out_full<=fifo_full; |
---|
78 | else |
---|
79 | grant_latch <= Grant; |
---|
80 | Fifo_out_full<=fifo_full; |
---|
81 | end if; |
---|
82 | end if; |
---|
83 | end process; |
---|
84 | |
---|
85 | def_mreq: process(grant_latch,fifo_full) |
---|
86 | |
---|
87 | variable t:std_logic_vector(NB_IO2 downto 1):=(others=>'0'); |
---|
88 | begin |
---|
89 | |
---|
90 | |
---|
91 | for i in 0 to NB_IO2-1 loop |
---|
92 | t(i+1):='0'; |
---|
93 | --sur le front montant de fifo_full sauver l'état Grant courant |
---|
94 | if fifo_full(i mod NB_IO+1)='1' and fifo_out_full(i mod NB_IO+1)='0' then |
---|
95 | Grant_bak(i+1)<= grant_latch(i+1); |
---|
96 | elsif fifo_full(i mod NB_IO+1)='0' and fifo_out_full(i mod NB_IO+1)='0' then |
---|
97 | Grant_bak(i+1)<='0'; |
---|
98 | end if; |
---|
99 | for j in 0 to NB_IO-1 loop |
---|
100 | t(i+1):=t(i+1) or grant_latch(j*NB_IO+1+i mod NB_IO) or fifo_out_full(i mod NB_IO+1); |
---|
101 | |
---|
102 | end loop; |
---|
103 | mreq(i+1)<=not(t(i+1) ) or grant_latch(i+1)or grant_bak(i+1); |
---|
104 | end loop; |
---|
105 | end process; |
---|
106 | port_grant <= grant; |
---|
107 | Grant(1) <= Signal_grant(1)(1) or Signal_grant(9)(1); -- Grant(1,1) |
---|
108 | Grant(2) <= Signal_grant(2)(2) or Signal_grant(10)(2); -- Grant(1,2) |
---|
109 | Grant(3) <= Signal_grant(3)(3) or Signal_grant(11)(3); -- Grant(1,3) |
---|
110 | Grant(4) <= Signal_grant(4)(4) or Signal_grant(12)(4); -- Grant(1,4) |
---|
111 | Grant(5) <= Signal_grant(5)(5) or Signal_grant(13)(5); -- Grant(1,5) |
---|
112 | Grant(6) <= Signal_grant(6)(6) or Signal_grant(14)(6); -- Grant(1,6) |
---|
113 | Grant(7) <= Signal_grant(7)(7) or Signal_grant(15)(7); -- Grant(1,7) |
---|
114 | Grant(8) <= Signal_grant(8)(8) ; -- Grant(1,8) |
---|
115 | Grant(9) <= Signal_grant(2)(1) or Signal_grant(10)(1); -- Grant(2,1) |
---|
116 | Grant(10) <= Signal_grant(3)(2) or Signal_grant(11)(2); -- Grant(2,2) |
---|
117 | Grant(11) <= Signal_grant(4)(3) or Signal_grant(12)(3); -- Grant(2,3) |
---|
118 | Grant(12) <= Signal_grant(5)(4) or Signal_grant(13)(4); -- Grant(2,4) |
---|
119 | Grant(13) <= Signal_grant(6)(5) or Signal_grant(14)(5); -- Grant(2,5) |
---|
120 | Grant(14) <= Signal_grant(7)(6) or Signal_grant(15)(6); -- Grant(2,6) |
---|
121 | Grant(15) <= Signal_grant(8)(7) ; -- Grant(2,7) |
---|
122 | Grant(16) <= Signal_grant(1)(8) or Signal_grant(9)(8); -- Grant(2,8) |
---|
123 | Grant(17) <= Signal_grant(3)(1) or Signal_grant(11)(1); -- Grant(3,1) |
---|
124 | Grant(18) <= Signal_grant(4)(2) or Signal_grant(12)(2); -- Grant(3,2) |
---|
125 | Grant(19) <= Signal_grant(5)(3) or Signal_grant(13)(3); -- Grant(3,3) |
---|
126 | Grant(20) <= Signal_grant(6)(4) or Signal_grant(14)(4); -- Grant(3,4) |
---|
127 | Grant(21) <= Signal_grant(7)(5) or Signal_grant(15)(5); -- Grant(3,5) |
---|
128 | Grant(22) <= Signal_grant(8)(6) ; -- Grant(3,6) |
---|
129 | Grant(23) <= Signal_grant(1)(7) or Signal_grant(9)(7); -- Grant(3,7) |
---|
130 | Grant(24) <= Signal_grant(2)(8) or Signal_grant(10)(8); -- Grant(3,8) |
---|
131 | Grant(25) <= Signal_grant(4)(1) or Signal_grant(12)(1); -- Grant(4,1) |
---|
132 | Grant(26) <= Signal_grant(5)(2) or Signal_grant(13)(2); -- Grant(4,2) |
---|
133 | Grant(27) <= Signal_grant(6)(3) or Signal_grant(14)(3); -- Grant(4,3) |
---|
134 | Grant(28) <= Signal_grant(7)(4) or Signal_grant(15)(4); -- Grant(4,4) |
---|
135 | Grant(29) <= Signal_grant(8)(5) ; -- Grant(4,5) |
---|
136 | Grant(30) <= Signal_grant(1)(6) or Signal_grant(9)(6); -- Grant(4,6) |
---|
137 | Grant(31) <= Signal_grant(2)(7) or Signal_grant(10)(7); -- Grant(4,7) |
---|
138 | Grant(32) <= Signal_grant(3)(8) or Signal_grant(11)(8); -- Grant(4,8) |
---|
139 | Grant(33) <= Signal_grant(5)(1) or Signal_grant(13)(1); -- Grant(5,1) |
---|
140 | Grant(34) <= Signal_grant(6)(2) or Signal_grant(14)(2); -- Grant(5,2) |
---|
141 | Grant(35) <= Signal_grant(7)(3) or Signal_grant(15)(3); -- Grant(5,3) |
---|
142 | Grant(36) <= Signal_grant(8)(4) ; -- Grant(5,4) |
---|
143 | Grant(37) <= Signal_grant(1)(5) or Signal_grant(9)(5); -- Grant(5,5) |
---|
144 | Grant(38) <= Signal_grant(2)(6) or Signal_grant(10)(6); -- Grant(5,6) |
---|
145 | Grant(39) <= Signal_grant(3)(7) or Signal_grant(11)(7); -- Grant(5,7) |
---|
146 | Grant(40) <= Signal_grant(4)(8) or Signal_grant(12)(8); -- Grant(5,8) |
---|
147 | Grant(41) <= Signal_grant(6)(1) or Signal_grant(14)(1); -- Grant(6,1) |
---|
148 | Grant(42) <= Signal_grant(7)(2) or Signal_grant(15)(2); -- Grant(6,2) |
---|
149 | Grant(43) <= Signal_grant(8)(3) ; -- Grant(6,3) |
---|
150 | Grant(44) <= Signal_grant(1)(4) or Signal_grant(9)(4); -- Grant(6,4) |
---|
151 | Grant(45) <= Signal_grant(2)(5) or Signal_grant(10)(5); -- Grant(6,5) |
---|
152 | Grant(46) <= Signal_grant(3)(6) or Signal_grant(11)(6); -- Grant(6,6) |
---|
153 | Grant(47) <= Signal_grant(4)(7) or Signal_grant(12)(7); -- Grant(6,7) |
---|
154 | Grant(48) <= Signal_grant(5)(8) or Signal_grant(13)(8); -- Grant(6,8) |
---|
155 | Grant(49) <= Signal_grant(7)(1) or Signal_grant(15)(1); -- Grant(7,1) |
---|
156 | Grant(50) <= Signal_grant(8)(2) ; -- Grant(7,2) |
---|
157 | Grant(51) <= Signal_grant(1)(3) or Signal_grant(9)(3); -- Grant(7,3) |
---|
158 | Grant(52) <= Signal_grant(2)(4) or Signal_grant(10)(4); -- Grant(7,4) |
---|
159 | Grant(53) <= Signal_grant(3)(5) or Signal_grant(11)(5); -- Grant(7,5) |
---|
160 | Grant(54) <= Signal_grant(4)(6) or Signal_grant(12)(6); -- Grant(7,6) |
---|
161 | Grant(55) <= Signal_grant(5)(7) or Signal_grant(13)(7); -- Grant(7,7) |
---|
162 | Grant(56) <= Signal_grant(6)(8) or Signal_grant(14)(8); -- Grant(7,8) |
---|
163 | Grant(57) <= Signal_grant(8)(1) ; -- Grant(8,1) |
---|
164 | Grant(58) <= Signal_grant(1)(2) or Signal_grant(9)(2); -- Grant(8,2) |
---|
165 | Grant(59) <= Signal_grant(2)(3) or Signal_grant(10)(3); -- Grant(8,3) |
---|
166 | Grant(60) <= Signal_grant(3)(4) or Signal_grant(11)(4); -- Grant(8,4) |
---|
167 | Grant(61) <= Signal_grant(4)(5) or Signal_grant(12)(5); -- Grant(8,5) |
---|
168 | Grant(62) <= Signal_grant(5)(6) or Signal_grant(13)(6); -- Grant(8,6) |
---|
169 | Grant(63) <= Signal_grant(6)(7) or Signal_grant(14)(7); -- Grant(8,7) |
---|
170 | Grant(64) <= Signal_grant(7)(8) or Signal_grant(15)(8); -- Grant(8,8) |
---|
171 | High <= '1'; |
---|
172 | |
---|
173 | ----instantiations des cellules arbitres et interconnection |
---|
174 | |
---|
175 | -------------------------- Diagonale n° 1 |
---|
176 | |
---|
177 | |
---|
178 | Arbiter_1_1 : Arbiter |
---|
179 | |
---|
180 | PORT MAP (Request => Request(1), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(1), |
---|
181 | South => south_2_north(1)(1), East => east_2_west(1)(1) , Grant => Signal_grant(1)(1)); |
---|
182 | |
---|
183 | Arbiter_1_2 : Arbiter |
---|
184 | |
---|
185 | PORT MAP (Request => Request(58), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(2), |
---|
186 | South => south_2_north(1)(2), East => east_2_west(1)(2) , Grant => Signal_grant(1)(2)); |
---|
187 | |
---|
188 | Arbiter_1_3 : Arbiter |
---|
189 | |
---|
190 | PORT MAP (Request => Request(51), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(3), |
---|
191 | South => south_2_north(1)(3), East => east_2_west(1)(3) , Grant => Signal_grant(1)(3)); |
---|
192 | |
---|
193 | Arbiter_1_4 : Arbiter |
---|
194 | |
---|
195 | PORT MAP (Request => Request(44), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(4), |
---|
196 | South => south_2_north(1)(4), East => east_2_west(1)(4) , Grant => Signal_grant(1)(4)); |
---|
197 | |
---|
198 | Arbiter_1_5 : Arbiter |
---|
199 | |
---|
200 | PORT MAP (Request => Request(37), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(5), |
---|
201 | South => south_2_north(1)(5), East => east_2_west(1)(5) , Grant => Signal_grant(1)(5)); |
---|
202 | |
---|
203 | Arbiter_1_6 : Arbiter |
---|
204 | |
---|
205 | PORT MAP (Request => Request(30), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(6), |
---|
206 | South => south_2_north(1)(6), East => east_2_west(1)(6) , Grant => Signal_grant(1)(6)); |
---|
207 | |
---|
208 | Arbiter_1_7 : Arbiter |
---|
209 | |
---|
210 | PORT MAP (Request => Request(23), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(7), |
---|
211 | South => south_2_north(1)(7), East => east_2_west(1)(7) , Grant => Signal_grant(1)(7)); |
---|
212 | |
---|
213 | Arbiter_1_8 : Arbiter |
---|
214 | |
---|
215 | PORT MAP (Request => Request(16), North => High, West => High, P => Signal_priority(15), Fifo_full => Fifo_full(8), |
---|
216 | South => south_2_north(1)(8), East => east_2_west(1)(8) , Grant => Signal_grant(1)(8)); |
---|
217 | |
---|
218 | -------------------------- Diagonale n° 2 |
---|
219 | |
---|
220 | |
---|
221 | Arbiter_2_1 : Arbiter |
---|
222 | |
---|
223 | PORT MAP (Request => Request(9), North => south_2_north(1)(1), West => east_2_west(1)(8), P => Signal_priority(14), Fifo_full => Fifo_full(1), |
---|
224 | South => south_2_north(2)(1), East => east_2_west(2)(1) , Grant => Signal_grant(2)(1)); |
---|
225 | |
---|
226 | Arbiter_2_2 : Arbiter |
---|
227 | |
---|
228 | PORT MAP (Request => Request(2), North => south_2_north(1)(2), West => east_2_west(1)(1), P => Signal_priority(14), Fifo_full => Fifo_full(2), |
---|
229 | South => south_2_north(2)(2), East => east_2_west(2)(2) , Grant => Signal_grant(2)(2)); |
---|
230 | |
---|
231 | Arbiter_2_3 : Arbiter |
---|
232 | |
---|
233 | PORT MAP (Request => Request(59), North => south_2_north(1)(3), West => east_2_west(1)(2), P => Signal_priority(14), Fifo_full => Fifo_full(3), |
---|
234 | South => south_2_north(2)(3), East => east_2_west(2)(3) , Grant => Signal_grant(2)(3)); |
---|
235 | |
---|
236 | Arbiter_2_4 : Arbiter |
---|
237 | |
---|
238 | PORT MAP (Request => Request(52), North => south_2_north(1)(4), West => east_2_west(1)(3), P => Signal_priority(14), Fifo_full => Fifo_full(4), |
---|
239 | South => south_2_north(2)(4), East => east_2_west(2)(4) , Grant => Signal_grant(2)(4)); |
---|
240 | |
---|
241 | Arbiter_2_5 : Arbiter |
---|
242 | |
---|
243 | PORT MAP (Request => Request(45), North => south_2_north(1)(5), West => east_2_west(1)(4), P => Signal_priority(14), Fifo_full => Fifo_full(5), |
---|
244 | South => south_2_north(2)(5), East => east_2_west(2)(5) , Grant => Signal_grant(2)(5)); |
---|
245 | |
---|
246 | Arbiter_2_6 : Arbiter |
---|
247 | |
---|
248 | PORT MAP (Request => Request(38), North => south_2_north(1)(6), West => east_2_west(1)(5), P => Signal_priority(14), Fifo_full => Fifo_full(6), |
---|
249 | South => south_2_north(2)(6), East => east_2_west(2)(6) , Grant => Signal_grant(2)(6)); |
---|
250 | |
---|
251 | Arbiter_2_7 : Arbiter |
---|
252 | |
---|
253 | PORT MAP (Request => Request(31), North => south_2_north(1)(7), West => east_2_west(1)(6), P => Signal_priority(14), Fifo_full => Fifo_full(7), |
---|
254 | South => south_2_north(2)(7), East => east_2_west(2)(7) , Grant => Signal_grant(2)(7)); |
---|
255 | |
---|
256 | Arbiter_2_8 : Arbiter |
---|
257 | |
---|
258 | PORT MAP (Request => Request(24), North => south_2_north(1)(8), West => east_2_west(1)(7), P => Signal_priority(14), Fifo_full => Fifo_full(8), |
---|
259 | South => south_2_north(2)(8), East => east_2_west(2)(8) , Grant => Signal_grant(2)(8)); |
---|
260 | |
---|
261 | -------------------------- Diagonale n° 3 |
---|
262 | |
---|
263 | |
---|
264 | Arbiter_3_1 : Arbiter |
---|
265 | |
---|
266 | PORT MAP (Request => Request(17), North => south_2_north(2)(1), West => east_2_west(2)(8), P => Signal_priority(13), Fifo_full => Fifo_full(1), |
---|
267 | South => south_2_north(3)(1), East => east_2_west(3)(1) , Grant => Signal_grant(3)(1)); |
---|
268 | |
---|
269 | Arbiter_3_2 : Arbiter |
---|
270 | |
---|
271 | PORT MAP (Request => Request(10), North => south_2_north(2)(2), West => east_2_west(2)(1), P => Signal_priority(13), Fifo_full => Fifo_full(2), |
---|
272 | South => south_2_north(3)(2), East => east_2_west(3)(2) , Grant => Signal_grant(3)(2)); |
---|
273 | |
---|
274 | Arbiter_3_3 : Arbiter |
---|
275 | |
---|
276 | PORT MAP (Request => Request(3), North => south_2_north(2)(3), West => east_2_west(2)(2), P => Signal_priority(13), Fifo_full => Fifo_full(3), |
---|
277 | South => south_2_north(3)(3), East => east_2_west(3)(3) , Grant => Signal_grant(3)(3)); |
---|
278 | |
---|
279 | Arbiter_3_4 : Arbiter |
---|
280 | |
---|
281 | PORT MAP (Request => Request(60), North => south_2_north(2)(4), West => east_2_west(2)(3), P => Signal_priority(13), Fifo_full => Fifo_full(4), |
---|
282 | South => south_2_north(3)(4), East => east_2_west(3)(4) , Grant => Signal_grant(3)(4)); |
---|
283 | |
---|
284 | Arbiter_3_5 : Arbiter |
---|
285 | |
---|
286 | PORT MAP (Request => Request(53), North => south_2_north(2)(5), West => east_2_west(2)(4), P => Signal_priority(13), Fifo_full => Fifo_full(5), |
---|
287 | South => south_2_north(3)(5), East => east_2_west(3)(5) , Grant => Signal_grant(3)(5)); |
---|
288 | |
---|
289 | Arbiter_3_6 : Arbiter |
---|
290 | |
---|
291 | PORT MAP (Request => Request(46), North => south_2_north(2)(6), West => east_2_west(2)(5), P => Signal_priority(13), Fifo_full => Fifo_full(6), |
---|
292 | South => south_2_north(3)(6), East => east_2_west(3)(6) , Grant => Signal_grant(3)(6)); |
---|
293 | |
---|
294 | Arbiter_3_7 : Arbiter |
---|
295 | |
---|
296 | PORT MAP (Request => Request(39), North => south_2_north(2)(7), West => east_2_west(2)(6), P => Signal_priority(13), Fifo_full => Fifo_full(7), |
---|
297 | South => south_2_north(3)(7), East => east_2_west(3)(7) , Grant => Signal_grant(3)(7)); |
---|
298 | |
---|
299 | Arbiter_3_8 : Arbiter |
---|
300 | |
---|
301 | PORT MAP (Request => Request(32), North => south_2_north(2)(8), West => east_2_west(2)(7), P => Signal_priority(13), Fifo_full => Fifo_full(8), |
---|
302 | South => south_2_north(3)(8), East => east_2_west(3)(8) , Grant => Signal_grant(3)(8)); |
---|
303 | |
---|
304 | -------------------------- Diagonale n° 4 |
---|
305 | |
---|
306 | |
---|
307 | Arbiter_4_1 : Arbiter |
---|
308 | |
---|
309 | PORT MAP (Request => Request(25), North => south_2_north(3)(1), West => east_2_west(3)(8), P => Signal_priority(12), Fifo_full => Fifo_full(1), |
---|
310 | South => south_2_north(4)(1), East => east_2_west(4)(1) , Grant => Signal_grant(4)(1)); |
---|
311 | |
---|
312 | Arbiter_4_2 : Arbiter |
---|
313 | |
---|
314 | PORT MAP (Request => Request(18), North => south_2_north(3)(2), West => east_2_west(3)(1), P => Signal_priority(12), Fifo_full => Fifo_full(2), |
---|
315 | South => south_2_north(4)(2), East => east_2_west(4)(2) , Grant => Signal_grant(4)(2)); |
---|
316 | |
---|
317 | Arbiter_4_3 : Arbiter |
---|
318 | |
---|
319 | PORT MAP (Request => Request(11), North => south_2_north(3)(3), West => east_2_west(3)(2), P => Signal_priority(12), Fifo_full => Fifo_full(3), |
---|
320 | South => south_2_north(4)(3), East => east_2_west(4)(3) , Grant => Signal_grant(4)(3)); |
---|
321 | |
---|
322 | Arbiter_4_4 : Arbiter |
---|
323 | |
---|
324 | PORT MAP (Request => Request(4), North => south_2_north(3)(4), West => east_2_west(3)(3), P => Signal_priority(12), Fifo_full => Fifo_full(4), |
---|
325 | South => south_2_north(4)(4), East => east_2_west(4)(4) , Grant => Signal_grant(4)(4)); |
---|
326 | |
---|
327 | Arbiter_4_5 : Arbiter |
---|
328 | |
---|
329 | PORT MAP (Request => Request(61), North => south_2_north(3)(5), West => east_2_west(3)(4), P => Signal_priority(12), Fifo_full => Fifo_full(5), |
---|
330 | South => south_2_north(4)(5), East => east_2_west(4)(5) , Grant => Signal_grant(4)(5)); |
---|
331 | |
---|
332 | Arbiter_4_6 : Arbiter |
---|
333 | |
---|
334 | PORT MAP (Request => Request(54), North => south_2_north(3)(6), West => east_2_west(3)(5), P => Signal_priority(12), Fifo_full => Fifo_full(6), |
---|
335 | South => south_2_north(4)(6), East => east_2_west(4)(6) , Grant => Signal_grant(4)(6)); |
---|
336 | |
---|
337 | Arbiter_4_7 : Arbiter |
---|
338 | |
---|
339 | PORT MAP (Request => Request(47), North => south_2_north(3)(7), West => east_2_west(3)(6), P => Signal_priority(12), Fifo_full => Fifo_full(7), |
---|
340 | South => south_2_north(4)(7), East => east_2_west(4)(7) , Grant => Signal_grant(4)(7)); |
---|
341 | |
---|
342 | Arbiter_4_8 : Arbiter |
---|
343 | |
---|
344 | PORT MAP (Request => Request(40), North => south_2_north(3)(8), West => east_2_west(3)(7), P => Signal_priority(12), Fifo_full => Fifo_full(8), |
---|
345 | South => south_2_north(4)(8), East => east_2_west(4)(8) , Grant => Signal_grant(4)(8)); |
---|
346 | |
---|
347 | -------------------------- Diagonale n° 5 |
---|
348 | |
---|
349 | |
---|
350 | Arbiter_5_1 : Arbiter |
---|
351 | |
---|
352 | PORT MAP (Request => Request(33), North => south_2_north(4)(1), West => east_2_west(4)(8), P => Signal_priority(11), Fifo_full => Fifo_full(1), |
---|
353 | South => south_2_north(5)(1), East => east_2_west(5)(1) , Grant => Signal_grant(5)(1)); |
---|
354 | |
---|
355 | Arbiter_5_2 : Arbiter |
---|
356 | |
---|
357 | PORT MAP (Request => Request(26), North => south_2_north(4)(2), West => east_2_west(4)(1), P => Signal_priority(11), Fifo_full => Fifo_full(2), |
---|
358 | South => south_2_north(5)(2), East => east_2_west(5)(2) , Grant => Signal_grant(5)(2)); |
---|
359 | |
---|
360 | Arbiter_5_3 : Arbiter |
---|
361 | |
---|
362 | PORT MAP (Request => Request(19), North => south_2_north(4)(3), West => east_2_west(4)(2), P => Signal_priority(11), Fifo_full => Fifo_full(3), |
---|
363 | South => south_2_north(5)(3), East => east_2_west(5)(3) , Grant => Signal_grant(5)(3)); |
---|
364 | |
---|
365 | Arbiter_5_4 : Arbiter |
---|
366 | |
---|
367 | PORT MAP (Request => Request(12), North => south_2_north(4)(4), West => east_2_west(4)(3), P => Signal_priority(11), Fifo_full => Fifo_full(4), |
---|
368 | South => south_2_north(5)(4), East => east_2_west(5)(4) , Grant => Signal_grant(5)(4)); |
---|
369 | |
---|
370 | Arbiter_5_5 : Arbiter |
---|
371 | |
---|
372 | PORT MAP (Request => Request(5), North => south_2_north(4)(5), West => east_2_west(4)(4), P => Signal_priority(11), Fifo_full => Fifo_full(5), |
---|
373 | South => south_2_north(5)(5), East => east_2_west(5)(5) , Grant => Signal_grant(5)(5)); |
---|
374 | |
---|
375 | Arbiter_5_6 : Arbiter |
---|
376 | |
---|
377 | PORT MAP (Request => Request(62), North => south_2_north(4)(6), West => east_2_west(4)(5), P => Signal_priority(11), Fifo_full => Fifo_full(6), |
---|
378 | South => south_2_north(5)(6), East => east_2_west(5)(6) , Grant => Signal_grant(5)(6)); |
---|
379 | |
---|
380 | Arbiter_5_7 : Arbiter |
---|
381 | |
---|
382 | PORT MAP (Request => Request(55), North => south_2_north(4)(7), West => east_2_west(4)(6), P => Signal_priority(11), Fifo_full => Fifo_full(7), |
---|
383 | South => south_2_north(5)(7), East => east_2_west(5)(7) , Grant => Signal_grant(5)(7)); |
---|
384 | |
---|
385 | Arbiter_5_8 : Arbiter |
---|
386 | |
---|
387 | PORT MAP (Request => Request(48), North => south_2_north(4)(8), West => east_2_west(4)(7), P => Signal_priority(11), Fifo_full => Fifo_full(8), |
---|
388 | South => south_2_north(5)(8), East => east_2_west(5)(8) , Grant => Signal_grant(5)(8)); |
---|
389 | |
---|
390 | -------------------------- Diagonale n° 6 |
---|
391 | |
---|
392 | |
---|
393 | Arbiter_6_1 : Arbiter |
---|
394 | |
---|
395 | PORT MAP (Request => Request(41), North => south_2_north(5)(1), West => east_2_west(5)(8), P => Signal_priority(10), Fifo_full => Fifo_full(1), |
---|
396 | South => south_2_north(6)(1), East => east_2_west(6)(1) , Grant => Signal_grant(6)(1)); |
---|
397 | |
---|
398 | Arbiter_6_2 : Arbiter |
---|
399 | |
---|
400 | PORT MAP (Request => Request(34), North => south_2_north(5)(2), West => east_2_west(5)(1), P => Signal_priority(10), Fifo_full => Fifo_full(2), |
---|
401 | South => south_2_north(6)(2), East => east_2_west(6)(2) , Grant => Signal_grant(6)(2)); |
---|
402 | |
---|
403 | Arbiter_6_3 : Arbiter |
---|
404 | |
---|
405 | PORT MAP (Request => Request(27), North => south_2_north(5)(3), West => east_2_west(5)(2), P => Signal_priority(10), Fifo_full => Fifo_full(3), |
---|
406 | South => south_2_north(6)(3), East => east_2_west(6)(3) , Grant => Signal_grant(6)(3)); |
---|
407 | |
---|
408 | Arbiter_6_4 : Arbiter |
---|
409 | |
---|
410 | PORT MAP (Request => Request(20), North => south_2_north(5)(4), West => east_2_west(5)(3), P => Signal_priority(10), Fifo_full => Fifo_full(4), |
---|
411 | South => south_2_north(6)(4), East => east_2_west(6)(4) , Grant => Signal_grant(6)(4)); |
---|
412 | |
---|
413 | Arbiter_6_5 : Arbiter |
---|
414 | |
---|
415 | PORT MAP (Request => Request(13), North => south_2_north(5)(5), West => east_2_west(5)(4), P => Signal_priority(10), Fifo_full => Fifo_full(5), |
---|
416 | South => south_2_north(6)(5), East => east_2_west(6)(5) , Grant => Signal_grant(6)(5)); |
---|
417 | |
---|
418 | Arbiter_6_6 : Arbiter |
---|
419 | |
---|
420 | PORT MAP (Request => Request(6), North => south_2_north(5)(6), West => east_2_west(5)(5), P => Signal_priority(10), Fifo_full => Fifo_full(6), |
---|
421 | South => south_2_north(6)(6), East => east_2_west(6)(6) , Grant => Signal_grant(6)(6)); |
---|
422 | |
---|
423 | Arbiter_6_7 : Arbiter |
---|
424 | |
---|
425 | PORT MAP (Request => Request(63), North => south_2_north(5)(7), West => east_2_west(5)(6), P => Signal_priority(10), Fifo_full => Fifo_full(7), |
---|
426 | South => south_2_north(6)(7), East => east_2_west(6)(7) , Grant => Signal_grant(6)(7)); |
---|
427 | |
---|
428 | Arbiter_6_8 : Arbiter |
---|
429 | |
---|
430 | PORT MAP (Request => Request(56), North => south_2_north(5)(8), West => east_2_west(5)(7), P => Signal_priority(10), Fifo_full => Fifo_full(8), |
---|
431 | South => south_2_north(6)(8), East => east_2_west(6)(8) , Grant => Signal_grant(6)(8)); |
---|
432 | |
---|
433 | -------------------------- Diagonale n° 7 |
---|
434 | |
---|
435 | |
---|
436 | Arbiter_7_1 : Arbiter |
---|
437 | |
---|
438 | PORT MAP (Request => Request(49), North => south_2_north(6)(1), West => east_2_west(6)(8), P => Signal_priority(9), Fifo_full => Fifo_full(1), |
---|
439 | South => south_2_north(7)(1), East => east_2_west(7)(1) , Grant => Signal_grant(7)(1)); |
---|
440 | |
---|
441 | Arbiter_7_2 : Arbiter |
---|
442 | |
---|
443 | PORT MAP (Request => Request(42), North => south_2_north(6)(2), West => east_2_west(6)(1), P => Signal_priority(9), Fifo_full => Fifo_full(2), |
---|
444 | South => south_2_north(7)(2), East => east_2_west(7)(2) , Grant => Signal_grant(7)(2)); |
---|
445 | |
---|
446 | Arbiter_7_3 : Arbiter |
---|
447 | |
---|
448 | PORT MAP (Request => Request(35), North => south_2_north(6)(3), West => east_2_west(6)(2), P => Signal_priority(9), Fifo_full => Fifo_full(3), |
---|
449 | South => south_2_north(7)(3), East => east_2_west(7)(3) , Grant => Signal_grant(7)(3)); |
---|
450 | |
---|
451 | Arbiter_7_4 : Arbiter |
---|
452 | |
---|
453 | PORT MAP (Request => Request(28), North => south_2_north(6)(4), West => east_2_west(6)(3), P => Signal_priority(9), Fifo_full => Fifo_full(4), |
---|
454 | South => south_2_north(7)(4), East => east_2_west(7)(4) , Grant => Signal_grant(7)(4)); |
---|
455 | |
---|
456 | Arbiter_7_5 : Arbiter |
---|
457 | |
---|
458 | PORT MAP (Request => Request(21), North => south_2_north(6)(5), West => east_2_west(6)(4), P => Signal_priority(9), Fifo_full => Fifo_full(5), |
---|
459 | South => south_2_north(7)(5), East => east_2_west(7)(5) , Grant => Signal_grant(7)(5)); |
---|
460 | |
---|
461 | Arbiter_7_6 : Arbiter |
---|
462 | |
---|
463 | PORT MAP (Request => Request(14), North => south_2_north(6)(6), West => east_2_west(6)(5), P => Signal_priority(9), Fifo_full => Fifo_full(6), |
---|
464 | South => south_2_north(7)(6), East => east_2_west(7)(6) , Grant => Signal_grant(7)(6)); |
---|
465 | |
---|
466 | Arbiter_7_7 : Arbiter |
---|
467 | |
---|
468 | PORT MAP (Request => Request(7), North => south_2_north(6)(7), West => east_2_west(6)(6), P => Signal_priority(9), Fifo_full => Fifo_full(7), |
---|
469 | South => south_2_north(7)(7), East => east_2_west(7)(7) , Grant => Signal_grant(7)(7)); |
---|
470 | |
---|
471 | Arbiter_7_8 : Arbiter |
---|
472 | |
---|
473 | PORT MAP (Request => Request(64), North => south_2_north(6)(8), West => east_2_west(6)(7), P => Signal_priority(9), Fifo_full => Fifo_full(8), |
---|
474 | South => south_2_north(7)(8), East => east_2_west(7)(8) , Grant => Signal_grant(7)(8)); |
---|
475 | |
---|
476 | -------------------------- Diagonale n° 8 |
---|
477 | |
---|
478 | |
---|
479 | Arbiter_8_1 : Arbiter |
---|
480 | |
---|
481 | PORT MAP (Request => Request(57), North => south_2_north(7)(1), West => east_2_west(7)(8), P => Signal_priority(8), Fifo_full => Fifo_full(1), |
---|
482 | South => south_2_north(8)(1), East => east_2_west(8)(1) , Grant => Signal_grant(8)(1)); |
---|
483 | |
---|
484 | Arbiter_8_2 : Arbiter |
---|
485 | |
---|
486 | PORT MAP (Request => Request(50), North => south_2_north(7)(2), West => east_2_west(7)(1), P => Signal_priority(8), Fifo_full => Fifo_full(2), |
---|
487 | South => south_2_north(8)(2), East => east_2_west(8)(2) , Grant => Signal_grant(8)(2)); |
---|
488 | |
---|
489 | Arbiter_8_3 : Arbiter |
---|
490 | |
---|
491 | PORT MAP (Request => Request(43), North => south_2_north(7)(3), West => east_2_west(7)(2), P => Signal_priority(8), Fifo_full => Fifo_full(3), |
---|
492 | South => south_2_north(8)(3), East => east_2_west(8)(3) , Grant => Signal_grant(8)(3)); |
---|
493 | |
---|
494 | Arbiter_8_4 : Arbiter |
---|
495 | |
---|
496 | PORT MAP (Request => Request(36), North => south_2_north(7)(4), West => east_2_west(7)(3), P => Signal_priority(8), Fifo_full => Fifo_full(4), |
---|
497 | South => south_2_north(8)(4), East => east_2_west(8)(4) , Grant => Signal_grant(8)(4)); |
---|
498 | |
---|
499 | Arbiter_8_5 : Arbiter |
---|
500 | |
---|
501 | PORT MAP (Request => Request(29), North => south_2_north(7)(5), West => east_2_west(7)(4), P => Signal_priority(8), Fifo_full => Fifo_full(5), |
---|
502 | South => south_2_north(8)(5), East => east_2_west(8)(5) , Grant => Signal_grant(8)(5)); |
---|
503 | |
---|
504 | Arbiter_8_6 : Arbiter |
---|
505 | |
---|
506 | PORT MAP (Request => Request(22), North => south_2_north(7)(6), West => east_2_west(7)(5), P => Signal_priority(8), Fifo_full => Fifo_full(6), |
---|
507 | South => south_2_north(8)(6), East => east_2_west(8)(6) , Grant => Signal_grant(8)(6)); |
---|
508 | |
---|
509 | Arbiter_8_7 : Arbiter |
---|
510 | |
---|
511 | PORT MAP (Request => Request(15), North => south_2_north(7)(7), West => east_2_west(7)(6), P => Signal_priority(8), Fifo_full => Fifo_full(7), |
---|
512 | South => south_2_north(8)(7), East => east_2_west(8)(7) , Grant => Signal_grant(8)(7)); |
---|
513 | |
---|
514 | Arbiter_8_8 : Arbiter |
---|
515 | |
---|
516 | PORT MAP (Request => Request(8), North => south_2_north(7)(8), West => east_2_west(7)(7), P => Signal_priority(8), Fifo_full => Fifo_full(8), |
---|
517 | South => south_2_north(8)(8), East => east_2_west(8)(8) , Grant => Signal_grant(8)(8)); |
---|
518 | |
---|
519 | -------------------------- Diagonale n° 9 |
---|
520 | |
---|
521 | |
---|
522 | Arbiter_9_1 : Arbiter |
---|
523 | |
---|
524 | PORT MAP (Request => Request(1), North => south_2_north(8)(1), West => east_2_west(8)(8), P => Signal_priority(7), Fifo_full => Fifo_full(1), |
---|
525 | South => south_2_north(9)(1), East => east_2_west(9)(1) , Grant => Signal_grant(9)(1)); |
---|
526 | |
---|
527 | Arbiter_9_2 : Arbiter |
---|
528 | |
---|
529 | PORT MAP (Request => Request(58), North => south_2_north(8)(2), West => east_2_west(8)(1), P => Signal_priority(7), Fifo_full => Fifo_full(2), |
---|
530 | South => south_2_north(9)(2), East => east_2_west(9)(2) , Grant => Signal_grant(9)(2)); |
---|
531 | |
---|
532 | Arbiter_9_3 : Arbiter |
---|
533 | |
---|
534 | PORT MAP (Request => Request(51), North => south_2_north(8)(3), West => east_2_west(8)(2), P => Signal_priority(7), Fifo_full => Fifo_full(3), |
---|
535 | South => south_2_north(9)(3), East => east_2_west(9)(3) , Grant => Signal_grant(9)(3)); |
---|
536 | |
---|
537 | Arbiter_9_4 : Arbiter |
---|
538 | |
---|
539 | PORT MAP (Request => Request(44), North => south_2_north(8)(4), West => east_2_west(8)(3), P => Signal_priority(7), Fifo_full => Fifo_full(4), |
---|
540 | South => south_2_north(9)(4), East => east_2_west(9)(4) , Grant => Signal_grant(9)(4)); |
---|
541 | |
---|
542 | Arbiter_9_5 : Arbiter |
---|
543 | |
---|
544 | PORT MAP (Request => Request(37), North => south_2_north(8)(5), West => east_2_west(8)(4), P => Signal_priority(7), Fifo_full => Fifo_full(5), |
---|
545 | South => south_2_north(9)(5), East => east_2_west(9)(5) , Grant => Signal_grant(9)(5)); |
---|
546 | |
---|
547 | Arbiter_9_6 : Arbiter |
---|
548 | |
---|
549 | PORT MAP (Request => Request(30), North => south_2_north(8)(6), West => east_2_west(8)(5), P => Signal_priority(7), Fifo_full => Fifo_full(6), |
---|
550 | South => south_2_north(9)(6), East => east_2_west(9)(6) , Grant => Signal_grant(9)(6)); |
---|
551 | |
---|
552 | Arbiter_9_7 : Arbiter |
---|
553 | |
---|
554 | PORT MAP (Request => Request(23), North => south_2_north(8)(7), West => east_2_west(8)(6), P => Signal_priority(7), Fifo_full => Fifo_full(7), |
---|
555 | South => south_2_north(9)(7), East => east_2_west(9)(7) , Grant => Signal_grant(9)(7)); |
---|
556 | |
---|
557 | Arbiter_9_8 : Arbiter |
---|
558 | |
---|
559 | PORT MAP (Request => Request(16), North => south_2_north(8)(8), West => east_2_west(8)(7), P => Signal_priority(7), Fifo_full => Fifo_full(8), |
---|
560 | South => south_2_north(9)(8), East => east_2_west(9)(8) , Grant => Signal_grant(9)(8)); |
---|
561 | |
---|
562 | -------------------------- Diagonale n° 10 |
---|
563 | |
---|
564 | |
---|
565 | Arbiter_10_1 : Arbiter |
---|
566 | |
---|
567 | PORT MAP (Request => Request(9), North => south_2_north(9)(1), West => east_2_west(9)(8), P => Signal_priority(6), Fifo_full => Fifo_full(1), |
---|
568 | South => south_2_north(10)(1), East => east_2_west(10)(1) , Grant => Signal_grant(10)(1)); |
---|
569 | |
---|
570 | Arbiter_10_2 : Arbiter |
---|
571 | |
---|
572 | PORT MAP (Request => Request(2), North => south_2_north(9)(2), West => east_2_west(9)(1), P => Signal_priority(6), Fifo_full => Fifo_full(2), |
---|
573 | South => south_2_north(10)(2), East => east_2_west(10)(2) , Grant => Signal_grant(10)(2)); |
---|
574 | |
---|
575 | Arbiter_10_3 : Arbiter |
---|
576 | |
---|
577 | PORT MAP (Request => Request(59), North => south_2_north(9)(3), West => east_2_west(9)(2), P => Signal_priority(6), Fifo_full => Fifo_full(3), |
---|
578 | South => south_2_north(10)(3), East => east_2_west(10)(3) , Grant => Signal_grant(10)(3)); |
---|
579 | |
---|
580 | Arbiter_10_4 : Arbiter |
---|
581 | |
---|
582 | PORT MAP (Request => Request(52), North => south_2_north(9)(4), West => east_2_west(9)(3), P => Signal_priority(6), Fifo_full => Fifo_full(4), |
---|
583 | South => south_2_north(10)(4), East => east_2_west(10)(4) , Grant => Signal_grant(10)(4)); |
---|
584 | |
---|
585 | Arbiter_10_5 : Arbiter |
---|
586 | |
---|
587 | PORT MAP (Request => Request(45), North => south_2_north(9)(5), West => east_2_west(9)(4), P => Signal_priority(6), Fifo_full => Fifo_full(5), |
---|
588 | South => south_2_north(10)(5), East => east_2_west(10)(5) , Grant => Signal_grant(10)(5)); |
---|
589 | |
---|
590 | Arbiter_10_6 : Arbiter |
---|
591 | |
---|
592 | PORT MAP (Request => Request(38), North => south_2_north(9)(6), West => east_2_west(9)(5), P => Signal_priority(6), Fifo_full => Fifo_full(6), |
---|
593 | South => south_2_north(10)(6), East => east_2_west(10)(6) , Grant => Signal_grant(10)(6)); |
---|
594 | |
---|
595 | Arbiter_10_7 : Arbiter |
---|
596 | |
---|
597 | PORT MAP (Request => Request(31), North => south_2_north(9)(7), West => east_2_west(9)(6), P => Signal_priority(6), Fifo_full => Fifo_full(7), |
---|
598 | South => south_2_north(10)(7), East => east_2_west(10)(7) , Grant => Signal_grant(10)(7)); |
---|
599 | |
---|
600 | Arbiter_10_8 : Arbiter |
---|
601 | |
---|
602 | PORT MAP (Request => Request(24), North => south_2_north(9)(8), West => east_2_west(9)(7), P => Signal_priority(6), Fifo_full => Fifo_full(8), |
---|
603 | South => south_2_north(10)(8), East => east_2_west(10)(8) , Grant => Signal_grant(10)(8)); |
---|
604 | |
---|
605 | -------------------------- Diagonale n° 11 |
---|
606 | |
---|
607 | |
---|
608 | Arbiter_11_1 : Arbiter |
---|
609 | |
---|
610 | PORT MAP (Request => Request(17), North => south_2_north(10)(1), West => east_2_west(10)(8), P => Signal_priority(5), Fifo_full => Fifo_full(1), |
---|
611 | South => south_2_north(11)(1), East => east_2_west(11)(1) , Grant => Signal_grant(11)(1)); |
---|
612 | |
---|
613 | Arbiter_11_2 : Arbiter |
---|
614 | |
---|
615 | PORT MAP (Request => Request(10), North => south_2_north(10)(2), West => east_2_west(10)(1), P => Signal_priority(5), Fifo_full => Fifo_full(2), |
---|
616 | South => south_2_north(11)(2), East => east_2_west(11)(2) , Grant => Signal_grant(11)(2)); |
---|
617 | |
---|
618 | Arbiter_11_3 : Arbiter |
---|
619 | |
---|
620 | PORT MAP (Request => Request(3), North => south_2_north(10)(3), West => east_2_west(10)(2), P => Signal_priority(5), Fifo_full => Fifo_full(3), |
---|
621 | South => south_2_north(11)(3), East => east_2_west(11)(3) , Grant => Signal_grant(11)(3)); |
---|
622 | |
---|
623 | Arbiter_11_4 : Arbiter |
---|
624 | |
---|
625 | PORT MAP (Request => Request(60), North => south_2_north(10)(4), West => east_2_west(10)(3), P => Signal_priority(5), Fifo_full => Fifo_full(4), |
---|
626 | South => south_2_north(11)(4), East => east_2_west(11)(4) , Grant => Signal_grant(11)(4)); |
---|
627 | |
---|
628 | Arbiter_11_5 : Arbiter |
---|
629 | |
---|
630 | PORT MAP (Request => Request(53), North => south_2_north(10)(5), West => east_2_west(10)(4), P => Signal_priority(5), Fifo_full => Fifo_full(5), |
---|
631 | South => south_2_north(11)(5), East => east_2_west(11)(5) , Grant => Signal_grant(11)(5)); |
---|
632 | |
---|
633 | Arbiter_11_6 : Arbiter |
---|
634 | |
---|
635 | PORT MAP (Request => Request(46), North => south_2_north(10)(6), West => east_2_west(10)(5), P => Signal_priority(5), Fifo_full => Fifo_full(6), |
---|
636 | South => south_2_north(11)(6), East => east_2_west(11)(6) , Grant => Signal_grant(11)(6)); |
---|
637 | |
---|
638 | Arbiter_11_7 : Arbiter |
---|
639 | |
---|
640 | PORT MAP (Request => Request(39), North => south_2_north(10)(7), West => east_2_west(10)(6), P => Signal_priority(5), Fifo_full => Fifo_full(7), |
---|
641 | South => south_2_north(11)(7), East => east_2_west(11)(7) , Grant => Signal_grant(11)(7)); |
---|
642 | |
---|
643 | Arbiter_11_8 : Arbiter |
---|
644 | |
---|
645 | PORT MAP (Request => Request(32), North => south_2_north(10)(8), West => east_2_west(10)(7), P => Signal_priority(5), Fifo_full => Fifo_full(8), |
---|
646 | South => south_2_north(11)(8), East => east_2_west(11)(8) , Grant => Signal_grant(11)(8)); |
---|
647 | |
---|
648 | -------------------------- Diagonale n° 12 |
---|
649 | |
---|
650 | |
---|
651 | Arbiter_12_1 : Arbiter |
---|
652 | |
---|
653 | PORT MAP (Request => Request(25), North => south_2_north(11)(1), West => east_2_west(11)(8), P => Signal_priority(4), Fifo_full => Fifo_full(1), |
---|
654 | South => south_2_north(12)(1), East => east_2_west(12)(1) , Grant => Signal_grant(12)(1)); |
---|
655 | |
---|
656 | Arbiter_12_2 : Arbiter |
---|
657 | |
---|
658 | PORT MAP (Request => Request(18), North => south_2_north(11)(2), West => east_2_west(11)(1), P => Signal_priority(4), Fifo_full => Fifo_full(2), |
---|
659 | South => south_2_north(12)(2), East => east_2_west(12)(2) , Grant => Signal_grant(12)(2)); |
---|
660 | |
---|
661 | Arbiter_12_3 : Arbiter |
---|
662 | |
---|
663 | PORT MAP (Request => Request(11), North => south_2_north(11)(3), West => east_2_west(11)(2), P => Signal_priority(4), Fifo_full => Fifo_full(3), |
---|
664 | South => south_2_north(12)(3), East => east_2_west(12)(3) , Grant => Signal_grant(12)(3)); |
---|
665 | |
---|
666 | Arbiter_12_4 : Arbiter |
---|
667 | |
---|
668 | PORT MAP (Request => Request(4), North => south_2_north(11)(4), West => east_2_west(11)(3), P => Signal_priority(4), Fifo_full => Fifo_full(4), |
---|
669 | South => south_2_north(12)(4), East => east_2_west(12)(4) , Grant => Signal_grant(12)(4)); |
---|
670 | |
---|
671 | Arbiter_12_5 : Arbiter |
---|
672 | |
---|
673 | PORT MAP (Request => Request(61), North => south_2_north(11)(5), West => east_2_west(11)(4), P => Signal_priority(4), Fifo_full => Fifo_full(5), |
---|
674 | South => south_2_north(12)(5), East => east_2_west(12)(5) , Grant => Signal_grant(12)(5)); |
---|
675 | |
---|
676 | Arbiter_12_6 : Arbiter |
---|
677 | |
---|
678 | PORT MAP (Request => Request(54), North => south_2_north(11)(6), West => east_2_west(11)(5), P => Signal_priority(4), Fifo_full => Fifo_full(6), |
---|
679 | South => south_2_north(12)(6), East => east_2_west(12)(6) , Grant => Signal_grant(12)(6)); |
---|
680 | |
---|
681 | Arbiter_12_7 : Arbiter |
---|
682 | |
---|
683 | PORT MAP (Request => Request(47), North => south_2_north(11)(7), West => east_2_west(11)(6), P => Signal_priority(4), Fifo_full => Fifo_full(7), |
---|
684 | South => south_2_north(12)(7), East => east_2_west(12)(7) , Grant => Signal_grant(12)(7)); |
---|
685 | |
---|
686 | Arbiter_12_8 : Arbiter |
---|
687 | |
---|
688 | PORT MAP (Request => Request(40), North => south_2_north(11)(8), West => east_2_west(11)(7), P => Signal_priority(4), Fifo_full => Fifo_full(8), |
---|
689 | South => south_2_north(12)(8), East => east_2_west(12)(8) , Grant => Signal_grant(12)(8)); |
---|
690 | |
---|
691 | -------------------------- Diagonale n° 13 |
---|
692 | |
---|
693 | |
---|
694 | Arbiter_13_1 : Arbiter |
---|
695 | |
---|
696 | PORT MAP (Request => Request(33), North => south_2_north(12)(1), West => east_2_west(12)(8), P => Signal_priority(3), Fifo_full => Fifo_full(1), |
---|
697 | South => south_2_north(13)(1), East => east_2_west(13)(1) , Grant => Signal_grant(13)(1)); |
---|
698 | |
---|
699 | Arbiter_13_2 : Arbiter |
---|
700 | |
---|
701 | PORT MAP (Request => Request(26), North => south_2_north(12)(2), West => east_2_west(12)(1), P => Signal_priority(3), Fifo_full => Fifo_full(2), |
---|
702 | South => south_2_north(13)(2), East => east_2_west(13)(2) , Grant => Signal_grant(13)(2)); |
---|
703 | |
---|
704 | Arbiter_13_3 : Arbiter |
---|
705 | |
---|
706 | PORT MAP (Request => Request(19), North => south_2_north(12)(3), West => east_2_west(12)(2), P => Signal_priority(3), Fifo_full => Fifo_full(3), |
---|
707 | South => south_2_north(13)(3), East => east_2_west(13)(3) , Grant => Signal_grant(13)(3)); |
---|
708 | |
---|
709 | Arbiter_13_4 : Arbiter |
---|
710 | |
---|
711 | PORT MAP (Request => Request(12), North => south_2_north(12)(4), West => east_2_west(12)(3), P => Signal_priority(3), Fifo_full => Fifo_full(4), |
---|
712 | South => south_2_north(13)(4), East => east_2_west(13)(4) , Grant => Signal_grant(13)(4)); |
---|
713 | |
---|
714 | Arbiter_13_5 : Arbiter |
---|
715 | |
---|
716 | PORT MAP (Request => Request(5), North => south_2_north(12)(5), West => east_2_west(12)(4), P => Signal_priority(3), Fifo_full => Fifo_full(5), |
---|
717 | South => south_2_north(13)(5), East => east_2_west(13)(5) , Grant => Signal_grant(13)(5)); |
---|
718 | |
---|
719 | Arbiter_13_6 : Arbiter |
---|
720 | |
---|
721 | PORT MAP (Request => Request(62), North => south_2_north(12)(6), West => east_2_west(12)(5), P => Signal_priority(3), Fifo_full => Fifo_full(6), |
---|
722 | South => south_2_north(13)(6), East => east_2_west(13)(6) , Grant => Signal_grant(13)(6)); |
---|
723 | |
---|
724 | Arbiter_13_7 : Arbiter |
---|
725 | |
---|
726 | PORT MAP (Request => Request(55), North => south_2_north(12)(7), West => east_2_west(12)(6), P => Signal_priority(3), Fifo_full => Fifo_full(7), |
---|
727 | South => south_2_north(13)(7), East => east_2_west(13)(7) , Grant => Signal_grant(13)(7)); |
---|
728 | |
---|
729 | Arbiter_13_8 : Arbiter |
---|
730 | |
---|
731 | PORT MAP (Request => Request(48), North => south_2_north(12)(8), West => east_2_west(12)(7), P => Signal_priority(3), Fifo_full => Fifo_full(8), |
---|
732 | South => south_2_north(13)(8), East => east_2_west(13)(8) , Grant => Signal_grant(13)(8)); |
---|
733 | |
---|
734 | -------------------------- Diagonale n° 14 |
---|
735 | |
---|
736 | |
---|
737 | Arbiter_14_1 : Arbiter |
---|
738 | |
---|
739 | PORT MAP (Request => Request(41), North => south_2_north(13)(1), West => east_2_west(13)(8), P => Signal_priority(2), Fifo_full => Fifo_full(1), |
---|
740 | South => south_2_north(14)(1), East => east_2_west(14)(1) , Grant => Signal_grant(14)(1)); |
---|
741 | |
---|
742 | Arbiter_14_2 : Arbiter |
---|
743 | |
---|
744 | PORT MAP (Request => Request(34), North => south_2_north(13)(2), West => east_2_west(13)(1), P => Signal_priority(2), Fifo_full => Fifo_full(2), |
---|
745 | South => south_2_north(14)(2), East => east_2_west(14)(2) , Grant => Signal_grant(14)(2)); |
---|
746 | |
---|
747 | Arbiter_14_3 : Arbiter |
---|
748 | |
---|
749 | PORT MAP (Request => Request(27), North => south_2_north(13)(3), West => east_2_west(13)(2), P => Signal_priority(2), Fifo_full => Fifo_full(3), |
---|
750 | South => south_2_north(14)(3), East => east_2_west(14)(3) , Grant => Signal_grant(14)(3)); |
---|
751 | |
---|
752 | Arbiter_14_4 : Arbiter |
---|
753 | |
---|
754 | PORT MAP (Request => Request(20), North => south_2_north(13)(4), West => east_2_west(13)(3), P => Signal_priority(2), Fifo_full => Fifo_full(4), |
---|
755 | South => south_2_north(14)(4), East => east_2_west(14)(4) , Grant => Signal_grant(14)(4)); |
---|
756 | |
---|
757 | Arbiter_14_5 : Arbiter |
---|
758 | |
---|
759 | PORT MAP (Request => Request(13), North => south_2_north(13)(5), West => east_2_west(13)(4), P => Signal_priority(2), Fifo_full => Fifo_full(5), |
---|
760 | South => south_2_north(14)(5), East => east_2_west(14)(5) , Grant => Signal_grant(14)(5)); |
---|
761 | |
---|
762 | Arbiter_14_6 : Arbiter |
---|
763 | |
---|
764 | PORT MAP (Request => Request(6), North => south_2_north(13)(6), West => east_2_west(13)(5), P => Signal_priority(2), Fifo_full => Fifo_full(6), |
---|
765 | South => south_2_north(14)(6), East => east_2_west(14)(6) , Grant => Signal_grant(14)(6)); |
---|
766 | |
---|
767 | Arbiter_14_7 : Arbiter |
---|
768 | |
---|
769 | PORT MAP (Request => Request(63), North => south_2_north(13)(7), West => east_2_west(13)(6), P => Signal_priority(2), Fifo_full => Fifo_full(7), |
---|
770 | South => south_2_north(14)(7), East => east_2_west(14)(7) , Grant => Signal_grant(14)(7)); |
---|
771 | |
---|
772 | Arbiter_14_8 : Arbiter |
---|
773 | |
---|
774 | PORT MAP (Request => Request(56), North => south_2_north(13)(8), West => east_2_west(13)(7), P => Signal_priority(2), Fifo_full => Fifo_full(8), |
---|
775 | South => south_2_north(14)(8), East => east_2_west(14)(8) , Grant => Signal_grant(14)(8)); |
---|
776 | |
---|
777 | -------------------------- Diagonale n° 15 |
---|
778 | |
---|
779 | |
---|
780 | Arbiter_15_1 : Arbiter |
---|
781 | |
---|
782 | PORT MAP (Request => Request(49), North => south_2_north(14)(1), West => east_2_west(14)(8), P => Signal_priority(1), Fifo_full => Fifo_full(1), |
---|
783 | South => south_2_north(15)(1), East => east_2_west(15)(1) , Grant => Signal_grant(15)(1)); |
---|
784 | |
---|
785 | Arbiter_15_2 : Arbiter |
---|
786 | |
---|
787 | PORT MAP (Request => Request(42), North => south_2_north(14)(2), West => east_2_west(14)(1), P => Signal_priority(1), Fifo_full => Fifo_full(2), |
---|
788 | South => south_2_north(15)(2), East => east_2_west(15)(2) , Grant => Signal_grant(15)(2)); |
---|
789 | |
---|
790 | Arbiter_15_3 : Arbiter |
---|
791 | |
---|
792 | PORT MAP (Request => Request(35), North => south_2_north(14)(3), West => east_2_west(14)(2), P => Signal_priority(1), Fifo_full => Fifo_full(3), |
---|
793 | South => south_2_north(15)(3), East => east_2_west(15)(3) , Grant => Signal_grant(15)(3)); |
---|
794 | |
---|
795 | Arbiter_15_4 : Arbiter |
---|
796 | |
---|
797 | PORT MAP (Request => Request(28), North => south_2_north(14)(4), West => east_2_west(14)(3), P => Signal_priority(1), Fifo_full => Fifo_full(4), |
---|
798 | South => south_2_north(15)(4), East => east_2_west(15)(4) , Grant => Signal_grant(15)(4)); |
---|
799 | |
---|
800 | Arbiter_15_5 : Arbiter |
---|
801 | |
---|
802 | PORT MAP (Request => Request(21), North => south_2_north(14)(5), West => east_2_west(14)(4), P => Signal_priority(1), Fifo_full => Fifo_full(5), |
---|
803 | South => south_2_north(15)(5), East => east_2_west(15)(5) , Grant => Signal_grant(15)(5)); |
---|
804 | |
---|
805 | Arbiter_15_6 : Arbiter |
---|
806 | |
---|
807 | PORT MAP (Request => Request(14), North => south_2_north(14)(6), West => east_2_west(14)(5), P => Signal_priority(1), Fifo_full => Fifo_full(6), |
---|
808 | South => south_2_north(15)(6), East => east_2_west(15)(6) , Grant => Signal_grant(15)(6)); |
---|
809 | |
---|
810 | Arbiter_15_7 : Arbiter |
---|
811 | |
---|
812 | PORT MAP (Request => Request(7), North => south_2_north(14)(7), West => east_2_west(14)(6), P => Signal_priority(1), Fifo_full => Fifo_full(7), |
---|
813 | South => south_2_north(15)(7), East => east_2_west(15)(7) , Grant => Signal_grant(15)(7)); |
---|
814 | |
---|
815 | Arbiter_15_8 : Arbiter |
---|
816 | |
---|
817 | PORT MAP (Request => Request(64), North => south_2_north(14)(8), West => east_2_west(14)(7), P => Signal_priority(1), Fifo_full => Fifo_full(8), |
---|
818 | South => south_2_north(15)(8), East => east_2_west(15)(8) , Grant => Signal_grant(15)(8)); |
---|
819 | |
---|
820 | |
---|
821 | --processus permettant de roter la priorité des diagonales à chaque front d'horloge |
---|
822 | -- rotation round robin |
---|
823 | round_robin : process(clk) |
---|
824 | begin |
---|
825 | if rising_edge(clk) then |
---|
826 | if reset ='1' then |
---|
827 | Signal_priority <= "111111110000000"; |
---|
828 | elsif priority_rotation_en = '1' then |
---|
829 | case Signal_priority is |
---|
830 | when "111111110000000" => Signal_priority <= "011111111000000"; |
---|
831 | when "011111111000000" => Signal_priority <= "001111111100000"; |
---|
832 | when "001111111100000" => Signal_priority <= "000111111110000"; |
---|
833 | when "000111111110000" => Signal_priority <= "000011111111000"; |
---|
834 | when "000011111111000" => Signal_priority <= "000001111111100"; |
---|
835 | when "000001111111100" => Signal_priority <= "000000111111110"; |
---|
836 | when "000000111111110" => Signal_priority <= "000000011111111"; |
---|
837 | when "000000011111111" => Signal_priority <= "111111110000000"; |
---|
838 | when others => Signal_priority <= "111111110000000"; |
---|
839 | end case; |
---|
840 | end if; |
---|
841 | end if; |
---|
842 | end process; |
---|
843 | |
---|
844 | end Behavioral; |
---|
845 | |
---|