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

Subversion Repositories aemb

[/] [aemb/] [trunk/] [rtl/] [verilog/] [aeMB2_exec.v] - Diff between revs 206 and 209

Only display areas with differences | Details | Blame | View Log

Rev 206 Rev 209
/* $Id: aeMB2_exec.v,v 1.4 2008-04-26 17:57:43 sybreon Exp $
/* $Id: aeMB2_exec.v,v 1.4 2008-04-26 17:57:43 sybreon Exp $
**
**
** AEMB2 EDK 6.2 COMPATIBLE CORE
** AEMB2 EDK 6.2 COMPATIBLE CORE
** Copyright (C) 2004-2008 Shawn Tan <shawn.tan@aeste.net>
** Copyright (C) 2004-2008 Shawn Tan <shawn.tan@aeste.net>
**
**
** This file is part of AEMB.
** This file is part of AEMB.
**
**
** AEMB is free software: you can redistribute it and/or modify it
** AEMB is free software: you can redistribute it and/or modify it
** under the terms of the GNU Lesser General Public License as
** under the terms of the GNU Lesser General Public License as
** published by the Free Software Foundation, either version 3 of the
** published by the Free Software Foundation, either version 3 of the
** License, or (at your option) any later version.
** License, or (at your option) any later version.
**
**
** AEMB is distributed in the hope that it will be useful, but WITHOUT
** AEMB is distributed in the hope that it will be useful, but WITHOUT
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
** or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
** or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
** Public License for more details.
** Public License for more details.
**
**
** You should have received a copy of the GNU Lesser General Public
** You should have received a copy of the GNU Lesser General Public
** License along with AEMB. If not, see <http:**www.gnu.org/licenses/>.
** License along with AEMB. If not, see <http:**www.gnu.org/licenses/>.
*/
*/
 
 
/**
/**
 * Execution Units Wrapper
 * Execution Units Wrapper
 * @file aeMB2_exec.v
 * @file aeMB2_exec.v
 
 
 * Collection of all the execution units.
 * Collection of all the execution units.
 
 
 */
 */
 
 
// 382@130
// 382@130
 
 
module aeMB2_exec (/*AUTOARG*/
module aeMB2_exec (/*AUTOARG*/
   // Outputs
   // Outputs
   sfr_mx, mul_mx, msr_ex, mem_ex, bsf_mx, bpc_ex, alu_mx, alu_ex,
   sfr_mx, mul_mx, msr_ex, mem_ex, bsf_mx, bpc_ex, alu_mx, alu_ex,
   exc_ill,
   exc_ill,
   // Inputs
   // Inputs
   rd_of, ra_of, opd_of, opc_of, opb_of, opa_of, imm_of, grst, gpha,
   rpc_ex, rd_of, ra_of, opd_of, opc_of, opb_of, opa_of, imm_of, grst,
   gclk, dena
   gpha, gclk, exc_dwb, dena
   );
   );
   parameter AEMB_IWB = 32;
   parameter AEMB_IWB = 32;
   parameter AEMB_DWB = 32;
   parameter AEMB_DWB = 32;
   parameter AEMB_MUL = 1;
   parameter AEMB_MUL = 1;
   parameter AEMB_BSF = 1;
   parameter AEMB_BSF = 1;
   parameter AEMB_HTX = 1;
   parameter AEMB_HTX = 1;
 
 
   /*AUTOOUTPUT*/
   /*AUTOOUTPUT*/
   // Beginning of automatic outputs (from unused autoinst outputs)
   // Beginning of automatic outputs (from unused autoinst outputs)
   output [31:0] alu_ex;                 // From intu0 of aeMB2_intu.v
   output [31:0] alu_ex;                 // From intu0 of aeMB2_intu.v
   output [31:0] alu_mx;                 // From intu0 of aeMB2_intu.v
   output [31:0] alu_mx;                 // From intu0 of aeMB2_intu.v
   output [31:2]        bpc_ex;                 // From intu0 of aeMB2_intu.v
   output [31:2]        bpc_ex;                 // From intu0 of aeMB2_intu.v
   output [31:0] bsf_mx;                 // From bsft0 of aeMB2_bsft.v
   output [31:0] bsf_mx;                 // From bsft0 of aeMB2_bsft.v
   output [31:2]        mem_ex;                 // From intu0 of aeMB2_intu.v
   output [31:2]        mem_ex;                 // From intu0 of aeMB2_intu.v
   output [9:0]          msr_ex;                 // From intu0 of aeMB2_intu.v
   output [9:0]          msr_ex;                 // From intu0 of aeMB2_intu.v
   output [31:0] mul_mx;                 // From mult0 of aeMB2_mult.v
   output [31:0] mul_mx;                 // From mult0 of aeMB2_mult.v
   output [31:0] sfr_mx;                 // From intu0 of aeMB2_intu.v
   output [31:0] sfr_mx;                 // From intu0 of aeMB2_intu.v
   // End of automatics
   // End of automatics
   /*AUTOINPUT*/
   /*AUTOINPUT*/
   // Beginning of automatic inputs (from unused autoinst inputs)
   // Beginning of automatic inputs (from unused autoinst inputs)
   input                dena;                   // To bsft0 of aeMB2_bsft.v, ...
   input                dena;                   // To bsft0 of aeMB2_bsft.v, ...
 
   input [1:0]           exc_dwb;                // To intu0 of aeMB2_intu.v
   input                gclk;                   // To bsft0 of aeMB2_bsft.v, ...
   input                gclk;                   // To bsft0 of aeMB2_bsft.v, ...
   input                gpha;                   // To bsft0 of aeMB2_bsft.v, ...
   input                gpha;                   // To bsft0 of aeMB2_bsft.v, ...
   input                grst;                   // To bsft0 of aeMB2_bsft.v, ...
   input                grst;                   // To bsft0 of aeMB2_bsft.v, ...
   input [15:0]          imm_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [15:0]          imm_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [31:0]          opa_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [31:0]          opa_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [31:0]          opb_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [31:0]          opb_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [5:0]           opc_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [5:0]           opc_of;                 // To bsft0 of aeMB2_bsft.v, ...
   input [31:0]          opd_of;                 // To intu0 of aeMB2_intu.v
   input [31:0]          opd_of;                 // To intu0 of aeMB2_intu.v
   input [4:0]           ra_of;                  // To intu0 of aeMB2_intu.v
   input [4:0]           ra_of;                  // To intu0 of aeMB2_intu.v
   input [4:0]           rd_of;                  // To intu0 of aeMB2_intu.v
   input [4:0]           rd_of;                  // To intu0 of aeMB2_intu.v
 
   input [31:2]         rpc_ex;                 // To intu0 of aeMB2_intu.v
   // End of automatics
   // End of automatics
   /*AUTOWIRE*/
   /*AUTOWIRE*/
 
 
 
 
   output               exc_ill;
   output               exc_ill;
 
 
   reg                  exc_ill; // illegal instruction exception
   reg                  exc_ill; // illegal instruction exception
 
 
   //TODO: OPTIMISE!
   //TODO: OPTIMISE!
   wire                 wILL =
   wire                 wILL =
                        ((opc_of[5:4] == 2'o1) & opc_of[2]) | // illegal extended arithmetic
                        ((opc_of[5:4] == 2'o1) & opc_of[2]) | // illegal extended arithmetic
                        (&opc_of[5:4] & &opc_of[1:0]); // illegal LD/ST
                        (&opc_of[5:4] & &opc_of[1:0]); // illegal LD/ST
                        //(opc_of == 6'o23) | (opc_of == 6'o24) | (opc_of == 6'o25) | (opc_of == 6'o26) | opc_of == 6'o27) |
                        //(opc_of == 6'o23) | (opc_of == 6'o24) | (opc_of == 6'o25) | (opc_of == 6'o26) | opc_of == 6'o27) |
                        //(opc_of == 6'o32) | (opc_of == 6'o34) | (opc_of == 6'o35) | (opc_of == 6'o36) | opc_of == 6'o37) |
                        //(opc_of == 6'o32) | (opc_of == 6'o34) | (opc_of == 6'o35) | (opc_of == 6'o36) | opc_of == 6'o37) |
                        //(opc_of == 6'o63) | (opc_of == 6'o67) | (opc_of == 6'o73) | (opc_of == 6'o77); // illegal load/store
                        //(opc_of == 6'o63) | (opc_of == 6'o67) | (opc_of == 6'o73) | (opc_of == 6'o77); // illegal load/store
 
 
   always @(posedge gclk)
   always @(posedge gclk)
     if (grst) begin
     if (grst) begin
        /*AUTORESET*/
        /*AUTORESET*/
        // Beginning of autoreset for uninitialized flops
        // Beginning of autoreset for uninitialized flops
        exc_ill <= 1'h0;
        exc_ill <= 1'h0;
        // End of automatics
        // End of automatics
     end else if (dena) begin
     end else if (dena) begin
        exc_ill <= #1 wILL;
        exc_ill <= #1 wILL;
     end
     end
 
 
   aeMB2_bsft
   aeMB2_bsft
     #(/*AUTOINSTPARAM*/
     #(/*AUTOINSTPARAM*/
       // Parameters
       // Parameters
       .AEMB_BSF                        (AEMB_BSF))
       .AEMB_BSF                        (AEMB_BSF))
   bsft0
   bsft0
     (/*AUTOINST*/
     (/*AUTOINST*/
      // Outputs
      // Outputs
      .bsf_mx                           (bsf_mx[31:0]),
      .bsf_mx                           (bsf_mx[31:0]),
      // Inputs
      // Inputs
      .opa_of                           (opa_of[31:0]),
      .opa_of                           (opa_of[31:0]),
      .opb_of                           (opb_of[31:0]),
      .opb_of                           (opb_of[31:0]),
      .opc_of                           (opc_of[5:0]),
      .opc_of                           (opc_of[5:0]),
      .imm_of                           (imm_of[10:9]),
      .imm_of                           (imm_of[10:9]),
      .gclk                             (gclk),
      .gclk                             (gclk),
      .grst                             (grst),
      .grst                             (grst),
      .dena                             (dena),
      .dena                             (dena),
      .gpha                             (gpha));
      .gpha                             (gpha));
 
 
   aeMB2_mult
   aeMB2_mult
     #(/*AUTOINSTPARAM*/
     #(/*AUTOINSTPARAM*/
       // Parameters
       // Parameters
       .AEMB_MUL                        (AEMB_MUL))
       .AEMB_MUL                        (AEMB_MUL))
   mult0
   mult0
     (/*AUTOINST*/
     (/*AUTOINST*/
      // Outputs
      // Outputs
      .mul_mx                           (mul_mx[31:0]),
      .mul_mx                           (mul_mx[31:0]),
      // Inputs
      // Inputs
      .opa_of                           (opa_of[31:0]),
      .opa_of                           (opa_of[31:0]),
      .opb_of                           (opb_of[31:0]),
      .opb_of                           (opb_of[31:0]),
      .opc_of                           (opc_of[5:0]),
      .opc_of                           (opc_of[5:0]),
      .gclk                             (gclk),
      .gclk                             (gclk),
      .grst                             (grst),
      .grst                             (grst),
      .dena                             (dena),
      .dena                             (dena),
      .gpha                             (gpha));
      .gpha                             (gpha));
 
 
   aeMB2_intu
   aeMB2_intu
     #(/*AUTOINSTPARAM*/
     #(/*AUTOINSTPARAM*/
       // Parameters
       // Parameters
       .AEMB_DWB                        (AEMB_DWB),
       .AEMB_DWB                        (AEMB_DWB),
       .AEMB_IWB                        (AEMB_IWB),
       .AEMB_IWB                        (AEMB_IWB),
       .AEMB_HTX                        (AEMB_HTX))
       .AEMB_HTX                        (AEMB_HTX))
   intu0
   intu0
     (/*AUTOINST*/
     (/*AUTOINST*/
      // Outputs
      // Outputs
      .mem_ex                           (mem_ex[31:2]),
      .mem_ex                           (mem_ex[31:2]),
      .bpc_ex                           (bpc_ex[31:2]),
      .bpc_ex                           (bpc_ex[31:2]),
      .alu_ex                           (alu_ex[31:0]),
      .alu_ex                           (alu_ex[31:0]),
      .alu_mx                           (alu_mx[31:0]),
      .alu_mx                           (alu_mx[31:0]),
      .msr_ex                           (msr_ex[9:0]),
      .msr_ex                           (msr_ex[9:0]),
      .sfr_mx                           (sfr_mx[31:0]),
      .sfr_mx                           (sfr_mx[31:0]),
      // Inputs
      // Inputs
 
      .exc_dwb                          (exc_dwb[1:0]),
 
      .exc_ill                          (exc_ill),
 
      .rpc_ex                           (rpc_ex[31:2]),
      .opc_of                           (opc_of[5:0]),
      .opc_of                           (opc_of[5:0]),
      .opa_of                           (opa_of[31:0]),
      .opa_of                           (opa_of[31:0]),
      .opb_of                           (opb_of[31:0]),
      .opb_of                           (opb_of[31:0]),
      .opd_of                           (opd_of[31:0]),
      .opd_of                           (opd_of[31:0]),
      .imm_of                           (imm_of[15:0]),
      .imm_of                           (imm_of[15:0]),
      .rd_of                            (rd_of[4:0]),
      .rd_of                            (rd_of[4:0]),
      .ra_of                            (ra_of[4:0]),
      .ra_of                            (ra_of[4:0]),
      .gclk                             (gclk),
      .gclk                             (gclk),
      .grst                             (grst),
      .grst                             (grst),
      .dena                             (dena),
      .dena                             (dena),
      .gpha                             (gpha));
      .gpha                             (gpha));
 
 
endmodule // aeMB2_exec
endmodule // aeMB2_exec
 
 

powered by: WebSVN 2.1.0

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