2019-06-04 22:57:48 +08:00
// SPDX-License-Identifier: Apache-2.0
// Copyright 2019 Western Digital Corporation or its affiliates.
2020-02-20 10:25:04 +08:00
//
2019-06-04 22:57:48 +08:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2020-02-20 10:25:04 +08:00
//
2019-06-04 22:57:48 +08:00
// http://www.apache.org/licenses/LICENSE-2.0
2020-02-20 10:25:04 +08:00
//
2019-06-04 22:57:48 +08:00
// Unless required by applicable law or agreed to in writing, software
// 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.
//********************************************************************************
// $Id$
//
2020-02-20 10:25:04 +08:00
//
// Owner:
2019-06-04 22:57:48 +08:00
// Function: DEC Trigger Logic
// Comments:
//
//********************************************************************************
2020-02-20 10:25:04 +08:00
module dec_trigger
2019-06-04 22:57:48 +08:00
import swerv_types::* ;
(
2019-08-14 03:48:48 +08:00
input logic clk ,
input logic rst_l ,
2019-06-04 22:57:48 +08:00
input trigger_pkt_t [ 3 : 0 ] trigger_pkt_any , // Packet from tlu. 'select':0-pc,1-Opcode 'Execute' needs to be set for dec triggers to fire. 'match'-1 do mask, 0: full match
input logic [ 31 : 1 ] dec_i0_pc_d , // i0 pc
2020-02-20 10:25:04 +08:00
input logic [ 31 : 1 ] dec_i1_pc_d , // i1 pc
2019-06-04 22:57:48 +08:00
output logic [ 3 : 0 ] dec_i0_trigger_match_d ,
2020-02-20 10:25:04 +08:00
output logic [ 3 : 0 ] dec_i1_trigger_match_d
2019-06-04 22:57:48 +08:00
) ;
logic [ 3 : 0 ] [ 31 : 0 ] dec_i0_match_data ;
logic [ 3 : 0 ] dec_i0_trigger_data_match ;
logic [ 3 : 0 ] [ 31 : 0 ] dec_i1_match_data ;
logic [ 3 : 0 ] dec_i1_trigger_data_match ;
2020-02-20 10:25:04 +08:00
2019-06-04 22:57:48 +08:00
for ( genvar i = 0 ; i < 4 ; i + + ) begin
assign dec_i0_match_data [ i ] [ 31 : 0 ] = ( { 32 { ~ trigger_pkt_any [ i ] . select & trigger_pkt_any [ i ] . execute } } & { dec_i0_pc_d [ 31 : 1 ] , trigger_pkt_any [ i ] . tdata2 [ 0 ] } ) ; // select=0; do a PC match
assign dec_i1_match_data [ i ] [ 31 : 0 ] = ( { 32 { ~ trigger_pkt_any [ i ] . select & trigger_pkt_any [ i ] . execute } } & { dec_i1_pc_d [ 31 : 1 ] , trigger_pkt_any [ i ] . tdata2 [ 0 ] } ) ; // select=0; do a PC match
2020-02-20 10:25:04 +08:00
rvmaskandmatch trigger_i0_match ( . mask ( trigger_pkt_any [ i ] . tdata2 [ 31 : 0 ] ) , . data ( dec_i0_match_data [ i ] [ 31 : 0 ] ) , . masken ( trigger_pkt_any [ i ] . match ) , . match ( dec_i0_trigger_data_match [ i ] ) ) ;
2019-06-04 22:57:48 +08:00
rvmaskandmatch trigger_i1_match ( . mask ( trigger_pkt_any [ i ] . tdata2 [ 31 : 0 ] ) , . data ( dec_i1_match_data [ i ] [ 31 : 0 ] ) , . masken ( trigger_pkt_any [ i ] . match ) , . match ( dec_i1_trigger_data_match [ i ] ) ) ;
assign dec_i0_trigger_match_d [ i ] = trigger_pkt_any [ i ] . execute & trigger_pkt_any [ i ] . m & dec_i0_trigger_data_match [ i ] ;
assign dec_i1_trigger_match_d [ i ] = trigger_pkt_any [ i ] . execute & trigger_pkt_any [ i ] . m & dec_i1_trigger_data_match [ i ] ;
end
endmodule // dec_trigger