Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / design / sys / iop / niu / rtl / niu_rdmc_rr_arbiter.v
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: niu_rdmc_rr_arbiter.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 ============================================
35/*************************************************************************
36 *
37 * File Name : niu_rdmc_rr_arbiter.v
38 * Author Name : Jeanne Cai
39 * Description :
40 * Date Created : 10/29/2002
41 *
42 * Copyright (c) 2002, Sun Microsystems, Inc.
43 * Sun Proprietary and Confidential
44 *
45 * Notes:
46 *
47 *************************************************************************/
48
49module niu_rdmc_rr_arbiter ( req,
50 token,
51 gnt
52 );
53
54input[3:0] req;
55input[3:0] token;
56output[3:0] gnt;
57
58reg[3:0] gnt;
59
60always @ (req or token)
61begin
62 if (token[0])
63 begin
64 gnt[0] = req[0];
65 gnt[1] = !req[0] & req[1];
66 gnt[2] = !req[0] & !req[1] & req[2];
67 gnt[3] = !req[0] & !req[1] & !req[2] & req[3];
68 end
69 else if (token[1])
70 begin
71 gnt[1] = req[1];
72 gnt[2] = !req[1] & req[2];
73 gnt[3] = !req[1] & !req[2] & req[3];
74 gnt[0] = !req[1] & !req[2] & !req[3] & req[0];
75 end
76 else if (token[2])
77 begin
78 gnt[2] = req[2];
79 gnt[3] = !req[2] & req[3];
80 gnt[0] = !req[2] & !req[3] & req[0];
81 gnt[1] = !req[2] & !req[3] & !req[0] & req[1];
82 end
83 else if (token[3])
84 begin
85 gnt[3] = req[3];
86 gnt[0] = !req[3] & req[0];
87 gnt[1] = !req[3] & !req[0] & req[1];
88 gnt[2] = !req[3] & !req[0] & !req[1] & req[2];
89 end
90 else
91 begin
92 gnt[0] = req[0];
93 gnt[1] = !req[0] & req[1];
94 gnt[2] = !req[0] & !req[1] & req[2];
95 gnt[3] = !req[0] & !req[1] & !req[2] & req[3];
96 end
97end
98
99endmodule