522 lines
26 KiB
Systemverilog
522 lines
26 KiB
Systemverilog
//********************************************************************************
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright 2019 Western Digital Corporation or its affiliates.
|
|
//
|
|
// 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
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// 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.
|
|
//********************************************************************************
|
|
|
|
//********************************************************************************
|
|
// Function: Programmable Interrupt Controller
|
|
// Comments:
|
|
//********************************************************************************
|
|
|
|
module pic_ctrl
|
|
(
|
|
|
|
input logic clk, // Core clock
|
|
input logic free_clk, // free clock
|
|
input logic active_clk, // active clock
|
|
input logic rst_l, // Reset for all flops
|
|
input logic clk_override, // Clock over-ride for gating
|
|
input logic [`RV_PIC_TOTAL_INT_PLUS1-1:0] extintsrc_req, // Interrupt requests
|
|
input logic [31:0] picm_addr, // Address of the register
|
|
input logic [31:0] picm_wr_data, // Data to be written to the register
|
|
input logic picm_wren, // Write enable to the register
|
|
input logic picm_rden, // Read enable for the register
|
|
input logic picm_mken, // Read the Mask for the register
|
|
input logic [3:0] meicurpl, // Current Priority Level
|
|
input logic [3:0] meipt, // Current Priority Threshold
|
|
|
|
output logic mexintpend, // External Inerrupt request to the core
|
|
output logic [7:0] claimid, // Claim Id of the requested interrupt
|
|
output logic [3:0] pl, // Priority level of the requested interrupt
|
|
output logic [31:0] picm_rd_data, // Read data of the register
|
|
output logic mhwakeup, // Wake-up interrupt request
|
|
input logic scan_mode // scan mode
|
|
|
|
);
|
|
`include "global.h"
|
|
|
|
localparam NUM_LEVELS = $clog2(TOTAL_INT);
|
|
localparam INTPRIORITY_BASE_ADDR = `RV_PIC_BASE_ADDR ;
|
|
localparam INTPEND_BASE_ADDR = `RV_PIC_BASE_ADDR + 32'h00001000 ;
|
|
localparam INTENABLE_BASE_ADDR = `RV_PIC_BASE_ADDR + 32'h00002000 ;
|
|
localparam EXT_INTR_PIC_CONFIG = `RV_PIC_BASE_ADDR + 32'h00003000 ;
|
|
localparam EXT_INTR_GW_CONFIG = `RV_PIC_BASE_ADDR + 32'h00004000 ;
|
|
localparam EXT_INTR_GW_CLEAR = `RV_PIC_BASE_ADDR + 32'h00005000 ;
|
|
|
|
|
|
localparam INTPEND_SIZE = (TOTAL_INT < 32) ? 32 :
|
|
(TOTAL_INT < 64) ? 64 :
|
|
(TOTAL_INT < 128) ? 128 :
|
|
(TOTAL_INT < 256) ? 256 :
|
|
(TOTAL_INT < 512) ? 512 : 1024 ;
|
|
|
|
localparam INT_GRPS = INTPEND_SIZE / 32 ;
|
|
localparam INTPRIORITY_BITS = 4 ;
|
|
localparam ID_BITS = 8 ;
|
|
localparam int GW_CONFIG[TOTAL_INT-1:0] = '{default:0} ;
|
|
|
|
logic addr_intpend_base_match;
|
|
logic addr_intenable_base_match;
|
|
logic addr_intpriority_base_match;
|
|
logic addr_config_pic_match ;
|
|
logic addr_config_gw_base_match ;
|
|
logic addr_clear_gw_base_match ;
|
|
logic mexintpend_in;
|
|
logic mhwakeup_in ;
|
|
logic intpend_reg_read ;
|
|
|
|
logic [31:0] picm_rd_data_in, intpend_rd_out;
|
|
logic intenable_rd_out ;
|
|
logic [INTPRIORITY_BITS-1:0] intpriority_rd_out;
|
|
logic [1:0] gw_config_rd_out;
|
|
|
|
logic [TOTAL_INT-1:0] [INTPRIORITY_BITS-1:0] intpriority_reg;
|
|
logic [TOTAL_INT-1:0] [INTPRIORITY_BITS-1:0] intpriority_reg_inv;
|
|
logic [TOTAL_INT-1:0] intpriority_reg_we;
|
|
logic [TOTAL_INT-1:0] intpriority_reg_re;
|
|
logic [TOTAL_INT-1:0] [1:0] gw_config_reg;
|
|
|
|
logic [TOTAL_INT-1:0] intenable_reg;
|
|
logic [TOTAL_INT-1:0] intenable_reg_we;
|
|
logic [TOTAL_INT-1:0] intenable_reg_re;
|
|
logic [TOTAL_INT-1:0] gw_config_reg_we;
|
|
logic [TOTAL_INT-1:0] gw_config_reg_re;
|
|
logic [TOTAL_INT-1:0] gw_clear_reg_we;
|
|
|
|
logic [INTPEND_SIZE-1:0] intpend_reg_extended;
|
|
|
|
logic [TOTAL_INT-1:0] [INTPRIORITY_BITS-1:0] intpend_w_prior_en;
|
|
logic [TOTAL_INT-1:0] [ID_BITS-1:0] intpend_id;
|
|
logic [INTPRIORITY_BITS-1:0] maxint;
|
|
logic [INTPRIORITY_BITS-1:0] selected_int_priority;
|
|
logic [INT_GRPS-1:0] [31:0] intpend_rd_part_out ;
|
|
|
|
logic config_reg;
|
|
logic intpriord;
|
|
logic config_reg_we ;
|
|
logic config_reg_re ;
|
|
logic config_reg_in ;
|
|
logic prithresh_reg_write , prithresh_reg_read;
|
|
logic intpriority_reg_read ;
|
|
logic intenable_reg_read ;
|
|
logic gw_config_reg_read ;
|
|
logic picm_wren_ff , picm_rden_ff ;
|
|
logic [31:0] picm_addr_ff;
|
|
logic [31:0] picm_wr_data_ff;
|
|
logic [3:0] mask;
|
|
logic picm_mken_ff;
|
|
logic [ID_BITS-1:0] claimid_in ;
|
|
logic [INTPRIORITY_BITS-1:0] pl_in ;
|
|
logic [INTPRIORITY_BITS-1:0] pl_in_q ;
|
|
|
|
logic [TOTAL_INT-1:0] extintsrc_req_sync;
|
|
logic [TOTAL_INT-1:0] extintsrc_req_gw;
|
|
|
|
// clkens
|
|
logic pic_addr_c1_clken;
|
|
logic pic_data_c1_clken;
|
|
logic pic_pri_c1_clken;
|
|
logic pic_int_c1_clken;
|
|
logic gw_config_c1_clken;
|
|
|
|
// clocks
|
|
logic pic_addr_c1_clk;
|
|
logic pic_data_c1_clk;
|
|
logic pic_pri_c1_clk;
|
|
logic pic_int_c1_clk;
|
|
logic gw_config_c1_clk;
|
|
|
|
// ---- Clock gating section ------
|
|
// c1 clock enables
|
|
assign pic_addr_c1_clken = picm_mken | picm_rden | picm_wren | clk_override;
|
|
assign pic_data_c1_clken = picm_wren | clk_override;
|
|
assign pic_pri_c1_clken = (addr_intpriority_base_match & (picm_wren_ff | picm_rden_ff)) | clk_override;
|
|
assign pic_int_c1_clken = (addr_intenable_base_match & (picm_wren_ff | picm_rden_ff)) | clk_override;
|
|
assign gw_config_c1_clken = (addr_config_gw_base_match & (picm_wren_ff | picm_rden_ff)) | clk_override;
|
|
|
|
// C1 - 1 clock pulse for data
|
|
rvclkhdr pic_addr_c1_cgc ( .en(pic_addr_c1_clken), .l1clk(pic_addr_c1_clk), .* );
|
|
rvclkhdr pic_data_c1_cgc ( .en(pic_data_c1_clken), .l1clk(pic_data_c1_clk), .* );
|
|
rvclkhdr pic_pri_c1_cgc ( .en(pic_pri_c1_clken), .l1clk(pic_pri_c1_clk), .* );
|
|
rvclkhdr pic_int_c1_cgc ( .en(pic_int_c1_clken), .l1clk(pic_int_c1_clk), .* );
|
|
rvclkhdr gw_config_c1_cgc ( .en(gw_config_c1_clken), .l1clk(gw_config_c1_clk), .* );
|
|
|
|
// ------ end clock gating section ------------------------
|
|
|
|
assign addr_intpend_base_match = (picm_addr_ff[31:6] == INTPEND_BASE_ADDR[31:6]) ;
|
|
assign addr_intenable_base_match = (picm_addr_ff[31:NUM_LEVELS+2] == INTENABLE_BASE_ADDR[31:NUM_LEVELS+2]) ;
|
|
assign addr_intpriority_base_match = (picm_addr_ff[31:NUM_LEVELS+2] == INTPRIORITY_BASE_ADDR[31:NUM_LEVELS+2]) ;
|
|
assign addr_config_pic_match = (picm_addr_ff[31:0] == EXT_INTR_PIC_CONFIG[31:0]) ;
|
|
assign addr_config_gw_base_match = (picm_addr_ff[31:NUM_LEVELS+2] == EXT_INTR_GW_CONFIG[31:NUM_LEVELS+2]) ;
|
|
assign addr_clear_gw_base_match = (picm_addr_ff[31:NUM_LEVELS+2] == EXT_INTR_GW_CLEAR[31:NUM_LEVELS+2]) ;
|
|
|
|
|
|
|
|
rvdff #(32) picm_add_flop (.*, .din (picm_addr), .dout(picm_addr_ff), .clk(pic_addr_c1_clk));
|
|
rvdff #(1) picm_wre_flop (.*, .din (picm_wren), .dout(picm_wren_ff), .clk(active_clk));
|
|
rvdff #(1) picm_rde_flop (.*, .din (picm_rden), .dout(picm_rden_ff), .clk(active_clk));
|
|
rvdff #(1) picm_mke_flop (.*, .din (picm_mken), .dout(picm_mken_ff), .clk(active_clk));
|
|
rvdff #(32) picm_dat_flop (.*, .din (picm_wr_data[31:0]), .dout(picm_wr_data_ff[31:0]), .clk(pic_data_c1_clk));
|
|
|
|
rvsyncss #(TOTAL_INT-1) sync_inst
|
|
(
|
|
.clk (free_clk),
|
|
.dout(extintsrc_req_sync[TOTAL_INT-1:1]),
|
|
.din (extintsrc_req[TOTAL_INT-1:1]),
|
|
.*) ;
|
|
|
|
assign extintsrc_req_sync[0] = extintsrc_req[0];
|
|
|
|
genvar i ;
|
|
for (i=0; i<TOTAL_INT ; i++) begin : SETREG
|
|
|
|
if (i > 0 ) begin : NON_ZERO_INT
|
|
assign intpriority_reg_we[i] = addr_intpriority_base_match & (picm_addr_ff[NUM_LEVELS+1:2] == i) & picm_wren_ff;
|
|
assign intpriority_reg_re[i] = addr_intpriority_base_match & (picm_addr_ff[NUM_LEVELS+1:2] == i) & picm_rden_ff;
|
|
|
|
assign intenable_reg_we[i] = addr_intenable_base_match & (picm_addr_ff[NUM_LEVELS+1:2] == i) & picm_wren_ff;
|
|
assign intenable_reg_re[i] = addr_intenable_base_match & (picm_addr_ff[NUM_LEVELS+1:2] == i) & picm_rden_ff;
|
|
|
|
assign gw_config_reg_we[i] = addr_config_gw_base_match & (picm_addr_ff[NUM_LEVELS+1:2] == i) & picm_wren_ff;
|
|
assign gw_config_reg_re[i] = addr_config_gw_base_match & (picm_addr_ff[NUM_LEVELS+1:2] == i) & picm_rden_ff;
|
|
|
|
assign gw_clear_reg_we[i] = addr_clear_gw_base_match & (picm_addr_ff[NUM_LEVELS+1:2] == i) & picm_wren_ff ;
|
|
|
|
rvdffs #(INTPRIORITY_BITS) intpriority_ff (.*, .en( intpriority_reg_we[i]), .din (picm_wr_data_ff[INTPRIORITY_BITS-1:0]), .dout(intpriority_reg[i]), .clk(pic_pri_c1_clk));
|
|
rvdffs #(1) intenable_ff (.*, .en( intenable_reg_we[i]), .din (picm_wr_data_ff[0]), .dout(intenable_reg[i]), .clk(pic_int_c1_clk));
|
|
|
|
|
|
// if (GW_CONFIG[i]) begin
|
|
|
|
rvdffs #(2) gw_config_ff (.*, .en( gw_config_reg_we[i]), .din (picm_wr_data_ff[1:0]), .dout(gw_config_reg[i]), .clk(gw_config_c1_clk));
|
|
configurable_gw config_gw_inst(.*, .clk(free_clk),
|
|
.extintsrc_req_sync(extintsrc_req_sync[i]) ,
|
|
.meigwctrl_polarity(gw_config_reg[i][0]) ,
|
|
.meigwctrl_type(gw_config_reg[i][1]) ,
|
|
.meigwclr(gw_clear_reg_we[i]) ,
|
|
.extintsrc_req_config(extintsrc_req_gw[i])
|
|
);
|
|
// end else begin
|
|
// assign extintsrc_req_gw[i] = extintsrc_req_sync[i] ;
|
|
// assign gw_config_reg[i] = '0 ;
|
|
// end
|
|
|
|
|
|
end else begin : INT_ZERO
|
|
assign intpriority_reg_we[i] = 1'b0 ;
|
|
assign intpriority_reg_re[i] = 1'b0 ;
|
|
assign intenable_reg_we[i] = 1'b0 ;
|
|
assign intenable_reg_re[i] = 1'b0 ;
|
|
|
|
assign gw_config_reg_we[i] = 1'b0 ;
|
|
assign gw_config_reg_re[i] = 1'b0 ;
|
|
assign gw_clear_reg_we[i] = 1'b0 ;
|
|
|
|
assign gw_config_reg[i] = '0 ;
|
|
|
|
assign intpriority_reg[i] = {INTPRIORITY_BITS{1'b0}} ;
|
|
assign intenable_reg[i] = 1'b0 ;
|
|
assign extintsrc_req_gw[i] = 1'b0 ;
|
|
end
|
|
|
|
|
|
assign intpriority_reg_inv[i] = intpriord ? ~intpriority_reg[i] : intpriority_reg[i] ;
|
|
|
|
assign intpend_w_prior_en[i] = {INTPRIORITY_BITS{(extintsrc_req_gw[i] & intenable_reg[i])}} & intpriority_reg_inv[i] ;
|
|
assign intpend_id[i] = i ;
|
|
end
|
|
|
|
|
|
assign pl_in[INTPRIORITY_BITS-1:0] = selected_int_priority[INTPRIORITY_BITS-1:0] ;
|
|
|
|
`ifdef RV_PIC_2CYCLE
|
|
logic [NUM_LEVELS/2:0] [TOTAL_INT+2:0] [INTPRIORITY_BITS-1:0] level_intpend_w_prior_en;
|
|
logic [NUM_LEVELS/2:0] [TOTAL_INT+2:0] [ID_BITS-1:0] level_intpend_id;
|
|
logic [NUM_LEVELS:NUM_LEVELS/2] [(TOTAL_INT/2**(NUM_LEVELS/2))+1:0] [INTPRIORITY_BITS-1:0] levelx_intpend_w_prior_en;
|
|
logic [NUM_LEVELS:NUM_LEVELS/2] [(TOTAL_INT/2**(NUM_LEVELS/2))+1:0] [ID_BITS-1:0] levelx_intpend_id;
|
|
|
|
assign level_intpend_w_prior_en[0][TOTAL_INT+2:0] = {4'b0,4'b0,4'b0,intpend_w_prior_en[TOTAL_INT-1:0]} ;
|
|
assign level_intpend_id[0][TOTAL_INT+2:0] = {8'b0,8'b0,8'b0,intpend_id[TOTAL_INT-1:0]} ;
|
|
|
|
logic [(TOTAL_INT/2**(NUM_LEVELS/2)):0] [INTPRIORITY_BITS-1:0] l2_intpend_w_prior_en_ff;
|
|
logic [(TOTAL_INT/2**(NUM_LEVELS/2)):0] [ID_BITS-1:0] l2_intpend_id_ff;
|
|
|
|
assign levelx_intpend_w_prior_en[NUM_LEVELS/2][(TOTAL_INT/2**(NUM_LEVELS/2))+1:0] = {{1*INTPRIORITY_BITS{1'b0}},l2_intpend_w_prior_en_ff[(TOTAL_INT/2**(NUM_LEVELS/2)):0]} ;
|
|
assign levelx_intpend_id[NUM_LEVELS/2][(TOTAL_INT/2**(NUM_LEVELS/2))+1:0] = {{1*ID_BITS{1'b1}},l2_intpend_id_ff[(TOTAL_INT/2**(NUM_LEVELS/2)):0]} ;
|
|
|
|
`else
|
|
logic [NUM_LEVELS:0] [TOTAL_INT+1:0] [INTPRIORITY_BITS-1:0] level_intpend_w_prior_en;
|
|
logic [NUM_LEVELS:0] [TOTAL_INT+1:0] [ID_BITS-1:0] level_intpend_id;
|
|
|
|
assign level_intpend_w_prior_en[0][TOTAL_INT+1:0] = {{2*INTPRIORITY_BITS{1'b0}},intpend_w_prior_en[TOTAL_INT-1:0]} ;
|
|
assign level_intpend_id[0][TOTAL_INT+1:0] = {{2*ID_BITS{1'b1}},intpend_id[TOTAL_INT-1:0]} ;
|
|
|
|
`endif
|
|
|
|
genvar l, m , j, k;
|
|
|
|
// `ifdef VERILATOR
|
|
`include "pic_ctrl_verilator_unroll.sv"
|
|
// `else
|
|
// `ifdef RV_PIC_2CYCLE
|
|
// /// Do the prioritization of the interrupts here ////////////
|
|
// for (l=0; l<NUM_LEVELS/2 ; l++) begin : TOP_LEVEL
|
|
// for (m=0; m<=(TOTAL_INT)/(2**(l+1)) ; m++) begin : COMPARE
|
|
// if ( m == (TOTAL_INT)/(2**(l+1))) begin
|
|
// assign level_intpend_w_prior_en[l+1][m+1] = '0 ;
|
|
// assign level_intpend_id[l+1][m+1] = '0 ;
|
|
// end
|
|
// cmp_and_mux #(.ID_BITS(ID_BITS),
|
|
// .INTPRIORITY_BITS(INTPRIORITY_BITS)) cmp_l1 (
|
|
// .a_id(level_intpend_id[l][2*m]),
|
|
// .a_priority(level_intpend_w_prior_en[l][2*m]),
|
|
// .b_id(level_intpend_id[l][2*m+1]),
|
|
// .b_priority(level_intpend_w_prior_en[l][2*m+1]),
|
|
// .out_id(level_intpend_id[l+1][m]),
|
|
// .out_priority(level_intpend_w_prior_en[l+1][m])) ;
|
|
//
|
|
// end
|
|
// end
|
|
//
|
|
// for (i=0; i<=TOTAL_INT/2**(NUM_LEVELS/2) ; i++) begin : MIDDLE_FLOPS
|
|
// rvdff #(INTPRIORITY_BITS) level2_intpend_prior_reg (.*, .din (level_intpend_w_prior_en[NUM_LEVELS/2][i]), .dout(l2_intpend_w_prior_en_ff[i]), .clk(free_clk));
|
|
// rvdff #(ID_BITS) level2_intpend_id_reg (.*, .din (level_intpend_id[NUM_LEVELS/2][i]), .dout(l2_intpend_id_ff[i]), .clk(free_clk));
|
|
// end
|
|
//
|
|
// for (j=NUM_LEVELS/2; j<NUM_LEVELS ; j++) begin : BOT_LEVELS
|
|
// for (k=0; k<=(TOTAL_INT)/(2**(j+1)) ; k++) begin : COMPARE
|
|
// if ( k == (TOTAL_INT)/(2**(j+1))) begin
|
|
// assign levelx_intpend_w_prior_en[j+1][k+1] = '0 ;
|
|
// assign levelx_intpend_id[j+1][k+1] = '0 ;
|
|
// end
|
|
// cmp_and_mux #(.ID_BITS(ID_BITS),
|
|
// .INTPRIORITY_BITS(INTPRIORITY_BITS))
|
|
// cmp_l1 (
|
|
// .a_id(levelx_intpend_id[j][2*k]),
|
|
// .a_priority(levelx_intpend_w_prior_en[j][2*k]),
|
|
// .b_id(levelx_intpend_id[j][2*k+1]),
|
|
// .b_priority(levelx_intpend_w_prior_en[j][2*k+1]),
|
|
// .out_id(levelx_intpend_id[j+1][k]),
|
|
// .out_priority(levelx_intpend_w_prior_en[j+1][k])) ;
|
|
// end
|
|
// end
|
|
// assign claimid_in[ID_BITS-1:0] = levelx_intpend_id[NUM_LEVELS][0] ; // This is the last level output
|
|
// assign selected_int_priority[INTPRIORITY_BITS-1:0] = levelx_intpend_w_prior_en[NUM_LEVELS][0] ;
|
|
//
|
|
// `else
|
|
//
|
|
// /// Do the prioritization of the interrupts here ////////////
|
|
// // genvar l, m , j, k; already declared outside ifdef
|
|
// for (l=0; l<NUM_LEVELS ; l++) begin : LEVEL
|
|
// for (m=0; m<=(TOTAL_INT)/(2**(l+1)) ; m++) begin : COMPARE
|
|
// if ( m == (TOTAL_INT)/(2**(l+1))) begin
|
|
// assign level_intpend_w_prior_en[l+1][m+1] = '0 ;
|
|
// assign level_intpend_id[l+1][m+1] = '0 ;
|
|
// end
|
|
// cmp_and_mux #(.ID_BITS(ID_BITS),
|
|
// .INTPRIORITY_BITS(INTPRIORITY_BITS)) cmp_l1 (
|
|
// .a_id(level_intpend_id[l][2*m]),
|
|
// .a_priority(level_intpend_w_prior_en[l][2*m]),
|
|
// .b_id(level_intpend_id[l][2*m+1]),
|
|
// .b_priority(level_intpend_w_prior_en[l][2*m+1]),
|
|
// .out_id(level_intpend_id[l+1][m]),
|
|
// .out_priority(level_intpend_w_prior_en[l+1][m])) ;
|
|
//
|
|
// end
|
|
// end
|
|
// assign claimid_in[ID_BITS-1:0] = level_intpend_id[NUM_LEVELS][0] ; // This is the last level output
|
|
// assign selected_int_priority[INTPRIORITY_BITS-1:0] = level_intpend_w_prior_en[NUM_LEVELS][0] ;
|
|
//
|
|
// `endif
|
|
// `endif
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
// Config Reg`
|
|
///////////////////////////////////////////////////////////////////////
|
|
assign config_reg_we = addr_config_pic_match & picm_wren_ff;
|
|
assign config_reg_re = addr_config_pic_match & picm_rden_ff;
|
|
|
|
assign config_reg_in = picm_wr_data_ff[0] ; //
|
|
rvdffs #(1) config_reg_ff (.*, .clk(free_clk), .en(config_reg_we), .din (config_reg_in), .dout(config_reg));
|
|
|
|
assign intpriord = config_reg ;
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
// Thresh-hold Reg`
|
|
///////////////////////////////////////////////////////////////////////
|
|
//assign prithresh_reg_write = addr_prithresh_match & picm_wren_ff;
|
|
//assign prithresh_reg_read = addr_prithresh_match & picm_rden_ff;
|
|
//
|
|
//assign prithresh_reg_in[INTPRIORITY_BITS-1:0] = picm_wr_data_ff[INTPRIORITY_BITS-1:0] ; // Thresh-hold priority.
|
|
//rvdffs #(INTPRIORITY_BITS) prithresh_reg_ff (.*, .en(prithresh_reg_write), .din (prithresh_reg_in[INTPRIORITY_BITS-1:0]), .dout(prithresh_reg[INTPRIORITY_BITS-1:0]));
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Send the interrupt to the core if it is above the thresh-hold
|
|
//////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////
|
|
/// ClaimId Reg and Corresponding PL
|
|
///////////////////////////////////////////////////////////
|
|
// logic atleast_one_int_enabled_in,atleast_one_int_enabled ;
|
|
// logic mexintpend_unq ;
|
|
// logic mhwakeup_unq ;
|
|
//
|
|
assign pl_in_q[INTPRIORITY_BITS-1:0] = intpriord ? ~pl_in : pl_in ;
|
|
rvdff #(ID_BITS) claimid_ff (.*, .din (claimid_in[ID_BITS-1:00]), .dout(claimid[ID_BITS-1:00]), .clk(free_clk));
|
|
rvdff #(INTPRIORITY_BITS) pl_ff (.*, .din (pl_in_q[INTPRIORITY_BITS-1:0]), .dout(pl[INTPRIORITY_BITS-1:0]), .clk(free_clk));
|
|
|
|
logic [INTPRIORITY_BITS-1:0] meipt_inv , meicurpl_inv ;
|
|
assign meipt_inv[INTPRIORITY_BITS-1:0] = intpriord ? ~meipt[INTPRIORITY_BITS-1:0] : meipt[INTPRIORITY_BITS-1:0] ;
|
|
assign meicurpl_inv[INTPRIORITY_BITS-1:0] = intpriord ? ~meicurpl[INTPRIORITY_BITS-1:0] : meicurpl[INTPRIORITY_BITS-1:0] ;
|
|
assign mexintpend_in = (( selected_int_priority[INTPRIORITY_BITS-1:0] > meipt_inv[INTPRIORITY_BITS-1:0]) &
|
|
( selected_int_priority[INTPRIORITY_BITS-1:0] > meicurpl_inv[INTPRIORITY_BITS-1:0]) );
|
|
rvdff #(1) mexintpend_ff (.*, .clk(free_clk), .din (mexintpend_in), .dout(mexintpend));
|
|
|
|
assign maxint[INTPRIORITY_BITS-1:0] = intpriord ? 0 : 15 ;
|
|
assign mhwakeup_in = ( pl_in_q[INTPRIORITY_BITS-1:0] == maxint) ;
|
|
rvdff #(1) wake_up_ff (.*, .clk(free_clk), .din (mhwakeup_in), .dout(mhwakeup));
|
|
|
|
|
|
// assign atleast_one_int_enabled_in = |intenable_reg[TOTAL_INT-1:0] ;
|
|
// rvdff #(1) one_int_en_ff (.*, .din (atleast_one_int_enabled_in), .dout(atleast_one_int_enabled));
|
|
//
|
|
// assign mexintpend = mexintpend_unq & atleast_one_int_enabled ;
|
|
// assign mhwakeup = mhwakeup_unq & atleast_one_int_enabled ;
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Reads of register.
|
|
// 1- intpending
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
assign intpend_reg_read = addr_intpend_base_match & picm_rden_ff ;
|
|
assign intpriority_reg_read = addr_intpriority_base_match & picm_rden_ff;
|
|
assign intenable_reg_read = addr_intenable_base_match & picm_rden_ff;
|
|
assign gw_config_reg_read = addr_config_gw_base_match & picm_rden_ff;
|
|
|
|
assign intpend_reg_extended[INTPEND_SIZE-1:0] = {{INTPEND_SIZE-TOTAL_INT{1'b0}},extintsrc_req_gw[TOTAL_INT-1:0]} ;
|
|
|
|
for (i=0; i<(INT_GRPS); i++) begin
|
|
assign intpend_rd_part_out[i] = (({32{intpend_reg_read & picm_addr_ff[5:2] == i}}) & intpend_reg_extended[((32*i)+31):(32*i)]) ;
|
|
end
|
|
|
|
always_comb begin : INTPEND_RD
|
|
intpend_rd_out = '0 ;
|
|
for (int i=0; i<INT_GRPS; i++) begin
|
|
intpend_rd_out |= intpend_rd_part_out[i] ;
|
|
end
|
|
end
|
|
|
|
always_comb begin : INTEN_RD
|
|
intenable_rd_out = '0 ;
|
|
intpriority_rd_out = '0 ;
|
|
gw_config_rd_out = '0 ;
|
|
for (int i=0; i<TOTAL_INT; i++) begin
|
|
if (intenable_reg_re[i]) begin
|
|
intenable_rd_out = intenable_reg[i] ;
|
|
end
|
|
if (intpriority_reg_re[i]) begin
|
|
intpriority_rd_out = intpriority_reg[i] ;
|
|
end
|
|
if (gw_config_reg_re[i]) begin
|
|
gw_config_rd_out = gw_config_reg[i] ;
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
assign picm_rd_data_in[31:0] = ({32{intpend_reg_read }} & intpend_rd_out ) |
|
|
({32{intpriority_reg_read }} & {{32-INTPRIORITY_BITS{1'b0}}, intpriority_rd_out } ) |
|
|
({32{intenable_reg_read }} & {31'b0 , intenable_rd_out } ) |
|
|
({32{gw_config_reg_read }} & {30'b0 , gw_config_rd_out } ) |
|
|
({32{config_reg_re }} & {31'b0 , config_reg } ) |
|
|
({32{picm_mken_ff & mask[3]}} & {30'b0 , 2'b11 } ) |
|
|
({32{picm_mken_ff & mask[2]}} & {31'b0 , 1'b1 } ) |
|
|
({32{picm_mken_ff & mask[1]}} & {28'b0 , 4'b1111 } ) |
|
|
({32{picm_mken_ff & mask[0]}} & 32'b0 ) ;
|
|
|
|
|
|
assign picm_rd_data[31:0] = picm_rd_data_in[31:0] ;
|
|
|
|
logic [14:0] address;
|
|
|
|
assign address[14:0] = picm_addr_ff[14:0];
|
|
|
|
`include "pic_map_auto.h"
|
|
|
|
endmodule
|
|
|
|
|
|
module cmp_and_mux #(parameter ID_BITS=8,
|
|
INTPRIORITY_BITS = 4)
|
|
(
|
|
input logic [ID_BITS-1:0] a_id,
|
|
input logic [INTPRIORITY_BITS-1:0] a_priority,
|
|
|
|
input logic [ID_BITS-1:0] b_id,
|
|
input logic [INTPRIORITY_BITS-1:0] b_priority,
|
|
|
|
output logic [ID_BITS-1:0] out_id,
|
|
output logic [INTPRIORITY_BITS-1:0] out_priority
|
|
|
|
);
|
|
|
|
logic a_is_lt_b ;
|
|
|
|
assign a_is_lt_b = ( a_priority[INTPRIORITY_BITS-1:0] < b_priority[INTPRIORITY_BITS-1:0] ) ;
|
|
// assign a_is_eq_b = ( a_priority[INTPRIORITY_BITS-1:0] == b_priority[INTPRIORITY_BITS-1:0]) ;
|
|
|
|
assign out_id[ID_BITS-1:0] = a_is_lt_b ? b_id[ID_BITS-1:0] :
|
|
a_id[ID_BITS-1:0] ;
|
|
assign out_priority[INTPRIORITY_BITS-1:0] = a_is_lt_b ? b_priority[INTPRIORITY_BITS-1:0] :
|
|
a_priority[INTPRIORITY_BITS-1:0] ;
|
|
endmodule // cmp_and_mux
|
|
|
|
|
|
module configurable_gw (
|
|
input logic clk,
|
|
input logic rst_l,
|
|
|
|
input logic extintsrc_req_sync ,
|
|
input logic meigwctrl_polarity ,
|
|
input logic meigwctrl_type ,
|
|
input logic meigwclr ,
|
|
|
|
output logic extintsrc_req_config
|
|
);
|
|
|
|
|
|
logic gw_int_pending_in , gw_int_pending ;
|
|
|
|
assign gw_int_pending_in = (extintsrc_req_sync ^ meigwctrl_polarity) | (gw_int_pending & ~meigwclr) ;
|
|
rvdff #(1) int_pend_ff (.*, .clk(clk), .din (gw_int_pending_in), .dout(gw_int_pending));
|
|
|
|
assign extintsrc_req_config = meigwctrl_type ? ((extintsrc_req_sync ^ meigwctrl_polarity) | gw_int_pending) : (extintsrc_req_sync ^ meigwctrl_polarity) ;
|
|
|
|
endmodule // configurable_gw
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|