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

Subversion Repositories gecko4

[/] [gecko4/] [trunk/] [GECKO4com/] [spartan200_an/] [vhdl/] [bus_if/] [bus_if-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
 
37
ENTITY bus_if IS
38
   PORT ( clock                    : IN    std_logic;
39
          reset                    : IN    std_logic;
40
 
41
          -- Here the IOB interface is defined
42
          bus_reset                : IN    std_logic;
43
          bus_n_start_transmission : IN    std_logic;
44
          bus_n_end_transmission   : INOUT std_logic;
45
          bus_n_data_valid         : INOUT std_logic_vector( 1 DOWNTO 0 );
46
          bus_data_addr_cntrl      : INOUT std_logic_vector(15 DOWNTO 0 );
47
          bus_n_start_send         : OUT   std_logic;
48
          bus_n_error              : OUT   std_logic;
49
 
50
          -- Here the FPGA internal interface is defined
51
          b_n_reset                : OUT   std_logic;
52
          b_n_start_transmission   : OUT   std_logic;
53
          b_n_end_transmission_out : OUT   std_logic;
54
          b_n_end_transmission_in  : IN    std_logic;
55
          b_n_data_valid_out       : OUT   std_logic_vector( 1 DOWNTO 0 );
56
          b_n_data_valid_in        : IN    std_logic_vector( 1 DOWNTO 0 );
57
          data_out                 : OUT   std_logic_vector(15 DOWNTO 0 );
58
          data_in                  : IN    std_logic_vector(15 DOWNTO 0 );
59
          read_n_write             : OUT   std_logic;
60
          burst_size               : OUT   std_logic_vector( 8 DOWNTO 0 );
61
          address                  : OUT   std_logic_vector( 5 DOWNTO 0 );
62
          n_start_send             : IN    std_logic;
63
          n_bus_error              : IN    std_logic);
64
END bus_if;

powered by: WebSVN 2.1.0

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