Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / env / common / coverage / siu / siu_l2intf_switchbanks_sample.vrhpal
CommitLineData
86530b38
AT
1// ========== Copyright Header Begin ==========================================
2//
3// OpenSPARC T2 Processor File: siu_l2intf_switchbanks_sample.vrhpal
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#inc "siu_cov_inc.pal"
36
37#define BANK0 (8'b00000001)
38#define BANK1 (8'b00000010)
39#define BANK2 (8'b00000100)
40#define BANK3 (8'b00001000)
41#define BANK4 (8'b00010000)
42#define BANK5 (8'b00100000)
43#define BANK6 (8'b01000000)
44#define BANK7 (8'b10000000)
45#define NOP (8'b00000000)
46
47
48sample switchbanks (switch_banks)
49{
50. for ($bank1=0; $bank1<8; $bank1++)
51. {
52. for ($bank2=0; $bank2<8; $bank2++)
53. {
54 trans t_BANK${bank1}_BANK${bank2} (BANK${bank1} -> NOP -> BANK${bank2} );
55
56. }
57. }
58}
59
60#ifndef SIU_INTF_COV
61// Not for FC
62sample siu_l2_cmd_sample_this (this_l2_cmd)
63
64{
65 state DMU_RDD_ord_npt ( 6'b101001 );
66 state DMU_WR8_ord_pst ( 6'b111010 );
67 state DMU_WRI_pst_ord ( 6'b111100 );
68
69 state NIU_RDD_ord_npt ( 6'b100001 );
70 state NIU_RDD_byp_npt ( 6'b000001 );
71
72 state NIU_WRI_ord_npt ( 6'b100100 );
73 state NIU_WRI_byp_npt ( 6'b000100 );
74
75 state NIU_WRI_ord_pst ( 6'b110100 );
76 state NIU_WRI_byp_pst ( 6'b010100 );
77
78}
79
80
81cross siu_switch_bank_each_cmd_cross (switchbanks, siu_l2_cmd_sample_this);
82#endif
83