-- Copyright (c)2020 Jeremy Seth Henry
|
-- Copyright (c)2020 Jeremy Seth Henry
|
-- All rights reserved.
|
-- All rights reserved.
|
--
|
--
|
-- Redistribution and use in source and binary forms, with or without
|
-- Redistribution and use in source and binary forms, with or without
|
-- modification, are permitted provided that the following conditions are met:
|
-- modification, are permitted provided that the following conditions are met:
|
-- * Redistributions of source code must retain the above copyright
|
-- * Redistributions of source code must retain the above copyright
|
-- notice, this list of conditions and the following disclaimer.
|
-- notice, this list of conditions and the following disclaimer.
|
-- * Redistributions in binary form must reproduce the above copyright
|
-- * Redistributions in binary form must reproduce the above copyright
|
-- notice, this list of conditions and the following disclaimer in the
|
-- notice, this list of conditions and the following disclaimer in the
|
-- documentation and/or other materials provided with the distribution,
|
-- documentation and/or other materials provided with the distribution,
|
-- where applicable (as part of a user interface, debugging port, etc.)
|
-- where applicable (as part of a user interface, debugging port, etc.)
|
--
|
--
|
-- THIS SOFTWARE IS PROVIDED BY JEREMY SETH HENRY ``AS IS'' AND ANY
|
-- THIS SOFTWARE IS PROVIDED BY JEREMY SETH HENRY ``AS IS'' AND ANY
|
-- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
-- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
-- DISCLAIMED. IN NO EVENT SHALL JEREMY SETH HENRY BE LIABLE FOR ANY
|
-- DISCLAIMED. IN NO EVENT SHALL JEREMY SETH HENRY BE LIABLE FOR ANY
|
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
-- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
-- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
-- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
-- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
-- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
-- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
--
|
--
|
-- VHDL Entity: o8_trig_delay
|
-- VHDL Entity: o8_trig_delay
|
-- Description: Programmable delay timer with time-base selection. Allows both
|
-- Description: Programmable delay timer with time-base selection. Allows both
|
-- they delay after triggering and pulse width to be set by
|
-- they delay after triggering and pulse width to be set by
|
-- software. Output may either be routed to a pin or used to
|
-- software. Output may either be routed to a pin or used to
|
-- trigger an interrupt.
|
-- trigger an interrupt.
|
--
|
--
|
-- Register Map:
|
-- Register Map:
|
-- Offset Bitfield Description Read/Write
|
-- Offset Bitfield Description Read/Write
|
-- 0x0 AAAAAAAA Delay Time Byte 0 (RW)
|
-- 0x0 AAAAAAAA Delay Time Byte 0 (RW)
|
-- 0x1 AAAAAAAA Delay Time Byte 1 (RW)
|
-- 0x1 AAAAAAAA Delay Time Byte 1 (RW)
|
-- 0x2 AAAAAAAA Delay Time Byte 2 (RW)
|
-- 0x2 AAAAAAAA Delay Time Byte 2 (RW)
|
-- 0x3 AAAAAAAA Pulse Width Byte 0 (RW)
|
-- 0x3 AAAAAAAA Pulse Width Byte 0 (RW)
|
-- 0x4 AAAAAAAA Pulse Width Byte 1 (RW)
|
-- 0x4 AAAAAAAA Pulse Width Byte 1 (RW)
|
-- 0x5 AAAAAAAA Pulse Width Byte 2 (RW)
|
-- 0x5 AAAAAAAA Pulse Width Byte 2 (RW)
|
-- 0x6 EDCBAA-- Time Configuration (RW*)
|
-- 0x6 EDCBAA-- Timer Configuration (RW*)
|
-- A: Interrupt Select
|
-- A: Interrupt Select
|
-- 00 - Disabled
|
-- 00 - Disabled
|
-- 01 - Interrupt on trigger event
|
-- 01 - Interrupt on trigger event
|
-- 10 - Interrupt on delay done
|
-- 10 - Interrupt on delay done
|
-- 11 - Interrupt on pulse done
|
-- 11 - Interrupt on pulse done
|
-- B: Trigger Edge
|
-- B: Trigger Edge
|
-- 0 - Trigger on falling edge
|
-- 0 - Trigger on falling edge
|
-- 1 - Trigger on rising edge
|
-- 1 - Trigger on rising edge
|
-- C: Automatic Re-Arm (enabled if 1)
|
-- C: Automatic Re-Arm (enabled if 1)
|
-- D: Time base locked (okay if 1) (read-only)
|
-- D: Time base locked (okay if 1) (read-only)
|
-- E: Time base source
|
-- E: Time base source
|
-- 0 - Use the internal uSec_Tick pulse
|
-- 0 - Use the internal uSec_Tick pulse
|
-- 1 - Use an external clock source
|
-- 1 - Use an external clock source
|
-- 0x7 DCBA---- Timer Control (RW*)
|
-- 0x7 DCBA---- Timer Control (RW*)
|
-- A: Current output level (read-only)
|
-- A: Current output level (read-only)
|
-- B: Clear/Re-Arm on '1' (one-shot)
|
-- B: Clear/Re-Arm on '1' (one-shot)
|
-- Trigger event status on read
|
-- Trigger event status on read
|
-- C: Disable/Safe Trigger (one-shot)
|
-- C: Disable/Safe Trigger (one-shot)
|
-- Returns '0' on read
|
-- Returns '0' on read
|
-- D: Enable/Arm Trigger (one-shot)
|
-- D: Enable/Arm Trigger (one-shot)
|
-- Trigger armed status on read
|
-- Trigger armed status on read
|
--
|
--
|
-- Revision History
|
-- Revision History
|
-- Author Date Change
|
-- Author Date Change
|
------------------ -------- ---------------------------------------------------
|
------------------ -------- ---------------------------------------------------
|
-- Seth Henry 05/14/20 Design start
|
-- Seth Henry 05/14/20 Design start
|
-- Seth Henry 05/18/20 Added write qualification input
|
-- Seth Henry 05/18/20 Added write qualification input
|
|
|
library ieee;
|
library ieee;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_unsigned.all;
|
use ieee.std_logic_unsigned.all;
|
use ieee.std_logic_arith.all;
|
use ieee.std_logic_arith.all;
|
use ieee.std_logic_misc.all;
|
use ieee.std_logic_misc.all;
|
|
|
library work;
|
library work;
|
use work.open8_pkg.all;
|
use work.open8_pkg.all;
|
|
|
entity o8_trig_delay is
|
entity o8_trig_delay is
|
generic(
|
generic(
|
Default_Delay : std_logic_vector(23 downto 0) := x"000000";
|
Default_Delay : std_logic_vector(23 downto 0) := x"000000";
|
Default_Width : std_logic_vector(23 downto 0) := x"000000";
|
Default_Width : std_logic_vector(23 downto 0) := x"000000";
|
Default_Timebase : std_logic := '0';
|
Default_Timebase : std_logic := '0';
|
Default_Auto_ReArm : std_logic := '0';
|
Default_Auto_ReArm : std_logic := '0';
|
Default_Trigger_Edge : std_logic := '1';
|
Default_Trigger_Edge : std_logic := '1';
|
Default_Int_Source : std_logic_vector(1 downto 0) := "00";
|
Default_Int_Source : std_logic_vector(1 downto 0) := "00";
|
Address : ADDRESS_TYPE
|
Address : ADDRESS_TYPE
|
);
|
);
|
port(
|
port(
|
Open8_Bus : in OPEN8_BUS_TYPE;
|
Open8_Bus : in OPEN8_BUS_TYPE;
|
Write_Qual : in std_logic := '1';
|
Write_Qual : in std_logic := '1';
|
Rd_Data : out DATA_TYPE;
|
Rd_Data : out DATA_TYPE;
|
Interrupt : out std_logic;
|
Interrupt : out std_logic;
|
--
|
--
|
Time_Base_Clock : in std_logic := '0';
|
Time_Base_Clock : in std_logic := '0';
|
Time_Base_Locked : in std_logic := '1';
|
Time_Base_Locked : in std_logic := '1';
|
--
|
--
|
Ext_Trig : in std_logic;
|
Ext_Trig : in std_logic;
|
Timer_Out : out std_logic
|
Timer_Out : out std_logic
|
);
|
);
|
end entity;
|
end entity;
|
|
|
architecture behave of o8_trig_delay is
|
architecture behave of o8_trig_delay is
|
|
|
alias Clock is Open8_Bus.Clock;
|
alias Clock is Open8_Bus.Clock;
|
alias Reset is Open8_Bus.Reset;
|
alias Reset is Open8_Bus.Reset;
|
alias uSec_Tick is Open8_Bus.uSec_Tick;
|
alias uSec_Tick is Open8_Bus.uSec_Tick;
|
alias Wr_Data_d is Open8_Bus.Wr_Data;
|
alias Wr_Data_d is Open8_Bus.Wr_Data;
|
|
|
constant User_Addr : std_logic_vector(15 downto 3) :=
|
constant User_Addr : std_logic_vector(15 downto 3) :=
|
Address(15 downto 3);
|
Address(15 downto 3);
|
alias Comp_Addr is Open8_Bus.Address(15 downto 3);
|
alias Comp_Addr is Open8_Bus.Address(15 downto 3);
|
alias Reg_Sel_d is Open8_Bus.Address(2 downto 0);
|
alias Reg_Sel_d is Open8_Bus.Address(2 downto 0);
|
|
|
signal Addr_Match : std_logic := '0';
|
signal Addr_Match : std_logic := '0';
|
signal Reg_Sel_q : std_logic_vector(2 downto 0) := "000";
|
signal Reg_Sel_q : std_logic_vector(2 downto 0) := "000";
|
signal Wr_En_d : std_logic := '0';
|
signal Wr_En_d : std_logic := '0';
|
signal Wr_En_q : std_logic := '0';
|
signal Wr_En_q : std_logic := '0';
|
signal Wr_Data_q : DATA_TYPE := x"00";
|
signal Wr_Data_q : DATA_TYPE := x"00";
|
signal Rd_En_d : std_logic := '0';
|
signal Rd_En_d : std_logic := '0';
|
signal Rd_En_q : std_logic := '0';
|
signal Rd_En_q : std_logic := '0';
|
|
|
-- Configuration Registers
|
-- Configuration Registers
|
|
|
signal Pulse_Delay : std_logic_vector(23 downto 0) := x"000000";
|
signal Pulse_Delay : std_logic_vector(23 downto 0) := x"000000";
|
alias Pulse_Delay_B0 is Pulse_Delay( 7 downto 0);
|
alias Pulse_Delay_B0 is Pulse_Delay( 7 downto 0);
|
alias Pulse_Delay_B1 is Pulse_Delay(15 downto 8);
|
alias Pulse_Delay_B1 is Pulse_Delay(15 downto 8);
|
alias Pulse_Delay_B2 is Pulse_Delay(23 downto 16);
|
alias Pulse_Delay_B2 is Pulse_Delay(23 downto 16);
|
|
|
signal Pulse_Width : std_logic_vector(23 downto 0) := x"000000";
|
signal Pulse_Width : std_logic_vector(23 downto 0) := x"000000";
|
alias Pulse_Width_B0 is Pulse_Width( 7 downto 0);
|
alias Pulse_Width_B0 is Pulse_Width( 7 downto 0);
|
alias Pulse_Width_B1 is Pulse_Width(15 downto 8);
|
alias Pulse_Width_B1 is Pulse_Width(15 downto 8);
|
alias Pulse_Width_B2 is Pulse_Width(23 downto 16);
|
alias Pulse_Width_B2 is Pulse_Width(23 downto 16);
|
|
|
signal Time_Base_Source : std_logic := '0';
|
signal Time_Base_Source : std_logic := '0';
|
signal Time_Base_Status : std_logic := '0';
|
signal Time_Base_Status : std_logic := '0';
|
signal Auto_ReArm : std_logic := '0';
|
signal Auto_ReArm : std_logic := '0';
|
signal Trigger_Edge : std_logic := '0';
|
signal Trigger_Edge : std_logic := '0';
|
signal Interrupt_Select : std_logic_vector(1 downto 0);
|
signal Interrupt_Select : std_logic_vector(1 downto 0);
|
|
|
signal Arm_Timer : std_logic := '0';
|
signal Arm_Timer : std_logic := '0';
|
signal Safe_Timer : std_logic := '0';
|
signal Safe_Timer : std_logic := '0';
|
signal Clear_Trigd : std_logic := '0';
|
signal Clear_Trigd : std_logic := '0';
|
|
|
-- Time Base signals
|
-- Time Base signals
|
signal Ext_TBC_SR : std_logic_vector(3 downto 0) := "0000";
|
signal Ext_TBC_SR : std_logic_vector(3 downto 0) := "0000";
|
signal Ext_TBL_SR : std_logic_vector(3 downto 0) := "0000";
|
signal Ext_TBL_SR : std_logic_vector(3 downto 0) := "0000";
|
|
|
signal Timer_Tick : std_logic := '0';
|
signal Timer_Tick : std_logic := '0';
|
|
|
-- Trigger signals
|
-- Trigger signals
|
signal Ext_Trig_SR : std_logic_vector(3 downto 0) := "0000";
|
signal Ext_Trig_SR : std_logic_vector(3 downto 0) := "0000";
|
signal Trig_RE : std_logic := '0';
|
signal Trig_RE : std_logic := '0';
|
signal Trig_FE : std_logic := '0';
|
signal Trig_FE : std_logic := '0';
|
signal Delay_Trig : std_logic := '0';
|
signal Delay_Trig : std_logic := '0';
|
signal Trigger_Armed : std_logic := '0';
|
signal Trigger_Armed : std_logic := '0';
|
signal Trigger_Event : std_logic := '0';
|
signal Trigger_Event : std_logic := '0';
|
|
|
-- Delay Timer signals
|
-- Delay Timer signals
|
signal Delay_Pending : std_logic := '0';
|
signal Delay_Pending : std_logic := '0';
|
signal Delay_Tmr : std_logic_vector(23 downto 0) := x"000000";
|
signal Delay_Tmr : std_logic_vector(23 downto 0) := x"000000";
|
signal Delay_Tmr_SR : std_logic_vector(1 downto 0);
|
signal Delay_Tmr_SR : std_logic_vector(1 downto 0);
|
signal Width_Trig : std_logic := '0';
|
signal Width_Trig : std_logic := '0';
|
|
|
-- Pulse Timer signals
|
-- Pulse Timer signals
|
signal Width_Tmr : std_logic_vector(23 downto 0) := x"000000";
|
signal Width_Tmr : std_logic_vector(23 downto 0) := x"000000";
|
signal Width_Tmr_SR : std_logic_vector(1 downto 0);
|
signal Width_Tmr_SR : std_logic_vector(1 downto 0);
|
signal Pulse_Out : std_logic := '0';
|
signal Pulse_Out : std_logic := '0';
|
signal Pulse_Done : std_logic := '0';
|
signal Pulse_Done : std_logic := '0';
|
|
|
begin
|
begin
|
|
|
Timer_Out <= Pulse_Out;
|
Timer_Out <= Pulse_Out;
|
|
|
Addr_Match <= '1' when Comp_Addr = User_Addr else '0';
|
Addr_Match <= '1' when Comp_Addr = User_Addr else '0';
|
Wr_En_d <= Addr_Match and Open8_Bus.Wr_En;
|
Wr_En_d <= Addr_Match and Open8_Bus.Wr_En;
|
Rd_En_d <= Addr_Match and Open8_Bus.Rd_En;
|
Rd_En_d <= Addr_Match and Open8_Bus.Rd_En;
|
|
|
io_reg: process( Clock, Reset )
|
io_reg: process( Clock, Reset )
|
begin
|
begin
|
if( Reset = Reset_Level )then
|
if( Reset = Reset_Level )then
|
Reg_Sel_q <= (others => '0');
|
Reg_Sel_q <= (others => '0');
|
Wr_En_q <= '0';
|
Wr_En_q <= '0';
|
Wr_Data_q <= (others => '0');
|
Wr_Data_q <= (others => '0');
|
Rd_En_q <= '0';
|
Rd_En_q <= '0';
|
Rd_Data <= OPEN8_NULLBUS;
|
Rd_Data <= OPEN8_NULLBUS;
|
Pulse_Delay <= Default_Delay;
|
Pulse_Delay <= Default_Delay;
|
Pulse_Width <= Default_Width;
|
Pulse_Width <= Default_Width;
|
Time_Base_Source <= Default_Timebase;
|
Time_Base_Source <= Default_Timebase;
|
Auto_ReArm <= Default_Auto_ReArm;
|
Auto_ReArm <= Default_Auto_ReArm;
|
Trigger_Edge <= Default_Trigger_Edge;
|
Trigger_Edge <= Default_Trigger_Edge;
|
Interrupt_Select <= Default_Int_Source;
|
Interrupt_Select <= Default_Int_Source;
|
Arm_Timer <= '0';
|
Arm_Timer <= '0';
|
Safe_Timer <= '0';
|
Safe_Timer <= '0';
|
Clear_Trigd <= '0';
|
Clear_Trigd <= '0';
|
Interrupt <= '0';
|
Interrupt <= '0';
|
elsif( rising_edge( Clock ) )then
|
elsif( rising_edge( Clock ) )then
|
Reg_Sel_q <= Reg_Sel_d;
|
Reg_Sel_q <= Reg_Sel_d;
|
|
|
Wr_En_q <= Wr_En_d;
|
Wr_En_q <= Wr_En_d;
|
Wr_Data_q <= Wr_Data_d;
|
Wr_Data_q <= Wr_Data_d;
|
|
|
Arm_Timer <= '0';
|
Arm_Timer <= '0';
|
Safe_Timer <= '0';
|
Safe_Timer <= '0';
|
Clear_Trigd <= '0';
|
Clear_Trigd <= '0';
|
|
|
if( Wr_En_q = '1' and Write_Qual = '1' )then
|
if( Wr_En_q = '1' and Write_Qual = '1' )then
|
case( Reg_Sel_q )is
|
case( Reg_Sel_q )is
|
when "000" =>
|
when "000" =>
|
Pulse_Delay_B0 <= Wr_Data_q;
|
Pulse_Delay_B0 <= Wr_Data_q;
|
when "001" =>
|
when "001" =>
|
Pulse_Delay_B1 <= Wr_Data_q;
|
Pulse_Delay_B1 <= Wr_Data_q;
|
when "010" =>
|
when "010" =>
|
Pulse_Delay_B2 <= Wr_Data_q;
|
Pulse_Delay_B2 <= Wr_Data_q;
|
|
|
when "011" =>
|
when "011" =>
|
Pulse_Width_B0 <= Wr_Data_q;
|
Pulse_Width_B0 <= Wr_Data_q;
|
when "100" =>
|
when "100" =>
|
Pulse_Width_B1 <= Wr_Data_q;
|
Pulse_Width_B1 <= Wr_Data_q;
|
when "101" =>
|
when "101" =>
|
Pulse_Width_B2 <= Wr_Data_q;
|
Pulse_Width_B2 <= Wr_Data_q;
|
|
|
when "110" =>
|
when "110" =>
|
Time_Base_Source <= Wr_Data_q(7);
|
Time_Base_Source <= Wr_Data_q(7);
|
-- Reserved for status bit
|
-- Reserved for status bit
|
Auto_ReArm <= Wr_Data_q(5);
|
Auto_ReArm <= Wr_Data_q(5);
|
Trigger_Edge <= Wr_Data_q(4);
|
Trigger_Edge <= Wr_Data_q(4);
|
Interrupt_Select <= Wr_Data_q(3 downto 2);
|
Interrupt_Select <= Wr_Data_q(3 downto 2);
|
|
|
when "111" =>
|
when "111" =>
|
Arm_Timer <= Wr_Data_q(7);
|
Arm_Timer <= Wr_Data_q(7);
|
Safe_Timer <= Wr_Data_q(6);
|
Safe_Timer <= Wr_Data_q(6);
|
Clear_Trigd <= Wr_Data_q(5);
|
Clear_Trigd <= Wr_Data_q(5);
|
when others => null;
|
when others => null;
|
end case;
|
end case;
|
end if;
|
end if;
|
|
|
Rd_Data <= OPEN8_NULLBUS;
|
Rd_Data <= OPEN8_NULLBUS;
|
Rd_En_q <= Rd_En_d;
|
Rd_En_q <= Rd_En_d;
|
if( Rd_En_q = '1' )then
|
if( Rd_En_q = '1' )then
|
case( Reg_Sel_q )is
|
case( Reg_Sel_q )is
|
when "000" =>
|
when "000" =>
|
Rd_Data <= Pulse_Delay_B0;
|
Rd_Data <= Pulse_Delay_B0;
|
when "001" =>
|
when "001" =>
|
Rd_Data <= Pulse_Delay_B1;
|
Rd_Data <= Pulse_Delay_B1;
|
when "010" =>
|
when "010" =>
|
Rd_Data <= Pulse_Delay_B2;
|
Rd_Data <= Pulse_Delay_B2;
|
|
|
when "011" =>
|
when "011" =>
|
Rd_Data <= Pulse_Width_B0;
|
Rd_Data <= Pulse_Width_B0;
|
when "100" =>
|
when "100" =>
|
Rd_Data <= Pulse_Width_B1;
|
Rd_Data <= Pulse_Width_B1;
|
when "101" =>
|
when "101" =>
|
Rd_Data <= Pulse_Width_B2;
|
Rd_Data <= Pulse_Width_B2;
|
|
|
when "110" =>
|
when "110" =>
|
Rd_Data <= Time_Base_Source & -- Bit 7
|
Rd_Data <= Time_Base_Source & -- Bit 7
|
Time_Base_Status & -- Bit 6
|
Time_Base_Status & -- Bit 6
|
Auto_ReArm & -- Bit 5
|
Auto_ReArm & -- Bit 5
|
Trigger_Edge & -- Bit 4
|
Trigger_Edge & -- Bit 4
|
Interrupt_Select & -- Bits 3:2
|
Interrupt_Select & -- Bits 3:2
|
"00"; -- Bits 1:0
|
"00"; -- Bits 1:0
|
when "111" =>
|
when "111" =>
|
Rd_Data <= Trigger_Armed & -- Bit 7
|
Rd_Data <= Trigger_Armed & -- Bit 7
|
'0' & -- Bit 6
|
'0' & -- Bit 6
|
Trigger_Event & -- Bit 5
|
Trigger_Event & -- Bit 5
|
Pulse_Out & -- Bit 4
|
Pulse_Out & -- Bit 4
|
"0000"; -- Bits 3:0
|
"0000"; -- Bits 3:0
|
when others => null;
|
when others => null;
|
end case;
|
end case;
|
end if;
|
end if;
|
|
|
case( Interrupt_Select )is
|
case( Interrupt_Select )is
|
when "00" =>
|
when "00" =>
|
Interrupt <= '0';
|
Interrupt <= '0';
|
when "01" =>
|
when "01" =>
|
Interrupt <= Delay_Trig;
|
Interrupt <= Delay_Trig;
|
when "10" =>
|
when "10" =>
|
Interrupt <= Width_Trig;
|
Interrupt <= Width_Trig;
|
when "11" =>
|
when "11" =>
|
Interrupt <= Pulse_Done;
|
Interrupt <= Pulse_Done;
|
when others =>
|
when others =>
|
null;
|
null;
|
end case;
|
end case;
|
|
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
Time_Base_proc: process( Clock, Reset )
|
Time_Base_proc: process( Clock, Reset )
|
begin
|
begin
|
if( Reset = Reset_Level )then
|
if( Reset = Reset_Level )then
|
Ext_TBC_SR <= (others => '0');
|
Ext_TBC_SR <= (others => '0');
|
Ext_TBL_SR <= (others => '0');
|
Ext_TBL_SR <= (others => '0');
|
Time_Base_Status <= '0';
|
Time_Base_Status <= '0';
|
Timer_Tick <= '0';
|
Timer_Tick <= '0';
|
elsif( rising_edge(Clock) )then
|
elsif( rising_edge(Clock) )then
|
Ext_TBC_SR <= Ext_TBC_SR(2 downto 0) & Time_Base_Clock;
|
Ext_TBC_SR <= Ext_TBC_SR(2 downto 0) & Time_Base_Clock;
|
Ext_TBL_SR <= Ext_TBL_SR(2 downto 0) & Time_Base_Locked;
|
Ext_TBL_SR <= Ext_TBL_SR(2 downto 0) & Time_Base_Locked;
|
|
|
Time_Base_Status <= '1';
|
Time_Base_Status <= '1';
|
Timer_Tick <= uSec_Tick;
|
Timer_Tick <= uSec_Tick;
|
if( Time_Base_Source = '1' )then
|
if( Time_Base_Source = '1' )then
|
Time_Base_Status <= Ext_TBL_SR(3);
|
Time_Base_Status <= Ext_TBL_SR(3);
|
Timer_Tick <= Ext_TBC_SR(2) and not Ext_TBC_SR(3);
|
Timer_Tick <= Ext_TBC_SR(2) and not Ext_TBC_SR(3);
|
end if;
|
end if;
|
|
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
Trigger_proc: process( Clock, Reset )
|
Trigger_proc: process( Clock, Reset )
|
begin
|
begin
|
if( Reset = Reset_Level )then
|
if( Reset = Reset_Level )then
|
Ext_Trig_SR <= (others => '0');
|
Ext_Trig_SR <= (others => '0');
|
Trig_RE <= '0';
|
Trig_RE <= '0';
|
Trig_FE <= '0';
|
Trig_FE <= '0';
|
Delay_Trig <= '0';
|
Delay_Trig <= '0';
|
Trigger_Armed <= '0';
|
Trigger_Armed <= '0';
|
Trigger_Event <= '0';
|
Trigger_Event <= '0';
|
elsif( rising_edge(Clock) )then
|
elsif( rising_edge(Clock) )then
|
Ext_Trig_SR <= Ext_Trig_SR(2 downto 0) & Ext_Trig;
|
Ext_Trig_SR <= Ext_Trig_SR(2 downto 0) & Ext_Trig;
|
|
|
Trig_RE <= Ext_Trig_SR(2) and not Ext_Trig_SR(3);
|
Trig_RE <= Ext_Trig_SR(2) and not Ext_Trig_SR(3);
|
Trig_FE <= Ext_Trig_SR(3) and not Ext_Trig_SR(2);
|
Trig_FE <= Ext_Trig_SR(3) and not Ext_Trig_SR(2);
|
|
|
Delay_Trig <= ((Trig_FE and not Trigger_Edge) or
|
Delay_Trig <= ((Trig_FE and not Trigger_Edge) or
|
(Trig_RE and Trigger_Edge)) and
|
(Trig_RE and Trigger_Edge)) and
|
Trigger_Armed and (not Trigger_Event);
|
Trigger_Armed and (not Trigger_Event);
|
|
|
if( Arm_Timer = '1' )then
|
if( Arm_Timer = '1' )then
|
Trigger_Armed <= '1';
|
Trigger_Armed <= '1';
|
elsif( Safe_Timer = '1' )then
|
elsif( Safe_Timer = '1' )then
|
Trigger_Armed <= '0';
|
Trigger_Armed <= '0';
|
end if;
|
end if;
|
|
|
if( Delay_Trig = '1' )then
|
if( Delay_Trig = '1' )then
|
Trigger_Event <= '1';
|
Trigger_Event <= '1';
|
elsif( Clear_Trigd = '1' or Auto_ReArm = '1' )then
|
elsif( Clear_Trigd = '1' or Auto_ReArm = '1' )then
|
Trigger_Event <= '0';
|
Trigger_Event <= '0';
|
end if;
|
end if;
|
|
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
Delay_proc: process( Clock, Reset )
|
Delay_proc: process( Clock, Reset )
|
begin
|
begin
|
if( Reset = Reset_Level )then
|
if( Reset = Reset_Level )then
|
Delay_Pending <= '0';
|
Delay_Pending <= '0';
|
Delay_Tmr <= (others => '0');
|
Delay_Tmr <= (others => '0');
|
Delay_Tmr_SR <= (others => '0');
|
Delay_Tmr_SR <= (others => '0');
|
Width_Trig <= '0';
|
Width_Trig <= '0';
|
elsif( rising_edge(Clock) )then
|
elsif( rising_edge(Clock) )then
|
|
|
if( Delay_Trig = '1' )then
|
if( Delay_Trig = '1' )then
|
Delay_Pending <= '1';
|
Delay_Pending <= '1';
|
elsif( Timer_Tick = '1' and Delay_Pending = '1' )then
|
elsif( Timer_Tick = '1' and Delay_Pending = '1' )then
|
Delay_Pending <= '0';
|
Delay_Pending <= '0';
|
end if;
|
end if;
|
|
|
Delay_Tmr <= Delay_Tmr - Timer_Tick;
|
Delay_Tmr <= Delay_Tmr - Timer_Tick;
|
if( Timer_Tick = '1' and Delay_Pending = '1' )then
|
if( Timer_Tick = '1' and Delay_Pending = '1' )then
|
Delay_Tmr <= Pulse_Delay;
|
Delay_Tmr <= Pulse_Delay;
|
elsif( Delay_Tmr = 0 )then
|
elsif( Delay_Tmr = 0 )then
|
Delay_Tmr <= (others => '0');
|
Delay_Tmr <= (others => '0');
|
end if;
|
end if;
|
|
|
Delay_Tmr_SR <= Delay_Tmr_SR(0) & nor_reduce(Delay_Tmr);
|
Delay_Tmr_SR <= Delay_Tmr_SR(0) & nor_reduce(Delay_Tmr);
|
|
|
-- If the pulse delay is set to zero, trigger the pulse output
|
-- If the pulse delay is set to zero, trigger the pulse output
|
-- immediately (overriding the timer logic) otherwise, trigger when
|
-- immediately (overriding the timer logic) otherwise, trigger when
|
-- the delay timer crosses from 1 to 0
|
-- the delay timer crosses from 1 to 0
|
Width_Trig <= (Delay_Trig and nor_reduce(Pulse_Delay)) or
|
Width_Trig <= (Delay_Trig and nor_reduce(Pulse_Delay)) or
|
(Delay_Tmr_SR(0) and not Delay_Tmr_SR(1));
|
(Delay_Tmr_SR(0) and not Delay_Tmr_SR(1));
|
|
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
Timer_proc: process( Clock, Reset )
|
Timer_proc: process( Clock, Reset )
|
begin
|
begin
|
if( Reset = Reset_Level )then
|
if( Reset = Reset_Level )then
|
Width_Tmr <= (others => '0');
|
Width_Tmr <= (others => '0');
|
Pulse_Done <= '0';
|
Pulse_Done <= '0';
|
Pulse_Out <= '0';
|
Pulse_Out <= '0';
|
elsif( rising_edge(Clock) )then
|
elsif( rising_edge(Clock) )then
|
Width_Tmr <= Width_Tmr - Timer_Tick;
|
Width_Tmr <= Width_Tmr - Timer_Tick;
|
if( Width_Trig = '1' )then
|
if( Width_Trig = '1' )then
|
Width_Tmr <= Pulse_Width;
|
Width_Tmr <= Pulse_Width;
|
elsif( Width_Tmr = 0 )then
|
elsif( Width_Tmr = 0 )then
|
Width_Tmr <= (others => '0');
|
Width_Tmr <= (others => '0');
|
end if;
|
end if;
|
|
|
Width_Tmr_SR <= Width_Tmr_SR(0) & nor_reduce(Width_Tmr);
|
Width_Tmr_SR <= Width_Tmr_SR(0) & nor_reduce(Width_Tmr);
|
|
|
Pulse_Done <= (Width_Trig and nor_reduce(Pulse_Width)) or
|
Pulse_Done <= (Width_Trig and nor_reduce(Pulse_Width)) or
|
(Width_Tmr_SR(0) and not Width_Tmr_SR(1));
|
(Width_Tmr_SR(0) and not Width_Tmr_SR(1));
|
|
|
if( Width_Trig = '1' )then
|
if( Width_Trig = '1' )then
|
Pulse_Out <= '1';
|
Pulse_Out <= '1';
|
elsif( Pulse_Done = '1' )then
|
elsif( Pulse_Done = '1' )then
|
Pulse_Out <= '0';
|
Pulse_Out <= '0';
|
end if;
|
end if;
|
|
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
|
|