/* $Id: elf.h,v 1.1.1.1 2003/06/23 22:18:42 jharrell Exp $ */ #ifndef __ASM_SPARC64_ELF_H #define __ASM_SPARC64_ELF_H /* * ELF register definitions.. */ #include #ifdef __KERNEL__ #include #endif /* * These are used to set parameters in the core dumps. */ #ifndef ELF_ARCH #define ELF_ARCH EM_SPARCV9 #define ELF_CLASS ELFCLASS64 #define ELF_DATA ELFDATA2MSB typedef unsigned long elf_greg_t; #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t)) typedef elf_greg_t elf_gregset_t[ELF_NGREG]; typedef struct { unsigned long pr_regs[32]; unsigned long pr_fsr; unsigned long pr_gsr; unsigned long pr_fprs; } elf_fpregset_t; #endif /* * This is used to ensure we don't load something for the wrong architecture. */ #ifndef elf_check_arch #define elf_check_arch(x) ((x)->e_machine == ELF_ARCH) /* Might be EM_SPARCV9 or EM_SPARC */ #endif #define USE_ELF_CORE_DUMP #define ELF_EXEC_PAGESIZE PAGE_SIZE /* This is the location that an ET_DYN program is loaded if exec'ed. Typical use of this is to invoke "./ld.so someprog" to test out a new version of the loader. We need to make sure that it is out of the way of the program that it will "exec", and that there is sufficient room for the brk. */ #ifndef ELF_ET_DYN_BASE #define ELF_ET_DYN_BASE 0x0000010000000000UL #endif /* This yields a mask that user programs can use to figure out what instruction set this cpu supports. */ /* On Ultra, we support all of the v8 capabilities. */ #define ELF_HWCAP ((HWCAP_SPARC_FLUSH | HWCAP_SPARC_STBAR | \ HWCAP_SPARC_SWAP | HWCAP_SPARC_MULDIV | \ HWCAP_SPARC_V9) | \ ((tlb_type == cheetah) ? HWCAP_SPARC_ULTRA3 : 0)) /* This yields a string that ld.so will use to load implementation specific libraries for optimization. This is more specific in intent than poking at uname or /proc/cpuinfo. */ #define ELF_PLATFORM (NULL) #ifdef __KERNEL__ #define SET_PERSONALITY(ex, ibcs2) \ do { unsigned char flags = current->thread.flags; \ if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \ flags |= SPARC_FLAG_32BIT; \ else \ flags &= ~SPARC_FLAG_32BIT; \ if (flags != current->thread.flags) { \ unsigned long pgd_cache = 0UL; \ if (flags & SPARC_FLAG_32BIT) { \ pgd_t *pgd0 = ¤t->mm->pgd[0]; \ if (pgd_none (*pgd0)) { \ pmd_t *page = pmd_alloc_one_fast(NULL, 0); \ if (!page) \ page = pmd_alloc_one(NULL, 0); \ pgd_set(pgd0, page); \ } \ pgd_cache = pgd_val(*pgd0) << 11UL; \ } \ __asm__ __volatile__( \ "stxa\t%0, [%1] %2\n\t" \ "membar #Sync" \ : /* no outputs */ \ : "r" (pgd_cache), \ "r" (TSB_REG), \ "i" (ASI_DMMU)); \ current->thread.flags = flags; \ } \ \ if (ibcs2) \ set_personality(PER_SVR4); \ else if (current->personality != PER_LINUX32) \ set_personality(PER_LINUX); \ } while (0) #endif #endif /* !(__ASM_SPARC64_ELF_H) */