Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / verif / diag / assembly / arch / prm / cmp / cmp_park_all_w1c_w1s.s
/*
* ========== Copyright Header Begin ==========================================
*
* OpenSPARC T2 Processor File: cmp_park_all_w1c_w1s.s
* Copyright (C) 1995-2007 Sun Microsystems, Inc. All Rights Reserved
* 4150 Network Circle, Santa Clara, California 95054, U.S.A.
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* For the avoidance of doubt, and except that if any non-GPL license
* choice is available it will apply instead, Sun elects to use only
* the General Public License version 2 (GPLv2) at this time for any
* software where a choice of GPL license versions is made
* available with the language indicating that GPLv2 or any later version
* may be used, or where a choice of which version of the GPL is applied is
* otherwise unspecified.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*
*
* ========== Copyright Header End ============================================
*/
#define MAIN_PAGE_HV_ALSO
#include "hboot.s"
#include "ncu_defines.h"
/************************************************************************
Test case code start
************************************************************************/
.text
.global main
main:
ta T_CHANGE_HPRIV
nop
/* Get thread ID */
ta T_RD_THID
/* Wait until this thread's turn to run. */
start_loop:
setx 0x1000, %g1, %g7
setx user_data_start, %g1, %g2
start_loop_top:
cmp %g7, 0
beq local_test_failed ! timeout failure
dec %g7
ldx [%g2], %g6
cmp %o1, %g6
bne start_loop_top
nop
/* Attempt to park all threads. */
diag_0:
setx ASI_CMP_CORE_RUNNING_W1C, %g1, %g2
setx ASI_CMP_CORE_RUNNING_STATUS, %g1, %g3
#ifndef PORTABLE_CORE
orn %g0, %g0, %g1
stxa %g1, [%g2]ASI_CMP_CORE
#else
/* Note parking only threads in 1 core */
core_portable_0:
ldxa [%g0]ASI_INTR_ID, %o2 ! full thread ID
and %o2, 0x38, %o2 ! first thread in core
set 0xff, %g1
sllx %g1, %o2, %g1 ! all threads in this core
stxa %g1, [%g2]ASI_CMP_CORE
#endif
/* Wait to give time for threads to park. */
park_wait_loop:
set 0x40, %g7
park_wait_loop_top:
cmp %g7, 0
bne park_wait_loop_top
dec %g7
/* Check CORE_RUNNING_RW and CORE_RUNNING_STATUS registers
indicate that only this thread is running. */
diag_1:
ldxa [%g0]ASI_INTR_ID, %o2 ! full thread ID
set 1, %g4
sllx %g4, %o2, %g4
setx ASI_CMP_CORE_RUNNING_RW, %g1, %g2
ldxa [%g2]ASI_CMP_CORE, %g5 ! CORE_RUNNING_RW
ldxa [%g3]ASI_CMP_CORE, %g6 ! CORE_RUNNING_STATUS
cmp %g5, %g6
bne local_test_failed ! should be same by now
cmp %g6, %g4
bne local_test_failed ! should only be this thread unparked
nop
/* Unpark all threads. */
diag_2:
setx ASI_CMP_CORE_RUNNING_W1S, %g1, %g2
#ifndef PORTABLE_CORE
orn %g0, %g0, %g4
stxa %g4, [%g2]ASI_CMP_CORE ! CORE_RUNNING_W1S
#else
/* Note unparking only threads in 1 core */
core_portable_1:
ldxa [%g0]ASI_INTR_ID, %o2 ! full thread ID
and %o2, 0x38, %o2 ! first thread in core
set 0xff, %g4
sllx %g4, %o2, %g4 ! all threads in this core
stxa %g4, [%g2]ASI_CMP_CORE
#endif
/* Wait to give time for threads to unpark. */
unpark_wait_loop:
set 0x40, %g7
unpark_wait_loop_top:
cmp %g7, 0
bne unpark_wait_loop_top
dec %g7
/* Check CORE_RUNNING_RW and CORE_RUNNING_STATUS registers
indicated that all threads are running. */
diag_3:
setx ASI_CMP_CORE_RUNNING_RW, %g1, %g2
ldxa [%g2]ASI_CMP_CORE, %g5 ! CORE_RUNNING_RW
ldxa [%g3]ASI_CMP_CORE, %g6 ! CORE_RUNNING_STATUS
cmp %g5, %g6
bne local_test_failed ! should be same by now
#ifndef PORTABLE_CORE
orn %g0, %g0, %g4
#else
ldxa [%g0]ASI_INTR_ID, %o2 ! full thread ID
and %o2, 0x38, %o2 ! first thread in core
set 0xff, %g4
sllx %g4, %o2, %g4 ! all threads in this core
#endif
cmp %g6, %g4
bne local_test_failed ! all threads should be running now
nop
/* Signal the next thread to do its testing. */
diag_4:
setx user_data_start, %g1, %g5
ldx [%g5], %g6
inc %g6
stx %g6, [%g5]
/* Wait until all threads are done. */
end_wait_loop:
setx 0x1000, %g1, %g7
end_wait_loop_top:
cmp %g7, 0
beq local_test_failed ! fail on a timeout
dec %g7
ldx [%g5], %g4
#ifndef PORTABLE_CORE
cmp %g4, 64 ! 64 = all threads done
#else
cmp %g4, 8 ! 8 = all threads in core done
#endif
bne end_wait_loop_top
nop
/* Done */
ba test_passed
nop
test_passed:
EXIT_GOOD
local_test_failed:
EXIT_BAD
/************************************************************************
Test case data start
************************************************************************/
.align 1024
.data
user_data_start:
.word 0x0
.word 0x0
.word 0x0
.word 0x0