Line 54... |
Line 54... |
mclk, // Main system clock
|
mclk, // Main system clock
|
per_addr, // Peripheral address
|
per_addr, // Peripheral address
|
per_din, // Peripheral data input
|
per_din, // Peripheral data input
|
per_en, // Peripheral enable (high active)
|
per_en, // Peripheral enable (high active)
|
per_we, // Peripheral write enable (high active)
|
per_we, // Peripheral write enable (high active)
|
puc_rst // Main system reset
|
puc_rst, // Main system reset
|
|
scan_enable // Scan enable (active during scan shifting)
|
);
|
);
|
|
|
// OUTPUTs
|
// OUTPUTs
|
//=========
|
//=========
|
output [15:0] per_dout; // Peripheral data output
|
output [15:0] per_dout; // Peripheral data output
|
Line 69... |
Line 70... |
input [13:0] per_addr; // Peripheral address
|
input [13:0] per_addr; // Peripheral address
|
input [15:0] per_din; // Peripheral data input
|
input [15:0] per_din; // Peripheral data input
|
input per_en; // Peripheral enable (high active)
|
input per_en; // Peripheral enable (high active)
|
input [1:0] per_we; // Peripheral write enable (high active)
|
input [1:0] per_we; // Peripheral write enable (high active)
|
input puc_rst; // Main system reset
|
input puc_rst; // Main system reset
|
|
input scan_enable; // Scan enable (active during scan shifting)
|
|
|
|
|
//=============================================================================
|
//=============================================================================
|
// 1) PARAMETER/REGISTERS & WIRE DECLARATION
|
// 1) PARAMETER/REGISTERS & WIRE DECLARATION
|
//=============================================================================
|
//=============================================================================
|
Line 92... |
Line 94... |
RESLO = 'hA,
|
RESLO = 'hA,
|
RESHI = 'hC,
|
RESHI = 'hC,
|
SUMEXT = 'hE;
|
SUMEXT = 'hE;
|
|
|
// Register one-hot decoder utilities
|
// Register one-hot decoder utilities
|
parameter DEC_SZ = 2**DEC_WD;
|
parameter DEC_SZ = (1 << DEC_WD);
|
parameter [DEC_SZ-1:0] BASE_REG = {{DEC_SZ-1{1'b0}}, 1'b1};
|
parameter [DEC_SZ-1:0] BASE_REG = {{DEC_SZ-1{1'b0}}, 1'b1};
|
|
|
// Register one-hot decoder
|
// Register one-hot decoder
|
parameter [DEC_SZ-1:0] OP1_MPY_D = (BASE_REG << OP1_MPY),
|
parameter [DEC_SZ-1:0] OP1_MPY_D = (BASE_REG << OP1_MPY),
|
OP1_MPYS_D = (BASE_REG << OP1_MPYS),
|
OP1_MPYS_D = (BASE_REG << OP1_MPYS),
|
Line 154... |
Line 156... |
wire op1_wr = reg_wr[OP1_MPY] |
|
wire op1_wr = reg_wr[OP1_MPY] |
|
reg_wr[OP1_MPYS] |
|
reg_wr[OP1_MPYS] |
|
reg_wr[OP1_MAC] |
|
reg_wr[OP1_MAC] |
|
reg_wr[OP1_MACS];
|
reg_wr[OP1_MACS];
|
|
|
always @ (posedge mclk or posedge puc_rst)
|
`ifdef CLOCK_GATING
|
|
wire mclk_op1;
|
|
omsp_clock_gate clock_gate_op1 (.gclk(mclk_op1),
|
|
.clk (mclk), .enable(op1_wr), .scan_enable(scan_enable));
|
|
`else
|
|
wire mclk_op1 = mclk;
|
|
`endif
|
|
|
|
always @ (posedge mclk_op1 or posedge puc_rst)
|
if (puc_rst) op1 <= 16'h0000;
|
if (puc_rst) op1 <= 16'h0000;
|
|
`ifdef CLOCK_GATING
|
|
else op1 <= per_din;
|
|
`else
|
else if (op1_wr) op1 <= per_din;
|
else if (op1_wr) op1 <= per_din;
|
|
`endif
|
|
|
wire [15:0] op1_rd = op1;
|
wire [15:0] op1_rd = op1;
|
|
|
|
|
// OP2 Register
|
// OP2 Register
|
//-----------------
|
//-----------------
|
reg [15:0] op2;
|
reg [15:0] op2;
|
|
|
wire op2_wr = reg_wr[OP2];
|
wire op2_wr = reg_wr[OP2];
|
|
|
always @ (posedge mclk or posedge puc_rst)
|
`ifdef CLOCK_GATING
|
|
wire mclk_op2;
|
|
omsp_clock_gate clock_gate_op2 (.gclk(mclk_op2),
|
|
.clk (mclk), .enable(op2_wr), .scan_enable(scan_enable));
|
|
`else
|
|
wire mclk_op2 = mclk;
|
|
`endif
|
|
|
|
always @ (posedge mclk_op2 or posedge puc_rst)
|
if (puc_rst) op2 <= 16'h0000;
|
if (puc_rst) op2 <= 16'h0000;
|
|
`ifdef CLOCK_GATING
|
|
else op2 <= per_din;
|
|
`else
|
else if (op2_wr) op2 <= per_din;
|
else if (op2_wr) op2 <= per_din;
|
|
`endif
|
|
|
wire [15:0] op2_rd = op2;
|
wire [15:0] op2_rd = op2;
|
|
|
|
|
// RESLO Register
|
// RESLO Register
|
Line 181... |
Line 207... |
reg [15:0] reslo;
|
reg [15:0] reslo;
|
|
|
wire [15:0] reslo_nxt;
|
wire [15:0] reslo_nxt;
|
wire reslo_wr = reg_wr[RESLO];
|
wire reslo_wr = reg_wr[RESLO];
|
|
|
always @ (posedge mclk or posedge puc_rst)
|
`ifdef CLOCK_GATING
|
|
wire reslo_en = reslo_wr | result_clr | result_wr;
|
|
wire mclk_reslo;
|
|
omsp_clock_gate clock_gate_reslo (.gclk(mclk_reslo),
|
|
.clk (mclk), .enable(reslo_en), .scan_enable(scan_enable));
|
|
`else
|
|
wire mclk_reslo = mclk;
|
|
`endif
|
|
|
|
always @ (posedge mclk_reslo or posedge puc_rst)
|
if (puc_rst) reslo <= 16'h0000;
|
if (puc_rst) reslo <= 16'h0000;
|
else if (reslo_wr) reslo <= per_din;
|
else if (reslo_wr) reslo <= per_din;
|
else if (result_clr) reslo <= 16'h0000;
|
else if (result_clr) reslo <= 16'h0000;
|
|
`ifdef CLOCK_GATING
|
|
else reslo <= reslo_nxt;
|
|
`else
|
else if (result_wr) reslo <= reslo_nxt;
|
else if (result_wr) reslo <= reslo_nxt;
|
|
`endif
|
|
|
wire [15:0] reslo_rd = early_read ? reslo_nxt : reslo;
|
wire [15:0] reslo_rd = early_read ? reslo_nxt : reslo;
|
|
|
|
|
// RESHI Register
|
// RESHI Register
|
Line 197... |
Line 236... |
reg [15:0] reshi;
|
reg [15:0] reshi;
|
|
|
wire [15:0] reshi_nxt;
|
wire [15:0] reshi_nxt;
|
wire reshi_wr = reg_wr[RESHI];
|
wire reshi_wr = reg_wr[RESHI];
|
|
|
always @ (posedge mclk or posedge puc_rst)
|
`ifdef CLOCK_GATING
|
|
wire reshi_en = reshi_wr | result_clr | result_wr;
|
|
wire mclk_reshi;
|
|
omsp_clock_gate clock_gate_reshi (.gclk(mclk_reshi),
|
|
.clk (mclk), .enable(reshi_en), .scan_enable(scan_enable));
|
|
`else
|
|
wire mclk_reshi = mclk;
|
|
`endif
|
|
|
|
always @ (posedge mclk_reshi or posedge puc_rst)
|
if (puc_rst) reshi <= 16'h0000;
|
if (puc_rst) reshi <= 16'h0000;
|
else if (reshi_wr) reshi <= per_din;
|
else if (reshi_wr) reshi <= per_din;
|
else if (result_clr) reshi <= 16'h0000;
|
else if (result_clr) reshi <= 16'h0000;
|
|
`ifdef CLOCK_GATING
|
|
else reshi <= reshi_nxt;
|
|
`else
|
else if (result_wr) reshi <= reshi_nxt;
|
else if (result_wr) reshi <= reshi_nxt;
|
|
`endif
|
|
|
wire [15:0] reshi_rd = early_read ? reshi_nxt : reshi;
|
wire [15:0] reshi_rd = early_read ? reshi_nxt : reshi;
|
|
|
|
|
// SUMEXT Register
|
// SUMEXT Register
|
Line 252... |
Line 304... |
// Multiplier configuration
|
// Multiplier configuration
|
//--------------------------
|
//--------------------------
|
|
|
// Detect signed mode
|
// Detect signed mode
|
reg sign_sel;
|
reg sign_sel;
|
always @ (posedge mclk or posedge puc_rst)
|
always @ (posedge mclk_op1 or posedge puc_rst)
|
if (puc_rst) sign_sel <= 1'b0;
|
if (puc_rst) sign_sel <= 1'b0;
|
|
`ifdef CLOCK_GATING
|
|
else sign_sel <= reg_wr[OP1_MPYS] | reg_wr[OP1_MACS];
|
|
`else
|
else if (op1_wr) sign_sel <= reg_wr[OP1_MPYS] | reg_wr[OP1_MACS];
|
else if (op1_wr) sign_sel <= reg_wr[OP1_MPYS] | reg_wr[OP1_MACS];
|
|
`endif
|
|
|
|
|
// Detect accumulate mode
|
// Detect accumulate mode
|
reg acc_sel;
|
reg acc_sel;
|
always @ (posedge mclk or posedge puc_rst)
|
always @ (posedge mclk_op1 or posedge puc_rst)
|
if (puc_rst) acc_sel <= 1'b0;
|
if (puc_rst) acc_sel <= 1'b0;
|
|
`ifdef CLOCK_GATING
|
|
else acc_sel <= reg_wr[OP1_MAC] | reg_wr[OP1_MACS];
|
|
`else
|
else if (op1_wr) acc_sel <= reg_wr[OP1_MAC] | reg_wr[OP1_MACS];
|
else if (op1_wr) acc_sel <= reg_wr[OP1_MAC] | reg_wr[OP1_MACS];
|
|
`endif
|
|
|
|
|
// Detect whenever the RESHI and RESLO registers should be cleared
|
// Detect whenever the RESHI and RESLO registers should be cleared
|
assign result_clr = op2_wr & ~acc_sel;
|
assign result_clr = op2_wr & ~acc_sel;
|
|
|