Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / env / niu / txc_sat / vera / niu_txcbmgr.vr
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: niu_txcbmgr.vr
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#include <vera_defines.vrh>
36#include "niu_cbclass.vrh"
37
38
39class CcbTxIdMgr {
40
41 integer max_cbs;
42 integer startSemId;
43 integer good_packetactive_cbs;
44 integer GoodsemIdTab[];
45
46 task new( (integer i =0 )) {
47 integer j;
48 max_cbs = i;
49
50 good_packetactive_cbs = 0;
51 for( j=0;j<max_cbs; j ++) {
52 GoodsemIdTab[j] = 0;
53 }
54
55 startSemId = 0;
56 }
57 function integer isAvailable() ;
58 task releaseId(integer Id);
59 function integer getTransId();
60
61}
62function integer CcbTxIdMgr::isAvailable() {
63
64 if( ( good_packetactive_cbs ) == max_cbs)
65 isAvailable = 0;
66 else isAvailable = ( max_cbs - good_packetactive_cbs);
67 printf(" CcbTxIdMgr::isAvailable - %d \n",isAvailable);
68}
69
70function integer CcbTxIdMgr::getTransId() {
71
72integer i;
73integer id;
74integer done;
75 i = 0;
76 done = 0;
77 id = 0;
78 while( (i<max_cbs) & (done==0)) {
79 // printf(" in getgoodpktSemId i = %d , GoodsemIdTab - %d \n",i,GoodsemIdTab[i ]);
80 if(GoodsemIdTab[i ] ==0) { // ie free
81 getTransId = startSemId + i;
82 id = startSemId + i;
83 good_packetactive_cbs++;
84 GoodsemIdTab[i ] = 1; // Used
85 done = 1;
86 }
87 i++;
88 }
89 // error
90 if((i== max_cbs) & (done==0)) {
91 printf(" No more SemIds available i= %d !! ERROR \n",i);
92 getTransId = -1;
93 }
94
95}
96
97task CcbTxIdMgr::releaseId(integer Id){
98
99 integer i;
100 i = Id - startSemId ;
101 printf("CcbTxIdMgr:: Releasing SemId - %d \n",Id);
102 GoodsemIdTab[i] = 0;
103 good_packetactive_cbs--;
104
105}
106