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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.61/] [rtl/] [ibus/] [ibdr_lp11.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: ibdr_lp11.vhd 314 2010-07-09 17:38:41Z mueller $
-- $Id: ibdr_lp11.vhd 335 2010-10-24 22:24:23Z mueller $
--
--
-- Copyright 2009-2010 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
-- Copyright 2009-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
Line 16... Line 16...
-- Description:    ibus dev(rem): LP11
-- Description:    ibus dev(rem): LP11
--
--
-- 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    12   35    0   24 s  5.6
-- 2009-07-11   232  10.1.03 K39 xc3s1000-4    11   30    0   19 s  5.8
-- 2009-07-11   232  10.1.03 K39 xc3s1000-4    11   30    0   19 s  5.8
--
--
-- Revision History: 
-- Revision History: 
-- Date         Rev Version  Comment
-- Date         Rev Version  Comment
 
-- 2010-10-23   335   1.2.1  rename RRI_LAM->RB_LAM;
 
-- 2010-10-17   333   1.2    use ibus V2 interface
-- 2010-06-11   303   1.1    use IB_MREQ.racc instead of RRI_REQ
-- 2010-06-11   303   1.1    use IB_MREQ.racc instead of RRI_REQ
-- 2009-06-21   228   1.0.1  generate interrupt locally when err=1
-- 2009-06-21   228   1.0.1  generate interrupt locally when err=1
-- 2009-05-30   220   1.0    Initial version 
-- 2009-05-30   220   1.0    Initial version 
------------------------------------------------------------------------------
------------------------------------------------------------------------------
--
--
Line 49... Line 52...
                                        -- fixed address: 177514
                                        -- fixed address: 177514
  port (
  port (
    CLK : in slbit;                     -- clock
    CLK : in slbit;                     -- clock
    RESET : in slbit;                   -- system reset
    RESET : in slbit;                   -- system reset
    BRESET : in slbit;                  -- ibus reset
    BRESET : in slbit;                  -- ibus reset
    RRI_LAM : out slbit;                -- remote attention
    RB_LAM : out slbit;                 -- remote attention
    IB_MREQ : in ib_mreq_type;          -- ibus request
    IB_MREQ : in ib_mreq_type;          -- ibus request
    IB_SRES : out ib_sres_type;         -- ibus response
    IB_SRES : out ib_sres_type;         -- ibus response
    EI_REQ : out slbit;                 -- interrupt request
    EI_REQ : out slbit;                 -- interrupt request
    EI_ACK : in slbit                   -- interrupt acknowledge
    EI_ACK : in slbit                   -- interrupt acknowledge
  );
  );
Line 70... Line 73...
  constant csr_ibf_done :  integer :=  7;
  constant csr_ibf_done :  integer :=  7;
  constant csr_ibf_ie :    integer :=  6;
  constant csr_ibf_ie :    integer :=  6;
  constant buf_ibf_val :   integer :=  8;
  constant buf_ibf_val :   integer :=  8;
 
 
  type regs_type is record              -- state registers
  type regs_type is record              -- state registers
 
    ibsel : slbit;                      -- ibus select
    err : slbit;                        -- csr: error flag
    err : slbit;                        -- csr: error flag
    done : slbit;                       -- csr: done flag
    done : slbit;                       -- csr: done flag
    ie : slbit;                         -- csr: interrupt enable
    ie : slbit;                         -- csr: interrupt enable
    buf : slv7;                         -- buf:
    buf : slv7;                         -- buf:
    intreq : slbit;                     -- interrupt request
    intreq : slbit;                     -- interrupt request
  end record regs_type;
  end record regs_type;
 
 
  constant regs_init : regs_type := (
  constant regs_init : regs_type := (
 
    '0',                                -- ibsel
    '1',                                -- err  !! is set !!
    '1',                                -- err  !! is set !!
    '1',                                -- done !! is set !!
    '1',                                -- done !! is set !!
    '0',                                -- ie
    '0',                                -- ie
    (others=>'0'),                      -- buf
    (others=>'0'),                      -- buf
    '0'                                 -- intreq
    '0'                                 -- intreq
Line 107... Line 112...
  end process proc_regs;
  end process proc_regs;
 
 
  proc_next : process (R_REGS, IB_MREQ, EI_ACK)
  proc_next : process (R_REGS, IB_MREQ, 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 ibrd : slbit := '0';
    variable ibrd : slbit := '0';
    variable ibw0 : slbit := '0';
    variable ibw0 : slbit := '0';
    variable ilam : slbit := '0';
    variable ilam : slbit := '0';
  begin
  begin
 
 
    r := R_REGS;
    r := R_REGS;
    n := R_REGS;
    n := R_REGS;
 
 
    ibsel := '0';
 
    idout := (others=>'0');
    idout := (others=>'0');
    ibrd  := not IB_MREQ.we;
    ibreq := IB_MREQ.re or IB_MREQ.we;
 
    ibrd  := IB_MREQ.re;
    ibw0  := IB_MREQ.we and IB_MREQ.be0;
    ibw0  := IB_MREQ.we and IB_MREQ.be0;
    ilam  := '0';
    ilam  := '0';
 
 
    -- ibus address decoder
    -- ibus address decoder
    if IB_MREQ.req='1' and
    n.ibsel := '0';
 
    if IB_MREQ.aval='1' and
       IB_MREQ.addr(12 downto 2)=ibaddr_lp11(12 downto 2) then
       IB_MREQ.addr(12 downto 2)=ibaddr_lp11(12 downto 2) then
      ibsel := '1';
      n.ibsel := '1';
    end if;
    end if;
 
 
    -- ibus transactions
    -- ibus transactions
    if ibsel = '1' then
    if r.ibsel = '1' then
      case IB_MREQ.addr(1 downto 1) is
      case IB_MREQ.addr(1 downto 1) is
 
 
        when ibaddr_csr =>              -- CSR -- control status -------------
        when ibaddr_csr =>              -- CSR -- control status -------------
          idout(csr_ibf_err)  := r.err;
          idout(csr_ibf_err)  := r.err;
          idout(csr_ibf_done) := r.done;
          idout(csr_ibf_done) := r.done;
Line 191... Line 197...
    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';
 
 
    RRI_LAM <= ilam;
    RB_LAM <= ilam;
    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.