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 Scheduler11_11 is |
---|
32 | Port ( Request : in STD_LOGIC_VECTOR (121 downto 1); |
---|
33 | Fifo_full : in STD_LOGIC_VECTOR (11 downto 1); |
---|
34 | clk : in STD_LOGIC; |
---|
35 | reset : in STD_LOGIC; |
---|
36 | priority_rotation : in STD_LOGIC_VECTOR (11 downto 1); |
---|
37 | port_grant : out STD_LOGIC_VECTOR (121 downto 1)); |
---|
38 | end Scheduler11_11; |
---|
39 | |
---|
40 | architecture Behavioral of Scheduler11_11 is |
---|
41 | --Declaration du types |
---|
42 | --tableau de signaux de connexion des cellules arbitres |
---|
43 | TYPE C_Bar_Signal_Array IS ARRAY(21 downto 1) of STD_LOGIC_VECTOR(11 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 | SIGNAL south_2_north : C_Bar_Signal_Array; -- connexion south north |
---|
50 | SIGNAL east_2_west : C_Bar_Signal_Array; -- connexion east west |
---|
51 | SIGNAL Signal_mask : C_Bar_Signal_Array;-- connexion des masques de priorité |
---|
52 | SIGNAL Signal_grant : C_Bar_Signal_Array;-- connexion des signaux de validation |
---|
53 | SIGNAL Signal_priority : STD_LOGIC_VECTOR (21 DOWNTO 1);--signal pour la connection des vecteur de priorité |
---|
54 | SIGNAL High : std_logic;--niveau pour les cellules des extremités nord et ouest |
---|
55 | signal grant_latch : std_logic_vector(121 downto 1); |
---|
56 | signal priority_rotation_en : std_logic; |
---|
57 | signal Grant : std_logic_vector(121 downto 1); |
---|
58 | begin |
---|
59 | |
---|
60 | --validation de la rotation de priorité lorsque aucun port n'emet |
---|
61 | priority_rotation_en <= '1' when unsigned(priority_rotation) = 2047 else '0'; |
---|
62 | --latch servant qui memorise le signal grant pendant a transmission |
---|
63 | grant_latch_process : process(clk) |
---|
64 | begin |
---|
65 | if rising_edge(clk) then |
---|
66 | if reset = '1' then |
---|
67 | grant_latch <= (others => '0'); |
---|
68 | elsif priority_rotation_en = '1' then |
---|
69 | grant_latch <= Grant; |
---|
70 | end if; |
---|
71 | end if; |
---|
72 | end process; |
---|
73 | port_grant <= Grant and grant_latch; |
---|
74 | Grant(1) <= Signal_grant(1)(1) or Signal_grant(12)(1); -- Grant(1,1) |
---|
75 | Grant(2) <= Signal_grant(2)(2) or Signal_grant(13)(2); -- Grant(1,2) |
---|
76 | Grant(3) <= Signal_grant(3)(3) or Signal_grant(14)(3); -- Grant(1,3) |
---|
77 | Grant(4) <= Signal_grant(4)(4) or Signal_grant(15)(4); -- Grant(1,4) |
---|
78 | Grant(5) <= Signal_grant(5)(5) or Signal_grant(16)(5); -- Grant(1,5) |
---|
79 | Grant(6) <= Signal_grant(6)(6) or Signal_grant(17)(6); -- Grant(1,6) |
---|
80 | Grant(7) <= Signal_grant(7)(7) or Signal_grant(18)(7); -- Grant(1,7) |
---|
81 | Grant(8) <= Signal_grant(8)(8) or Signal_grant(19)(8); -- Grant(1,8) |
---|
82 | Grant(9) <= Signal_grant(9)(9) or Signal_grant(20)(9); -- Grant(1,9) |
---|
83 | Grant(10) <= Signal_grant(10)(10) or Signal_grant(21)(10); -- Grant(1,10) |
---|
84 | Grant(11) <= Signal_grant(11)(11) ; -- Grant(1,11) |
---|
85 | Grant(12) <= Signal_grant(2)(1) or Signal_grant(13)(1); -- Grant(2,1) |
---|
86 | Grant(13) <= Signal_grant(3)(2) or Signal_grant(14)(2); -- Grant(2,2) |
---|
87 | Grant(14) <= Signal_grant(4)(3) or Signal_grant(15)(3); -- Grant(2,3) |
---|
88 | Grant(15) <= Signal_grant(5)(4) or Signal_grant(16)(4); -- Grant(2,4) |
---|
89 | Grant(16) <= Signal_grant(6)(5) or Signal_grant(17)(5); -- Grant(2,5) |
---|
90 | Grant(17) <= Signal_grant(7)(6) or Signal_grant(18)(6); -- Grant(2,6) |
---|
91 | Grant(18) <= Signal_grant(8)(7) or Signal_grant(19)(7); -- Grant(2,7) |
---|
92 | Grant(19) <= Signal_grant(9)(8) or Signal_grant(20)(8); -- Grant(2,8) |
---|
93 | Grant(20) <= Signal_grant(10)(9) or Signal_grant(21)(9); -- Grant(2,9) |
---|
94 | Grant(21) <= Signal_grant(11)(10) ; -- Grant(2,10) |
---|
95 | Grant(22) <= Signal_grant(1)(11) or Signal_grant(12)(11); -- Grant(2,11) |
---|
96 | Grant(23) <= Signal_grant(3)(1) or Signal_grant(14)(1); -- Grant(3,1) |
---|
97 | Grant(24) <= Signal_grant(4)(2) or Signal_grant(15)(2); -- Grant(3,2) |
---|
98 | Grant(25) <= Signal_grant(5)(3) or Signal_grant(16)(3); -- Grant(3,3) |
---|
99 | Grant(26) <= Signal_grant(6)(4) or Signal_grant(17)(4); -- Grant(3,4) |
---|
100 | Grant(27) <= Signal_grant(7)(5) or Signal_grant(18)(5); -- Grant(3,5) |
---|
101 | Grant(28) <= Signal_grant(8)(6) or Signal_grant(19)(6); -- Grant(3,6) |
---|
102 | Grant(29) <= Signal_grant(9)(7) or Signal_grant(20)(7); -- Grant(3,7) |
---|
103 | Grant(30) <= Signal_grant(10)(8) or Signal_grant(21)(8); -- Grant(3,8) |
---|
104 | Grant(31) <= Signal_grant(11)(9) ; -- Grant(3,9) |
---|
105 | Grant(32) <= Signal_grant(1)(10) or Signal_grant(12)(10); -- Grant(3,10) |
---|
106 | Grant(33) <= Signal_grant(2)(11) or Signal_grant(13)(11); -- Grant(3,11) |
---|
107 | Grant(34) <= Signal_grant(4)(1) or Signal_grant(15)(1); -- Grant(4,1) |
---|
108 | Grant(35) <= Signal_grant(5)(2) or Signal_grant(16)(2); -- Grant(4,2) |
---|
109 | Grant(36) <= Signal_grant(6)(3) or Signal_grant(17)(3); -- Grant(4,3) |
---|
110 | Grant(37) <= Signal_grant(7)(4) or Signal_grant(18)(4); -- Grant(4,4) |
---|
111 | Grant(38) <= Signal_grant(8)(5) or Signal_grant(19)(5); -- Grant(4,5) |
---|
112 | Grant(39) <= Signal_grant(9)(6) or Signal_grant(20)(6); -- Grant(4,6) |
---|
113 | Grant(40) <= Signal_grant(10)(7) or Signal_grant(21)(7); -- Grant(4,7) |
---|
114 | Grant(41) <= Signal_grant(11)(8) ; -- Grant(4,8) |
---|
115 | Grant(42) <= Signal_grant(1)(9) or Signal_grant(12)(9); -- Grant(4,9) |
---|
116 | Grant(43) <= Signal_grant(2)(10) or Signal_grant(13)(10); -- Grant(4,10) |
---|
117 | Grant(44) <= Signal_grant(3)(11) or Signal_grant(14)(11); -- Grant(4,11) |
---|
118 | Grant(45) <= Signal_grant(5)(1) or Signal_grant(16)(1); -- Grant(5,1) |
---|
119 | Grant(46) <= Signal_grant(6)(2) or Signal_grant(17)(2); -- Grant(5,2) |
---|
120 | Grant(47) <= Signal_grant(7)(3) or Signal_grant(18)(3); -- Grant(5,3) |
---|
121 | Grant(48) <= Signal_grant(8)(4) or Signal_grant(19)(4); -- Grant(5,4) |
---|
122 | Grant(49) <= Signal_grant(9)(5) or Signal_grant(20)(5); -- Grant(5,5) |
---|
123 | Grant(50) <= Signal_grant(10)(6) or Signal_grant(21)(6); -- Grant(5,6) |
---|
124 | Grant(51) <= Signal_grant(11)(7) ; -- Grant(5,7) |
---|
125 | Grant(52) <= Signal_grant(1)(8) or Signal_grant(12)(8); -- Grant(5,8) |
---|
126 | Grant(53) <= Signal_grant(2)(9) or Signal_grant(13)(9); -- Grant(5,9) |
---|
127 | Grant(54) <= Signal_grant(3)(10) or Signal_grant(14)(10); -- Grant(5,10) |
---|
128 | Grant(55) <= Signal_grant(4)(11) or Signal_grant(15)(11); -- Grant(5,11) |
---|
129 | Grant(56) <= Signal_grant(6)(1) or Signal_grant(17)(1); -- Grant(6,1) |
---|
130 | Grant(57) <= Signal_grant(7)(2) or Signal_grant(18)(2); -- Grant(6,2) |
---|
131 | Grant(58) <= Signal_grant(8)(3) or Signal_grant(19)(3); -- Grant(6,3) |
---|
132 | Grant(59) <= Signal_grant(9)(4) or Signal_grant(20)(4); -- Grant(6,4) |
---|
133 | Grant(60) <= Signal_grant(10)(5) or Signal_grant(21)(5); -- Grant(6,5) |
---|
134 | Grant(61) <= Signal_grant(11)(6) ; -- Grant(6,6) |
---|
135 | Grant(62) <= Signal_grant(1)(7) or Signal_grant(12)(7); -- Grant(6,7) |
---|
136 | Grant(63) <= Signal_grant(2)(8) or Signal_grant(13)(8); -- Grant(6,8) |
---|
137 | Grant(64) <= Signal_grant(3)(9) or Signal_grant(14)(9); -- Grant(6,9) |
---|
138 | Grant(65) <= Signal_grant(4)(10) or Signal_grant(15)(10); -- Grant(6,10) |
---|
139 | Grant(66) <= Signal_grant(5)(11) or Signal_grant(16)(11); -- Grant(6,11) |
---|
140 | Grant(67) <= Signal_grant(7)(1) or Signal_grant(18)(1); -- Grant(7,1) |
---|
141 | Grant(68) <= Signal_grant(8)(2) or Signal_grant(19)(2); -- Grant(7,2) |
---|
142 | Grant(69) <= Signal_grant(9)(3) or Signal_grant(20)(3); -- Grant(7,3) |
---|
143 | Grant(70) <= Signal_grant(10)(4) or Signal_grant(21)(4); -- Grant(7,4) |
---|
144 | Grant(71) <= Signal_grant(11)(5) ; -- Grant(7,5) |
---|
145 | Grant(72) <= Signal_grant(1)(6) or Signal_grant(12)(6); -- Grant(7,6) |
---|
146 | Grant(73) <= Signal_grant(2)(7) or Signal_grant(13)(7); -- Grant(7,7) |
---|
147 | Grant(74) <= Signal_grant(3)(8) or Signal_grant(14)(8); -- Grant(7,8) |
---|
148 | Grant(75) <= Signal_grant(4)(9) or Signal_grant(15)(9); -- Grant(7,9) |
---|
149 | Grant(76) <= Signal_grant(5)(10) or Signal_grant(16)(10); -- Grant(7,10) |
---|
150 | Grant(77) <= Signal_grant(6)(11) or Signal_grant(17)(11); -- Grant(7,11) |
---|
151 | Grant(78) <= Signal_grant(8)(1) or Signal_grant(19)(1); -- Grant(8,1) |
---|
152 | Grant(79) <= Signal_grant(9)(2) or Signal_grant(20)(2); -- Grant(8,2) |
---|
153 | Grant(80) <= Signal_grant(10)(3) or Signal_grant(21)(3); -- Grant(8,3) |
---|
154 | Grant(81) <= Signal_grant(11)(4) ; -- Grant(8,4) |
---|
155 | Grant(82) <= Signal_grant(1)(5) or Signal_grant(12)(5); -- Grant(8,5) |
---|
156 | Grant(83) <= Signal_grant(2)(6) or Signal_grant(13)(6); -- Grant(8,6) |
---|
157 | Grant(84) <= Signal_grant(3)(7) or Signal_grant(14)(7); -- Grant(8,7) |
---|
158 | Grant(85) <= Signal_grant(4)(8) or Signal_grant(15)(8); -- Grant(8,8) |
---|
159 | Grant(86) <= Signal_grant(5)(9) or Signal_grant(16)(9); -- Grant(8,9) |
---|
160 | Grant(87) <= Signal_grant(6)(10) or Signal_grant(17)(10); -- Grant(8,10) |
---|
161 | Grant(88) <= Signal_grant(7)(11) or Signal_grant(18)(11); -- Grant(8,11) |
---|
162 | Grant(89) <= Signal_grant(9)(1) or Signal_grant(20)(1); -- Grant(9,1) |
---|
163 | Grant(90) <= Signal_grant(10)(2) or Signal_grant(21)(2); -- Grant(9,2) |
---|
164 | Grant(91) <= Signal_grant(11)(3) ; -- Grant(9,3) |
---|
165 | Grant(92) <= Signal_grant(1)(4) or Signal_grant(12)(4); -- Grant(9,4) |
---|
166 | Grant(93) <= Signal_grant(2)(5) or Signal_grant(13)(5); -- Grant(9,5) |
---|
167 | Grant(94) <= Signal_grant(3)(6) or Signal_grant(14)(6); -- Grant(9,6) |
---|
168 | Grant(95) <= Signal_grant(4)(7) or Signal_grant(15)(7); -- Grant(9,7) |
---|
169 | Grant(96) <= Signal_grant(5)(8) or Signal_grant(16)(8); -- Grant(9,8) |
---|
170 | Grant(97) <= Signal_grant(6)(9) or Signal_grant(17)(9); -- Grant(9,9) |
---|
171 | Grant(98) <= Signal_grant(7)(10) or Signal_grant(18)(10); -- Grant(9,10) |
---|
172 | Grant(99) <= Signal_grant(8)(11) or Signal_grant(19)(11); -- Grant(9,11) |
---|
173 | Grant(100) <= Signal_grant(10)(1) or Signal_grant(21)(1); -- Grant(10,1) |
---|
174 | Grant(101) <= Signal_grant(11)(2) ; -- Grant(10,2) |
---|
175 | Grant(102) <= Signal_grant(1)(3) or Signal_grant(12)(3); -- Grant(10,3) |
---|
176 | Grant(103) <= Signal_grant(2)(4) or Signal_grant(13)(4); -- Grant(10,4) |
---|
177 | Grant(104) <= Signal_grant(3)(5) or Signal_grant(14)(5); -- Grant(10,5) |
---|
178 | Grant(105) <= Signal_grant(4)(6) or Signal_grant(15)(6); -- Grant(10,6) |
---|
179 | Grant(106) <= Signal_grant(5)(7) or Signal_grant(16)(7); -- Grant(10,7) |
---|
180 | Grant(107) <= Signal_grant(6)(8) or Signal_grant(17)(8); -- Grant(10,8) |
---|
181 | Grant(108) <= Signal_grant(7)(9) or Signal_grant(18)(9); -- Grant(10,9) |
---|
182 | Grant(109) <= Signal_grant(8)(10) or Signal_grant(19)(10); -- Grant(10,10) |
---|
183 | Grant(110) <= Signal_grant(9)(11) or Signal_grant(20)(11); -- Grant(10,11) |
---|
184 | Grant(111) <= Signal_grant(11)(1) ; -- Grant(11,1) |
---|
185 | Grant(112) <= Signal_grant(1)(2) or Signal_grant(12)(2); -- Grant(11,2) |
---|
186 | Grant(113) <= Signal_grant(2)(3) or Signal_grant(13)(3); -- Grant(11,3) |
---|
187 | Grant(114) <= Signal_grant(3)(4) or Signal_grant(14)(4); -- Grant(11,4) |
---|
188 | Grant(115) <= Signal_grant(4)(5) or Signal_grant(15)(5); -- Grant(11,5) |
---|
189 | Grant(116) <= Signal_grant(5)(6) or Signal_grant(16)(6); -- Grant(11,6) |
---|
190 | Grant(117) <= Signal_grant(6)(7) or Signal_grant(17)(7); -- Grant(11,7) |
---|
191 | Grant(118) <= Signal_grant(7)(8) or Signal_grant(18)(8); -- Grant(11,8) |
---|
192 | Grant(119) <= Signal_grant(8)(9) or Signal_grant(19)(9); -- Grant(11,9) |
---|
193 | Grant(120) <= Signal_grant(9)(10) or Signal_grant(20)(10); -- Grant(11,10) |
---|
194 | Grant(121) <= Signal_grant(10)(11) or Signal_grant(21)(11); -- Grant(11,11) |
---|
195 | High <= '1'; |
---|
196 | |
---|
197 | ----instantiations des cellules arbitres et interconnection |
---|
198 | |
---|
199 | -------------------------- Diagonale n° 1 |
---|
200 | |
---|
201 | |
---|
202 | Arbiter_1_1 : Arbiter |
---|
203 | |
---|
204 | PORT MAP (Request => Request(1), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(1), |
---|
205 | South => south_2_north(1)(1), East => east_2_west(1)(1) , Grant => Signal_grant(1)(1)); |
---|
206 | |
---|
207 | Arbiter_1_2 : Arbiter |
---|
208 | |
---|
209 | PORT MAP (Request => Request(112), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(2), |
---|
210 | South => south_2_north(1)(2), East => east_2_west(1)(2) , Grant => Signal_grant(1)(2)); |
---|
211 | |
---|
212 | Arbiter_1_3 : Arbiter |
---|
213 | |
---|
214 | PORT MAP (Request => Request(102), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(3), |
---|
215 | South => south_2_north(1)(3), East => east_2_west(1)(3) , Grant => Signal_grant(1)(3)); |
---|
216 | |
---|
217 | Arbiter_1_4 : Arbiter |
---|
218 | |
---|
219 | PORT MAP (Request => Request(92), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(4), |
---|
220 | South => south_2_north(1)(4), East => east_2_west(1)(4) , Grant => Signal_grant(1)(4)); |
---|
221 | |
---|
222 | Arbiter_1_5 : Arbiter |
---|
223 | |
---|
224 | PORT MAP (Request => Request(82), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(5), |
---|
225 | South => south_2_north(1)(5), East => east_2_west(1)(5) , Grant => Signal_grant(1)(5)); |
---|
226 | |
---|
227 | Arbiter_1_6 : Arbiter |
---|
228 | |
---|
229 | PORT MAP (Request => Request(72), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(6), |
---|
230 | South => south_2_north(1)(6), East => east_2_west(1)(6) , Grant => Signal_grant(1)(6)); |
---|
231 | |
---|
232 | Arbiter_1_7 : Arbiter |
---|
233 | |
---|
234 | PORT MAP (Request => Request(62), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(7), |
---|
235 | South => south_2_north(1)(7), East => east_2_west(1)(7) , Grant => Signal_grant(1)(7)); |
---|
236 | |
---|
237 | Arbiter_1_8 : Arbiter |
---|
238 | |
---|
239 | PORT MAP (Request => Request(52), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(8), |
---|
240 | South => south_2_north(1)(8), East => east_2_west(1)(8) , Grant => Signal_grant(1)(8)); |
---|
241 | |
---|
242 | Arbiter_1_9 : Arbiter |
---|
243 | |
---|
244 | PORT MAP (Request => Request(42), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(9), |
---|
245 | South => south_2_north(1)(9), East => east_2_west(1)(9) , Grant => Signal_grant(1)(9)); |
---|
246 | |
---|
247 | Arbiter_1_10 : Arbiter |
---|
248 | |
---|
249 | PORT MAP (Request => Request(32), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(10), |
---|
250 | South => south_2_north(1)(10), East => east_2_west(1)(10) , Grant => Signal_grant(1)(10)); |
---|
251 | |
---|
252 | Arbiter_1_11 : Arbiter |
---|
253 | |
---|
254 | PORT MAP (Request => Request(22), North => High, West => High, P => Signal_priority(21), Fifo_full => Fifo_full(11), |
---|
255 | South => south_2_north(1)(11), East => east_2_west(1)(11) , Grant => Signal_grant(1)(11)); |
---|
256 | |
---|
257 | -------------------------- Diagonale n° 2 |
---|
258 | |
---|
259 | |
---|
260 | Arbiter_2_1 : Arbiter |
---|
261 | |
---|
262 | PORT MAP (Request => Request(12), North => south_2_north(1)(1), West => east_2_west(1)(11), P => Signal_priority(20), Fifo_full => Fifo_full(1), |
---|
263 | South => south_2_north(2)(1), East => east_2_west(2)(1) , Grant => Signal_grant(2)(1)); |
---|
264 | |
---|
265 | Arbiter_2_2 : Arbiter |
---|
266 | |
---|
267 | PORT MAP (Request => Request(2), North => south_2_north(1)(2), West => east_2_west(1)(1), P => Signal_priority(20), Fifo_full => Fifo_full(2), |
---|
268 | South => south_2_north(2)(2), East => east_2_west(2)(2) , Grant => Signal_grant(2)(2)); |
---|
269 | |
---|
270 | Arbiter_2_3 : Arbiter |
---|
271 | |
---|
272 | PORT MAP (Request => Request(113), North => south_2_north(1)(3), West => east_2_west(1)(2), P => Signal_priority(20), Fifo_full => Fifo_full(3), |
---|
273 | South => south_2_north(2)(3), East => east_2_west(2)(3) , Grant => Signal_grant(2)(3)); |
---|
274 | |
---|
275 | Arbiter_2_4 : Arbiter |
---|
276 | |
---|
277 | PORT MAP (Request => Request(103), North => south_2_north(1)(4), West => east_2_west(1)(3), P => Signal_priority(20), Fifo_full => Fifo_full(4), |
---|
278 | South => south_2_north(2)(4), East => east_2_west(2)(4) , Grant => Signal_grant(2)(4)); |
---|
279 | |
---|
280 | Arbiter_2_5 : Arbiter |
---|
281 | |
---|
282 | PORT MAP (Request => Request(93), North => south_2_north(1)(5), West => east_2_west(1)(4), P => Signal_priority(20), Fifo_full => Fifo_full(5), |
---|
283 | South => south_2_north(2)(5), East => east_2_west(2)(5) , Grant => Signal_grant(2)(5)); |
---|
284 | |
---|
285 | Arbiter_2_6 : Arbiter |
---|
286 | |
---|
287 | PORT MAP (Request => Request(83), North => south_2_north(1)(6), West => east_2_west(1)(5), P => Signal_priority(20), Fifo_full => Fifo_full(6), |
---|
288 | South => south_2_north(2)(6), East => east_2_west(2)(6) , Grant => Signal_grant(2)(6)); |
---|
289 | |
---|
290 | Arbiter_2_7 : Arbiter |
---|
291 | |
---|
292 | PORT MAP (Request => Request(73), North => south_2_north(1)(7), West => east_2_west(1)(6), P => Signal_priority(20), Fifo_full => Fifo_full(7), |
---|
293 | South => south_2_north(2)(7), East => east_2_west(2)(7) , Grant => Signal_grant(2)(7)); |
---|
294 | |
---|
295 | Arbiter_2_8 : Arbiter |
---|
296 | |
---|
297 | PORT MAP (Request => Request(63), North => south_2_north(1)(8), West => east_2_west(1)(7), P => Signal_priority(20), Fifo_full => Fifo_full(8), |
---|
298 | South => south_2_north(2)(8), East => east_2_west(2)(8) , Grant => Signal_grant(2)(8)); |
---|
299 | |
---|
300 | Arbiter_2_9 : Arbiter |
---|
301 | |
---|
302 | PORT MAP (Request => Request(53), North => south_2_north(1)(9), West => east_2_west(1)(8), P => Signal_priority(20), Fifo_full => Fifo_full(9), |
---|
303 | South => south_2_north(2)(9), East => east_2_west(2)(9) , Grant => Signal_grant(2)(9)); |
---|
304 | |
---|
305 | Arbiter_2_10 : Arbiter |
---|
306 | |
---|
307 | PORT MAP (Request => Request(43), North => south_2_north(1)(10), West => east_2_west(1)(9), P => Signal_priority(20), Fifo_full => Fifo_full(10), |
---|
308 | South => south_2_north(2)(10), East => east_2_west(2)(10) , Grant => Signal_grant(2)(10)); |
---|
309 | |
---|
310 | Arbiter_2_11 : Arbiter |
---|
311 | |
---|
312 | PORT MAP (Request => Request(33), North => south_2_north(1)(11), West => east_2_west(1)(10), P => Signal_priority(20), Fifo_full => Fifo_full(11), |
---|
313 | South => south_2_north(2)(11), East => east_2_west(2)(11) , Grant => Signal_grant(2)(11)); |
---|
314 | |
---|
315 | -------------------------- Diagonale n° 3 |
---|
316 | |
---|
317 | |
---|
318 | Arbiter_3_1 : Arbiter |
---|
319 | |
---|
320 | PORT MAP (Request => Request(23), North => south_2_north(2)(1), West => east_2_west(2)(11), P => Signal_priority(19), Fifo_full => Fifo_full(1), |
---|
321 | South => south_2_north(3)(1), East => east_2_west(3)(1) , Grant => Signal_grant(3)(1)); |
---|
322 | |
---|
323 | Arbiter_3_2 : Arbiter |
---|
324 | |
---|
325 | PORT MAP (Request => Request(13), North => south_2_north(2)(2), West => east_2_west(2)(1), P => Signal_priority(19), Fifo_full => Fifo_full(2), |
---|
326 | South => south_2_north(3)(2), East => east_2_west(3)(2) , Grant => Signal_grant(3)(2)); |
---|
327 | |
---|
328 | Arbiter_3_3 : Arbiter |
---|
329 | |
---|
330 | PORT MAP (Request => Request(3), North => south_2_north(2)(3), West => east_2_west(2)(2), P => Signal_priority(19), Fifo_full => Fifo_full(3), |
---|
331 | South => south_2_north(3)(3), East => east_2_west(3)(3) , Grant => Signal_grant(3)(3)); |
---|
332 | |
---|
333 | Arbiter_3_4 : Arbiter |
---|
334 | |
---|
335 | PORT MAP (Request => Request(114), North => south_2_north(2)(4), West => east_2_west(2)(3), P => Signal_priority(19), Fifo_full => Fifo_full(4), |
---|
336 | South => south_2_north(3)(4), East => east_2_west(3)(4) , Grant => Signal_grant(3)(4)); |
---|
337 | |
---|
338 | Arbiter_3_5 : Arbiter |
---|
339 | |
---|
340 | PORT MAP (Request => Request(104), North => south_2_north(2)(5), West => east_2_west(2)(4), P => Signal_priority(19), Fifo_full => Fifo_full(5), |
---|
341 | South => south_2_north(3)(5), East => east_2_west(3)(5) , Grant => Signal_grant(3)(5)); |
---|
342 | |
---|
343 | Arbiter_3_6 : Arbiter |
---|
344 | |
---|
345 | PORT MAP (Request => Request(94), North => south_2_north(2)(6), West => east_2_west(2)(5), P => Signal_priority(19), Fifo_full => Fifo_full(6), |
---|
346 | South => south_2_north(3)(6), East => east_2_west(3)(6) , Grant => Signal_grant(3)(6)); |
---|
347 | |
---|
348 | Arbiter_3_7 : Arbiter |
---|
349 | |
---|
350 | PORT MAP (Request => Request(84), North => south_2_north(2)(7), West => east_2_west(2)(6), P => Signal_priority(19), Fifo_full => Fifo_full(7), |
---|
351 | South => south_2_north(3)(7), East => east_2_west(3)(7) , Grant => Signal_grant(3)(7)); |
---|
352 | |
---|
353 | Arbiter_3_8 : Arbiter |
---|
354 | |
---|
355 | PORT MAP (Request => Request(74), North => south_2_north(2)(8), West => east_2_west(2)(7), P => Signal_priority(19), Fifo_full => Fifo_full(8), |
---|
356 | South => south_2_north(3)(8), East => east_2_west(3)(8) , Grant => Signal_grant(3)(8)); |
---|
357 | |
---|
358 | Arbiter_3_9 : Arbiter |
---|
359 | |
---|
360 | PORT MAP (Request => Request(64), North => south_2_north(2)(9), West => east_2_west(2)(8), P => Signal_priority(19), Fifo_full => Fifo_full(9), |
---|
361 | South => south_2_north(3)(9), East => east_2_west(3)(9) , Grant => Signal_grant(3)(9)); |
---|
362 | |
---|
363 | Arbiter_3_10 : Arbiter |
---|
364 | |
---|
365 | PORT MAP (Request => Request(54), North => south_2_north(2)(10), West => east_2_west(2)(9), P => Signal_priority(19), Fifo_full => Fifo_full(10), |
---|
366 | South => south_2_north(3)(10), East => east_2_west(3)(10) , Grant => Signal_grant(3)(10)); |
---|
367 | |
---|
368 | Arbiter_3_11 : Arbiter |
---|
369 | |
---|
370 | PORT MAP (Request => Request(44), North => south_2_north(2)(11), West => east_2_west(2)(10), P => Signal_priority(19), Fifo_full => Fifo_full(11), |
---|
371 | South => south_2_north(3)(11), East => east_2_west(3)(11) , Grant => Signal_grant(3)(11)); |
---|
372 | |
---|
373 | -------------------------- Diagonale n° 4 |
---|
374 | |
---|
375 | |
---|
376 | Arbiter_4_1 : Arbiter |
---|
377 | |
---|
378 | PORT MAP (Request => Request(34), North => south_2_north(3)(1), West => east_2_west(3)(11), P => Signal_priority(18), Fifo_full => Fifo_full(1), |
---|
379 | South => south_2_north(4)(1), East => east_2_west(4)(1) , Grant => Signal_grant(4)(1)); |
---|
380 | |
---|
381 | Arbiter_4_2 : Arbiter |
---|
382 | |
---|
383 | PORT MAP (Request => Request(24), North => south_2_north(3)(2), West => east_2_west(3)(1), P => Signal_priority(18), Fifo_full => Fifo_full(2), |
---|
384 | South => south_2_north(4)(2), East => east_2_west(4)(2) , Grant => Signal_grant(4)(2)); |
---|
385 | |
---|
386 | Arbiter_4_3 : Arbiter |
---|
387 | |
---|
388 | PORT MAP (Request => Request(14), North => south_2_north(3)(3), West => east_2_west(3)(2), P => Signal_priority(18), Fifo_full => Fifo_full(3), |
---|
389 | South => south_2_north(4)(3), East => east_2_west(4)(3) , Grant => Signal_grant(4)(3)); |
---|
390 | |
---|
391 | Arbiter_4_4 : Arbiter |
---|
392 | |
---|
393 | PORT MAP (Request => Request(4), North => south_2_north(3)(4), West => east_2_west(3)(3), P => Signal_priority(18), Fifo_full => Fifo_full(4), |
---|
394 | South => south_2_north(4)(4), East => east_2_west(4)(4) , Grant => Signal_grant(4)(4)); |
---|
395 | |
---|
396 | Arbiter_4_5 : Arbiter |
---|
397 | |
---|
398 | PORT MAP (Request => Request(115), North => south_2_north(3)(5), West => east_2_west(3)(4), P => Signal_priority(18), Fifo_full => Fifo_full(5), |
---|
399 | South => south_2_north(4)(5), East => east_2_west(4)(5) , Grant => Signal_grant(4)(5)); |
---|
400 | |
---|
401 | Arbiter_4_6 : Arbiter |
---|
402 | |
---|
403 | PORT MAP (Request => Request(105), North => south_2_north(3)(6), West => east_2_west(3)(5), P => Signal_priority(18), Fifo_full => Fifo_full(6), |
---|
404 | South => south_2_north(4)(6), East => east_2_west(4)(6) , Grant => Signal_grant(4)(6)); |
---|
405 | |
---|
406 | Arbiter_4_7 : Arbiter |
---|
407 | |
---|
408 | PORT MAP (Request => Request(95), North => south_2_north(3)(7), West => east_2_west(3)(6), P => Signal_priority(18), Fifo_full => Fifo_full(7), |
---|
409 | South => south_2_north(4)(7), East => east_2_west(4)(7) , Grant => Signal_grant(4)(7)); |
---|
410 | |
---|
411 | Arbiter_4_8 : Arbiter |
---|
412 | |
---|
413 | PORT MAP (Request => Request(85), North => south_2_north(3)(8), West => east_2_west(3)(7), P => Signal_priority(18), Fifo_full => Fifo_full(8), |
---|
414 | South => south_2_north(4)(8), East => east_2_west(4)(8) , Grant => Signal_grant(4)(8)); |
---|
415 | |
---|
416 | Arbiter_4_9 : Arbiter |
---|
417 | |
---|
418 | PORT MAP (Request => Request(75), North => south_2_north(3)(9), West => east_2_west(3)(8), P => Signal_priority(18), Fifo_full => Fifo_full(9), |
---|
419 | South => south_2_north(4)(9), East => east_2_west(4)(9) , Grant => Signal_grant(4)(9)); |
---|
420 | |
---|
421 | Arbiter_4_10 : Arbiter |
---|
422 | |
---|
423 | PORT MAP (Request => Request(65), North => south_2_north(3)(10), West => east_2_west(3)(9), P => Signal_priority(18), Fifo_full => Fifo_full(10), |
---|
424 | South => south_2_north(4)(10), East => east_2_west(4)(10) , Grant => Signal_grant(4)(10)); |
---|
425 | |
---|
426 | Arbiter_4_11 : Arbiter |
---|
427 | |
---|
428 | PORT MAP (Request => Request(55), North => south_2_north(3)(11), West => east_2_west(3)(10), P => Signal_priority(18), Fifo_full => Fifo_full(11), |
---|
429 | South => south_2_north(4)(11), East => east_2_west(4)(11) , Grant => Signal_grant(4)(11)); |
---|
430 | |
---|
431 | -------------------------- Diagonale n° 5 |
---|
432 | |
---|
433 | |
---|
434 | Arbiter_5_1 : Arbiter |
---|
435 | |
---|
436 | PORT MAP (Request => Request(45), North => south_2_north(4)(1), West => east_2_west(4)(11), P => Signal_priority(17), Fifo_full => Fifo_full(1), |
---|
437 | South => south_2_north(5)(1), East => east_2_west(5)(1) , Grant => Signal_grant(5)(1)); |
---|
438 | |
---|
439 | Arbiter_5_2 : Arbiter |
---|
440 | |
---|
441 | PORT MAP (Request => Request(35), North => south_2_north(4)(2), West => east_2_west(4)(1), P => Signal_priority(17), Fifo_full => Fifo_full(2), |
---|
442 | South => south_2_north(5)(2), East => east_2_west(5)(2) , Grant => Signal_grant(5)(2)); |
---|
443 | |
---|
444 | Arbiter_5_3 : Arbiter |
---|
445 | |
---|
446 | PORT MAP (Request => Request(25), North => south_2_north(4)(3), West => east_2_west(4)(2), P => Signal_priority(17), Fifo_full => Fifo_full(3), |
---|
447 | South => south_2_north(5)(3), East => east_2_west(5)(3) , Grant => Signal_grant(5)(3)); |
---|
448 | |
---|
449 | Arbiter_5_4 : Arbiter |
---|
450 | |
---|
451 | PORT MAP (Request => Request(15), North => south_2_north(4)(4), West => east_2_west(4)(3), P => Signal_priority(17), Fifo_full => Fifo_full(4), |
---|
452 | South => south_2_north(5)(4), East => east_2_west(5)(4) , Grant => Signal_grant(5)(4)); |
---|
453 | |
---|
454 | Arbiter_5_5 : Arbiter |
---|
455 | |
---|
456 | PORT MAP (Request => Request(5), North => south_2_north(4)(5), West => east_2_west(4)(4), P => Signal_priority(17), Fifo_full => Fifo_full(5), |
---|
457 | South => south_2_north(5)(5), East => east_2_west(5)(5) , Grant => Signal_grant(5)(5)); |
---|
458 | |
---|
459 | Arbiter_5_6 : Arbiter |
---|
460 | |
---|
461 | PORT MAP (Request => Request(116), North => south_2_north(4)(6), West => east_2_west(4)(5), P => Signal_priority(17), Fifo_full => Fifo_full(6), |
---|
462 | South => south_2_north(5)(6), East => east_2_west(5)(6) , Grant => Signal_grant(5)(6)); |
---|
463 | |
---|
464 | Arbiter_5_7 : Arbiter |
---|
465 | |
---|
466 | PORT MAP (Request => Request(106), North => south_2_north(4)(7), West => east_2_west(4)(6), P => Signal_priority(17), Fifo_full => Fifo_full(7), |
---|
467 | South => south_2_north(5)(7), East => east_2_west(5)(7) , Grant => Signal_grant(5)(7)); |
---|
468 | |
---|
469 | Arbiter_5_8 : Arbiter |
---|
470 | |
---|
471 | PORT MAP (Request => Request(96), North => south_2_north(4)(8), West => east_2_west(4)(7), P => Signal_priority(17), Fifo_full => Fifo_full(8), |
---|
472 | South => south_2_north(5)(8), East => east_2_west(5)(8) , Grant => Signal_grant(5)(8)); |
---|
473 | |
---|
474 | Arbiter_5_9 : Arbiter |
---|
475 | |
---|
476 | PORT MAP (Request => Request(86), North => south_2_north(4)(9), West => east_2_west(4)(8), P => Signal_priority(17), Fifo_full => Fifo_full(9), |
---|
477 | South => south_2_north(5)(9), East => east_2_west(5)(9) , Grant => Signal_grant(5)(9)); |
---|
478 | |
---|
479 | Arbiter_5_10 : Arbiter |
---|
480 | |
---|
481 | PORT MAP (Request => Request(76), North => south_2_north(4)(10), West => east_2_west(4)(9), P => Signal_priority(17), Fifo_full => Fifo_full(10), |
---|
482 | South => south_2_north(5)(10), East => east_2_west(5)(10) , Grant => Signal_grant(5)(10)); |
---|
483 | |
---|
484 | Arbiter_5_11 : Arbiter |
---|
485 | |
---|
486 | PORT MAP (Request => Request(66), North => south_2_north(4)(11), West => east_2_west(4)(10), P => Signal_priority(17), Fifo_full => Fifo_full(11), |
---|
487 | South => south_2_north(5)(11), East => east_2_west(5)(11) , Grant => Signal_grant(5)(11)); |
---|
488 | |
---|
489 | -------------------------- Diagonale n° 6 |
---|
490 | |
---|
491 | |
---|
492 | Arbiter_6_1 : Arbiter |
---|
493 | |
---|
494 | PORT MAP (Request => Request(56), North => south_2_north(5)(1), West => east_2_west(5)(11), P => Signal_priority(16), Fifo_full => Fifo_full(1), |
---|
495 | South => south_2_north(6)(1), East => east_2_west(6)(1) , Grant => Signal_grant(6)(1)); |
---|
496 | |
---|
497 | Arbiter_6_2 : Arbiter |
---|
498 | |
---|
499 | PORT MAP (Request => Request(46), North => south_2_north(5)(2), West => east_2_west(5)(1), P => Signal_priority(16), Fifo_full => Fifo_full(2), |
---|
500 | South => south_2_north(6)(2), East => east_2_west(6)(2) , Grant => Signal_grant(6)(2)); |
---|
501 | |
---|
502 | Arbiter_6_3 : Arbiter |
---|
503 | |
---|
504 | PORT MAP (Request => Request(36), North => south_2_north(5)(3), West => east_2_west(5)(2), P => Signal_priority(16), Fifo_full => Fifo_full(3), |
---|
505 | South => south_2_north(6)(3), East => east_2_west(6)(3) , Grant => Signal_grant(6)(3)); |
---|
506 | |
---|
507 | Arbiter_6_4 : Arbiter |
---|
508 | |
---|
509 | PORT MAP (Request => Request(26), North => south_2_north(5)(4), West => east_2_west(5)(3), P => Signal_priority(16), Fifo_full => Fifo_full(4), |
---|
510 | South => south_2_north(6)(4), East => east_2_west(6)(4) , Grant => Signal_grant(6)(4)); |
---|
511 | |
---|
512 | Arbiter_6_5 : Arbiter |
---|
513 | |
---|
514 | PORT MAP (Request => Request(16), North => south_2_north(5)(5), West => east_2_west(5)(4), P => Signal_priority(16), Fifo_full => Fifo_full(5), |
---|
515 | South => south_2_north(6)(5), East => east_2_west(6)(5) , Grant => Signal_grant(6)(5)); |
---|
516 | |
---|
517 | Arbiter_6_6 : Arbiter |
---|
518 | |
---|
519 | PORT MAP (Request => Request(6), North => south_2_north(5)(6), West => east_2_west(5)(5), P => Signal_priority(16), Fifo_full => Fifo_full(6), |
---|
520 | South => south_2_north(6)(6), East => east_2_west(6)(6) , Grant => Signal_grant(6)(6)); |
---|
521 | |
---|
522 | Arbiter_6_7 : Arbiter |
---|
523 | |
---|
524 | PORT MAP (Request => Request(117), North => south_2_north(5)(7), West => east_2_west(5)(6), P => Signal_priority(16), Fifo_full => Fifo_full(7), |
---|
525 | South => south_2_north(6)(7), East => east_2_west(6)(7) , Grant => Signal_grant(6)(7)); |
---|
526 | |
---|
527 | Arbiter_6_8 : Arbiter |
---|
528 | |
---|
529 | PORT MAP (Request => Request(107), North => south_2_north(5)(8), West => east_2_west(5)(7), P => Signal_priority(16), Fifo_full => Fifo_full(8), |
---|
530 | South => south_2_north(6)(8), East => east_2_west(6)(8) , Grant => Signal_grant(6)(8)); |
---|
531 | |
---|
532 | Arbiter_6_9 : Arbiter |
---|
533 | |
---|
534 | PORT MAP (Request => Request(97), North => south_2_north(5)(9), West => east_2_west(5)(8), P => Signal_priority(16), Fifo_full => Fifo_full(9), |
---|
535 | South => south_2_north(6)(9), East => east_2_west(6)(9) , Grant => Signal_grant(6)(9)); |
---|
536 | |
---|
537 | Arbiter_6_10 : Arbiter |
---|
538 | |
---|
539 | PORT MAP (Request => Request(87), North => south_2_north(5)(10), West => east_2_west(5)(9), P => Signal_priority(16), Fifo_full => Fifo_full(10), |
---|
540 | South => south_2_north(6)(10), East => east_2_west(6)(10) , Grant => Signal_grant(6)(10)); |
---|
541 | |
---|
542 | Arbiter_6_11 : Arbiter |
---|
543 | |
---|
544 | PORT MAP (Request => Request(77), North => south_2_north(5)(11), West => east_2_west(5)(10), P => Signal_priority(16), Fifo_full => Fifo_full(11), |
---|
545 | South => south_2_north(6)(11), East => east_2_west(6)(11) , Grant => Signal_grant(6)(11)); |
---|
546 | |
---|
547 | -------------------------- Diagonale n° 7 |
---|
548 | |
---|
549 | |
---|
550 | Arbiter_7_1 : Arbiter |
---|
551 | |
---|
552 | PORT MAP (Request => Request(67), North => south_2_north(6)(1), West => east_2_west(6)(11), P => Signal_priority(15), Fifo_full => Fifo_full(1), |
---|
553 | South => south_2_north(7)(1), East => east_2_west(7)(1) , Grant => Signal_grant(7)(1)); |
---|
554 | |
---|
555 | Arbiter_7_2 : Arbiter |
---|
556 | |
---|
557 | PORT MAP (Request => Request(57), North => south_2_north(6)(2), West => east_2_west(6)(1), P => Signal_priority(15), Fifo_full => Fifo_full(2), |
---|
558 | South => south_2_north(7)(2), East => east_2_west(7)(2) , Grant => Signal_grant(7)(2)); |
---|
559 | |
---|
560 | Arbiter_7_3 : Arbiter |
---|
561 | |
---|
562 | PORT MAP (Request => Request(47), North => south_2_north(6)(3), West => east_2_west(6)(2), P => Signal_priority(15), Fifo_full => Fifo_full(3), |
---|
563 | South => south_2_north(7)(3), East => east_2_west(7)(3) , Grant => Signal_grant(7)(3)); |
---|
564 | |
---|
565 | Arbiter_7_4 : Arbiter |
---|
566 | |
---|
567 | PORT MAP (Request => Request(37), North => south_2_north(6)(4), West => east_2_west(6)(3), P => Signal_priority(15), Fifo_full => Fifo_full(4), |
---|
568 | South => south_2_north(7)(4), East => east_2_west(7)(4) , Grant => Signal_grant(7)(4)); |
---|
569 | |
---|
570 | Arbiter_7_5 : Arbiter |
---|
571 | |
---|
572 | PORT MAP (Request => Request(27), North => south_2_north(6)(5), West => east_2_west(6)(4), P => Signal_priority(15), Fifo_full => Fifo_full(5), |
---|
573 | South => south_2_north(7)(5), East => east_2_west(7)(5) , Grant => Signal_grant(7)(5)); |
---|
574 | |
---|
575 | Arbiter_7_6 : Arbiter |
---|
576 | |
---|
577 | PORT MAP (Request => Request(17), North => south_2_north(6)(6), West => east_2_west(6)(5), P => Signal_priority(15), Fifo_full => Fifo_full(6), |
---|
578 | South => south_2_north(7)(6), East => east_2_west(7)(6) , Grant => Signal_grant(7)(6)); |
---|
579 | |
---|
580 | Arbiter_7_7 : Arbiter |
---|
581 | |
---|
582 | PORT MAP (Request => Request(7), North => south_2_north(6)(7), West => east_2_west(6)(6), P => Signal_priority(15), Fifo_full => Fifo_full(7), |
---|
583 | South => south_2_north(7)(7), East => east_2_west(7)(7) , Grant => Signal_grant(7)(7)); |
---|
584 | |
---|
585 | Arbiter_7_8 : Arbiter |
---|
586 | |
---|
587 | PORT MAP (Request => Request(118), North => south_2_north(6)(8), West => east_2_west(6)(7), P => Signal_priority(15), Fifo_full => Fifo_full(8), |
---|
588 | South => south_2_north(7)(8), East => east_2_west(7)(8) , Grant => Signal_grant(7)(8)); |
---|
589 | |
---|
590 | Arbiter_7_9 : Arbiter |
---|
591 | |
---|
592 | PORT MAP (Request => Request(108), North => south_2_north(6)(9), West => east_2_west(6)(8), P => Signal_priority(15), Fifo_full => Fifo_full(9), |
---|
593 | South => south_2_north(7)(9), East => east_2_west(7)(9) , Grant => Signal_grant(7)(9)); |
---|
594 | |
---|
595 | Arbiter_7_10 : Arbiter |
---|
596 | |
---|
597 | PORT MAP (Request => Request(98), North => south_2_north(6)(10), West => east_2_west(6)(9), P => Signal_priority(15), Fifo_full => Fifo_full(10), |
---|
598 | South => south_2_north(7)(10), East => east_2_west(7)(10) , Grant => Signal_grant(7)(10)); |
---|
599 | |
---|
600 | Arbiter_7_11 : Arbiter |
---|
601 | |
---|
602 | PORT MAP (Request => Request(88), North => south_2_north(6)(11), West => east_2_west(6)(10), P => Signal_priority(15), Fifo_full => Fifo_full(11), |
---|
603 | South => south_2_north(7)(11), East => east_2_west(7)(11) , Grant => Signal_grant(7)(11)); |
---|
604 | |
---|
605 | -------------------------- Diagonale n° 8 |
---|
606 | |
---|
607 | |
---|
608 | Arbiter_8_1 : Arbiter |
---|
609 | |
---|
610 | PORT MAP (Request => Request(78), North => south_2_north(7)(1), West => east_2_west(7)(11), P => Signal_priority(14), Fifo_full => Fifo_full(1), |
---|
611 | South => south_2_north(8)(1), East => east_2_west(8)(1) , Grant => Signal_grant(8)(1)); |
---|
612 | |
---|
613 | Arbiter_8_2 : Arbiter |
---|
614 | |
---|
615 | PORT MAP (Request => Request(68), North => south_2_north(7)(2), West => east_2_west(7)(1), P => Signal_priority(14), Fifo_full => Fifo_full(2), |
---|
616 | South => south_2_north(8)(2), East => east_2_west(8)(2) , Grant => Signal_grant(8)(2)); |
---|
617 | |
---|
618 | Arbiter_8_3 : Arbiter |
---|
619 | |
---|
620 | PORT MAP (Request => Request(58), North => south_2_north(7)(3), West => east_2_west(7)(2), P => Signal_priority(14), Fifo_full => Fifo_full(3), |
---|
621 | South => south_2_north(8)(3), East => east_2_west(8)(3) , Grant => Signal_grant(8)(3)); |
---|
622 | |
---|
623 | Arbiter_8_4 : Arbiter |
---|
624 | |
---|
625 | PORT MAP (Request => Request(48), North => south_2_north(7)(4), West => east_2_west(7)(3), P => Signal_priority(14), Fifo_full => Fifo_full(4), |
---|
626 | South => south_2_north(8)(4), East => east_2_west(8)(4) , Grant => Signal_grant(8)(4)); |
---|
627 | |
---|
628 | Arbiter_8_5 : Arbiter |
---|
629 | |
---|
630 | PORT MAP (Request => Request(38), North => south_2_north(7)(5), West => east_2_west(7)(4), P => Signal_priority(14), Fifo_full => Fifo_full(5), |
---|
631 | South => south_2_north(8)(5), East => east_2_west(8)(5) , Grant => Signal_grant(8)(5)); |
---|
632 | |
---|
633 | Arbiter_8_6 : Arbiter |
---|
634 | |
---|
635 | PORT MAP (Request => Request(28), North => south_2_north(7)(6), West => east_2_west(7)(5), P => Signal_priority(14), Fifo_full => Fifo_full(6), |
---|
636 | South => south_2_north(8)(6), East => east_2_west(8)(6) , Grant => Signal_grant(8)(6)); |
---|
637 | |
---|
638 | Arbiter_8_7 : Arbiter |
---|
639 | |
---|
640 | PORT MAP (Request => Request(18), North => south_2_north(7)(7), West => east_2_west(7)(6), P => Signal_priority(14), Fifo_full => Fifo_full(7), |
---|
641 | South => south_2_north(8)(7), East => east_2_west(8)(7) , Grant => Signal_grant(8)(7)); |
---|
642 | |
---|
643 | Arbiter_8_8 : Arbiter |
---|
644 | |
---|
645 | PORT MAP (Request => Request(8), North => south_2_north(7)(8), West => east_2_west(7)(7), P => Signal_priority(14), Fifo_full => Fifo_full(8), |
---|
646 | South => south_2_north(8)(8), East => east_2_west(8)(8) , Grant => Signal_grant(8)(8)); |
---|
647 | |
---|
648 | Arbiter_8_9 : Arbiter |
---|
649 | |
---|
650 | PORT MAP (Request => Request(119), North => south_2_north(7)(9), West => east_2_west(7)(8), P => Signal_priority(14), Fifo_full => Fifo_full(9), |
---|
651 | South => south_2_north(8)(9), East => east_2_west(8)(9) , Grant => Signal_grant(8)(9)); |
---|
652 | |
---|
653 | Arbiter_8_10 : Arbiter |
---|
654 | |
---|
655 | PORT MAP (Request => Request(109), North => south_2_north(7)(10), West => east_2_west(7)(9), P => Signal_priority(14), Fifo_full => Fifo_full(10), |
---|
656 | South => south_2_north(8)(10), East => east_2_west(8)(10) , Grant => Signal_grant(8)(10)); |
---|
657 | |
---|
658 | Arbiter_8_11 : Arbiter |
---|
659 | |
---|
660 | PORT MAP (Request => Request(99), North => south_2_north(7)(11), West => east_2_west(7)(10), P => Signal_priority(14), Fifo_full => Fifo_full(11), |
---|
661 | South => south_2_north(8)(11), East => east_2_west(8)(11) , Grant => Signal_grant(8)(11)); |
---|
662 | |
---|
663 | -------------------------- Diagonale n° 9 |
---|
664 | |
---|
665 | |
---|
666 | Arbiter_9_1 : Arbiter |
---|
667 | |
---|
668 | PORT MAP (Request => Request(89), North => south_2_north(8)(1), West => east_2_west(8)(11), P => Signal_priority(13), Fifo_full => Fifo_full(1), |
---|
669 | South => south_2_north(9)(1), East => east_2_west(9)(1) , Grant => Signal_grant(9)(1)); |
---|
670 | |
---|
671 | Arbiter_9_2 : Arbiter |
---|
672 | |
---|
673 | PORT MAP (Request => Request(79), North => south_2_north(8)(2), West => east_2_west(8)(1), P => Signal_priority(13), Fifo_full => Fifo_full(2), |
---|
674 | South => south_2_north(9)(2), East => east_2_west(9)(2) , Grant => Signal_grant(9)(2)); |
---|
675 | |
---|
676 | Arbiter_9_3 : Arbiter |
---|
677 | |
---|
678 | PORT MAP (Request => Request(69), North => south_2_north(8)(3), West => east_2_west(8)(2), P => Signal_priority(13), Fifo_full => Fifo_full(3), |
---|
679 | South => south_2_north(9)(3), East => east_2_west(9)(3) , Grant => Signal_grant(9)(3)); |
---|
680 | |
---|
681 | Arbiter_9_4 : Arbiter |
---|
682 | |
---|
683 | PORT MAP (Request => Request(59), North => south_2_north(8)(4), West => east_2_west(8)(3), P => Signal_priority(13), Fifo_full => Fifo_full(4), |
---|
684 | South => south_2_north(9)(4), East => east_2_west(9)(4) , Grant => Signal_grant(9)(4)); |
---|
685 | |
---|
686 | Arbiter_9_5 : Arbiter |
---|
687 | |
---|
688 | PORT MAP (Request => Request(49), North => south_2_north(8)(5), West => east_2_west(8)(4), P => Signal_priority(13), Fifo_full => Fifo_full(5), |
---|
689 | South => south_2_north(9)(5), East => east_2_west(9)(5) , Grant => Signal_grant(9)(5)); |
---|
690 | |
---|
691 | Arbiter_9_6 : Arbiter |
---|
692 | |
---|
693 | PORT MAP (Request => Request(39), North => south_2_north(8)(6), West => east_2_west(8)(5), P => Signal_priority(13), Fifo_full => Fifo_full(6), |
---|
694 | South => south_2_north(9)(6), East => east_2_west(9)(6) , Grant => Signal_grant(9)(6)); |
---|
695 | |
---|
696 | Arbiter_9_7 : Arbiter |
---|
697 | |
---|
698 | PORT MAP (Request => Request(29), North => south_2_north(8)(7), West => east_2_west(8)(6), P => Signal_priority(13), Fifo_full => Fifo_full(7), |
---|
699 | South => south_2_north(9)(7), East => east_2_west(9)(7) , Grant => Signal_grant(9)(7)); |
---|
700 | |
---|
701 | Arbiter_9_8 : Arbiter |
---|
702 | |
---|
703 | PORT MAP (Request => Request(19), North => south_2_north(8)(8), West => east_2_west(8)(7), P => Signal_priority(13), Fifo_full => Fifo_full(8), |
---|
704 | South => south_2_north(9)(8), East => east_2_west(9)(8) , Grant => Signal_grant(9)(8)); |
---|
705 | |
---|
706 | Arbiter_9_9 : Arbiter |
---|
707 | |
---|
708 | PORT MAP (Request => Request(9), North => south_2_north(8)(9), West => east_2_west(8)(8), P => Signal_priority(13), Fifo_full => Fifo_full(9), |
---|
709 | South => south_2_north(9)(9), East => east_2_west(9)(9) , Grant => Signal_grant(9)(9)); |
---|
710 | |
---|
711 | Arbiter_9_10 : Arbiter |
---|
712 | |
---|
713 | PORT MAP (Request => Request(120), North => south_2_north(8)(10), West => east_2_west(8)(9), P => Signal_priority(13), Fifo_full => Fifo_full(10), |
---|
714 | South => south_2_north(9)(10), East => east_2_west(9)(10) , Grant => Signal_grant(9)(10)); |
---|
715 | |
---|
716 | Arbiter_9_11 : Arbiter |
---|
717 | |
---|
718 | PORT MAP (Request => Request(110), North => south_2_north(8)(11), West => east_2_west(8)(10), P => Signal_priority(13), Fifo_full => Fifo_full(11), |
---|
719 | South => south_2_north(9)(11), East => east_2_west(9)(11) , Grant => Signal_grant(9)(11)); |
---|
720 | |
---|
721 | -------------------------- Diagonale n° 10 |
---|
722 | |
---|
723 | |
---|
724 | Arbiter_10_1 : Arbiter |
---|
725 | |
---|
726 | PORT MAP (Request => Request(100), North => south_2_north(9)(1), West => east_2_west(9)(11), P => Signal_priority(12), Fifo_full => Fifo_full(1), |
---|
727 | South => south_2_north(10)(1), East => east_2_west(10)(1) , Grant => Signal_grant(10)(1)); |
---|
728 | |
---|
729 | Arbiter_10_2 : Arbiter |
---|
730 | |
---|
731 | PORT MAP (Request => Request(90), North => south_2_north(9)(2), West => east_2_west(9)(1), P => Signal_priority(12), Fifo_full => Fifo_full(2), |
---|
732 | South => south_2_north(10)(2), East => east_2_west(10)(2) , Grant => Signal_grant(10)(2)); |
---|
733 | |
---|
734 | Arbiter_10_3 : Arbiter |
---|
735 | |
---|
736 | PORT MAP (Request => Request(80), North => south_2_north(9)(3), West => east_2_west(9)(2), P => Signal_priority(12), Fifo_full => Fifo_full(3), |
---|
737 | South => south_2_north(10)(3), East => east_2_west(10)(3) , Grant => Signal_grant(10)(3)); |
---|
738 | |
---|
739 | Arbiter_10_4 : Arbiter |
---|
740 | |
---|
741 | PORT MAP (Request => Request(70), North => south_2_north(9)(4), West => east_2_west(9)(3), P => Signal_priority(12), Fifo_full => Fifo_full(4), |
---|
742 | South => south_2_north(10)(4), East => east_2_west(10)(4) , Grant => Signal_grant(10)(4)); |
---|
743 | |
---|
744 | Arbiter_10_5 : Arbiter |
---|
745 | |
---|
746 | PORT MAP (Request => Request(60), North => south_2_north(9)(5), West => east_2_west(9)(4), P => Signal_priority(12), Fifo_full => Fifo_full(5), |
---|
747 | South => south_2_north(10)(5), East => east_2_west(10)(5) , Grant => Signal_grant(10)(5)); |
---|
748 | |
---|
749 | Arbiter_10_6 : Arbiter |
---|
750 | |
---|
751 | PORT MAP (Request => Request(50), North => south_2_north(9)(6), West => east_2_west(9)(5), P => Signal_priority(12), Fifo_full => Fifo_full(6), |
---|
752 | South => south_2_north(10)(6), East => east_2_west(10)(6) , Grant => Signal_grant(10)(6)); |
---|
753 | |
---|
754 | Arbiter_10_7 : Arbiter |
---|
755 | |
---|
756 | PORT MAP (Request => Request(40), North => south_2_north(9)(7), West => east_2_west(9)(6), P => Signal_priority(12), Fifo_full => Fifo_full(7), |
---|
757 | South => south_2_north(10)(7), East => east_2_west(10)(7) , Grant => Signal_grant(10)(7)); |
---|
758 | |
---|
759 | Arbiter_10_8 : Arbiter |
---|
760 | |
---|
761 | PORT MAP (Request => Request(30), North => south_2_north(9)(8), West => east_2_west(9)(7), P => Signal_priority(12), Fifo_full => Fifo_full(8), |
---|
762 | South => south_2_north(10)(8), East => east_2_west(10)(8) , Grant => Signal_grant(10)(8)); |
---|
763 | |
---|
764 | Arbiter_10_9 : Arbiter |
---|
765 | |
---|
766 | PORT MAP (Request => Request(20), North => south_2_north(9)(9), West => east_2_west(9)(8), P => Signal_priority(12), Fifo_full => Fifo_full(9), |
---|
767 | South => south_2_north(10)(9), East => east_2_west(10)(9) , Grant => Signal_grant(10)(9)); |
---|
768 | |
---|
769 | Arbiter_10_10 : Arbiter |
---|
770 | |
---|
771 | PORT MAP (Request => Request(10), North => south_2_north(9)(10), West => east_2_west(9)(9), P => Signal_priority(12), Fifo_full => Fifo_full(10), |
---|
772 | South => south_2_north(10)(10), East => east_2_west(10)(10) , Grant => Signal_grant(10)(10)); |
---|
773 | |
---|
774 | Arbiter_10_11 : Arbiter |
---|
775 | |
---|
776 | PORT MAP (Request => Request(121), North => south_2_north(9)(11), West => east_2_west(9)(10), P => Signal_priority(12), Fifo_full => Fifo_full(11), |
---|
777 | South => south_2_north(10)(11), East => east_2_west(10)(11) , Grant => Signal_grant(10)(11)); |
---|
778 | |
---|
779 | -------------------------- Diagonale n° 11 |
---|
780 | |
---|
781 | |
---|
782 | Arbiter_11_1 : Arbiter |
---|
783 | |
---|
784 | PORT MAP (Request => Request(111), North => south_2_north(10)(1), West => east_2_west(10)(11), P => Signal_priority(11), Fifo_full => Fifo_full(1), |
---|
785 | South => south_2_north(11)(1), East => east_2_west(11)(1) , Grant => Signal_grant(11)(1)); |
---|
786 | |
---|
787 | Arbiter_11_2 : Arbiter |
---|
788 | |
---|
789 | PORT MAP (Request => Request(101), North => south_2_north(10)(2), West => east_2_west(10)(1), P => Signal_priority(11), Fifo_full => Fifo_full(2), |
---|
790 | South => south_2_north(11)(2), East => east_2_west(11)(2) , Grant => Signal_grant(11)(2)); |
---|
791 | |
---|
792 | Arbiter_11_3 : Arbiter |
---|
793 | |
---|
794 | PORT MAP (Request => Request(91), North => south_2_north(10)(3), West => east_2_west(10)(2), P => Signal_priority(11), Fifo_full => Fifo_full(3), |
---|
795 | South => south_2_north(11)(3), East => east_2_west(11)(3) , Grant => Signal_grant(11)(3)); |
---|
796 | |
---|
797 | Arbiter_11_4 : Arbiter |
---|
798 | |
---|
799 | PORT MAP (Request => Request(81), North => south_2_north(10)(4), West => east_2_west(10)(3), P => Signal_priority(11), Fifo_full => Fifo_full(4), |
---|
800 | South => south_2_north(11)(4), East => east_2_west(11)(4) , Grant => Signal_grant(11)(4)); |
---|
801 | |
---|
802 | Arbiter_11_5 : Arbiter |
---|
803 | |
---|
804 | PORT MAP (Request => Request(71), North => south_2_north(10)(5), West => east_2_west(10)(4), P => Signal_priority(11), Fifo_full => Fifo_full(5), |
---|
805 | South => south_2_north(11)(5), East => east_2_west(11)(5) , Grant => Signal_grant(11)(5)); |
---|
806 | |
---|
807 | Arbiter_11_6 : Arbiter |
---|
808 | |
---|
809 | PORT MAP (Request => Request(61), North => south_2_north(10)(6), West => east_2_west(10)(5), P => Signal_priority(11), Fifo_full => Fifo_full(6), |
---|
810 | South => south_2_north(11)(6), East => east_2_west(11)(6) , Grant => Signal_grant(11)(6)); |
---|
811 | |
---|
812 | Arbiter_11_7 : Arbiter |
---|
813 | |
---|
814 | PORT MAP (Request => Request(51), North => south_2_north(10)(7), West => east_2_west(10)(6), P => Signal_priority(11), Fifo_full => Fifo_full(7), |
---|
815 | South => south_2_north(11)(7), East => east_2_west(11)(7) , Grant => Signal_grant(11)(7)); |
---|
816 | |
---|
817 | Arbiter_11_8 : Arbiter |
---|
818 | |
---|
819 | PORT MAP (Request => Request(41), North => south_2_north(10)(8), West => east_2_west(10)(7), P => Signal_priority(11), Fifo_full => Fifo_full(8), |
---|
820 | South => south_2_north(11)(8), East => east_2_west(11)(8) , Grant => Signal_grant(11)(8)); |
---|
821 | |
---|
822 | Arbiter_11_9 : Arbiter |
---|
823 | |
---|
824 | PORT MAP (Request => Request(31), North => south_2_north(10)(9), West => east_2_west(10)(8), P => Signal_priority(11), Fifo_full => Fifo_full(9), |
---|
825 | South => south_2_north(11)(9), East => east_2_west(11)(9) , Grant => Signal_grant(11)(9)); |
---|
826 | |
---|
827 | Arbiter_11_10 : Arbiter |
---|
828 | |
---|
829 | PORT MAP (Request => Request(21), North => south_2_north(10)(10), West => east_2_west(10)(9), P => Signal_priority(11), Fifo_full => Fifo_full(10), |
---|
830 | South => south_2_north(11)(10), East => east_2_west(11)(10) , Grant => Signal_grant(11)(10)); |
---|
831 | |
---|
832 | Arbiter_11_11 : Arbiter |
---|
833 | |
---|
834 | PORT MAP (Request => Request(11), North => south_2_north(10)(11), West => east_2_west(10)(10), P => Signal_priority(11), Fifo_full => Fifo_full(11), |
---|
835 | South => south_2_north(11)(11), East => east_2_west(11)(11) , Grant => Signal_grant(11)(11)); |
---|
836 | |
---|
837 | -------------------------- Diagonale n° 12 |
---|
838 | |
---|
839 | |
---|
840 | Arbiter_12_1 : Arbiter |
---|
841 | |
---|
842 | PORT MAP (Request => Request(1), North => south_2_north(11)(1), West => east_2_west(11)(11), P => Signal_priority(10), Fifo_full => Fifo_full(1), |
---|
843 | South => south_2_north(12)(1), East => east_2_west(12)(1) , Grant => Signal_grant(12)(1)); |
---|
844 | |
---|
845 | Arbiter_12_2 : Arbiter |
---|
846 | |
---|
847 | PORT MAP (Request => Request(112), North => south_2_north(11)(2), West => east_2_west(11)(1), P => Signal_priority(10), Fifo_full => Fifo_full(2), |
---|
848 | South => south_2_north(12)(2), East => east_2_west(12)(2) , Grant => Signal_grant(12)(2)); |
---|
849 | |
---|
850 | Arbiter_12_3 : Arbiter |
---|
851 | |
---|
852 | PORT MAP (Request => Request(102), North => south_2_north(11)(3), West => east_2_west(11)(2), P => Signal_priority(10), Fifo_full => Fifo_full(3), |
---|
853 | South => south_2_north(12)(3), East => east_2_west(12)(3) , Grant => Signal_grant(12)(3)); |
---|
854 | |
---|
855 | Arbiter_12_4 : Arbiter |
---|
856 | |
---|
857 | PORT MAP (Request => Request(92), North => south_2_north(11)(4), West => east_2_west(11)(3), P => Signal_priority(10), Fifo_full => Fifo_full(4), |
---|
858 | South => south_2_north(12)(4), East => east_2_west(12)(4) , Grant => Signal_grant(12)(4)); |
---|
859 | |
---|
860 | Arbiter_12_5 : Arbiter |
---|
861 | |
---|
862 | PORT MAP (Request => Request(82), North => south_2_north(11)(5), West => east_2_west(11)(4), P => Signal_priority(10), Fifo_full => Fifo_full(5), |
---|
863 | South => south_2_north(12)(5), East => east_2_west(12)(5) , Grant => Signal_grant(12)(5)); |
---|
864 | |
---|
865 | Arbiter_12_6 : Arbiter |
---|
866 | |
---|
867 | PORT MAP (Request => Request(72), North => south_2_north(11)(6), West => east_2_west(11)(5), P => Signal_priority(10), Fifo_full => Fifo_full(6), |
---|
868 | South => south_2_north(12)(6), East => east_2_west(12)(6) , Grant => Signal_grant(12)(6)); |
---|
869 | |
---|
870 | Arbiter_12_7 : Arbiter |
---|
871 | |
---|
872 | PORT MAP (Request => Request(62), North => south_2_north(11)(7), West => east_2_west(11)(6), P => Signal_priority(10), Fifo_full => Fifo_full(7), |
---|
873 | South => south_2_north(12)(7), East => east_2_west(12)(7) , Grant => Signal_grant(12)(7)); |
---|
874 | |
---|
875 | Arbiter_12_8 : Arbiter |
---|
876 | |
---|
877 | PORT MAP (Request => Request(52), North => south_2_north(11)(8), West => east_2_west(11)(7), P => Signal_priority(10), Fifo_full => Fifo_full(8), |
---|
878 | South => south_2_north(12)(8), East => east_2_west(12)(8) , Grant => Signal_grant(12)(8)); |
---|
879 | |
---|
880 | Arbiter_12_9 : Arbiter |
---|
881 | |
---|
882 | PORT MAP (Request => Request(42), North => south_2_north(11)(9), West => east_2_west(11)(8), P => Signal_priority(10), Fifo_full => Fifo_full(9), |
---|
883 | South => south_2_north(12)(9), East => east_2_west(12)(9) , Grant => Signal_grant(12)(9)); |
---|
884 | |
---|
885 | Arbiter_12_10 : Arbiter |
---|
886 | |
---|
887 | PORT MAP (Request => Request(32), North => south_2_north(11)(10), West => east_2_west(11)(9), P => Signal_priority(10), Fifo_full => Fifo_full(10), |
---|
888 | South => south_2_north(12)(10), East => east_2_west(12)(10) , Grant => Signal_grant(12)(10)); |
---|
889 | |
---|
890 | Arbiter_12_11 : Arbiter |
---|
891 | |
---|
892 | PORT MAP (Request => Request(22), North => south_2_north(11)(11), West => east_2_west(11)(10), P => Signal_priority(10), Fifo_full => Fifo_full(11), |
---|
893 | South => south_2_north(12)(11), East => east_2_west(12)(11) , Grant => Signal_grant(12)(11)); |
---|
894 | |
---|
895 | -------------------------- Diagonale n° 13 |
---|
896 | |
---|
897 | |
---|
898 | Arbiter_13_1 : Arbiter |
---|
899 | |
---|
900 | PORT MAP (Request => Request(12), North => south_2_north(12)(1), West => east_2_west(12)(11), P => Signal_priority(9), Fifo_full => Fifo_full(1), |
---|
901 | South => south_2_north(13)(1), East => east_2_west(13)(1) , Grant => Signal_grant(13)(1)); |
---|
902 | |
---|
903 | Arbiter_13_2 : Arbiter |
---|
904 | |
---|
905 | PORT MAP (Request => Request(2), North => south_2_north(12)(2), West => east_2_west(12)(1), P => Signal_priority(9), Fifo_full => Fifo_full(2), |
---|
906 | South => south_2_north(13)(2), East => east_2_west(13)(2) , Grant => Signal_grant(13)(2)); |
---|
907 | |
---|
908 | Arbiter_13_3 : Arbiter |
---|
909 | |
---|
910 | PORT MAP (Request => Request(113), North => south_2_north(12)(3), West => east_2_west(12)(2), P => Signal_priority(9), Fifo_full => Fifo_full(3), |
---|
911 | South => south_2_north(13)(3), East => east_2_west(13)(3) , Grant => Signal_grant(13)(3)); |
---|
912 | |
---|
913 | Arbiter_13_4 : Arbiter |
---|
914 | |
---|
915 | PORT MAP (Request => Request(103), North => south_2_north(12)(4), West => east_2_west(12)(3), P => Signal_priority(9), Fifo_full => Fifo_full(4), |
---|
916 | South => south_2_north(13)(4), East => east_2_west(13)(4) , Grant => Signal_grant(13)(4)); |
---|
917 | |
---|
918 | Arbiter_13_5 : Arbiter |
---|
919 | |
---|
920 | PORT MAP (Request => Request(93), North => south_2_north(12)(5), West => east_2_west(12)(4), P => Signal_priority(9), Fifo_full => Fifo_full(5), |
---|
921 | South => south_2_north(13)(5), East => east_2_west(13)(5) , Grant => Signal_grant(13)(5)); |
---|
922 | |
---|
923 | Arbiter_13_6 : Arbiter |
---|
924 | |
---|
925 | PORT MAP (Request => Request(83), North => south_2_north(12)(6), West => east_2_west(12)(5), P => Signal_priority(9), Fifo_full => Fifo_full(6), |
---|
926 | South => south_2_north(13)(6), East => east_2_west(13)(6) , Grant => Signal_grant(13)(6)); |
---|
927 | |
---|
928 | Arbiter_13_7 : Arbiter |
---|
929 | |
---|
930 | PORT MAP (Request => Request(73), North => south_2_north(12)(7), West => east_2_west(12)(6), P => Signal_priority(9), Fifo_full => Fifo_full(7), |
---|
931 | South => south_2_north(13)(7), East => east_2_west(13)(7) , Grant => Signal_grant(13)(7)); |
---|
932 | |
---|
933 | Arbiter_13_8 : Arbiter |
---|
934 | |
---|
935 | PORT MAP (Request => Request(63), North => south_2_north(12)(8), West => east_2_west(12)(7), P => Signal_priority(9), Fifo_full => Fifo_full(8), |
---|
936 | South => south_2_north(13)(8), East => east_2_west(13)(8) , Grant => Signal_grant(13)(8)); |
---|
937 | |
---|
938 | Arbiter_13_9 : Arbiter |
---|
939 | |
---|
940 | PORT MAP (Request => Request(53), North => south_2_north(12)(9), West => east_2_west(12)(8), P => Signal_priority(9), Fifo_full => Fifo_full(9), |
---|
941 | South => south_2_north(13)(9), East => east_2_west(13)(9) , Grant => Signal_grant(13)(9)); |
---|
942 | |
---|
943 | Arbiter_13_10 : Arbiter |
---|
944 | |
---|
945 | PORT MAP (Request => Request(43), North => south_2_north(12)(10), West => east_2_west(12)(9), P => Signal_priority(9), Fifo_full => Fifo_full(10), |
---|
946 | South => south_2_north(13)(10), East => east_2_west(13)(10) , Grant => Signal_grant(13)(10)); |
---|
947 | |
---|
948 | Arbiter_13_11 : Arbiter |
---|
949 | |
---|
950 | PORT MAP (Request => Request(33), North => south_2_north(12)(11), West => east_2_west(12)(10), P => Signal_priority(9), Fifo_full => Fifo_full(11), |
---|
951 | South => south_2_north(13)(11), East => east_2_west(13)(11) , Grant => Signal_grant(13)(11)); |
---|
952 | |
---|
953 | -------------------------- Diagonale n° 14 |
---|
954 | |
---|
955 | |
---|
956 | Arbiter_14_1 : Arbiter |
---|
957 | |
---|
958 | PORT MAP (Request => Request(23), North => south_2_north(13)(1), West => east_2_west(13)(11), P => Signal_priority(8), Fifo_full => Fifo_full(1), |
---|
959 | South => south_2_north(14)(1), East => east_2_west(14)(1) , Grant => Signal_grant(14)(1)); |
---|
960 | |
---|
961 | Arbiter_14_2 : Arbiter |
---|
962 | |
---|
963 | PORT MAP (Request => Request(13), North => south_2_north(13)(2), West => east_2_west(13)(1), P => Signal_priority(8), Fifo_full => Fifo_full(2), |
---|
964 | South => south_2_north(14)(2), East => east_2_west(14)(2) , Grant => Signal_grant(14)(2)); |
---|
965 | |
---|
966 | Arbiter_14_3 : Arbiter |
---|
967 | |
---|
968 | PORT MAP (Request => Request(3), North => south_2_north(13)(3), West => east_2_west(13)(2), P => Signal_priority(8), Fifo_full => Fifo_full(3), |
---|
969 | South => south_2_north(14)(3), East => east_2_west(14)(3) , Grant => Signal_grant(14)(3)); |
---|
970 | |
---|
971 | Arbiter_14_4 : Arbiter |
---|
972 | |
---|
973 | PORT MAP (Request => Request(114), North => south_2_north(13)(4), West => east_2_west(13)(3), P => Signal_priority(8), Fifo_full => Fifo_full(4), |
---|
974 | South => south_2_north(14)(4), East => east_2_west(14)(4) , Grant => Signal_grant(14)(4)); |
---|
975 | |
---|
976 | Arbiter_14_5 : Arbiter |
---|
977 | |
---|
978 | PORT MAP (Request => Request(104), North => south_2_north(13)(5), West => east_2_west(13)(4), P => Signal_priority(8), Fifo_full => Fifo_full(5), |
---|
979 | South => south_2_north(14)(5), East => east_2_west(14)(5) , Grant => Signal_grant(14)(5)); |
---|
980 | |
---|
981 | Arbiter_14_6 : Arbiter |
---|
982 | |
---|
983 | PORT MAP (Request => Request(94), North => south_2_north(13)(6), West => east_2_west(13)(5), P => Signal_priority(8), Fifo_full => Fifo_full(6), |
---|
984 | South => south_2_north(14)(6), East => east_2_west(14)(6) , Grant => Signal_grant(14)(6)); |
---|
985 | |
---|
986 | Arbiter_14_7 : Arbiter |
---|
987 | |
---|
988 | PORT MAP (Request => Request(84), North => south_2_north(13)(7), West => east_2_west(13)(6), P => Signal_priority(8), Fifo_full => Fifo_full(7), |
---|
989 | South => south_2_north(14)(7), East => east_2_west(14)(7) , Grant => Signal_grant(14)(7)); |
---|
990 | |
---|
991 | Arbiter_14_8 : Arbiter |
---|
992 | |
---|
993 | PORT MAP (Request => Request(74), North => south_2_north(13)(8), West => east_2_west(13)(7), P => Signal_priority(8), Fifo_full => Fifo_full(8), |
---|
994 | South => south_2_north(14)(8), East => east_2_west(14)(8) , Grant => Signal_grant(14)(8)); |
---|
995 | |
---|
996 | Arbiter_14_9 : Arbiter |
---|
997 | |
---|
998 | PORT MAP (Request => Request(64), North => south_2_north(13)(9), West => east_2_west(13)(8), P => Signal_priority(8), Fifo_full => Fifo_full(9), |
---|
999 | South => south_2_north(14)(9), East => east_2_west(14)(9) , Grant => Signal_grant(14)(9)); |
---|
1000 | |
---|
1001 | Arbiter_14_10 : Arbiter |
---|
1002 | |
---|
1003 | PORT MAP (Request => Request(54), North => south_2_north(13)(10), West => east_2_west(13)(9), P => Signal_priority(8), Fifo_full => Fifo_full(10), |
---|
1004 | South => south_2_north(14)(10), East => east_2_west(14)(10) , Grant => Signal_grant(14)(10)); |
---|
1005 | |
---|
1006 | Arbiter_14_11 : Arbiter |
---|
1007 | |
---|
1008 | PORT MAP (Request => Request(44), North => south_2_north(13)(11), West => east_2_west(13)(10), P => Signal_priority(8), Fifo_full => Fifo_full(11), |
---|
1009 | South => south_2_north(14)(11), East => east_2_west(14)(11) , Grant => Signal_grant(14)(11)); |
---|
1010 | |
---|
1011 | -------------------------- Diagonale n° 15 |
---|
1012 | |
---|
1013 | |
---|
1014 | Arbiter_15_1 : Arbiter |
---|
1015 | |
---|
1016 | PORT MAP (Request => Request(34), North => south_2_north(14)(1), West => east_2_west(14)(11), P => Signal_priority(7), Fifo_full => Fifo_full(1), |
---|
1017 | South => south_2_north(15)(1), East => east_2_west(15)(1) , Grant => Signal_grant(15)(1)); |
---|
1018 | |
---|
1019 | Arbiter_15_2 : Arbiter |
---|
1020 | |
---|
1021 | PORT MAP (Request => Request(24), North => south_2_north(14)(2), West => east_2_west(14)(1), P => Signal_priority(7), Fifo_full => Fifo_full(2), |
---|
1022 | South => south_2_north(15)(2), East => east_2_west(15)(2) , Grant => Signal_grant(15)(2)); |
---|
1023 | |
---|
1024 | Arbiter_15_3 : Arbiter |
---|
1025 | |
---|
1026 | PORT MAP (Request => Request(14), North => south_2_north(14)(3), West => east_2_west(14)(2), P => Signal_priority(7), Fifo_full => Fifo_full(3), |
---|
1027 | South => south_2_north(15)(3), East => east_2_west(15)(3) , Grant => Signal_grant(15)(3)); |
---|
1028 | |
---|
1029 | Arbiter_15_4 : Arbiter |
---|
1030 | |
---|
1031 | PORT MAP (Request => Request(4), North => south_2_north(14)(4), West => east_2_west(14)(3), P => Signal_priority(7), Fifo_full => Fifo_full(4), |
---|
1032 | South => south_2_north(15)(4), East => east_2_west(15)(4) , Grant => Signal_grant(15)(4)); |
---|
1033 | |
---|
1034 | Arbiter_15_5 : Arbiter |
---|
1035 | |
---|
1036 | PORT MAP (Request => Request(115), North => south_2_north(14)(5), West => east_2_west(14)(4), P => Signal_priority(7), Fifo_full => Fifo_full(5), |
---|
1037 | South => south_2_north(15)(5), East => east_2_west(15)(5) , Grant => Signal_grant(15)(5)); |
---|
1038 | |
---|
1039 | Arbiter_15_6 : Arbiter |
---|
1040 | |
---|
1041 | PORT MAP (Request => Request(105), North => south_2_north(14)(6), West => east_2_west(14)(5), P => Signal_priority(7), Fifo_full => Fifo_full(6), |
---|
1042 | South => south_2_north(15)(6), East => east_2_west(15)(6) , Grant => Signal_grant(15)(6)); |
---|
1043 | |
---|
1044 | Arbiter_15_7 : Arbiter |
---|
1045 | |
---|
1046 | PORT MAP (Request => Request(95), North => south_2_north(14)(7), West => east_2_west(14)(6), P => Signal_priority(7), Fifo_full => Fifo_full(7), |
---|
1047 | South => south_2_north(15)(7), East => east_2_west(15)(7) , Grant => Signal_grant(15)(7)); |
---|
1048 | |
---|
1049 | Arbiter_15_8 : Arbiter |
---|
1050 | |
---|
1051 | PORT MAP (Request => Request(85), North => south_2_north(14)(8), West => east_2_west(14)(7), P => Signal_priority(7), Fifo_full => Fifo_full(8), |
---|
1052 | South => south_2_north(15)(8), East => east_2_west(15)(8) , Grant => Signal_grant(15)(8)); |
---|
1053 | |
---|
1054 | Arbiter_15_9 : Arbiter |
---|
1055 | |
---|
1056 | PORT MAP (Request => Request(75), North => south_2_north(14)(9), West => east_2_west(14)(8), P => Signal_priority(7), Fifo_full => Fifo_full(9), |
---|
1057 | South => south_2_north(15)(9), East => east_2_west(15)(9) , Grant => Signal_grant(15)(9)); |
---|
1058 | |
---|
1059 | Arbiter_15_10 : Arbiter |
---|
1060 | |
---|
1061 | PORT MAP (Request => Request(65), North => south_2_north(14)(10), West => east_2_west(14)(9), P => Signal_priority(7), Fifo_full => Fifo_full(10), |
---|
1062 | South => south_2_north(15)(10), East => east_2_west(15)(10) , Grant => Signal_grant(15)(10)); |
---|
1063 | |
---|
1064 | Arbiter_15_11 : Arbiter |
---|
1065 | |
---|
1066 | PORT MAP (Request => Request(55), North => south_2_north(14)(11), West => east_2_west(14)(10), P => Signal_priority(7), Fifo_full => Fifo_full(11), |
---|
1067 | South => south_2_north(15)(11), East => east_2_west(15)(11) , Grant => Signal_grant(15)(11)); |
---|
1068 | |
---|
1069 | -------------------------- Diagonale n° 16 |
---|
1070 | |
---|
1071 | |
---|
1072 | Arbiter_16_1 : Arbiter |
---|
1073 | |
---|
1074 | PORT MAP (Request => Request(45), North => south_2_north(15)(1), West => east_2_west(15)(11), P => Signal_priority(6), Fifo_full => Fifo_full(1), |
---|
1075 | South => south_2_north(16)(1), East => east_2_west(16)(1) , Grant => Signal_grant(16)(1)); |
---|
1076 | |
---|
1077 | Arbiter_16_2 : Arbiter |
---|
1078 | |
---|
1079 | PORT MAP (Request => Request(35), North => south_2_north(15)(2), West => east_2_west(15)(1), P => Signal_priority(6), Fifo_full => Fifo_full(2), |
---|
1080 | South => south_2_north(16)(2), East => east_2_west(16)(2) , Grant => Signal_grant(16)(2)); |
---|
1081 | |
---|
1082 | Arbiter_16_3 : Arbiter |
---|
1083 | |
---|
1084 | PORT MAP (Request => Request(25), North => south_2_north(15)(3), West => east_2_west(15)(2), P => Signal_priority(6), Fifo_full => Fifo_full(3), |
---|
1085 | South => south_2_north(16)(3), East => east_2_west(16)(3) , Grant => Signal_grant(16)(3)); |
---|
1086 | |
---|
1087 | Arbiter_16_4 : Arbiter |
---|
1088 | |
---|
1089 | PORT MAP (Request => Request(15), North => south_2_north(15)(4), West => east_2_west(15)(3), P => Signal_priority(6), Fifo_full => Fifo_full(4), |
---|
1090 | South => south_2_north(16)(4), East => east_2_west(16)(4) , Grant => Signal_grant(16)(4)); |
---|
1091 | |
---|
1092 | Arbiter_16_5 : Arbiter |
---|
1093 | |
---|
1094 | PORT MAP (Request => Request(5), North => south_2_north(15)(5), West => east_2_west(15)(4), P => Signal_priority(6), Fifo_full => Fifo_full(5), |
---|
1095 | South => south_2_north(16)(5), East => east_2_west(16)(5) , Grant => Signal_grant(16)(5)); |
---|
1096 | |
---|
1097 | Arbiter_16_6 : Arbiter |
---|
1098 | |
---|
1099 | PORT MAP (Request => Request(116), North => south_2_north(15)(6), West => east_2_west(15)(5), P => Signal_priority(6), Fifo_full => Fifo_full(6), |
---|
1100 | South => south_2_north(16)(6), East => east_2_west(16)(6) , Grant => Signal_grant(16)(6)); |
---|
1101 | |
---|
1102 | Arbiter_16_7 : Arbiter |
---|
1103 | |
---|
1104 | PORT MAP (Request => Request(106), North => south_2_north(15)(7), West => east_2_west(15)(6), P => Signal_priority(6), Fifo_full => Fifo_full(7), |
---|
1105 | South => south_2_north(16)(7), East => east_2_west(16)(7) , Grant => Signal_grant(16)(7)); |
---|
1106 | |
---|
1107 | Arbiter_16_8 : Arbiter |
---|
1108 | |
---|
1109 | PORT MAP (Request => Request(96), North => south_2_north(15)(8), West => east_2_west(15)(7), P => Signal_priority(6), Fifo_full => Fifo_full(8), |
---|
1110 | South => south_2_north(16)(8), East => east_2_west(16)(8) , Grant => Signal_grant(16)(8)); |
---|
1111 | |
---|
1112 | Arbiter_16_9 : Arbiter |
---|
1113 | |
---|
1114 | PORT MAP (Request => Request(86), North => south_2_north(15)(9), West => east_2_west(15)(8), P => Signal_priority(6), Fifo_full => Fifo_full(9), |
---|
1115 | South => south_2_north(16)(9), East => east_2_west(16)(9) , Grant => Signal_grant(16)(9)); |
---|
1116 | |
---|
1117 | Arbiter_16_10 : Arbiter |
---|
1118 | |
---|
1119 | PORT MAP (Request => Request(76), North => south_2_north(15)(10), West => east_2_west(15)(9), P => Signal_priority(6), Fifo_full => Fifo_full(10), |
---|
1120 | South => south_2_north(16)(10), East => east_2_west(16)(10) , Grant => Signal_grant(16)(10)); |
---|
1121 | |
---|
1122 | Arbiter_16_11 : Arbiter |
---|
1123 | |
---|
1124 | PORT MAP (Request => Request(66), North => south_2_north(15)(11), West => east_2_west(15)(10), P => Signal_priority(6), Fifo_full => Fifo_full(11), |
---|
1125 | South => south_2_north(16)(11), East => east_2_west(16)(11) , Grant => Signal_grant(16)(11)); |
---|
1126 | |
---|
1127 | -------------------------- Diagonale n° 17 |
---|
1128 | |
---|
1129 | |
---|
1130 | Arbiter_17_1 : Arbiter |
---|
1131 | |
---|
1132 | PORT MAP (Request => Request(56), North => south_2_north(16)(1), West => east_2_west(16)(11), P => Signal_priority(5), Fifo_full => Fifo_full(1), |
---|
1133 | South => south_2_north(17)(1), East => east_2_west(17)(1) , Grant => Signal_grant(17)(1)); |
---|
1134 | |
---|
1135 | Arbiter_17_2 : Arbiter |
---|
1136 | |
---|
1137 | PORT MAP (Request => Request(46), North => south_2_north(16)(2), West => east_2_west(16)(1), P => Signal_priority(5), Fifo_full => Fifo_full(2), |
---|
1138 | South => south_2_north(17)(2), East => east_2_west(17)(2) , Grant => Signal_grant(17)(2)); |
---|
1139 | |
---|
1140 | Arbiter_17_3 : Arbiter |
---|
1141 | |
---|
1142 | PORT MAP (Request => Request(36), North => south_2_north(16)(3), West => east_2_west(16)(2), P => Signal_priority(5), Fifo_full => Fifo_full(3), |
---|
1143 | South => south_2_north(17)(3), East => east_2_west(17)(3) , Grant => Signal_grant(17)(3)); |
---|
1144 | |
---|
1145 | Arbiter_17_4 : Arbiter |
---|
1146 | |
---|
1147 | PORT MAP (Request => Request(26), North => south_2_north(16)(4), West => east_2_west(16)(3), P => Signal_priority(5), Fifo_full => Fifo_full(4), |
---|
1148 | South => south_2_north(17)(4), East => east_2_west(17)(4) , Grant => Signal_grant(17)(4)); |
---|
1149 | |
---|
1150 | Arbiter_17_5 : Arbiter |
---|
1151 | |
---|
1152 | PORT MAP (Request => Request(16), North => south_2_north(16)(5), West => east_2_west(16)(4), P => Signal_priority(5), Fifo_full => Fifo_full(5), |
---|
1153 | South => south_2_north(17)(5), East => east_2_west(17)(5) , Grant => Signal_grant(17)(5)); |
---|
1154 | |
---|
1155 | Arbiter_17_6 : Arbiter |
---|
1156 | |
---|
1157 | PORT MAP (Request => Request(6), North => south_2_north(16)(6), West => east_2_west(16)(5), P => Signal_priority(5), Fifo_full => Fifo_full(6), |
---|
1158 | South => south_2_north(17)(6), East => east_2_west(17)(6) , Grant => Signal_grant(17)(6)); |
---|
1159 | |
---|
1160 | Arbiter_17_7 : Arbiter |
---|
1161 | |
---|
1162 | PORT MAP (Request => Request(117), North => south_2_north(16)(7), West => east_2_west(16)(6), P => Signal_priority(5), Fifo_full => Fifo_full(7), |
---|
1163 | South => south_2_north(17)(7), East => east_2_west(17)(7) , Grant => Signal_grant(17)(7)); |
---|
1164 | |
---|
1165 | Arbiter_17_8 : Arbiter |
---|
1166 | |
---|
1167 | PORT MAP (Request => Request(107), North => south_2_north(16)(8), West => east_2_west(16)(7), P => Signal_priority(5), Fifo_full => Fifo_full(8), |
---|
1168 | South => south_2_north(17)(8), East => east_2_west(17)(8) , Grant => Signal_grant(17)(8)); |
---|
1169 | |
---|
1170 | Arbiter_17_9 : Arbiter |
---|
1171 | |
---|
1172 | PORT MAP (Request => Request(97), North => south_2_north(16)(9), West => east_2_west(16)(8), P => Signal_priority(5), Fifo_full => Fifo_full(9), |
---|
1173 | South => south_2_north(17)(9), East => east_2_west(17)(9) , Grant => Signal_grant(17)(9)); |
---|
1174 | |
---|
1175 | Arbiter_17_10 : Arbiter |
---|
1176 | |
---|
1177 | PORT MAP (Request => Request(87), North => south_2_north(16)(10), West => east_2_west(16)(9), P => Signal_priority(5), Fifo_full => Fifo_full(10), |
---|
1178 | South => south_2_north(17)(10), East => east_2_west(17)(10) , Grant => Signal_grant(17)(10)); |
---|
1179 | |
---|
1180 | Arbiter_17_11 : Arbiter |
---|
1181 | |
---|
1182 | PORT MAP (Request => Request(77), North => south_2_north(16)(11), West => east_2_west(16)(10), P => Signal_priority(5), Fifo_full => Fifo_full(11), |
---|
1183 | South => south_2_north(17)(11), East => east_2_west(17)(11) , Grant => Signal_grant(17)(11)); |
---|
1184 | |
---|
1185 | -------------------------- Diagonale n° 18 |
---|
1186 | |
---|
1187 | |
---|
1188 | Arbiter_18_1 : Arbiter |
---|
1189 | |
---|
1190 | PORT MAP (Request => Request(67), North => south_2_north(17)(1), West => east_2_west(17)(11), P => Signal_priority(4), Fifo_full => Fifo_full(1), |
---|
1191 | South => south_2_north(18)(1), East => east_2_west(18)(1) , Grant => Signal_grant(18)(1)); |
---|
1192 | |
---|
1193 | Arbiter_18_2 : Arbiter |
---|
1194 | |
---|
1195 | PORT MAP (Request => Request(57), North => south_2_north(17)(2), West => east_2_west(17)(1), P => Signal_priority(4), Fifo_full => Fifo_full(2), |
---|
1196 | South => south_2_north(18)(2), East => east_2_west(18)(2) , Grant => Signal_grant(18)(2)); |
---|
1197 | |
---|
1198 | Arbiter_18_3 : Arbiter |
---|
1199 | |
---|
1200 | PORT MAP (Request => Request(47), North => south_2_north(17)(3), West => east_2_west(17)(2), P => Signal_priority(4), Fifo_full => Fifo_full(3), |
---|
1201 | South => south_2_north(18)(3), East => east_2_west(18)(3) , Grant => Signal_grant(18)(3)); |
---|
1202 | |
---|
1203 | Arbiter_18_4 : Arbiter |
---|
1204 | |
---|
1205 | PORT MAP (Request => Request(37), North => south_2_north(17)(4), West => east_2_west(17)(3), P => Signal_priority(4), Fifo_full => Fifo_full(4), |
---|
1206 | South => south_2_north(18)(4), East => east_2_west(18)(4) , Grant => Signal_grant(18)(4)); |
---|
1207 | |
---|
1208 | Arbiter_18_5 : Arbiter |
---|
1209 | |
---|
1210 | PORT MAP (Request => Request(27), North => south_2_north(17)(5), West => east_2_west(17)(4), P => Signal_priority(4), Fifo_full => Fifo_full(5), |
---|
1211 | South => south_2_north(18)(5), East => east_2_west(18)(5) , Grant => Signal_grant(18)(5)); |
---|
1212 | |
---|
1213 | Arbiter_18_6 : Arbiter |
---|
1214 | |
---|
1215 | PORT MAP (Request => Request(17), North => south_2_north(17)(6), West => east_2_west(17)(5), P => Signal_priority(4), Fifo_full => Fifo_full(6), |
---|
1216 | South => south_2_north(18)(6), East => east_2_west(18)(6) , Grant => Signal_grant(18)(6)); |
---|
1217 | |
---|
1218 | Arbiter_18_7 : Arbiter |
---|
1219 | |
---|
1220 | PORT MAP (Request => Request(7), North => south_2_north(17)(7), West => east_2_west(17)(6), P => Signal_priority(4), Fifo_full => Fifo_full(7), |
---|
1221 | South => south_2_north(18)(7), East => east_2_west(18)(7) , Grant => Signal_grant(18)(7)); |
---|
1222 | |
---|
1223 | Arbiter_18_8 : Arbiter |
---|
1224 | |
---|
1225 | PORT MAP (Request => Request(118), North => south_2_north(17)(8), West => east_2_west(17)(7), P => Signal_priority(4), Fifo_full => Fifo_full(8), |
---|
1226 | South => south_2_north(18)(8), East => east_2_west(18)(8) , Grant => Signal_grant(18)(8)); |
---|
1227 | |
---|
1228 | Arbiter_18_9 : Arbiter |
---|
1229 | |
---|
1230 | PORT MAP (Request => Request(108), North => south_2_north(17)(9), West => east_2_west(17)(8), P => Signal_priority(4), Fifo_full => Fifo_full(9), |
---|
1231 | South => south_2_north(18)(9), East => east_2_west(18)(9) , Grant => Signal_grant(18)(9)); |
---|
1232 | |
---|
1233 | Arbiter_18_10 : Arbiter |
---|
1234 | |
---|
1235 | PORT MAP (Request => Request(98), North => south_2_north(17)(10), West => east_2_west(17)(9), P => Signal_priority(4), Fifo_full => Fifo_full(10), |
---|
1236 | South => south_2_north(18)(10), East => east_2_west(18)(10) , Grant => Signal_grant(18)(10)); |
---|
1237 | |
---|
1238 | Arbiter_18_11 : Arbiter |
---|
1239 | |
---|
1240 | PORT MAP (Request => Request(88), North => south_2_north(17)(11), West => east_2_west(17)(10), P => Signal_priority(4), Fifo_full => Fifo_full(11), |
---|
1241 | South => south_2_north(18)(11), East => east_2_west(18)(11) , Grant => Signal_grant(18)(11)); |
---|
1242 | |
---|
1243 | -------------------------- Diagonale n° 19 |
---|
1244 | |
---|
1245 | |
---|
1246 | Arbiter_19_1 : Arbiter |
---|
1247 | |
---|
1248 | PORT MAP (Request => Request(78), North => south_2_north(18)(1), West => east_2_west(18)(11), P => Signal_priority(3), Fifo_full => Fifo_full(1), |
---|
1249 | South => south_2_north(19)(1), East => east_2_west(19)(1) , Grant => Signal_grant(19)(1)); |
---|
1250 | |
---|
1251 | Arbiter_19_2 : Arbiter |
---|
1252 | |
---|
1253 | PORT MAP (Request => Request(68), North => south_2_north(18)(2), West => east_2_west(18)(1), P => Signal_priority(3), Fifo_full => Fifo_full(2), |
---|
1254 | South => south_2_north(19)(2), East => east_2_west(19)(2) , Grant => Signal_grant(19)(2)); |
---|
1255 | |
---|
1256 | Arbiter_19_3 : Arbiter |
---|
1257 | |
---|
1258 | PORT MAP (Request => Request(58), North => south_2_north(18)(3), West => east_2_west(18)(2), P => Signal_priority(3), Fifo_full => Fifo_full(3), |
---|
1259 | South => south_2_north(19)(3), East => east_2_west(19)(3) , Grant => Signal_grant(19)(3)); |
---|
1260 | |
---|
1261 | Arbiter_19_4 : Arbiter |
---|
1262 | |
---|
1263 | PORT MAP (Request => Request(48), North => south_2_north(18)(4), West => east_2_west(18)(3), P => Signal_priority(3), Fifo_full => Fifo_full(4), |
---|
1264 | South => south_2_north(19)(4), East => east_2_west(19)(4) , Grant => Signal_grant(19)(4)); |
---|
1265 | |
---|
1266 | Arbiter_19_5 : Arbiter |
---|
1267 | |
---|
1268 | PORT MAP (Request => Request(38), North => south_2_north(18)(5), West => east_2_west(18)(4), P => Signal_priority(3), Fifo_full => Fifo_full(5), |
---|
1269 | South => south_2_north(19)(5), East => east_2_west(19)(5) , Grant => Signal_grant(19)(5)); |
---|
1270 | |
---|
1271 | Arbiter_19_6 : Arbiter |
---|
1272 | |
---|
1273 | PORT MAP (Request => Request(28), North => south_2_north(18)(6), West => east_2_west(18)(5), P => Signal_priority(3), Fifo_full => Fifo_full(6), |
---|
1274 | South => south_2_north(19)(6), East => east_2_west(19)(6) , Grant => Signal_grant(19)(6)); |
---|
1275 | |
---|
1276 | Arbiter_19_7 : Arbiter |
---|
1277 | |
---|
1278 | PORT MAP (Request => Request(18), North => south_2_north(18)(7), West => east_2_west(18)(6), P => Signal_priority(3), Fifo_full => Fifo_full(7), |
---|
1279 | South => south_2_north(19)(7), East => east_2_west(19)(7) , Grant => Signal_grant(19)(7)); |
---|
1280 | |
---|
1281 | Arbiter_19_8 : Arbiter |
---|
1282 | |
---|
1283 | PORT MAP (Request => Request(8), North => south_2_north(18)(8), West => east_2_west(18)(7), P => Signal_priority(3), Fifo_full => Fifo_full(8), |
---|
1284 | South => south_2_north(19)(8), East => east_2_west(19)(8) , Grant => Signal_grant(19)(8)); |
---|
1285 | |
---|
1286 | Arbiter_19_9 : Arbiter |
---|
1287 | |
---|
1288 | PORT MAP (Request => Request(119), North => south_2_north(18)(9), West => east_2_west(18)(8), P => Signal_priority(3), Fifo_full => Fifo_full(9), |
---|
1289 | South => south_2_north(19)(9), East => east_2_west(19)(9) , Grant => Signal_grant(19)(9)); |
---|
1290 | |
---|
1291 | Arbiter_19_10 : Arbiter |
---|
1292 | |
---|
1293 | PORT MAP (Request => Request(109), North => south_2_north(18)(10), West => east_2_west(18)(9), P => Signal_priority(3), Fifo_full => Fifo_full(10), |
---|
1294 | South => south_2_north(19)(10), East => east_2_west(19)(10) , Grant => Signal_grant(19)(10)); |
---|
1295 | |
---|
1296 | Arbiter_19_11 : Arbiter |
---|
1297 | |
---|
1298 | PORT MAP (Request => Request(99), North => south_2_north(18)(11), West => east_2_west(18)(10), P => Signal_priority(3), Fifo_full => Fifo_full(11), |
---|
1299 | South => south_2_north(19)(11), East => east_2_west(19)(11) , Grant => Signal_grant(19)(11)); |
---|
1300 | |
---|
1301 | -------------------------- Diagonale n° 20 |
---|
1302 | |
---|
1303 | |
---|
1304 | Arbiter_20_1 : Arbiter |
---|
1305 | |
---|
1306 | PORT MAP (Request => Request(89), North => south_2_north(19)(1), West => east_2_west(19)(11), P => Signal_priority(2), Fifo_full => Fifo_full(1), |
---|
1307 | South => south_2_north(20)(1), East => east_2_west(20)(1) , Grant => Signal_grant(20)(1)); |
---|
1308 | |
---|
1309 | Arbiter_20_2 : Arbiter |
---|
1310 | |
---|
1311 | PORT MAP (Request => Request(79), North => south_2_north(19)(2), West => east_2_west(19)(1), P => Signal_priority(2), Fifo_full => Fifo_full(2), |
---|
1312 | South => south_2_north(20)(2), East => east_2_west(20)(2) , Grant => Signal_grant(20)(2)); |
---|
1313 | |
---|
1314 | Arbiter_20_3 : Arbiter |
---|
1315 | |
---|
1316 | PORT MAP (Request => Request(69), North => south_2_north(19)(3), West => east_2_west(19)(2), P => Signal_priority(2), Fifo_full => Fifo_full(3), |
---|
1317 | South => south_2_north(20)(3), East => east_2_west(20)(3) , Grant => Signal_grant(20)(3)); |
---|
1318 | |
---|
1319 | Arbiter_20_4 : Arbiter |
---|
1320 | |
---|
1321 | PORT MAP (Request => Request(59), North => south_2_north(19)(4), West => east_2_west(19)(3), P => Signal_priority(2), Fifo_full => Fifo_full(4), |
---|
1322 | South => south_2_north(20)(4), East => east_2_west(20)(4) , Grant => Signal_grant(20)(4)); |
---|
1323 | |
---|
1324 | Arbiter_20_5 : Arbiter |
---|
1325 | |
---|
1326 | PORT MAP (Request => Request(49), North => south_2_north(19)(5), West => east_2_west(19)(4), P => Signal_priority(2), Fifo_full => Fifo_full(5), |
---|
1327 | South => south_2_north(20)(5), East => east_2_west(20)(5) , Grant => Signal_grant(20)(5)); |
---|
1328 | |
---|
1329 | Arbiter_20_6 : Arbiter |
---|
1330 | |
---|
1331 | PORT MAP (Request => Request(39), North => south_2_north(19)(6), West => east_2_west(19)(5), P => Signal_priority(2), Fifo_full => Fifo_full(6), |
---|
1332 | South => south_2_north(20)(6), East => east_2_west(20)(6) , Grant => Signal_grant(20)(6)); |
---|
1333 | |
---|
1334 | Arbiter_20_7 : Arbiter |
---|
1335 | |
---|
1336 | PORT MAP (Request => Request(29), North => south_2_north(19)(7), West => east_2_west(19)(6), P => Signal_priority(2), Fifo_full => Fifo_full(7), |
---|
1337 | South => south_2_north(20)(7), East => east_2_west(20)(7) , Grant => Signal_grant(20)(7)); |
---|
1338 | |
---|
1339 | Arbiter_20_8 : Arbiter |
---|
1340 | |
---|
1341 | PORT MAP (Request => Request(19), North => south_2_north(19)(8), West => east_2_west(19)(7), P => Signal_priority(2), Fifo_full => Fifo_full(8), |
---|
1342 | South => south_2_north(20)(8), East => east_2_west(20)(8) , Grant => Signal_grant(20)(8)); |
---|
1343 | |
---|
1344 | Arbiter_20_9 : Arbiter |
---|
1345 | |
---|
1346 | PORT MAP (Request => Request(9), North => south_2_north(19)(9), West => east_2_west(19)(8), P => Signal_priority(2), Fifo_full => Fifo_full(9), |
---|
1347 | South => south_2_north(20)(9), East => east_2_west(20)(9) , Grant => Signal_grant(20)(9)); |
---|
1348 | |
---|
1349 | Arbiter_20_10 : Arbiter |
---|
1350 | |
---|
1351 | PORT MAP (Request => Request(120), North => south_2_north(19)(10), West => east_2_west(19)(9), P => Signal_priority(2), Fifo_full => Fifo_full(10), |
---|
1352 | South => south_2_north(20)(10), East => east_2_west(20)(10) , Grant => Signal_grant(20)(10)); |
---|
1353 | |
---|
1354 | Arbiter_20_11 : Arbiter |
---|
1355 | |
---|
1356 | PORT MAP (Request => Request(110), North => south_2_north(19)(11), West => east_2_west(19)(10), P => Signal_priority(2), Fifo_full => Fifo_full(11), |
---|
1357 | South => south_2_north(20)(11), East => east_2_west(20)(11) , Grant => Signal_grant(20)(11)); |
---|
1358 | |
---|
1359 | -------------------------- Diagonale n° 21 |
---|
1360 | |
---|
1361 | |
---|
1362 | Arbiter_21_1 : Arbiter |
---|
1363 | |
---|
1364 | PORT MAP (Request => Request(100), North => south_2_north(20)(1), West => east_2_west(20)(11), P => Signal_priority(1), Fifo_full => Fifo_full(1), |
---|
1365 | South => south_2_north(21)(1), East => east_2_west(21)(1) , Grant => Signal_grant(21)(1)); |
---|
1366 | |
---|
1367 | Arbiter_21_2 : Arbiter |
---|
1368 | |
---|
1369 | PORT MAP (Request => Request(90), North => south_2_north(20)(2), West => east_2_west(20)(1), P => Signal_priority(1), Fifo_full => Fifo_full(2), |
---|
1370 | South => south_2_north(21)(2), East => east_2_west(21)(2) , Grant => Signal_grant(21)(2)); |
---|
1371 | |
---|
1372 | Arbiter_21_3 : Arbiter |
---|
1373 | |
---|
1374 | PORT MAP (Request => Request(80), North => south_2_north(20)(3), West => east_2_west(20)(2), P => Signal_priority(1), Fifo_full => Fifo_full(3), |
---|
1375 | South => south_2_north(21)(3), East => east_2_west(21)(3) , Grant => Signal_grant(21)(3)); |
---|
1376 | |
---|
1377 | Arbiter_21_4 : Arbiter |
---|
1378 | |
---|
1379 | PORT MAP (Request => Request(70), North => south_2_north(20)(4), West => east_2_west(20)(3), P => Signal_priority(1), Fifo_full => Fifo_full(4), |
---|
1380 | South => south_2_north(21)(4), East => east_2_west(21)(4) , Grant => Signal_grant(21)(4)); |
---|
1381 | |
---|
1382 | Arbiter_21_5 : Arbiter |
---|
1383 | |
---|
1384 | PORT MAP (Request => Request(60), North => south_2_north(20)(5), West => east_2_west(20)(4), P => Signal_priority(1), Fifo_full => Fifo_full(5), |
---|
1385 | South => south_2_north(21)(5), East => east_2_west(21)(5) , Grant => Signal_grant(21)(5)); |
---|
1386 | |
---|
1387 | Arbiter_21_6 : Arbiter |
---|
1388 | |
---|
1389 | PORT MAP (Request => Request(50), North => south_2_north(20)(6), West => east_2_west(20)(5), P => Signal_priority(1), Fifo_full => Fifo_full(6), |
---|
1390 | South => south_2_north(21)(6), East => east_2_west(21)(6) , Grant => Signal_grant(21)(6)); |
---|
1391 | |
---|
1392 | Arbiter_21_7 : Arbiter |
---|
1393 | |
---|
1394 | PORT MAP (Request => Request(40), North => south_2_north(20)(7), West => east_2_west(20)(6), P => Signal_priority(1), Fifo_full => Fifo_full(7), |
---|
1395 | South => south_2_north(21)(7), East => east_2_west(21)(7) , Grant => Signal_grant(21)(7)); |
---|
1396 | |
---|
1397 | Arbiter_21_8 : Arbiter |
---|
1398 | |
---|
1399 | PORT MAP (Request => Request(30), North => south_2_north(20)(8), West => east_2_west(20)(7), P => Signal_priority(1), Fifo_full => Fifo_full(8), |
---|
1400 | South => south_2_north(21)(8), East => east_2_west(21)(8) , Grant => Signal_grant(21)(8)); |
---|
1401 | |
---|
1402 | Arbiter_21_9 : Arbiter |
---|
1403 | |
---|
1404 | PORT MAP (Request => Request(20), North => south_2_north(20)(9), West => east_2_west(20)(8), P => Signal_priority(1), Fifo_full => Fifo_full(9), |
---|
1405 | South => south_2_north(21)(9), East => east_2_west(21)(9) , Grant => Signal_grant(21)(9)); |
---|
1406 | |
---|
1407 | Arbiter_21_10 : Arbiter |
---|
1408 | |
---|
1409 | PORT MAP (Request => Request(10), North => south_2_north(20)(10), West => east_2_west(20)(9), P => Signal_priority(1), Fifo_full => Fifo_full(10), |
---|
1410 | South => south_2_north(21)(10), East => east_2_west(21)(10) , Grant => Signal_grant(21)(10)); |
---|
1411 | |
---|
1412 | Arbiter_21_11 : Arbiter |
---|
1413 | |
---|
1414 | PORT MAP (Request => Request(121), North => south_2_north(20)(11), West => east_2_west(20)(10), P => Signal_priority(1), Fifo_full => Fifo_full(11), |
---|
1415 | South => south_2_north(21)(11), East => east_2_west(21)(11) , Grant => Signal_grant(21)(11)); |
---|
1416 | |
---|
1417 | |
---|
1418 | --processus permettant de roter la priorité des diagonales à chaque front d'horloge |
---|
1419 | -- rotation round robin |
---|
1420 | round_robin : process(clk) |
---|
1421 | begin |
---|
1422 | if rising_edge(clk) then |
---|
1423 | if reset ='1' then |
---|
1424 | Signal_priority <= "111111111110000000000"; |
---|
1425 | elsif priority_rotation_en = '1' then |
---|
1426 | case Signal_priority is |
---|
1427 | when "111111111110000000000" => Signal_priority <= "011111111111000000000"; |
---|
1428 | when "011111111111000000000" => Signal_priority <= "001111111111100000000"; |
---|
1429 | when "001111111111100000000" => Signal_priority <= "000111111111110000000"; |
---|
1430 | when "000111111111110000000" => Signal_priority <= "000011111111111000000"; |
---|
1431 | when "000011111111111000000" => Signal_priority <= "000001111111111100000"; |
---|
1432 | when "000001111111111100000" => Signal_priority <= "000000111111111110000"; |
---|
1433 | when "000000111111111110000" => Signal_priority <= "000000011111111111000"; |
---|
1434 | when "000000011111111111000" => Signal_priority <= "000000001111111111100"; |
---|
1435 | when "000000001111111111100" => Signal_priority <= "000000000111111111110"; |
---|
1436 | when "000000000111111111110" => Signal_priority <= "000000000011111111111"; |
---|
1437 | when "000000000011111111111" => Signal_priority <= "111111111110000000000"; |
---|
1438 | when others => Signal_priority <= "111111111110000000000"; |
---|
1439 | end case; |
---|
1440 | end if; |
---|
1441 | end if; |
---|
1442 | end process; |
---|
1443 | |
---|
1444 | end Behavioral; |
---|
1445 | |
---|