w11 - vhd 0.794
W11 CPU core and support modules
Loading...
Searching...
No Matches
sys_conf.vhd
Go to the documentation of this file.
1-- $Id: sys_conf.vhd 1181 2019-07-08 17:00:50Z mueller $
2-- SPDX-License-Identifier: GPL-3.0-or-later
3-- Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4--
5------------------------------------------------------------------------------
6-- Package Name: sys_conf
7-- Description: Definitions for sys_tst_rlink_cuff_ic_n3 (for synthesis)
8--
9-- Dependencies: -
10-- Tool versions: xst 13.3-14.7; ghdl 0.29-0.31
11-- Revision History:
12-- Date Rev Version Comment
13-- 2013-10-06 538 1.1 pll support, use clksys_vcodivide ect
14-- 2013-01-04 469 1.0 Initial version
15------------------------------------------------------------------------------
16
17library ieee;
18use ieee.std_logic_1164.all;
19
20use work.slvtypes.all;
21
22package sys_conf is
23
24 constant sys_conf_clksys_vcodivide : positive := 1;
25 constant sys_conf_clksys_vcomultiply : positive := 1; -- dcm 100 MHz
26 constant sys_conf_clksys_outdivide : positive := 1; -- sys 100 MHz
27 constant sys_conf_clksys_gentype : string := "DCM";
28
29 constant sys_conf_ser2rri_defbaud : integer := 115200; -- default 115k baud
30 constant sys_conf_hio_debounce : boolean := true; -- instantiate debouncers
31
32 constant sys_conf_fx2_type : string := "ic2";
33
34 -- dummy values defs for generic parameters of as controller
35 constant sys_conf_fx2_rdpwldelay : positive := 1;
36 constant sys_conf_fx2_rdpwhdelay : positive := 1;
37 constant sys_conf_fx2_wrpwldelay : positive := 1;
38 constant sys_conf_fx2_wrpwhdelay : positive := 1;
39 constant sys_conf_fx2_flagdelay : positive := 1;
40
41 -- pktend timer setting
42 -- petowidth=10 -> 2^10 30 MHz clocks -> ~33 usec (normal operation)
43 constant sys_conf_fx2_petowidth : positive := 10;
44
45 constant sys_conf_fx2_ccwidth : positive := 5;
46
47 -- derived constants
48
49 constant sys_conf_clksys : integer :=
52 constant sys_conf_clksys_mhz : integer := sys_conf_clksys/1000000;
53
54 constant sys_conf_ser2rri_cdinit : integer :=
56
57end package sys_conf;
positive := 8 sys_conf_clksys_vcomultiply
integer :=(( 100000000/ sys_conf_clksys_vcodivide)* sys_conf_clksys_vcomultiply)/ sys_conf_clksys_outdivide sys_conf_clksys
positive := 5 sys_conf_fx2_ccwidth
Definition: sys_conf.vhd:42
positive := 10 sys_conf_fx2_petowidth
Definition: sys_conf.vhd:40
integer :=( sys_conf_clkser/ sys_conf_ser2rri_defbaud)- 1 sys_conf_ser2rri_cdinit
Definition: sys_conf.vhd:48
integer := sys_conf_clksys/ 1000000 sys_conf_clksys_mhz
positive := 1 sys_conf_clksys_vcodivide
positive := 1 sys_conf_fx2_wrpwldelay
Definition: sys_conf.vhd:34
positive := 1 sys_conf_fx2_flagdelay
Definition: sys_conf.vhd:36
boolean := true sys_conf_hio_debounce
Definition: sys_conf.vhd:33
positive := 1 sys_conf_fx2_wrpwhdelay
Definition: sys_conf.vhd:35
positive := 10 sys_conf_clksys_outdivide
string := "MMCM" sys_conf_clksys_gentype
positive := 1 sys_conf_fx2_rdpwhdelay
Definition: sys_conf.vhd:33
positive := 1 sys_conf_fx2_rdpwldelay
Definition: sys_conf.vhd:32
string := "ic2" sys_conf_fx2_type
Definition: sys_conf.vhd:29
integer := 115200 sys_conf_ser2rri_defbaud
Definition: sys_conf.vhd:34