Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / diag / assembly / arch / prm / tso / tso_directed / tso_n1_cross_mod201.s
CommitLineData
86530b38
AT
1/*
2* ========== Copyright Header Begin ==========================================
3*
4* OpenSPARC T2 Processor File: tso_n1_cross_mod201.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_BASE_DATA_ADDR 0x160000
39#define MAIN_BASE_TEXT_ADDR 0x150000
40#define MAIN_BASE_DATA_ADDR_RA 0x100160000
41#define MAIN_BASE_TEXT_ADDR_RA 0x100150000
42
43#define USER_PAGE_CUSTOM_MAP
44#include "hboot.s"
45
46SECTION .MAIN TEXT_VA=0x150000, DATA_VA=0x160000
47
48attr_text {
49 Name = .MAIN,
50 VA=MAIN_BASE_TEXT_ADDR,
51 RA=MAIN_BASE_TEXT_ADDR_RA,
52 PA=ra2pa(MAIN_BASE_TEXT_ADDR_RA,0),
53 part_0_ctx_nonzero_tsb_config_0,
54 TTE_G=0, TTE_Context=PCONTEXT, TTE_V=1, TTE_Size=0, TTE_NFO=0,
55 TTE_IE=0, TTE_Soft2=0, TTE_Diag=0, TTE_Soft=0,
56 TTE_L=0, TTE_CP=1, TTE_CV=1, TTE_EP=1, TTE_E=0, TTE_P=0, TTE_W=1
57 }
58attr_data {
59 Name = .MAIN,
60 VA=MAIN_BASE_DATA_ADDR,
61 RA=MAIN_BASE_DATA_ADDR_RA,
62 PA=ra2pa(MAIN_BASE_DATA_ADDR_RA,0),
63 part_0_ctx_nonzero_tsb_config_0,
64 TTE_G=0, TTE_Context=PCONTEXT, TTE_V=1, TTE_Size=0, TTE_NFO=0,
65 TTE_IE=0, TTE_Soft2=0, TTE_Diag=0, TTE_Soft=0,
66 TTE_L=0, TTE_CP=1, TTE_CV=1, TTE_E=0, TTE_P=0, TTE_W=1
67 }
68
69.text
70.global main
71main:
72 clr %l0
73
74 th_fork(th_main,%l0)
75
76
77! this thread modfifies the code
78!===============================
79th_main_0:
80
81 set 0x40, %i7 ! loop counting
82
83 setx ready, %l0, %l1 ! pointers...
84 setx noop, %l0, %l2
85 ld [%l2], %o7 ! %o7 contains the nop command
86 setx modified, %l0, %l3
87
88deliver_loop:
89 ld [%l3], %o0 ! bring the line
90 ld [%l1], %o0 ! read ready.
91 tst %o0 ! should be 0.
92 bne deliver_loop
93 nop
94
95 mov %o7, %i2 ! modify the code using cas
96 st %l3, [%l3]
97 cas [%l3], %l3, %i2
98 st %o7, [%l3 + 4]
99#ifdef FLUSH
100 flush %l3 ! flush ( it may work without it)
101#endif
102
103 deccc %i7 ! count
104 bne goon
105 nop
106 ba final_stuff ! go to end if finished
107 nop
108
109goon:
110 set 1, %i0 ! set ready
111 st %i0, [%l1]
112 ba deliver_loop ! repeat
113 nop
114
115final_stuff:
116 set 0x55, %i0 ! 55 means we are done.
117 st %i0, [%l1]
118 ba good_end
119 nop
120
121! these are the receivers
122!------------------------
123th_main_1:
124th_main_4:
125
126 setx ready, %l0, %l1 ! pointers...
127 setx bad_end, %l0, %l2
128 ld [%l2], %o7 ! o7 contains a ta 0x101
129 setx modified, %l0, %l3
130
131wait_loop: ! wait for ready flag
132 ld [%l3], %o0 ! bring the line
133 ld [%l1], %o0
134 sub %o0, 0x55, %i1 ! check for end of test flag.
135 tst %i1
136 be good_end ! end the test
137 nop
138 sub %o0, 0x1, %i1 ! check for available data
139 tst %i1
140 be modified
141 nop
142 ba wait_loop
143 nop
144
145.align 0x10
146modified:
147 ta T_BAD_TRAP ! this data is overwritten...
148 ta T_BAD_TRAP
149
150 st %o7, [%l3] ! now overwrite it back with ta T_BAD_TRAP
151 st %o7, [%l3 + 4]
152
153 set 0, %o0 ! reset the ready flag
154 st %o0, [%l1]
155
156 ba wait_loop ! do it again
157 nop
158
159good_end:
160 ta T_GOOD_TRAP
161bad_end:
162 ta T_BAD_TRAP
163noop:
164 nop
165
166.data
167.global ready
168ready:
169 .word 0x0
170
171.end
172