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 Scheduler6_6 is |
---|
32 | Port ( Request : in STD_LOGIC_VECTOR (36 downto 1); |
---|
33 | Fifo_full : in STD_LOGIC_VECTOR (6 downto 1); |
---|
34 | clk : in STD_LOGIC; |
---|
35 | reset : in STD_LOGIC; |
---|
36 | priority_rotation : in STD_LOGIC_VECTOR (6 downto 1); |
---|
37 | port_grant : out STD_LOGIC_VECTOR (36 downto 1)); |
---|
38 | end Scheduler6_6; |
---|
39 | |
---|
40 | architecture Behavioral of Scheduler6_6 is |
---|
41 | --Declaration du types |
---|
42 | --tableau de signaux de connexion des cellules arbitres |
---|
43 | TYPE C_Bar_Signal_Array IS ARRAY(11 downto 1) of STD_LOGIC_VECTOR(6 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 (11 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(36 downto 1); |
---|
56 | signal priority_rotation_en : std_logic; |
---|
57 | signal Grant,req_grant : std_logic_vector(36 downto 1); |
---|
58 | begin |
---|
59 | |
---|
60 | --validation de la rotation de priorité lorsque aucun port n'emet |
---|
61 | req_grant<=(request and grant_latch); |
---|
62 | priority_rotation_en <= '1' when unsigned(req_grant) = 0 or unsigned(priority_rotation) = 63 else '0'; |
---|
63 | --latch servant qui memorise le signal grant pendant a transmission |
---|
64 | grant_latch_process : process(clk) |
---|
65 | begin |
---|
66 | if rising_edge(clk) then |
---|
67 | if reset = '1' then |
---|
68 | grant_latch <= (others => '0'); |
---|
69 | elsif priority_rotation_en = '1' then |
---|
70 | grant_latch <= Grant; |
---|
71 | end if; |
---|
72 | end if; |
---|
73 | end process; |
---|
74 | port_grant <= grant_latch; |
---|
75 | Grant(1) <= Signal_grant(1)(1) or Signal_grant(7)(1); -- Grant(1,1) |
---|
76 | Grant(2) <= Signal_grant(2)(2) or Signal_grant(8)(2); -- Grant(1,2) |
---|
77 | Grant(3) <= Signal_grant(3)(3) or Signal_grant(9)(3); -- Grant(1,3) |
---|
78 | Grant(4) <= Signal_grant(4)(4) or Signal_grant(10)(4); -- Grant(1,4) |
---|
79 | Grant(5) <= Signal_grant(5)(5) or Signal_grant(11)(5); -- Grant(1,5) |
---|
80 | Grant(6) <= Signal_grant(6)(6) ; -- Grant(1,6) |
---|
81 | Grant(7) <= Signal_grant(2)(1) or Signal_grant(8)(1); -- Grant(2,1) |
---|
82 | Grant(8) <= Signal_grant(3)(2) or Signal_grant(9)(2); -- Grant(2,2) |
---|
83 | Grant(9) <= Signal_grant(4)(3) or Signal_grant(10)(3); -- Grant(2,3) |
---|
84 | Grant(10) <= Signal_grant(5)(4) or Signal_grant(11)(4); -- Grant(2,4) |
---|
85 | Grant(11) <= Signal_grant(6)(5) ; -- Grant(2,5) |
---|
86 | Grant(12) <= Signal_grant(1)(6) or Signal_grant(7)(6); -- Grant(2,6) |
---|
87 | Grant(13) <= Signal_grant(3)(1) or Signal_grant(9)(1); -- Grant(3,1) |
---|
88 | Grant(14) <= Signal_grant(4)(2) or Signal_grant(10)(2); -- Grant(3,2) |
---|
89 | Grant(15) <= Signal_grant(5)(3) or Signal_grant(11)(3); -- Grant(3,3) |
---|
90 | Grant(16) <= Signal_grant(6)(4) ; -- Grant(3,4) |
---|
91 | Grant(17) <= Signal_grant(1)(5) or Signal_grant(7)(5); -- Grant(3,5) |
---|
92 | Grant(18) <= Signal_grant(2)(6) or Signal_grant(8)(6); -- Grant(3,6) |
---|
93 | Grant(19) <= Signal_grant(4)(1) or Signal_grant(10)(1); -- Grant(4,1) |
---|
94 | Grant(20) <= Signal_grant(5)(2) or Signal_grant(11)(2); -- Grant(4,2) |
---|
95 | Grant(21) <= Signal_grant(6)(3) ; -- Grant(4,3) |
---|
96 | Grant(22) <= Signal_grant(1)(4) or Signal_grant(7)(4); -- Grant(4,4) |
---|
97 | Grant(23) <= Signal_grant(2)(5) or Signal_grant(8)(5); -- Grant(4,5) |
---|
98 | Grant(24) <= Signal_grant(3)(6) or Signal_grant(9)(6); -- Grant(4,6) |
---|
99 | Grant(25) <= Signal_grant(5)(1) or Signal_grant(11)(1); -- Grant(5,1) |
---|
100 | Grant(26) <= Signal_grant(6)(2) ; -- Grant(5,2) |
---|
101 | Grant(27) <= Signal_grant(1)(3) or Signal_grant(7)(3); -- Grant(5,3) |
---|
102 | Grant(28) <= Signal_grant(2)(4) or Signal_grant(8)(4); -- Grant(5,4) |
---|
103 | Grant(29) <= Signal_grant(3)(5) or Signal_grant(9)(5); -- Grant(5,5) |
---|
104 | Grant(30) <= Signal_grant(4)(6) or Signal_grant(10)(6); -- Grant(5,6) |
---|
105 | Grant(31) <= Signal_grant(6)(1) ; -- Grant(6,1) |
---|
106 | Grant(32) <= Signal_grant(1)(2) or Signal_grant(7)(2); -- Grant(6,2) |
---|
107 | Grant(33) <= Signal_grant(2)(3) or Signal_grant(8)(3); -- Grant(6,3) |
---|
108 | Grant(34) <= Signal_grant(3)(4) or Signal_grant(9)(4); -- Grant(6,4) |
---|
109 | Grant(35) <= Signal_grant(4)(5) or Signal_grant(10)(5); -- Grant(6,5) |
---|
110 | Grant(36) <= Signal_grant(5)(6) or Signal_grant(11)(6); -- Grant(6,6) |
---|
111 | High <= '1'; |
---|
112 | |
---|
113 | ----instantiations des cellules arbitres et interconnection |
---|
114 | |
---|
115 | -------------------------- Diagonale n° 1 |
---|
116 | |
---|
117 | |
---|
118 | Arbiter_1_1 : Arbiter |
---|
119 | |
---|
120 | PORT MAP (Request => Request(1), North => High, West => High, P => Signal_priority(11), Fifo_full => Fifo_full(1), |
---|
121 | South => south_2_north(1)(1), East => east_2_west(1)(1) , Grant => Signal_grant(1)(1)); |
---|
122 | |
---|
123 | Arbiter_1_2 : Arbiter |
---|
124 | |
---|
125 | PORT MAP (Request => Request(32), North => High, West => High, P => Signal_priority(11), Fifo_full => Fifo_full(2), |
---|
126 | South => south_2_north(1)(2), East => east_2_west(1)(2) , Grant => Signal_grant(1)(2)); |
---|
127 | |
---|
128 | Arbiter_1_3 : Arbiter |
---|
129 | |
---|
130 | PORT MAP (Request => Request(27), North => High, West => High, P => Signal_priority(11), Fifo_full => Fifo_full(3), |
---|
131 | South => south_2_north(1)(3), East => east_2_west(1)(3) , Grant => Signal_grant(1)(3)); |
---|
132 | |
---|
133 | Arbiter_1_4 : Arbiter |
---|
134 | |
---|
135 | PORT MAP (Request => Request(22), North => High, West => High, P => Signal_priority(11), Fifo_full => Fifo_full(4), |
---|
136 | South => south_2_north(1)(4), East => east_2_west(1)(4) , Grant => Signal_grant(1)(4)); |
---|
137 | |
---|
138 | Arbiter_1_5 : Arbiter |
---|
139 | |
---|
140 | PORT MAP (Request => Request(17), North => High, West => High, P => Signal_priority(11), Fifo_full => Fifo_full(5), |
---|
141 | South => south_2_north(1)(5), East => east_2_west(1)(5) , Grant => Signal_grant(1)(5)); |
---|
142 | |
---|
143 | Arbiter_1_6 : Arbiter |
---|
144 | |
---|
145 | PORT MAP (Request => Request(12), North => High, West => High, P => Signal_priority(11), Fifo_full => Fifo_full(6), |
---|
146 | South => south_2_north(1)(6), East => east_2_west(1)(6) , Grant => Signal_grant(1)(6)); |
---|
147 | |
---|
148 | -------------------------- Diagonale n° 2 |
---|
149 | |
---|
150 | |
---|
151 | Arbiter_2_1 : Arbiter |
---|
152 | |
---|
153 | PORT MAP (Request => Request(7), North => south_2_north(1)(1), West => east_2_west(1)(6), P => Signal_priority(10), Fifo_full => Fifo_full(1), |
---|
154 | South => south_2_north(2)(1), East => east_2_west(2)(1) , Grant => Signal_grant(2)(1)); |
---|
155 | |
---|
156 | Arbiter_2_2 : Arbiter |
---|
157 | |
---|
158 | PORT MAP (Request => Request(2), North => south_2_north(1)(2), West => east_2_west(1)(1), P => Signal_priority(10), Fifo_full => Fifo_full(2), |
---|
159 | South => south_2_north(2)(2), East => east_2_west(2)(2) , Grant => Signal_grant(2)(2)); |
---|
160 | |
---|
161 | Arbiter_2_3 : Arbiter |
---|
162 | |
---|
163 | PORT MAP (Request => Request(33), North => south_2_north(1)(3), West => east_2_west(1)(2), P => Signal_priority(10), Fifo_full => Fifo_full(3), |
---|
164 | South => south_2_north(2)(3), East => east_2_west(2)(3) , Grant => Signal_grant(2)(3)); |
---|
165 | |
---|
166 | Arbiter_2_4 : Arbiter |
---|
167 | |
---|
168 | PORT MAP (Request => Request(28), North => south_2_north(1)(4), West => east_2_west(1)(3), P => Signal_priority(10), Fifo_full => Fifo_full(4), |
---|
169 | South => south_2_north(2)(4), East => east_2_west(2)(4) , Grant => Signal_grant(2)(4)); |
---|
170 | |
---|
171 | Arbiter_2_5 : Arbiter |
---|
172 | |
---|
173 | PORT MAP (Request => Request(23), North => south_2_north(1)(5), West => east_2_west(1)(4), P => Signal_priority(10), Fifo_full => Fifo_full(5), |
---|
174 | South => south_2_north(2)(5), East => east_2_west(2)(5) , Grant => Signal_grant(2)(5)); |
---|
175 | |
---|
176 | Arbiter_2_6 : Arbiter |
---|
177 | |
---|
178 | PORT MAP (Request => Request(18), North => south_2_north(1)(6), West => east_2_west(1)(5), P => Signal_priority(10), Fifo_full => Fifo_full(6), |
---|
179 | South => south_2_north(2)(6), East => east_2_west(2)(6) , Grant => Signal_grant(2)(6)); |
---|
180 | |
---|
181 | -------------------------- Diagonale n° 3 |
---|
182 | |
---|
183 | |
---|
184 | Arbiter_3_1 : Arbiter |
---|
185 | |
---|
186 | PORT MAP (Request => Request(13), North => south_2_north(2)(1), West => east_2_west(2)(6), P => Signal_priority(9), Fifo_full => Fifo_full(1), |
---|
187 | South => south_2_north(3)(1), East => east_2_west(3)(1) , Grant => Signal_grant(3)(1)); |
---|
188 | |
---|
189 | Arbiter_3_2 : Arbiter |
---|
190 | |
---|
191 | PORT MAP (Request => Request(8), North => south_2_north(2)(2), West => east_2_west(2)(1), P => Signal_priority(9), Fifo_full => Fifo_full(2), |
---|
192 | South => south_2_north(3)(2), East => east_2_west(3)(2) , Grant => Signal_grant(3)(2)); |
---|
193 | |
---|
194 | Arbiter_3_3 : Arbiter |
---|
195 | |
---|
196 | PORT MAP (Request => Request(3), North => south_2_north(2)(3), West => east_2_west(2)(2), P => Signal_priority(9), Fifo_full => Fifo_full(3), |
---|
197 | South => south_2_north(3)(3), East => east_2_west(3)(3) , Grant => Signal_grant(3)(3)); |
---|
198 | |
---|
199 | Arbiter_3_4 : Arbiter |
---|
200 | |
---|
201 | PORT MAP (Request => Request(34), North => south_2_north(2)(4), West => east_2_west(2)(3), P => Signal_priority(9), Fifo_full => Fifo_full(4), |
---|
202 | South => south_2_north(3)(4), East => east_2_west(3)(4) , Grant => Signal_grant(3)(4)); |
---|
203 | |
---|
204 | Arbiter_3_5 : Arbiter |
---|
205 | |
---|
206 | PORT MAP (Request => Request(29), North => south_2_north(2)(5), West => east_2_west(2)(4), P => Signal_priority(9), Fifo_full => Fifo_full(5), |
---|
207 | South => south_2_north(3)(5), East => east_2_west(3)(5) , Grant => Signal_grant(3)(5)); |
---|
208 | |
---|
209 | Arbiter_3_6 : Arbiter |
---|
210 | |
---|
211 | PORT MAP (Request => Request(24), North => south_2_north(2)(6), West => east_2_west(2)(5), P => Signal_priority(9), Fifo_full => Fifo_full(6), |
---|
212 | South => south_2_north(3)(6), East => east_2_west(3)(6) , Grant => Signal_grant(3)(6)); |
---|
213 | |
---|
214 | -------------------------- Diagonale n° 4 |
---|
215 | |
---|
216 | |
---|
217 | Arbiter_4_1 : Arbiter |
---|
218 | |
---|
219 | PORT MAP (Request => Request(19), North => south_2_north(3)(1), West => east_2_west(3)(6), P => Signal_priority(8), Fifo_full => Fifo_full(1), |
---|
220 | South => south_2_north(4)(1), East => east_2_west(4)(1) , Grant => Signal_grant(4)(1)); |
---|
221 | |
---|
222 | Arbiter_4_2 : Arbiter |
---|
223 | |
---|
224 | PORT MAP (Request => Request(14), North => south_2_north(3)(2), West => east_2_west(3)(1), P => Signal_priority(8), Fifo_full => Fifo_full(2), |
---|
225 | South => south_2_north(4)(2), East => east_2_west(4)(2) , Grant => Signal_grant(4)(2)); |
---|
226 | |
---|
227 | Arbiter_4_3 : Arbiter |
---|
228 | |
---|
229 | PORT MAP (Request => Request(9), North => south_2_north(3)(3), West => east_2_west(3)(2), P => Signal_priority(8), Fifo_full => Fifo_full(3), |
---|
230 | South => south_2_north(4)(3), East => east_2_west(4)(3) , Grant => Signal_grant(4)(3)); |
---|
231 | |
---|
232 | Arbiter_4_4 : Arbiter |
---|
233 | |
---|
234 | PORT MAP (Request => Request(4), North => south_2_north(3)(4), West => east_2_west(3)(3), P => Signal_priority(8), Fifo_full => Fifo_full(4), |
---|
235 | South => south_2_north(4)(4), East => east_2_west(4)(4) , Grant => Signal_grant(4)(4)); |
---|
236 | |
---|
237 | Arbiter_4_5 : Arbiter |
---|
238 | |
---|
239 | PORT MAP (Request => Request(35), North => south_2_north(3)(5), West => east_2_west(3)(4), P => Signal_priority(8), Fifo_full => Fifo_full(5), |
---|
240 | South => south_2_north(4)(5), East => east_2_west(4)(5) , Grant => Signal_grant(4)(5)); |
---|
241 | |
---|
242 | Arbiter_4_6 : Arbiter |
---|
243 | |
---|
244 | PORT MAP (Request => Request(30), North => south_2_north(3)(6), West => east_2_west(3)(5), P => Signal_priority(8), Fifo_full => Fifo_full(6), |
---|
245 | South => south_2_north(4)(6), East => east_2_west(4)(6) , Grant => Signal_grant(4)(6)); |
---|
246 | |
---|
247 | -------------------------- Diagonale n° 5 |
---|
248 | |
---|
249 | |
---|
250 | Arbiter_5_1 : Arbiter |
---|
251 | |
---|
252 | PORT MAP (Request => Request(25), North => south_2_north(4)(1), West => east_2_west(4)(6), P => Signal_priority(7), Fifo_full => Fifo_full(1), |
---|
253 | South => south_2_north(5)(1), East => east_2_west(5)(1) , Grant => Signal_grant(5)(1)); |
---|
254 | |
---|
255 | Arbiter_5_2 : Arbiter |
---|
256 | |
---|
257 | PORT MAP (Request => Request(20), North => south_2_north(4)(2), West => east_2_west(4)(1), P => Signal_priority(7), Fifo_full => Fifo_full(2), |
---|
258 | South => south_2_north(5)(2), East => east_2_west(5)(2) , Grant => Signal_grant(5)(2)); |
---|
259 | |
---|
260 | Arbiter_5_3 : Arbiter |
---|
261 | |
---|
262 | PORT MAP (Request => Request(15), North => south_2_north(4)(3), West => east_2_west(4)(2), P => Signal_priority(7), Fifo_full => Fifo_full(3), |
---|
263 | South => south_2_north(5)(3), East => east_2_west(5)(3) , Grant => Signal_grant(5)(3)); |
---|
264 | |
---|
265 | Arbiter_5_4 : Arbiter |
---|
266 | |
---|
267 | PORT MAP (Request => Request(10), North => south_2_north(4)(4), West => east_2_west(4)(3), P => Signal_priority(7), Fifo_full => Fifo_full(4), |
---|
268 | South => south_2_north(5)(4), East => east_2_west(5)(4) , Grant => Signal_grant(5)(4)); |
---|
269 | |
---|
270 | Arbiter_5_5 : Arbiter |
---|
271 | |
---|
272 | PORT MAP (Request => Request(5), North => south_2_north(4)(5), West => east_2_west(4)(4), P => Signal_priority(7), Fifo_full => Fifo_full(5), |
---|
273 | South => south_2_north(5)(5), East => east_2_west(5)(5) , Grant => Signal_grant(5)(5)); |
---|
274 | |
---|
275 | Arbiter_5_6 : Arbiter |
---|
276 | |
---|
277 | PORT MAP (Request => Request(36), North => south_2_north(4)(6), West => east_2_west(4)(5), P => Signal_priority(7), Fifo_full => Fifo_full(6), |
---|
278 | South => south_2_north(5)(6), East => east_2_west(5)(6) , Grant => Signal_grant(5)(6)); |
---|
279 | |
---|
280 | -------------------------- Diagonale n° 6 |
---|
281 | |
---|
282 | |
---|
283 | Arbiter_6_1 : Arbiter |
---|
284 | |
---|
285 | PORT MAP (Request => Request(31), North => south_2_north(5)(1), West => east_2_west(5)(6), P => Signal_priority(6), Fifo_full => Fifo_full(1), |
---|
286 | South => south_2_north(6)(1), East => east_2_west(6)(1) , Grant => Signal_grant(6)(1)); |
---|
287 | |
---|
288 | Arbiter_6_2 : Arbiter |
---|
289 | |
---|
290 | PORT MAP (Request => Request(26), North => south_2_north(5)(2), West => east_2_west(5)(1), P => Signal_priority(6), Fifo_full => Fifo_full(2), |
---|
291 | South => south_2_north(6)(2), East => east_2_west(6)(2) , Grant => Signal_grant(6)(2)); |
---|
292 | |
---|
293 | Arbiter_6_3 : Arbiter |
---|
294 | |
---|
295 | PORT MAP (Request => Request(21), North => south_2_north(5)(3), West => east_2_west(5)(2), P => Signal_priority(6), Fifo_full => Fifo_full(3), |
---|
296 | South => south_2_north(6)(3), East => east_2_west(6)(3) , Grant => Signal_grant(6)(3)); |
---|
297 | |
---|
298 | Arbiter_6_4 : Arbiter |
---|
299 | |
---|
300 | PORT MAP (Request => Request(16), North => south_2_north(5)(4), West => east_2_west(5)(3), P => Signal_priority(6), Fifo_full => Fifo_full(4), |
---|
301 | South => south_2_north(6)(4), East => east_2_west(6)(4) , Grant => Signal_grant(6)(4)); |
---|
302 | |
---|
303 | Arbiter_6_5 : Arbiter |
---|
304 | |
---|
305 | PORT MAP (Request => Request(11), North => south_2_north(5)(5), West => east_2_west(5)(4), P => Signal_priority(6), Fifo_full => Fifo_full(5), |
---|
306 | South => south_2_north(6)(5), East => east_2_west(6)(5) , Grant => Signal_grant(6)(5)); |
---|
307 | |
---|
308 | Arbiter_6_6 : Arbiter |
---|
309 | |
---|
310 | PORT MAP (Request => Request(6), North => south_2_north(5)(6), West => east_2_west(5)(5), P => Signal_priority(6), Fifo_full => Fifo_full(6), |
---|
311 | South => south_2_north(6)(6), East => east_2_west(6)(6) , Grant => Signal_grant(6)(6)); |
---|
312 | |
---|
313 | -------------------------- Diagonale n° 7 |
---|
314 | |
---|
315 | |
---|
316 | Arbiter_7_1 : Arbiter |
---|
317 | |
---|
318 | PORT MAP (Request => Request(1), North => south_2_north(6)(1), West => east_2_west(6)(6), P => Signal_priority(5), Fifo_full => Fifo_full(1), |
---|
319 | South => south_2_north(7)(1), East => east_2_west(7)(1) , Grant => Signal_grant(7)(1)); |
---|
320 | |
---|
321 | Arbiter_7_2 : Arbiter |
---|
322 | |
---|
323 | PORT MAP (Request => Request(32), North => south_2_north(6)(2), West => east_2_west(6)(1), P => Signal_priority(5), Fifo_full => Fifo_full(2), |
---|
324 | South => south_2_north(7)(2), East => east_2_west(7)(2) , Grant => Signal_grant(7)(2)); |
---|
325 | |
---|
326 | Arbiter_7_3 : Arbiter |
---|
327 | |
---|
328 | PORT MAP (Request => Request(27), North => south_2_north(6)(3), West => east_2_west(6)(2), P => Signal_priority(5), Fifo_full => Fifo_full(3), |
---|
329 | South => south_2_north(7)(3), East => east_2_west(7)(3) , Grant => Signal_grant(7)(3)); |
---|
330 | |
---|
331 | Arbiter_7_4 : Arbiter |
---|
332 | |
---|
333 | PORT MAP (Request => Request(22), North => south_2_north(6)(4), West => east_2_west(6)(3), P => Signal_priority(5), Fifo_full => Fifo_full(4), |
---|
334 | South => south_2_north(7)(4), East => east_2_west(7)(4) , Grant => Signal_grant(7)(4)); |
---|
335 | |
---|
336 | Arbiter_7_5 : Arbiter |
---|
337 | |
---|
338 | PORT MAP (Request => Request(17), North => south_2_north(6)(5), West => east_2_west(6)(4), P => Signal_priority(5), Fifo_full => Fifo_full(5), |
---|
339 | South => south_2_north(7)(5), East => east_2_west(7)(5) , Grant => Signal_grant(7)(5)); |
---|
340 | |
---|
341 | Arbiter_7_6 : Arbiter |
---|
342 | |
---|
343 | PORT MAP (Request => Request(12), North => south_2_north(6)(6), West => east_2_west(6)(5), P => Signal_priority(5), Fifo_full => Fifo_full(6), |
---|
344 | South => south_2_north(7)(6), East => east_2_west(7)(6) , Grant => Signal_grant(7)(6)); |
---|
345 | |
---|
346 | -------------------------- Diagonale n° 8 |
---|
347 | |
---|
348 | |
---|
349 | Arbiter_8_1 : Arbiter |
---|
350 | |
---|
351 | PORT MAP (Request => Request(7), North => south_2_north(7)(1), West => east_2_west(7)(6), P => Signal_priority(4), Fifo_full => Fifo_full(1), |
---|
352 | South => south_2_north(8)(1), East => east_2_west(8)(1) , Grant => Signal_grant(8)(1)); |
---|
353 | |
---|
354 | Arbiter_8_2 : Arbiter |
---|
355 | |
---|
356 | PORT MAP (Request => Request(2), North => south_2_north(7)(2), West => east_2_west(7)(1), P => Signal_priority(4), Fifo_full => Fifo_full(2), |
---|
357 | South => south_2_north(8)(2), East => east_2_west(8)(2) , Grant => Signal_grant(8)(2)); |
---|
358 | |
---|
359 | Arbiter_8_3 : Arbiter |
---|
360 | |
---|
361 | PORT MAP (Request => Request(33), North => south_2_north(7)(3), West => east_2_west(7)(2), P => Signal_priority(4), Fifo_full => Fifo_full(3), |
---|
362 | South => south_2_north(8)(3), East => east_2_west(8)(3) , Grant => Signal_grant(8)(3)); |
---|
363 | |
---|
364 | Arbiter_8_4 : Arbiter |
---|
365 | |
---|
366 | PORT MAP (Request => Request(28), North => south_2_north(7)(4), West => east_2_west(7)(3), P => Signal_priority(4), Fifo_full => Fifo_full(4), |
---|
367 | South => south_2_north(8)(4), East => east_2_west(8)(4) , Grant => Signal_grant(8)(4)); |
---|
368 | |
---|
369 | Arbiter_8_5 : Arbiter |
---|
370 | |
---|
371 | PORT MAP (Request => Request(23), North => south_2_north(7)(5), West => east_2_west(7)(4), P => Signal_priority(4), Fifo_full => Fifo_full(5), |
---|
372 | South => south_2_north(8)(5), East => east_2_west(8)(5) , Grant => Signal_grant(8)(5)); |
---|
373 | |
---|
374 | Arbiter_8_6 : Arbiter |
---|
375 | |
---|
376 | PORT MAP (Request => Request(18), North => south_2_north(7)(6), West => east_2_west(7)(5), P => Signal_priority(4), Fifo_full => Fifo_full(6), |
---|
377 | South => south_2_north(8)(6), East => east_2_west(8)(6) , Grant => Signal_grant(8)(6)); |
---|
378 | |
---|
379 | -------------------------- Diagonale n° 9 |
---|
380 | |
---|
381 | |
---|
382 | Arbiter_9_1 : Arbiter |
---|
383 | |
---|
384 | PORT MAP (Request => Request(13), North => south_2_north(8)(1), West => east_2_west(8)(6), P => Signal_priority(3), Fifo_full => Fifo_full(1), |
---|
385 | South => south_2_north(9)(1), East => east_2_west(9)(1) , Grant => Signal_grant(9)(1)); |
---|
386 | |
---|
387 | Arbiter_9_2 : Arbiter |
---|
388 | |
---|
389 | PORT MAP (Request => Request(8), North => south_2_north(8)(2), West => east_2_west(8)(1), P => Signal_priority(3), Fifo_full => Fifo_full(2), |
---|
390 | South => south_2_north(9)(2), East => east_2_west(9)(2) , Grant => Signal_grant(9)(2)); |
---|
391 | |
---|
392 | Arbiter_9_3 : Arbiter |
---|
393 | |
---|
394 | PORT MAP (Request => Request(3), North => south_2_north(8)(3), West => east_2_west(8)(2), P => Signal_priority(3), Fifo_full => Fifo_full(3), |
---|
395 | South => south_2_north(9)(3), East => east_2_west(9)(3) , Grant => Signal_grant(9)(3)); |
---|
396 | |
---|
397 | Arbiter_9_4 : Arbiter |
---|
398 | |
---|
399 | PORT MAP (Request => Request(34), North => south_2_north(8)(4), West => east_2_west(8)(3), P => Signal_priority(3), Fifo_full => Fifo_full(4), |
---|
400 | South => south_2_north(9)(4), East => east_2_west(9)(4) , Grant => Signal_grant(9)(4)); |
---|
401 | |
---|
402 | Arbiter_9_5 : Arbiter |
---|
403 | |
---|
404 | PORT MAP (Request => Request(29), North => south_2_north(8)(5), West => east_2_west(8)(4), P => Signal_priority(3), Fifo_full => Fifo_full(5), |
---|
405 | South => south_2_north(9)(5), East => east_2_west(9)(5) , Grant => Signal_grant(9)(5)); |
---|
406 | |
---|
407 | Arbiter_9_6 : Arbiter |
---|
408 | |
---|
409 | PORT MAP (Request => Request(24), North => south_2_north(8)(6), West => east_2_west(8)(5), P => Signal_priority(3), Fifo_full => Fifo_full(6), |
---|
410 | South => south_2_north(9)(6), East => east_2_west(9)(6) , Grant => Signal_grant(9)(6)); |
---|
411 | |
---|
412 | -------------------------- Diagonale n° 10 |
---|
413 | |
---|
414 | |
---|
415 | Arbiter_10_1 : Arbiter |
---|
416 | |
---|
417 | PORT MAP (Request => Request(19), North => south_2_north(9)(1), West => east_2_west(9)(6), P => Signal_priority(2), Fifo_full => Fifo_full(1), |
---|
418 | South => south_2_north(10)(1), East => east_2_west(10)(1) , Grant => Signal_grant(10)(1)); |
---|
419 | |
---|
420 | Arbiter_10_2 : Arbiter |
---|
421 | |
---|
422 | PORT MAP (Request => Request(14), North => south_2_north(9)(2), West => east_2_west(9)(1), P => Signal_priority(2), Fifo_full => Fifo_full(2), |
---|
423 | South => south_2_north(10)(2), East => east_2_west(10)(2) , Grant => Signal_grant(10)(2)); |
---|
424 | |
---|
425 | Arbiter_10_3 : Arbiter |
---|
426 | |
---|
427 | PORT MAP (Request => Request(9), North => south_2_north(9)(3), West => east_2_west(9)(2), P => Signal_priority(2), Fifo_full => Fifo_full(3), |
---|
428 | South => south_2_north(10)(3), East => east_2_west(10)(3) , Grant => Signal_grant(10)(3)); |
---|
429 | |
---|
430 | Arbiter_10_4 : Arbiter |
---|
431 | |
---|
432 | PORT MAP (Request => Request(4), North => south_2_north(9)(4), West => east_2_west(9)(3), P => Signal_priority(2), Fifo_full => Fifo_full(4), |
---|
433 | South => south_2_north(10)(4), East => east_2_west(10)(4) , Grant => Signal_grant(10)(4)); |
---|
434 | |
---|
435 | Arbiter_10_5 : Arbiter |
---|
436 | |
---|
437 | PORT MAP (Request => Request(35), North => south_2_north(9)(5), West => east_2_west(9)(4), P => Signal_priority(2), Fifo_full => Fifo_full(5), |
---|
438 | South => south_2_north(10)(5), East => east_2_west(10)(5) , Grant => Signal_grant(10)(5)); |
---|
439 | |
---|
440 | Arbiter_10_6 : Arbiter |
---|
441 | |
---|
442 | PORT MAP (Request => Request(30), North => south_2_north(9)(6), West => east_2_west(9)(5), P => Signal_priority(2), Fifo_full => Fifo_full(6), |
---|
443 | South => south_2_north(10)(6), East => east_2_west(10)(6) , Grant => Signal_grant(10)(6)); |
---|
444 | |
---|
445 | -------------------------- Diagonale n° 11 |
---|
446 | |
---|
447 | |
---|
448 | Arbiter_11_1 : Arbiter |
---|
449 | |
---|
450 | PORT MAP (Request => Request(25), North => south_2_north(10)(1), West => east_2_west(10)(6), P => Signal_priority(1), Fifo_full => Fifo_full(1), |
---|
451 | South => south_2_north(11)(1), East => east_2_west(11)(1) , Grant => Signal_grant(11)(1)); |
---|
452 | |
---|
453 | Arbiter_11_2 : Arbiter |
---|
454 | |
---|
455 | PORT MAP (Request => Request(20), North => south_2_north(10)(2), West => east_2_west(10)(1), P => Signal_priority(1), Fifo_full => Fifo_full(2), |
---|
456 | South => south_2_north(11)(2), East => east_2_west(11)(2) , Grant => Signal_grant(11)(2)); |
---|
457 | |
---|
458 | Arbiter_11_3 : Arbiter |
---|
459 | |
---|
460 | PORT MAP (Request => Request(15), North => south_2_north(10)(3), West => east_2_west(10)(2), P => Signal_priority(1), Fifo_full => Fifo_full(3), |
---|
461 | South => south_2_north(11)(3), East => east_2_west(11)(3) , Grant => Signal_grant(11)(3)); |
---|
462 | |
---|
463 | Arbiter_11_4 : Arbiter |
---|
464 | |
---|
465 | PORT MAP (Request => Request(10), North => south_2_north(10)(4), West => east_2_west(10)(3), P => Signal_priority(1), Fifo_full => Fifo_full(4), |
---|
466 | South => south_2_north(11)(4), East => east_2_west(11)(4) , Grant => Signal_grant(11)(4)); |
---|
467 | |
---|
468 | Arbiter_11_5 : Arbiter |
---|
469 | |
---|
470 | PORT MAP (Request => Request(5), North => south_2_north(10)(5), West => east_2_west(10)(4), P => Signal_priority(1), Fifo_full => Fifo_full(5), |
---|
471 | South => south_2_north(11)(5), East => east_2_west(11)(5) , Grant => Signal_grant(11)(5)); |
---|
472 | |
---|
473 | Arbiter_11_6 : Arbiter |
---|
474 | |
---|
475 | PORT MAP (Request => Request(36), North => south_2_north(10)(6), West => east_2_west(10)(5), P => Signal_priority(1), Fifo_full => Fifo_full(6), |
---|
476 | South => south_2_north(11)(6), East => east_2_west(11)(6) , Grant => Signal_grant(11)(6)); |
---|
477 | |
---|
478 | |
---|
479 | --processus permettant de roter la priorité des diagonales à chaque front d'horloge |
---|
480 | -- rotation round robin |
---|
481 | round_robin : process(clk) |
---|
482 | begin |
---|
483 | if rising_edge(clk) then |
---|
484 | if reset ='1' then |
---|
485 | Signal_priority <= "11111100000"; |
---|
486 | elsif priority_rotation_en = '1' then |
---|
487 | case Signal_priority is |
---|
488 | when "11111100000" => Signal_priority <= "01111110000"; |
---|
489 | when "01111110000" => Signal_priority <= "00111111000"; |
---|
490 | when "00111111000" => Signal_priority <= "00011111100"; |
---|
491 | when "00011111100" => Signal_priority <= "00001111110"; |
---|
492 | when "00001111110" => Signal_priority <= "00000111111"; |
---|
493 | when "00000111111" => Signal_priority <= "11111100000"; |
---|
494 | when others => Signal_priority <= "11111100000"; |
---|
495 | end case; |
---|
496 | end if; |
---|
497 | end if; |
---|
498 | end process; |
---|
499 | |
---|
500 | end Behavioral; |
---|
501 | |
---|