OpenCores
URL https://opencores.org/ocsvn/gecko4/gecko4/trunk

Subversion Repositories gecko4

[/] [gecko4/] [trunk/] [GECKO4com/] [spartan200_an/] [vhdl/] [clockgen/] [clocks-entity.vhdl] - Blame information for rev 5

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 5 ktt1
--------------------------------------------------------------------------------
2
--            _   _            __   ____                                      --
3
--           / / | |          / _| |  __|                                     --
4
--           | |_| |  _   _  / /   | |_                                       --
5
--           |  _  | | | | | | |   |  _|                                      --
6
--           | | | | | |_| | \ \_  | |__                                      --
7
--           |_| |_| \_____|  \__| |____| microLab                            --
8
--                                                                            --
9
--           Bern University of Applied Sciences (BFH)                        --
10
--           Quellgasse 21                                                    --
11
--           Room HG 4.33                                                     --
12
--           2501 Biel/Bienne                                                 --
13
--           Switzerland                                                      --
14
--                                                                            --
15
--           http://www.microlab.ch                                           --
16
--------------------------------------------------------------------------------
17
--   GECKO4com
18
--  
19
--   2010/2011 Dr. Theo Kluter
20
--  
21
--   This VHDL code is free code: you can redistribute it and/or modify
22
--   it under the terms of the GNU General Public License as published by
23
--   the Free Software Foundation, either version 3 of the License, or
24
--   (at your option) any later version.
25
--  
26
--   This VHDL code is distributed in the hope that it will be useful,
27
--   but WITHOUT ANY WARRANTY; without even the implied warranty of
28
--   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29
--   GNU General Public License for more details. 
30
--   You should have received a copy of the GNU General Public License
31
--   along with these sources.  If not, see <http://www.gnu.org/licenses/>.
32
--
33
 
34
LIBRARY ieee;
35
USE ieee.std_logic_1164.all;
36
USE ieee.std_logic_arith.all;
37
 
38
ENTITY clocks IS
39
   PORT ( system_n_reset    : IN  std_logic;
40
          clock_25MHz       : IN  std_logic;
41
          clock_16MHz       : IN  std_logic;
42
          user_clock_1      : IN  std_logic;
43
          user_clock_2      : IN  std_logic;
44
 
45
          -- Here the compensated clocks are defined
46
          user_clock_1_out  : OUT std_logic;
47
          user_clock_1_fb   : IN  std_logic;
48
          user_clock_1_lock : OUT std_logic;
49
          user_clock_2_out  : OUT std_logic;
50
          user_clock_2_fb   : IN  std_logic;
51
          user_clock_2_lock : OUT std_logic;
52
 
53
          -- Here the master clocks are defined
54
          clock_25MHz_out   : OUT std_logic;
55
          clock_48MHz_out   : OUT std_logic;
56
 
57
          -- Here the FPGA internal clocks are defined
58
          clk_48MHz         : OUT std_logic;
59
          clk_96MHz         : OUT std_logic;
60
          clk_75MHz         : OUT std_logic;
61
          reset_out         : OUT std_logic;
62
          msec_tick         : OUT std_logic );
63
 END clocks;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.