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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.61/] [rtl/] [ibus/] [ibd_kw11l.vhd] - Diff between revs 2 and 8

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 2 Rev 8
Line 1... Line 1...
-- $Id: ibd_kw11l.vhd 314 2010-07-09 17:38:41Z mueller $
-- $Id: ibd_kw11l.vhd 335 2010-10-24 22:24:23Z mueller $
--
--
-- Copyright 2008-2009 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
-- Copyright 2008-2010 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
--
-- This program is free software; you may redistribute and/or modify it under
-- This program is free software; you may redistribute and/or modify it under
-- the terms of the GNU General Public License as published by the Free
-- the terms of the GNU General Public License as published by the Free
-- Software Foundation, either version 2, or at your option any later version.
-- Software Foundation, either version 2, or at your option any later version.
--
--
Line 16... Line 16...
-- Description:    ibus dev(loc): KW11-L (line clock)
-- Description:    ibus dev(loc): KW11-L (line clock)
--
--
-- Dependencies:   -
-- Dependencies:   -
-- Test bench:     -
-- Test bench:     -
-- Target Devices: generic
-- Target Devices: generic
-- Tool versions:  xst 8.1, 8.2, 9.1, 9.2, 10.1; ghdl 0.18-0.25
-- Tool versions:  xst 8.1, 8.2, 9.1, 9.2, 10.1, 12.1; ghdl 0.18-0.29
--
--
-- Synthesized (xst):
-- Synthesized (xst):
-- Date         Rev  ise         Target      flop lutl lutm slic t peri
-- Date         Rev  ise         Target      flop lutl lutm slic t peri
 
-- 2010-10-17   333  12.1    M53 xc3s1000-4     9   23    0   14 s  5.3
-- 2009-07-11   232  10.1.03 K39 xc3s1000-4     8   25    0   15 s  5.3
-- 2009-07-11   232  10.1.03 K39 xc3s1000-4     8   25    0   15 s  5.3
--
--
-- Revision History: 
-- Revision History: 
-- Date         Rev Version  Comment
-- Date         Rev Version  Comment
 
-- 2010-10-17   333   1.1    use ibus V2 interface
-- 2009-06-01   221   1.0.5  BUGFIX: add RESET; don't clear tcnt on ibus reset
-- 2009-06-01   221   1.0.5  BUGFIX: add RESET; don't clear tcnt on ibus reset
-- 2008-08-22   161   1.0.4  use iblib; add EI_ACK to proc_next sens. list
-- 2008-08-22   161   1.0.4  use iblib; add EI_ACK to proc_next sens. list
-- 2008-05-09   144   1.0.3  use intreq flop, use EI_ACK
-- 2008-05-09   144   1.0.3  use intreq flop, use EI_ACK
-- 2008-01-20   112   1.0.2  fix proc_next sensitivity list; use BRESET
-- 2008-01-20   112   1.0.2  fix proc_next sensitivity list; use BRESET
-- 2008-01-06   111   1.0.1  Renamed to ibd_kw11l (RRI_REQ not used)
-- 2008-01-06   111   1.0.1  Renamed to ibd_kw11l (RRI_REQ not used)
Line 65... Line 67...
 
 
  constant twidth : natural  :=  5;
  constant twidth : natural  :=  5;
  constant tdivide : natural := 20;
  constant tdivide : natural := 20;
 
 
  type regs_type is record              -- state registers
  type regs_type is record              -- state registers
 
    ibsel : slbit;                      -- ibus select    
    ie : slbit;                         -- interrupt enable
    ie : slbit;                         -- interrupt enable
    moni : slbit;                       -- monitor bit
    moni : slbit;                       -- monitor bit
    intreq : slbit;                     -- interrupt request
    intreq : slbit;                     -- interrupt request
    tcnt : slv(twidth-1 downto 0);      -- timer counter
    tcnt : slv(twidth-1 downto 0);      -- timer counter
  end record regs_type;
  end record regs_type;
 
 
  constant regs_init : regs_type := (
  constant regs_init : regs_type := (
 
    '0',                                -- ibsel
    '0',                                -- ie
    '0',                                -- ie
    '1',                                -- moni (set on reset !!)
    '1',                                -- moni (set on reset !!)
    '0',                                -- intreq
    '0',                                -- intreq
    (others=>'0')                       -- tcnt
    (others=>'0')                       -- tcnt
  );
  );
Line 100... Line 104...
  end process proc_regs;
  end process proc_regs;
 
 
  proc_next : process (R_REGS, IB_MREQ, CE_MSEC, EI_ACK)
  proc_next : process (R_REGS, IB_MREQ, CE_MSEC, EI_ACK)
    variable r : regs_type := regs_init;
    variable r : regs_type := regs_init;
    variable n : regs_type := regs_init;
    variable n : regs_type := regs_init;
    variable ibsel : slbit := '0';
 
    variable idout : slv16 := (others=>'0');
    variable idout : slv16 := (others=>'0');
 
    variable ibreq : slbit := '0';
 
    variable ibw0 : slbit := '0';
  begin
  begin
 
 
    r := R_REGS;
    r := R_REGS;
    n := R_REGS;
    n := R_REGS;
 
 
    ibsel := '0';
 
    idout := (others=>'0');
    idout := (others=>'0');
 
    ibreq := IB_MREQ.re or IB_MREQ.we;
 
    ibw0  := IB_MREQ.we and IB_MREQ.be0;
 
 
    -- ibus address decoder
    -- ibus address decoder
    if IB_MREQ.req='1' and IB_MREQ.addr=ibaddr_kw11l(12 downto 1) then
    n.ibsel := '0';
      ibsel := '1';
    if IB_MREQ.aval='1' and
 
       IB_MREQ.addr=ibaddr_kw11l(12 downto 1) then
 
      n.ibsel := '1';
    end if;
    end if;
 
 
    -- ibus output driver
    -- ibus output driver
    if ibsel = '1' then
    if r.ibsel = '1' then
      idout(lks_ibf_ie)   := R_REGS.ie;
      idout(lks_ibf_ie)   := R_REGS.ie;
      idout(lks_ibf_moni) := R_REGS.moni;
      idout(lks_ibf_moni) := R_REGS.moni;
    end if;
    end if;
 
 
    -- ibus write transactions
    -- ibus write transactions
    if ibsel='1' and IB_MREQ.we='1' and IB_MREQ.be0='1' then
    if r.ibsel='1' and ibw0='1' then
      n.ie   := IB_MREQ.din(lks_ibf_ie);
      n.ie   := IB_MREQ.din(lks_ibf_ie);
      n.moni := IB_MREQ.din(lks_ibf_moni);
      n.moni := IB_MREQ.din(lks_ibf_moni);
      if IB_MREQ.din(lks_ibf_ie)='0' or IB_MREQ.din(lks_ibf_moni)='0' then
      if IB_MREQ.din(lks_ibf_ie)='0' or IB_MREQ.din(lks_ibf_moni)='0' then
        n.intreq := '0';
        n.intreq := '0';
      end if;
      end if;
Line 149... Line 157...
    end if;
    end if;
 
 
    N_REGS <= n;
    N_REGS <= n;
 
 
    IB_SRES.dout <= idout;
    IB_SRES.dout <= idout;
    IB_SRES.ack  <= ibsel;
    IB_SRES.ack  <= r.ibsel and ibreq;
    IB_SRES.busy <= '0';
    IB_SRES.busy <= '0';
 
 
    EI_REQ <= r.intreq;
    EI_REQ <= r.intreq;
 
 
  end process proc_next;
  end process proc_next;

powered by: WebSVN 2.1.0

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