Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / design / sys / iop / dmu / rtl / dmu_imu_rds_msi_csrpipe_3.v
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: dmu_imu_rds_msi_csrpipe_3.v
4// Copyright (C) 1995-2007 Sun Microsystems, Inc. All Rights Reserved
5// 4150 Network Circle, Santa Clara, California 95054, U.S.A.
6//
7// * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8//
9// This program is free software; you can redistribute it and/or modify
10// it under the terms of the GNU General Public License as published by
11// the Free Software Foundation; version 2 of the License.
12//
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17//
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21//
22// For the avoidance of doubt, and except that if any non-GPL license
23// choice is available it will apply instead, Sun elects to use only
24// the General Public License version 2 (GPLv2) at this time for any
25// software where a choice of GPL license versions is made
26// available with the language indicating that GPLv2 or any later version
27// may be used, or where a choice of which version of the GPL is applied is
28// otherwise unspecified.
29//
30// Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
31// CA 95054 USA or visit www.sun.com if you need additional information or
32// have any questions.
33//
34// ========== Copyright Header End ============================================
35module dmu_imu_rds_msi_csrpipe_3
36 (
37 clk,
38 rst_l,
39 reg_in,
40 reg_out,
41 data0,
42 data1,
43 data2,
44 sel0,
45 sel1,
46 sel2,
47 out
48 );
49
50//====================================================================
51// Polarity declarations
52//====================================================================
53input clk; // Clock signal
54input rst_l; // Reset signal
55input reg_in; // Set to constant. 0: sel* non-reg 1: sel* reg
56input reg_out; // Set to constant. 0: out non-reg 1: out registered
57input [`FIRE_CSRBUS_DATA_WIDTH-1:0] data0; // Read data
58input [`FIRE_CSRBUS_DATA_WIDTH-1:0] data1; // Read data
59input [`FIRE_CSRBUS_DATA_WIDTH-1:0] data2; // Read data
60input sel0; // Set to 1 if reg_in==0
61input sel1; // Set to 1 if reg_in==0
62input sel2; // Set to 1 if reg_in==0
63output [`FIRE_CSRBUS_DATA_WIDTH-1:0] out; // Read data out
64
65//====================================================================
66// Type declarations
67//====================================================================
68wire clk; // Clock signal
69wire rst_l; // Reset signal
70wire reg_in; // Set to constant. 0: sel* non-reg 1: sel* reg
71wire reg_out; // Set to constant. 0: out non-reg 1: out registered
72wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] data0; // Read data
73wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] data1; // Read data
74wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] data2; // Read data
75wire sel0; // Set to 1 if reg_in==0
76wire sel1; // Set to 1 if reg_in==0
77wire sel2; // Set to 1 if reg_in==0
78wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] out; // Read data out
79
80//====================================================================
81// Local variables
82//====================================================================
83reg [`FIRE_CSRBUS_DATA_WIDTH-1:0] out_p1;
84reg sel0_p1;
85reg sel1_p1;
86reg sel2_p1;
87
88//====================================================================
89// Logic
90//====================================================================
91//select required ?
92wire sel0_int=reg_in?sel0_p1:sel0;
93wire sel1_int=reg_in?sel1_p1:sel1;
94wire sel2_int=reg_in?sel2_p1:sel2;
95
96//generate AND/OR
97wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] out_d =
98 {`FIRE_CSRBUS_DATA_WIDTH { sel0_int } } & data0 |
99 {`FIRE_CSRBUS_DATA_WIDTH { sel1_int } } & data1 |
100 {`FIRE_CSRBUS_DATA_WIDTH { sel2_int } } & data2;
101
102//reg out or combo
103assign out=reg_out?out_p1:out_d;
104
105//pipe control/data
106always @(posedge clk)
107 begin
108 if(~rst_l)
109 begin
110 sel0_p1<=1'b0;
111 sel1_p1<=1'b0;
112 sel2_p1<=1'b0;
113 out_p1<=`FIRE_CSRBUS_DATA_WIDTH'b0;
114 end
115 else
116 begin
117 sel0_p1<=sel0;
118 sel1_p1<=sel1;
119 sel2_p1<=sel2;
120 out_p1<=out_d;
121 end
122 end
123
124endmodule // dmu_imu_rds_msi_csrpipe_3