/* * Copyright (c) 1991-2000 by Sun Microsystems, Inc. * All rights reserved. */ #ifndef _SYS_MACHTHREAD_H #define _SYS_MACHTHREAD_H #pragma ident "@(#)machthread.h 1.14 00/07/11 SMI" #include #include #include #ifdef __cplusplus extern "C" { #endif #define THREAD_REG %g7 /* pointer to current thread data */ #ifdef _STARFIRE /* * CPU_INDEX(r, scr) * Returns cpu id in r. * On Starfire, this is read from the Port Controller's Port ID * register in local space. * * Need to load the 64 bit address of the PC's PortID reg * using only one register. Kludge the 41 bits address constant to * be 32bits by shifting it 12 bits to the right first. */ #define LOCAL_PC_PORTID_ADDR_SRL12 0x1FFF4000 #define PC_PORT_ID 0xD0 #define CPU_INDEX(r, scr) \ rdpr %pstate, scr; \ andn scr, PSTATE_IE | PSTATE_AM, r; \ wrpr r, 0, %pstate; \ set LOCAL_PC_PORTID_ADDR_SRL12, r; \ sllx r, 12, r; \ or r, PC_PORT_ID, r; \ lduwa [r]ASI_IO, r; \ wrpr scr, 0, %pstate #else /* * UPA supports up to 32 devices while Safari supports up to * 1024 devices (utilizing the SSM protocol). Based upon the * value of NCPU, a 5- or 10-bit mask will be needed for * extracting the cpu id. */ #if NCPU > 32 #define CPU_MASK 0x3ff #else #define CPU_MASK 0x1f #endif /* NCPU > 32 */ /* * CPU_INDEX(r, scr) * Returns cpu id in r. * For UPA based systems, the cpu id corresponds to the mid field in * the UPA config register. For Safari based machines, the cpu id * corresponds to the aid field in the Safari config register. * * XXX - scr reg is not used here. */ #define CPU_INDEX(r, scr) \ ldxa [%g0]ASI_UPA_CONFIG, r; \ srlx r, 17, r; \ and r, CPU_MASK, r #endif /* _STARFIRE */ /* * Given a cpu id extract the appropriate word * in the cpuset mask for this cpu id. */ #if CPUSET_SIZE > CLONGSIZE #define CPU_INDEXTOSET(base, index, scr) \ srl index, BT_ULSHIFT, scr; \ and index, BT_ULMASK, index; \ sll scr, CLONGSHIFT, scr; \ add base, scr, base #else #define CPU_INDEXTOSET(base, index, scr) #endif /* CPUSET_SIZE */ /* * Assembly macro to find address of the current CPU. * Used when coming in from a user trap - cannot use THREAD_REG. * Args are destination register and one scratch register. */ #define CPU_ADDR(reg, scr) \ .global cpu; \ CPU_INDEX(scr, reg); \ sll scr, CPTRSHIFT, scr; \ set cpu, reg; \ ldn [reg + scr], reg #ifdef __cplusplus } #endif #endif /* _SYS_MACHTHREAD_H */