w11 - vhd 0.794
W11 CPU core and support modules
Loading...
Searching...
No Matches
sys_conf1_sim.vhd
Go to the documentation of this file.
1-- $Id: sys_conf1_sim.vhd 1369 2023-02-08 18:59:50Z mueller $
2-- SPDX-License-Identifier: GPL-3.0-or-later
3-- Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4--
5------------------------------------------------------------------------------
6-- Package Name: sys_conf
7-- Description: Definitions for sys_tst_serloop1_b3 (for test bench)
8--
9-- Dependencies: -
10-- Tool versions: viv 2022.1-; ghdl 2.0.0
11-- Revision History:
12-- Date Rev Version Comment
13-- 2023-02-07 1369 1.0 Initial version (cloned from sys_tst_serloop1_n4)
14------------------------------------------------------------------------------
15
16library ieee;
17use ieee.std_logic_1164.all;
18
19use work.slvtypes.all;
20
21package sys_conf is
22
23 -- in simulation a usec stays to 120 cycles (1.0 usec) and a msec to
24 -- 240 cycles (2 usec). This affects mainly the autobauder. A break will be
25 -- detected after 128 msec periods, this in simulation after 256 usec or
26 -- 30720 cycles. This is compatible with bitrates of 115200 baud or higher
27 -- (115200 <-> 8.68 usec <-> 1040 cycles)
28
29 -- configure clocks --------------------------------------------------------
30 constant sys_conf_clksys_vcodivide : positive := 1;
31 constant sys_conf_clksys_vcomultiply : positive := 12; -- vco 1200 MHz
32 constant sys_conf_clksys_outdivide : positive := 10; -- sys 120 MHz
33 constant sys_conf_clksys_gentype : string := "MMCM";
34
35 constant sys_conf_clkdiv_msecdiv : integer := 2; -- shortened !!
36
37 -- configure hio interfaces -----------------------------------------------
38 constant sys_conf_hio_debounce : boolean := false; -- no debouncers
39
40 -- configure serport ------------------------------------------------------
41 constant sys_conf_uart_cdinit : integer := 1-1; -- 1 cycle/bit in sim
42
43 -- derived constants =======================================================
44 constant sys_conf_clksys : integer :=
47 constant sys_conf_clksys_mhz : integer := sys_conf_clksys/1000000;
48
49end 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
integer := sys_conf_clksys/ 1000000 sys_conf_clksys_mhz
positive := 1 sys_conf_clksys_vcodivide
boolean := true sys_conf_hio_debounce
Definition: sys_conf.vhd:33
integer := 1000 sys_conf_clkdiv_msecdiv
Definition: sys_conf1.vhd:30
positive := 10 sys_conf_clksys_outdivide
integer :=( sys_conf_clksys/ sys_conf_uart_defbaud)- 1 sys_conf_uart_cdinit
Definition: sys_conf1.vhd:44
string := "MMCM" sys_conf_clksys_gentype