2023-02-03 05:40:38 +00:00
|
|
|
|
|
|
|
///////////////////////////////////////////
|
|
|
|
// zbb.sv
|
|
|
|
//
|
|
|
|
// Written: Kevin Kim <kekim@hmc.edu> and Kip Macsai-Goren <kmacsaigoren@hmc.edu>
|
|
|
|
// Created: 2 February 2023
|
2023-03-06 13:41:53 +00:00
|
|
|
// Modified: March 6 2023
|
2023-02-03 05:40:38 +00:00
|
|
|
//
|
2023-03-06 13:41:53 +00:00
|
|
|
// Purpose: RISC-V ZBB top level unit
|
2023-02-03 05:40:38 +00:00
|
|
|
//
|
2023-03-22 17:31:21 +00:00
|
|
|
// Documentation: RISC-V System on Chip Design Chapter 15
|
2023-02-03 05:40:38 +00:00
|
|
|
//
|
|
|
|
// A component of the CORE-V-WALLY configurable RISC-V project.
|
2024-01-29 13:38:11 +00:00
|
|
|
// https://github.com/openhwgroup/cvw
|
2023-02-03 05:40:38 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
|
|
|
//
|
|
|
|
// Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
|
|
|
// except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
|
|
|
// may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://solderpad.org/licenses/SHL-2.1/
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, any work distributed under the
|
|
|
|
// License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
|
|
// either express or implied. See the License for the specific language governing permissions
|
|
|
|
// and limitations under the License.
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
module zbb #(parameter WIDTH=32) (
|
2023-03-05 22:26:24 +00:00
|
|
|
input logic [WIDTH-1:0] A, RevA, B, // Operands
|
2023-02-05 16:50:13 +00:00
|
|
|
input logic W64, // Indicates word operation
|
2023-04-03 04:14:31 +00:00
|
|
|
input logic LT, // lt flag
|
|
|
|
input logic LTU, // ltu flag
|
|
|
|
input logic BUnsigned, // max/min (signed) flag
|
2023-03-28 18:40:19 +00:00
|
|
|
input logic [2:0] ZBBSelect, // ZBB Result select signal
|
2023-02-05 16:50:13 +00:00
|
|
|
output logic [WIDTH-1:0] ZBBResult); // ZBB result
|
2023-04-03 04:14:31 +00:00
|
|
|
|
|
|
|
logic lt; // lt given signed/unsigned
|
2023-03-06 13:52:08 +00:00
|
|
|
logic [WIDTH-1:0] CntResult; // count result
|
2023-03-28 18:40:19 +00:00
|
|
|
logic [WIDTH-1:0] MinMaxResult; // min, max result
|
2023-03-06 13:52:08 +00:00
|
|
|
logic [WIDTH-1:0] ByteResult; // byte results
|
|
|
|
logic [WIDTH-1:0] ExtResult; // sign/zero extend results
|
2023-03-05 22:26:24 +00:00
|
|
|
|
2023-04-03 04:14:31 +00:00
|
|
|
mux2 #(1) ltmux(LT, LTU, BUnsigned , lt);
|
2023-03-27 03:06:55 +00:00
|
|
|
cnt #(WIDTH) cnt(.A, .RevA, .B(B[1:0]), .W64, .CntResult);
|
2023-04-27 21:10:46 +00:00
|
|
|
byteop #(WIDTH) bu(.A, .ByteSelect(B[0]), .ByteResult);
|
2023-03-22 17:25:54 +00:00
|
|
|
ext #(WIDTH) ext(.A, .ExtSelect({~B[2], {B[2] & B[0]}}), .ExtResult);
|
2023-02-03 05:40:38 +00:00
|
|
|
|
2023-03-22 17:25:54 +00:00
|
|
|
// ZBBSelect[2] differentiates between min(u) vs max(u) instruction
|
2023-04-03 04:14:31 +00:00
|
|
|
mux2 #(WIDTH) minmaxmux(B, A, ZBBSelect[2]^lt, MinMaxResult);
|
2023-02-19 06:12:55 +00:00
|
|
|
|
2023-03-05 22:57:30 +00:00
|
|
|
// ZBB Result select mux
|
2023-03-22 17:25:54 +00:00
|
|
|
mux4 #(WIDTH) zbbresultmux(CntResult, ExtResult, ByteResult, MinMaxResult, ZBBSelect[1:0], ZBBResult);
|
2023-06-15 18:09:07 +00:00
|
|
|
endmodule
|