Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3397 → Rev 3398

/branches/sparc/kernel/kernel.config
77,8 → 77,8
! [ARCH=amd64] MACHINE (choice)
 
# CPU type
@ "us2" UltraSPARC II
@ "us3" UltraSPARC III
@ "us" UltraSPARC I-II subarchitecture
@ "us3" UltraSPARC III-IV subarchitecture
! [ARCH=sparc64] MACHINE (choice)
 
# Machine type
/branches/sparc/kernel/arch/sparc64/Makefile.inc
80,8 → 80,8
DEFS += -DCONFIG_SMP
endif
 
ifeq ($(MACHINE),us2)
DEFS += -DUS2
ifeq ($(MACHINE),us)
DEFS += -DUS
endif
 
ifeq ($(MACHINE),us3)
/branches/sparc/kernel/arch/sparc64/src/start.S
50,7 → 50,7
* 2^PHYSMEM_ADDR_SIZE is the size of the physical address space on
* a given processor.
*/
#if defined (US2)
#if defined (US)
#define PHYSMEM_ADDR_SIZE 41
#elif defined (US3)
#define PHYSMEM_ADDR_SIZE 43
/branches/sparc/boot/arch/sparc64/loader/asm.S
112,7 → 112,7
* not required. We only use the FLUSH instruction to flush the
* pipeline.
*/
#ifdef US2
#ifdef US
call icache_flush
#endif