Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / env / ilu_peu / vera / N2str / ilupeuPEUErrPEUStr.vr
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: ilupeuPEUErrPEUStr.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 ============================================
35class LpuErrPEUStr extends PEUStrBase
36 {
37 integer f_errQueue; // A mailbox for bad pkt headers
38 PEC_ERRtype f_err; // The LPU error of interest
39 bit f_errSpecified; // Was an error specified?
40
41 task new( PEUTestEnv a_env )
42 {
43 super.new( a_env );
44 f_errQueue = 0;
45 f_errSpecified = 0;
46 }
47
48 task SetErrQueue( integer a_queue )
49 {
50 f_errQueue = a_queue;
51 } /* end SetErrQueue */
52
53 function bit SetError( PEC_ERRtype a_error )
54 {
55 if ( PEC_ERR_isLPU(a_error) )
56 {
57 f_err = a_error;
58 f_errSpecified = 1;
59 SetError = 0;
60 }
61 else
62 SetError = 1;
63 } /* end SetError */
64
65 task Execute()
66 {
67 PEC_ERRtype lpuErr;
68
69 // Pick an error, if none was specified.
70 if ( f_errSpecified )
71 lpuErr = f_err;
72 else
73 {
74 lpuErr = e_ERR_none;
75 while( !PEC_ERR_isLPU(lpuErr) ) lpuErr += urandom()%10 + 1;
76 }
77
78 // Present the error to the TLU.
79 f_env.setLPUerror( lpuErr );
80 repeat(5) @(posedge CLOCK);
81
82 // Tell the error-checker about this
83 // bad-boy.
84 if ( f_errQueue != 0 )
85 {
86 mailbox_put( f_errQueue, lpuErr );
87 mailbox_put( f_errQueue, 128'bx );
88 }
89
90 } /* end Execute */
91 } /* end LpuErrPEUStr */