-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.vhd
34 lines (18 loc) · 1.04 KB
/
Config.vhd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
------------------------------------------------------------------------------------------
---------------------------- Global PCI --------------------------------------------
------------------------------------------------------------------------------------------
package GLOBAL_PCI_CONFIG is
-- Clocks until Master has to assign IRDY after FRAME is set and GNT is given
constant c_MasterTimeOut : integer := 8;
-- Clocks until Target has to assign DEVSEL after FRAME
constant c_DevselTimeOut : integer := 4;
end GLOBAL_PCI_CONFIG;
------------------------------------------------------------------------------------------
---------------------------- Arbiter -----------------------------------------------
------------------------------------------------------------------------------------------
package ARBITER_CONFIG is
-- number of agents attached to the bus
constant c_Agents : integer := 4;
-- number of clocks master gets maximal priority
constant c_AckTimer : integer := 8;
end ARBITER_CONFIG;