Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / design / sys / iop / dmu / rtl / dmu_mmu_csr_csrpipe_1.v
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: dmu_mmu_csr_csrpipe_1.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_mmu_csr_csrpipe_1
36 (
37 clk,
38 rst_l,
39 reg_in,
40 reg_out,
41 data0,
42 sel0,
43 out
44 );
45
46//====================================================================
47// Polarity declarations
48//====================================================================
49input clk; // Clock signal
50input rst_l; // Reset signal
51input reg_in; // Set to constant. 0: sel* non-reg 1: sel* reg
52input reg_out; // Set to constant. 0: out non-reg 1: out registered
53input [`FIRE_CSRBUS_DATA_WIDTH-1:0] data0; // Read data
54input sel0; // Set to 1 if reg_in==0
55output [`FIRE_CSRBUS_DATA_WIDTH-1:0] out; // Read data out
56
57//====================================================================
58// Type declarations
59//====================================================================
60wire clk; // Clock signal
61wire rst_l; // Reset signal
62wire reg_in; // Set to constant. 0: sel* non-reg 1: sel* reg
63wire reg_out; // Set to constant. 0: out non-reg 1: out registered
64wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] data0; // Read data
65wire sel0; // Set to 1 if reg_in==0
66wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] out; // Read data out
67
68//====================================================================
69// Local variables
70//====================================================================
71reg [`FIRE_CSRBUS_DATA_WIDTH-1:0] out_p1;
72reg sel0_p1;
73
74//====================================================================
75// Logic
76//====================================================================
77//select required ?
78wire sel0_int=reg_in?sel0_p1:sel0;
79
80//generate AND/OR
81wire [`FIRE_CSRBUS_DATA_WIDTH-1:0] out_d =
82 {`FIRE_CSRBUS_DATA_WIDTH { sel0_int } } & data0;
83
84//reg out or combo
85assign out=reg_out?out_p1:out_d;
86
87//pipe control/data
88always @(posedge clk)
89 begin
90 if(~rst_l)
91 begin
92 sel0_p1<=1'b0;
93 out_p1<=`FIRE_CSRBUS_DATA_WIDTH'b0;
94 end
95 else
96 begin
97 sel0_p1<=sel0;
98 out_p1<=out_d;
99 end
100 end
101
102endmodule // dmu_mmu_csr_csrpipe_1