Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / diag / assembly / arch / prm / cmp / ncu_sernum_coreavail_bankavail_wptect.s
CommitLineData
86530b38
AT
1/*
2* ========== Copyright Header Begin ==========================================
3*
4* OpenSPARC T2 Processor File: ncu_sernum_coreavail_bankavail_wptect.s
5* Copyright (C) 1995-2007 Sun Microsystems, Inc. All Rights Reserved
6* 4150 Network Circle, Santa Clara, California 95054, U.S.A.
7*
8* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9*
10* This program is free software; you can redistribute it and/or modify
11* it under the terms of the GNU General Public License as published by
12* the Free Software Foundation; version 2 of the License.
13*
14* This program is distributed in the hope that it will be useful,
15* but WITHOUT ANY WARRANTY; without even the implied warranty of
16* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17* GNU General Public License for more details.
18*
19* You should have received a copy of the GNU General Public License
20* along with this program; if not, write to the Free Software
21* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22*
23* For the avoidance of doubt, and except that if any non-GPL license
24* choice is available it will apply instead, Sun elects to use only
25* the General Public License version 2 (GPLv2) at this time for any
26* software where a choice of GPL license versions is made
27* available with the language indicating that GPLv2 or any later version
28* may be used, or where a choice of which version of the GPL is applied is
29* otherwise unspecified.
30*
31* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
32* CA 95054 USA or visit www.sun.com if you need additional information or
33* have any questions.
34*
35*
36* ========== Copyright Header End ============================================
37*/
38#define MAIN_PAGE_NUCLEUS_ALSO
39#define MAIN_PAGE_HV_ALSO
40
41#include "hboot.s"
42#include "asi_s.h"
43
44#ifndef BANK_AVAIL
45#define BANK_AVAIL 0xff
46#endif
47
48#ifndef CORE_AVAIL
49#define CORE_AVAIL 0xff
50#endif
51
52#ifndef SERIAL_NUM
53#define SERIAL_NUM 0x0
54#endif
55
56.text
57.global main
58
59
60main:
61 ta T_CHANGE_HPRIV
62
63get_th_id:
64 ta T_RD_THID
65
66 cmp %o1,63
67 be test_pass
68 nop
69 and %o1,0x7,%g7
70 cmp %g7,0x0
71 bne test_fail
72 nop
73
74 wr %g0,ASI_CMP_CORE,%asi
75
76! Check serial_num, core_avail and bank_avail:
77 setx 0x8000001000,%g7,%g2
78 ldx [%g2],%g3
79 setx SERIAL_NUM,%g7,%g4
80 cmp %g3,%g4
81 bne %xcc,test_fail
82 nop
83
84 setx 0x8000001010,%g7,%g2
85 ldx [%g2],%g3
86 setx CORE_AVAIL,%g7,%g4
87 call compute_core_avail ! return in %g4
88 nop
89 cmp %g3,%g4
90 bne %xcc,test_fail
91 nop
92
93 setx 0x8000001018,%g7,%g2
94 ldx [%g2],%g3
95 setx BANK_AVAIL,%g7,%g4
96 cmp %g3,%g4
97 bne %xcc,test_fail
98 nop
99
100! Turn on next available core
101 setx CORE_AVAIL,%g7,%l1
102 srlx %o1,0x3,%l0
103 set 0x1,%l2
104 sllx %l2,%l0,%l2
105
106 setx 0x00000000000000ff,%g7,%g1
107 sllx %g1,%o1,%g1
108
109next_core_loop:
110 add %l0,1,%l0
111 cmp %l0,0x9
112 be test_pass
113 nop
114 sllx %l2,1,%l2
115 sllx %g1,8,%g1
116 andcc %l1,%l2,%g0
117 bz next_core_loop
118 nop
119
120 stxa %g1,[ASI_CMP_CORE_ENABLE]%asi
121 setx 0x8900000808,%g7,%g2
122 set 0x1,%g3
123 stx %g3,[%g2]
124
125halt:
126 ba halt
127 nop
128
129/******************************************************
130 * Subroutine code
131 *******************************************************/
132
133compute_core_avail:
134 or %g0,%g4,%l0
135 or %g0,%g0,%g4
136 set 0x8,%l1
137comp_loop:
138 sllx %g4,8,%g4
139 andcc %l0,0x80,%l2
140 bz skip
141 nop
142 or %g4,0xff,%g4
143skip:
144 sllx %l0,1,%l0
145 subcc %l1,1,%l1
146 bnz comp_loop
147 nop
148 retl
149 nop
150
151/******************************************************
152 * Exit code
153 *******************************************************/
154
155test_pass:
156EXIT_GOOD
157
158test_fail:
159EXIT_BAD
160