/* * include/asm-xtensa/elf.h * * ELF register definitions * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_ELF_H #define _XTENSA_ELF_H #include <asm/ptrace.h> #include <asm/coprocessor.h> /* Xtensa processor ELF architecture-magic number */ #define EM_XTENSA 94 #define EM_XTENSA_OLD 0xABC7 /* Xtensa relocations defined by the ABIs */ #define R_XTENSA_NONE 0 #define R_XTENSA_32 1 #define R_XTENSA_RTLD 2 #define R_XTENSA_GLOB_DAT 3 #define R_XTENSA_JMP_SLOT 4 #define R_XTENSA_RELATIVE 5 #define R_XTENSA_PLT 6 #define R_XTENSA_OP0 8 #define R_XTENSA_OP1 9 #define R_XTENSA_OP2 10 #define R_XTENSA_ASM_EXPAND 11 #define R_XTENSA_ASM_SIMPLIFY 12 #define R_XTENSA_GNU_VTINHERIT 15 #define R_XTENSA_GNU_VTENTRY 16 #define R_XTENSA_DIFF8 17 #define R_XTENSA_DIFF16 18 #define R_XTENSA_DIFF32 19 #define R_XTENSA_SLOT0_OP 20 #define R_XTENSA_SLOT1_OP 21 #define R_XTENSA_SLOT2_OP 22 #define R_XTENSA_SLOT3_OP 23 #define R_XTENSA_SLOT4_OP 24 #define R_XTENSA_SLOT5_OP 25 #define R_XTENSA_SLOT6_OP 26 #define R_XTENSA_SLOT7_OP 27 #define R_XTENSA_SLOT8_OP 28 #define R_XTENSA_SLOT9_OP 29 #define R_XTENSA_SLOT10_OP 30 #define R_XTENSA_SLOT11_OP 31 #define R_XTENSA_SLOT12_OP 32 #define R_XTENSA_SLOT13_OP 33 #define R_XTENSA_SLOT14_OP 34 #define R_XTENSA_SLOT0_ALT 35 #define R_XTENSA_SLOT1_ALT 36 #define R_XTENSA_SLOT2_ALT 37 #define R_XTENSA_SLOT3_ALT 38 #define R_XTENSA_SLOT4_ALT 39 #define R_XTENSA_SLOT5_ALT 40 #define R_XTENSA_SLOT6_ALT 41 #define R_XTENSA_SLOT7_ALT 42 #define R_XTENSA_SLOT8_ALT 43 #define R_XTENSA_SLOT9_ALT 44 #define R_XTENSA_SLOT10_ALT 45 #define R_XTENSA_SLOT11_ALT 46 #define R_XTENSA_SLOT12_ALT 47 #define R_XTENSA_SLOT13_ALT 48 #define R_XTENSA_SLOT14_ALT 49 /* ELF register definitions. This is needed for core dump support. */ typedef unsigned long elf_greg_t; typedef struct { elf_greg_t pc; elf_greg_t ps; elf_greg_t lbeg; elf_greg_t lend; elf_greg_t lcount; elf_greg_t sar; elf_greg_t windowstart; elf_greg_t windowbase; elf_greg_t threadptr; elf_greg_t reserved[7+48]; elf_greg_t a[64]; } xtensa_gregset_t; #define ELF_NGREG (sizeof(xtensa_gregset_t) / sizeof(elf_greg_t)) typedef elf_greg_t elf_gregset_t[ELF_NGREG]; #define ELF_NFPREG 18 typedef unsigned int elf_fpreg_t; typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; #define ELF_CORE_COPY_REGS(_eregs, _pregs) \ xtensa_elf_core_copy_regs ((xtensa_gregset_t*)&(_eregs), _pregs); extern void xtensa_elf_core_copy_regs (xtensa_gregset_t *, struct pt_regs *); /* * This is used to ensure we don't load something for the wrong architecture. */ #define elf_check_arch(x) ( ( (x)->e_machine == EM_XTENSA ) || \ ( (x)->e_machine == EM_XTENSA_OLD ) ) /* * These are used to set parameters in the core dumps. */ #ifdef __XTENSA_EL__ # define ELF_DATA ELFDATA2LSB #elif defined(__XTENSA_EB__) # define ELF_DATA ELFDATA2MSB #else # error processor byte order undefined! #endif #define ELF_CLASS ELFCLASS32 #define ELF_ARCH EM_XTENSA #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. */ #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3) /* * This yields a mask that user programs can use to figure out what * instruction set this CPU supports. This could be done in user space, * but it's not easy, and we've already done it here. */ #define ELF_HWCAP (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. * For the moment, we have only optimizations for the Intel generations, * but that could change... */ #define ELF_PLATFORM (NULL) /* * The Xtensa processor ABI says that when the program starts, a2 * contains a pointer to a function which might be registered using * `atexit'. This provides a mean for the dynamic linker to call * DT_FINI functions for shared libraries that have been loaded before * the code runs. * * A value of 0 tells we have no such handler. * * We might as well make sure everything else is cleared too (except * for the stack pointer in a1), just to make things more * deterministic. Also, clearing a0 terminates debugger backtraces. */ #define ELF_PLAT_INIT(_r, load_addr) \ do { _r->areg[0]=0; /*_r->areg[1]=0;*/ _r->areg[2]=0; _r->areg[3]=0; \ _r->areg[4]=0; _r->areg[5]=0; _r->areg[6]=0; _r->areg[7]=0; \ _r->areg[8]=0; _r->areg[9]=0; _r->areg[10]=0; _r->areg[11]=0; \ _r->areg[12]=0; _r->areg[13]=0; _r->areg[14]=0; _r->areg[15]=0; \ } while (0) typedef struct { xtregs_opt_t opt; xtregs_user_t user; #if XTENSA_HAVE_COPROCESSORS xtregs_cp0_t cp0; xtregs_cp1_t cp1; xtregs_cp2_t cp2; xtregs_cp3_t cp3; xtregs_cp4_t cp4; xtregs_cp5_t cp5; xtregs_cp6_t cp6; xtregs_cp7_t cp7; #endif } elf_xtregs_t; #define SET_PERSONALITY(ex) \ set_personality(PER_LINUX_32BIT | (current->personality & (~PER_MASK))) struct task_struct; extern void do_copy_regs (xtensa_gregset_t*, struct pt_regs*, struct task_struct*); extern void do_restore_regs (xtensa_gregset_t*, struct pt_regs*, struct task_struct*); extern void do_save_fpregs (elf_fpregset_t*, struct pt_regs*, struct task_struct*); extern int do_restore_fpregs (elf_fpregset_t*, struct pt_regs*, struct task_struct*); #endif /* _XTENSA_ELF_H */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Kbuild | File | 685 B | 0644 |
|
asm-offsets.h | File | 35 B | 0644 |
|
asm-uaccess.h | File | 4.11 KB | 0644 |
|
asmmacro.h | File | 2.76 KB | 0644 |
|
atomic.h | File | 7.38 KB | 0644 |
|
barrier.h | File | 542 B | 0644 |
|
bitops.h | File | 5.08 KB | 0644 |
|
bootparam.h | File | 1.37 KB | 0644 |
|
bugs.h | File | 451 B | 0644 |
|
cache.h | File | 969 B | 0644 |
|
cacheasm.h | File | 3.77 KB | 0644 |
|
cacheflush.h | File | 5.76 KB | 0644 |
|
checksum.h | File | 6 KB | 0644 |
|
cmpxchg.h | File | 3.9 KB | 0644 |
|
coprocessor.h | File | 5.05 KB | 0644 |
|
current.h | File | 675 B | 0644 |
|
delay.h | File | 1.63 KB | 0644 |
|
dma-mapping.h | File | 855 B | 0644 |
|
dma.h | File | 1.79 KB | 0644 |
|
elf.h | File | 5.75 KB | 0644 |
|
fixmap.h | File | 2.5 KB | 0644 |
|
flat.h | File | 686 B | 0644 |
|
ftrace.h | File | 979 B | 0644 |
|
futex.h | File | 2.59 KB | 0644 |
|
highmem.h | File | 2.33 KB | 0644 |
|
hw_breakpoint.h | File | 1.45 KB | 0644 |
|
hw_irq.h | File | 320 B | 0644 |
|
initialize_mmu.h | File | 4.58 KB | 0644 |
|
io.h | File | 2.09 KB | 0644 |
|
irq.h | File | 1.46 KB | 0644 |
|
irqflags.h | File | 1.99 KB | 0644 |
|
kmem_layout.h | File | 2.07 KB | 0644 |
|
mmu.h | File | 462 B | 0644 |
|
mmu_context.h | File | 3.62 KB | 0644 |
|
module.h | File | 525 B | 0644 |
|
mxregs.h | File | 1.3 KB | 0644 |
|
nommu_context.h | File | 602 B | 0644 |
|
page.h | File | 5.69 KB | 0644 |
|
pci-bridge.h | File | 2.16 KB | 0644 |
|
pci.h | File | 1.37 KB | 0644 |
|
perf_event.h | File | 108 B | 0644 |
|
pgalloc.h | File | 1.84 KB | 0644 |
|
pgtable.h | File | 14.89 KB | 0644 |
|
platform.h | File | 1.75 KB | 0644 |
|
processor.h | File | 7.44 KB | 0644 |
|
ptrace.h | File | 3.74 KB | 0644 |
|
regs.h | File | 3.87 KB | 0644 |
|
segment.h | File | 376 B | 0644 |
|
serial.h | File | 443 B | 0644 |
|
shmparam.h | File | 561 B | 0644 |
|
signal.h | File | 502 B | 0644 |
|
smp.h | File | 967 B | 0644 |
|
spinlock.h | File | 4.6 KB | 0644 |
|
spinlock_types.h | File | 412 B | 0644 |
|
stacktrace.h | File | 1.13 KB | 0644 |
|
string.h | File | 2.65 KB | 0644 |
|
switch_to.h | File | 601 B | 0644 |
|
syscall.h | File | 982 B | 0644 |
|
sysmem.h | File | 426 B | 0644 |
|
thread_info.h | File | 3.62 KB | 0644 |
|
timex.h | File | 1.79 KB | 0644 |
|
tlb.h | File | 1.1 KB | 0644 |
|
tlbflush.h | File | 5.53 KB | 0644 |
|
traps.h | File | 1.87 KB | 0644 |
|
types.h | File | 501 B | 0644 |
|
uaccess.h | File | 8.67 KB | 0644 |
|
ucontext.h | File | 540 B | 0644 |
|
unaligned.h | File | 864 B | 0644 |
|
unistd.h | File | 639 B | 0644 |
|
user.h | File | 507 B | 0644 |
|
vectors.h | File | 4.05 KB | 0644 |
|
vga.h | File | 434 B | 0644 |
|