⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iu3.vhd

📁 leon3 source code 虽然gaisler网站上有下载
💻 VHD
📖 第 1 页 / 共 5 页
字号:
--------------------------------------------------------------------------------  This file is a part of the GRLIB VHDL IP LIBRARY--  Copyright (C) 2003, Gaisler Research----  This program is free software; you can redistribute it and/or modify--  it under the terms of the GNU General Public License as published by--  the Free Software Foundation; either version 2 of the License, or--  (at your option) any later version.----  This program is distributed in the hope that it will be useful,--  but WITHOUT ANY WARRANTY; without even the implied warranty of--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the--  GNU General Public License for more details.----  You should have received a copy of the GNU General Public License--  along with this program; if not, write to the Free Software--  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA ------------------------------------------------------------------------------- Entity: 	iu3-- File:	iu3.vhd-- Author:	Jiri Gaisler, Edvin Catovic, Gaisler Research-- Description:	LEON3 7-stage integer pipline------------------------------------------------------------------------------library ieee;use ieee.std_logic_1164.all;use ieee.numeric_std.all;library grlib;use grlib.sparc.all;use grlib.stdlib.all;library techmap;use techmap.gencomp.all;library gaisler;use gaisler.leon3.all;use gaisler.libiu.all;use gaisler.arith.all;-- pragma translate_offuse grlib.sparc_disas.all;-- pragma translate_onentity iu3 is  generic (    nwin     : integer range 2 to 32 := 8;    isets    : integer range 1 to 4 := 1;    dsets    : integer range 1 to 4 := 1;    fpu      : integer range 0 to 15 := 0;    v8       : integer range 0 to 63 := 0;    cp, mac  : integer range 0 to 1 := 0;    dsu      : integer range 0 to 1 := 0;    nwp      : integer range 0 to 4 := 0;    pclow    : integer range 0 to 2 := 2;    notag    : integer range 0 to 1 := 0;    index    : integer range 0 to 15:= 0;    lddel    : integer range 1 to 2 := 2;    irfwt    : integer range 0 to 1 := 0;    disas    : integer range 0 to 2 := 0;    tbuf     : integer range 0 to 64 := 0;  -- trace buf size in kB (0 - no trace buffer)    pwd      : integer range 0 to 2 := 0;   -- power-down    svt      : integer range 0 to 1 := 0;   -- single-vector trapping    rstaddr  : integer := 16#00000#;        -- reset vector MSB address    smp      : integer range 0 to 15 := 0;  -- support SMP systems    fabtech  : integer range 0 to NTECH := 0;    clk2x    : integer := 0  );  port (    clk   : in  std_ulogic;    rstn  : in  std_ulogic;    holdn : in  std_ulogic;    ici   : out icache_in_type;    ico   : in  icache_out_type;    dci   : out dcache_in_type;    dco   : in  dcache_out_type;    rfi   : out iregfile_in_type;    rfo   : in  iregfile_out_type;    irqi  : in  l3_irq_in_type;    irqo  : out l3_irq_out_type;    dbgi  : in  l3_debug_in_type;    dbgo  : out l3_debug_out_type;    muli  : out mul32_in_type;    mulo  : in  mul32_out_type;    divi  : out div32_in_type;    divo  : in  div32_out_type;    fpo   : in  fpc_out_type;    fpi   : out fpc_in_type;    cpo   : in  fpc_out_type;    cpi   : out fpc_in_type;    tbo   : in  tracebuf_out_type;    tbi   : out tracebuf_in_type;    sclk   : in  std_ulogic    );end;architecture rtl of iu3 is  constant ISETMSB : integer := log2x(isets)-1;  constant DSETMSB : integer := log2x(dsets)-1;  constant RFBITS : integer range 6 to 10 := log2(NWIN+1) + 4;  constant NWINLOG2   : integer range 1 to 5 := log2(NWIN);  constant CWPOPT : boolean := (NWIN = (2**NWINLOG2));  constant CWPMIN : std_logic_vector(NWINLOG2-1 downto 0) := (others => '0');  constant CWPMAX : std_logic_vector(NWINLOG2-1 downto 0) :=   	conv_std_logic_vector(NWIN-1, NWINLOG2);  constant FPEN   : boolean := (fpu /= 0);  constant CPEN   : boolean := (cp = 1);  constant MULEN  : boolean := (v8 /= 0);  constant MULTYPE: integer := (v8 / 16);  constant DIVEN  : boolean := (v8 /= 0);  constant MACEN  : boolean := (mac = 1);  constant MACPIPE: boolean := (mac = 1) and (v8/2 = 1);  constant IMPL   : integer := 15;  constant VER    : integer := 3;  constant DBGUNIT : boolean := (dsu = 1);  constant TRACEBUF   : boolean := (tbuf /= 0);  constant TBUFBITS : integer := 10 + log2(tbuf) - 4;  constant PWRD1  : boolean := false; --(pwd = 1) and not (index /= 0);  constant PWRD2  : boolean := pwd /= 0; --(pwd = 2) or (index /= 0);  constant RS1OPT : boolean := (is_fpga(FABTECH) /= 0);  constant DYNRST : boolean := (rstaddr = 16#FFFFF#);    subtype word is std_logic_vector(31 downto 0);  subtype pctype is std_logic_vector(31 downto PCLOW);  subtype rfatype is std_logic_vector(RFBITS-1 downto 0);  subtype cwptype is std_logic_vector(NWINLOG2-1 downto 0);  type icdtype is array (0 to isets-1) of word;  type dcdtype is array (0 to dsets-1) of word;  type dc_in_type is record    signed, enaddr, read, write, lock , dsuen : std_ulogic;    size : std_logic_vector(1 downto 0);    asi  : std_logic_vector(7 downto 0);      end record;    type pipeline_ctrl_type is record    pc    : pctype;    inst  : word;    cnt   : std_logic_vector(1 downto 0);    rd    : rfatype;    tt    : std_logic_vector(5 downto 0);    trap  : std_ulogic;    annul : std_ulogic;    wreg  : std_ulogic;    wicc  : std_ulogic;    wy    : std_ulogic;    ld    : std_ulogic;    pv    : std_ulogic;    rett  : std_ulogic;  end record;    type fetch_reg_type is record    pc     : pctype;    branch : std_ulogic;  end record;    type decode_reg_type is record    pc    : pctype;    inst  : icdtype;    cwp   : cwptype;    set   : std_logic_vector(ISETMSB downto 0);    mexc  : std_ulogic;    cnt   : std_logic_vector(1 downto 0);    pv    : std_ulogic;    annul : std_ulogic;    inull : std_ulogic;    step  : std_ulogic;          end record;    type regacc_reg_type is record    ctrl  : pipeline_ctrl_type;    rs1   : std_logic_vector(4 downto 0);    rfa1, rfa2 : rfatype;    rsel1, rsel2 : std_logic_vector(2 downto 0);    rfe1, rfe2 : std_ulogic;    cwp   : cwptype;    imm   : word;    ldcheck1 : std_ulogic;    ldcheck2 : std_ulogic;    ldchkra : std_ulogic;    ldchkex : std_ulogic;    su : std_ulogic;    et : std_ulogic;    wovf : std_ulogic;    wunf : std_ulogic;    ticc : std_ulogic;    jmpl : std_ulogic;    step  : std_ulogic;                mulstart : std_ulogic;                divstart : std_ulogic;              end record;    type execute_reg_type is record    ctrl   : pipeline_ctrl_type;    op1    : word;    op2    : word;    aluop  : std_logic_vector(2 downto 0);  	-- Alu operation    alusel : std_logic_vector(1 downto 0);  	-- Alu result select    aluadd : std_ulogic;    alucin : std_ulogic;    ldbp1, ldbp2 : std_ulogic;    invop2 : std_ulogic;    shcnt  : std_logic_vector(4 downto 0);  	-- shift count    sari   : std_ulogic;				-- shift msb    shleft : std_ulogic;				-- shift left/right    ymsb   : std_ulogic;				-- shift left/right    rd 	   : std_logic_vector(4 downto 0);    jmpl   : std_ulogic;    su     : std_ulogic;    et     : std_ulogic;    cwp    : cwptype;    icc    : std_logic_vector(3 downto 0);    mulstep: std_ulogic;                mul    : std_ulogic;                mac    : std_ulogic;  end record;    type memory_reg_type is record    ctrl   : pipeline_ctrl_type;    result : word;    y      : word;    icc    : std_logic_vector(3 downto 0);    nalign : std_ulogic;    dci	   : dc_in_type;    werr   : std_ulogic;    wcwp   : std_ulogic;    irqen  : std_ulogic;    irqen2 : std_ulogic;    mac    : std_ulogic;    divz   : std_ulogic;    su     : std_ulogic;    mul    : std_ulogic;  end record;  type exception_state is (run, trap, dsu1, dsu2);    type exception_reg_type is record    ctrl   : pipeline_ctrl_type;    result : word;    y      : word;    icc    : std_logic_vector( 3 downto 0);    annul_all : std_ulogic;    data   : dcdtype;    set    : std_logic_vector(DSETMSB downto 0);    mexc   : std_ulogic;    dci	   : dc_in_type;    laddr  : std_logic_vector(1 downto 0);    rstate : exception_state;    npc    : std_logic_vector(2 downto 0);    intack : std_ulogic;    ipend  : std_ulogic;    mac    : std_ulogic;    debug  : std_ulogic;    nerror : std_ulogic;  end record;  type dsu_registers is record    tt      : std_logic_vector(7 downto 0);    err     : std_ulogic;    tbufcnt : std_logic_vector(TBUFBITS-1 downto 0);    asi     : std_logic_vector(7 downto 0);    crdy    : std_logic_vector(2 downto 1);  -- diag cache access ready  end record;  type irestart_register is record    addr   : pctype;    pwd    : std_ulogic;  end record;    type pwd_register_type is record    pwd    : std_ulogic;    error  : std_ulogic;  end record;  type special_register_type is record    cwp    : cwptype;                             -- current window pointer    icc    : std_logic_vector(3 downto 0);	  -- integer condition codes    tt     : std_logic_vector(7 downto 0);	  -- trap type    tba    : std_logic_vector(19 downto 0);	  -- trap base address    wim    : std_logic_vector(NWIN-1 downto 0);   -- window invalid mask    pil    : std_logic_vector(3 downto 0);	  -- processor interrupt level    ec     : std_ulogic;			   -- enable CP     ef     : std_ulogic;			   -- enable FP     ps     : std_ulogic;			   -- previous supervisor flag    s      : std_ulogic;			   -- supervisor flag    et     : std_ulogic;			   -- enable traps    y      : word;    asr18  : word;    svt    : std_ulogic;			   -- enable traps    dwt    : std_ulogic;			   -- disable write error trap  end record;    type write_reg_type is record    s      : special_register_type;    result : word;    wa     : rfatype;    wreg   : std_ulogic;    except : std_ulogic;  end record;  type registers is record    f  : fetch_reg_type;    d  : decode_reg_type;    a  : regacc_reg_type;    e  : execute_reg_type;    m  : memory_reg_type;    x  : exception_reg_type;    w  : write_reg_type;  end record;  type exception_type is record    pri   : std_ulogic;    ill   : std_ulogic;    fpdis : std_ulogic;    cpdis : std_ulogic;    wovf  : std_ulogic;    wunf  : std_ulogic;    ticc  : std_ulogic;  end record;  type watchpoint_register is record    addr    : std_logic_vector(31 downto 2);  -- watchpoint address    mask    : std_logic_vector(31 downto 2);  -- watchpoint mask    exec    : std_ulogic;			    -- trap on instruction    load    : std_ulogic;			    -- trap on load    store   : std_ulogic;			    -- trap on store  end record;  type watchpoint_registers is array (0 to 3) of watchpoint_register;  constant wpr_none : watchpoint_register := (	zero32(31 downto 2), zero32(31 downto 2), '0', '0', '0');  function dbgexc(r  : registers; dbgi : l3_debug_in_type; trap : std_ulogic; tt : std_logic_vector(7 downto 0)) return std_ulogic is    variable dmode : std_ulogic;  begin    dmode := '0';    if (not r.x.ctrl.annul and trap) = '1' then      if (((tt = "00" & TT_WATCH) and (dbgi.bwatch = '1')) or          ((dbgi.bsoft = '1') and (tt = "10000001")) or          (dbgi.btrapa = '1') or          ((dbgi.btrape = '1') and not ((tt(5 downto 0) = TT_PRIV) or 	    (tt(5 downto 0) = TT_FPDIS) or (tt(5 downto 0) = TT_WINOF) or            (tt(5 downto 0) = TT_WINUF) or (tt(5 downto 4) = "01") or (tt(7) = '1'))) or           (((not r.w.s.et) and dbgi.berror) = '1')) then        dmode := '1';      end if;    end if;    return(dmode);  end;                      function dbgerr(r : registers; dbgi : l3_debug_in_type;                  tt : std_logic_vector(7 downto 0))  return std_ulogic is    variable err : std_ulogic;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -