URL
https://opencores.org/ocsvn/neo430/neo430/trunk
Subversion Repositories neo430
[/] [neo430/] [trunk/] [neo430/] [rtl/] [core/] [neo430_timer.vhd] - Rev 198
Compare with Previous | Blame | View Log
-- ################################################################################################# -- # << NEO430 - High-Precision Timer >> # -- # ********************************************************************************************* # -- # This timer uses a configurable prescaler to increment an internal 16-bit counter. When the # -- # counter value reaches the programmable threshold an interrupt can be triggered. Optionally, # -- # the counter can be automatically reset when reaching the threshold value to restart counting. # -- # Configure THRES before enabling the timer to prevent false interrupt requests. # -- # ********************************************************************************************* # -- # BSD 3-Clause License # -- # # -- # Copyright (c) 2020, Stephan Nolting. All rights reserved. # -- # # -- # Redistribution and use in source and binary forms, with or without modification, are # -- # permitted provided that the following conditions are met: # -- # # -- # 1. Redistributions of source code must retain the above copyright notice, this list of # -- # conditions and the following disclaimer. # -- # # -- # 2. Redistributions in binary form must reproduce the above copyright notice, this list of # -- # conditions and the following disclaimer in the documentation and/or other materials # -- # provided with the distribution. # -- # # -- # 3. Neither the name of the copyright holder nor the names of its contributors may be used to # -- # endorse or promote products derived from this software without specific prior written # -- # permission. # -- # # -- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS # -- # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # -- # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE # -- # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # -- # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE # -- # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED # -- # AND 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 SOFTWARE, EVEN IF ADVISED # -- # OF THE POSSIBILITY OF SUCH DAMAGE. # -- # ********************************************************************************************* # -- # The NEO430 Processor - https://github.com/stnolting/neo430 # -- ################################################################################################# library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; library neo430; use neo430.neo430_package.all; entity neo430_timer is port ( -- host access -- clk_i : in std_ulogic; -- global clock line rden_i : in std_ulogic; -- read enable wren_i : in std_ulogic; -- write enable addr_i : in std_ulogic_vector(15 downto 0); -- address data_i : in std_ulogic_vector(15 downto 0); -- data in data_o : out std_ulogic_vector(15 downto 0); -- data out -- clock generator -- clkgen_en_o : out std_ulogic; -- enable clock generator clkgen_i : in std_ulogic_vector(07 downto 0); -- interrupt -- irq_o : out std_ulogic -- interrupt request ); end neo430_timer; architecture neo430_timer_rtl of neo430_timer is -- IO space: module base address -- constant hi_abb_c : natural := index_size_f(io_size_c)-1; -- high address boundary bit constant lo_abb_c : natural := index_size_f(timer_size_c); -- low address boundary bit -- control reg bits -- constant ctrl_en_c : natural := 0; -- r/w: timer enable constant ctrl_arst_c : natural := 1; -- r/w: auto reset on match constant ctrl_irq_en_c : natural := 2; -- r/w: interrupt enable constant ctrl_run_c : natural := 3; -- r/w: start/stop timer constant ctrl_prsc0_c : natural := 4; -- r/w: prescaler select bit 0 constant ctrl_prsc1_c : natural := 5; -- r/w: prescaler select bit 1 constant ctrl_prsc2_c : natural := 6; -- r/w: prescaler select bit 2 -- access control -- signal acc_en : std_ulogic; -- module access enable signal addr : std_ulogic_vector(15 downto 0); -- access address signal wr_en : std_ulogic; -- word write enable -- timer regs -- signal ctrl : std_ulogic_vector(06 downto 0); -- r/w: control register signal thres : std_ulogic_vector(15 downto 0); -- -/w: threshold register signal cnt : std_ulogic_vector(15 downto 0); -- r/-: counter register -- prescaler clock generator -- signal prsc_tick : std_ulogic; -- timer control -- signal match : std_ulogic; -- set if thres == cnt signal irq_fire : std_ulogic; signal irq_fire_ff : std_ulogic; begin -- Access Control ----------------------------------------------------------- -- ----------------------------------------------------------------------------- acc_en <= '1' when (addr_i(hi_abb_c downto lo_abb_c) = timer_base_c(hi_abb_c downto lo_abb_c)) else '0'; addr <= timer_base_c(15 downto lo_abb_c) & addr_i(lo_abb_c-1 downto 1) & '0'; -- word aligned wr_en <= acc_en and wren_i; -- Write access ------------------------------------------------------------- -- ----------------------------------------------------------------------------- wr_access: process(clk_i) begin if rising_edge(clk_i) then if (wr_en = '1') then if (addr = timer_thres_addr_c) then thres <= data_i; end if; if (addr = timer_ctrl_addr_c) then ctrl(ctrl_en_c) <= data_i(ctrl_en_c); ctrl(ctrl_arst_c) <= data_i(ctrl_arst_c); ctrl(ctrl_irq_en_c) <= data_i(ctrl_irq_en_c); ctrl(ctrl_run_c) <= data_i(ctrl_run_c); ctrl(ctrl_prsc0_c) <= data_i(ctrl_prsc0_c); ctrl(ctrl_prsc1_c) <= data_i(ctrl_prsc1_c); ctrl(ctrl_prsc2_c) <= data_i(ctrl_prsc2_c); end if; end if; end if; end process wr_access; -- enable external clock generator -- clkgen_en_o <= ctrl(ctrl_en_c); -- Counter update ----------------------------------------------------------- -- ----------------------------------------------------------------------------- timer_cnt_core: process(clk_i) begin if rising_edge(clk_i) then -- clock_enable buffer -- prsc_tick <= clkgen_i(to_integer(unsigned(ctrl(ctrl_prsc2_c downto ctrl_prsc0_c)))); -- irq edge detector -- irq_fire_ff <= irq_fire; -- counter update -- if (ctrl(ctrl_en_c) = '0') then -- timer disabled cnt <= (others => '0'); elsif (ctrl(ctrl_run_c) = '1') then -- timer enabled, but is it started? if (match = '1') and (ctrl(ctrl_arst_c) = '1') then -- threshold match and auto reset? cnt <= (others => '0'); elsif (match = '0') and (prsc_tick = '1') then -- count++ cnt <= std_ulogic_vector(unsigned(cnt) + 1); end if; end if; end if; end process timer_cnt_core; -- match -- match <= '1' when (cnt = thres) else '0'; -- interrupt line -- irq_fire <= match and ctrl(ctrl_en_c) and ctrl(ctrl_irq_en_c); -- and ctrl(ctrl_run_c); -- edge detector -- irq_o <= irq_fire and (not irq_fire_ff); -- Read access -------------------------------------------------------------- -- ----------------------------------------------------------------------------- rd_access: process(clk_i) begin if rising_edge(clk_i) then data_o <= (others => '0'); if (rden_i = '1') and (acc_en = '1') then if (addr = timer_ctrl_addr_c) then data_o(ctrl_en_c) <= ctrl(ctrl_en_c); data_o(ctrl_arst_c) <= ctrl(ctrl_arst_c); data_o(ctrl_irq_en_c) <= ctrl(ctrl_irq_en_c); data_o(ctrl_run_c) <= ctrl(ctrl_run_c); data_o(ctrl_prsc0_c) <= ctrl(ctrl_prsc0_c); data_o(ctrl_prsc1_c) <= ctrl(ctrl_prsc1_c); data_o(ctrl_prsc2_c) <= ctrl(ctrl_prsc2_c); else--if (addr = timer_cnt_addr_c) then data_o <= cnt; -- else -- (addr = timer_thres_addr_c) then -- data_o <= thres; end if; end if; end if; end process rd_access; end neo430_timer_rtl;