1 |
180 |
jshamlet |
-- Copyright (c)2006, 2016, 2019 Jeremy Seth Henry
|
2 |
|
|
-- All rights reserved.
|
3 |
|
|
--
|
4 |
|
|
-- Redistribution and use in source and binary forms, with or without
|
5 |
|
|
-- modification, are permitted provided that the following conditions are met:
|
6 |
|
|
-- * Redistributions of source code must retain the above copyright
|
7 |
|
|
-- notice, this list of conditions and the following disclaimer.
|
8 |
|
|
-- * Redistributions in binary form must reproduce the above copyright
|
9 |
|
|
-- notice, this list of conditions and the following disclaimer in the
|
10 |
|
|
-- documentation and/or other materials provided with the distribution,
|
11 |
|
|
-- where applicable (as part of a user interface, debugging port, etc.)
|
12 |
|
|
--
|
13 |
|
|
-- THIS SOFTWARE IS PROVIDED BY JEREMY SETH HENRY ``AS IS'' AND ANY
|
14 |
|
|
-- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
15 |
|
|
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
16 |
|
|
-- DISCLAIMED. IN NO EVENT SHALL JEREMY SETH HENRY BE LIABLE FOR ANY
|
17 |
|
|
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
18 |
|
|
-- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
19 |
|
|
-- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
20 |
|
|
-- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
21 |
|
|
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
22 |
|
|
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23 |
|
|
--
|
24 |
|
|
-- VHDL Units : o8_datalatch
|
25 |
|
|
-- Description: Latches a byte of external data and issues an interrupt on
|
26 |
|
|
-- capture.
|
27 |
|
|
--
|
28 |
|
|
--
|
29 |
|
|
-- Register Map:
|
30 |
|
|
-- Offset Bitfield Description Read/Write
|
31 |
|
|
-- 0x00 AAAAAAAA Latched Value (RW)
|
32 |
|
|
--
|
33 |
|
|
-- Note: Cut the path between LData_q1 and L_Data for timing analysis
|
34 |
|
|
--
|
35 |
|
|
-- Revision History
|
36 |
|
|
-- Author Date Change
|
37 |
|
|
------------------ -------- ---------------------------------------------------
|
38 |
|
|
-- Seth Henry 01/22/20 Design Start
|
39 |
|
|
|
40 |
|
|
library ieee;
|
41 |
|
|
use ieee.std_logic_1164.all;
|
42 |
|
|
|
43 |
|
|
library work;
|
44 |
|
|
use work.open8_pkg.all;
|
45 |
|
|
|
46 |
|
|
entity o8_datalatch is
|
47 |
|
|
generic(
|
48 |
|
|
Reset_Level : std_logic;
|
49 |
|
|
Address : ADDRESS_TYPE
|
50 |
|
|
);
|
51 |
|
|
port(
|
52 |
|
|
Clock : in std_logic;
|
53 |
|
|
Reset : in std_logic;
|
54 |
|
|
--
|
55 |
|
|
Bus_Address : in ADDRESS_TYPE;
|
56 |
|
|
Rd_Enable : in std_logic;
|
57 |
|
|
Rd_Data : out DATA_TYPE;
|
58 |
|
|
Interrupt : out std_logic;
|
59 |
|
|
--
|
60 |
|
|
L_Strobe : in std_logic;
|
61 |
|
|
L_Data : in DATA_TYPE
|
62 |
|
|
);
|
63 |
|
|
end entity;
|
64 |
|
|
|
65 |
|
|
architecture behave of o8_datalatch is
|
66 |
|
|
|
67 |
|
|
constant User_Addr : std_logic_vector(15 downto 0) := Address;
|
68 |
|
|
alias Comp_Addr is Bus_Address(15 downto 0);
|
69 |
|
|
signal Addr_Match : std_logic;
|
70 |
|
|
signal Rd_En : std_logic;
|
71 |
|
|
|
72 |
|
|
signal Strobe_sr : std_logic_vector(3 downto 0);
|
73 |
|
|
signal Strobe_re : std_logic;
|
74 |
|
|
|
75 |
|
|
signal LData_q1 : DATA_TYPE;
|
76 |
|
|
signal LData_q2 : DATA_TYPE;
|
77 |
|
|
signal LData_q3 : DATA_TYPE;
|
78 |
|
|
|
79 |
|
|
begin
|
80 |
|
|
|
81 |
|
|
Addr_Match <= Rd_Enable when Comp_Addr = User_Addr else '0';
|
82 |
|
|
Strobe_re <= Strobe_sr(2) and not Strobe_sr(3);
|
83 |
|
|
|
84 |
|
|
io_reg: process( Clock, Reset )
|
85 |
|
|
begin
|
86 |
|
|
if( Reset = Reset_Level )then
|
87 |
|
|
Rd_En <= '0';
|
88 |
|
|
Rd_Data <= x"00";
|
89 |
|
|
Strobe_sr <= (others => '0');
|
90 |
|
|
Interrupt <= '0';
|
91 |
|
|
LData_q1 <= x"00";
|
92 |
|
|
LData_q2 <= x"00";
|
93 |
|
|
LData_q3 <= x"00";
|
94 |
|
|
elsif( rising_edge( Clock ) )then
|
95 |
|
|
Strobe_sr <= Strobe_sr(2 downto 0) & L_Strobe;
|
96 |
|
|
|
97 |
|
|
LData_q1 <= L_Data;
|
98 |
|
|
LData_q2 <= LData_q1;
|
99 |
|
|
Interrupt <= Strobe_re;
|
100 |
|
|
if( Strobe_re = '1' )then
|
101 |
|
|
LData_q3 <= LData_q2;
|
102 |
|
|
end if;
|
103 |
|
|
|
104 |
|
|
Rd_Data <= (others => '0');
|
105 |
|
|
Rd_En <= Addr_Match;
|
106 |
|
|
if( Rd_En = '1' )then
|
107 |
|
|
Rd_Data <= LData_q3;
|
108 |
|
|
end if;
|
109 |
|
|
end if;
|
110 |
|
|
end process;
|
111 |
|
|
|
112 |
|
|
end architecture;
|