Path: blob/master/arch/microblaze/include/uapi/asm/elf.h
26498 views
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* Copyright (C) 2008-2009 Michal Simek <[email protected]>3* Copyright (C) 2008-2009 PetaLogix4* Copyright (C) 2006 Atmark Techno, Inc.5*6* This file is subject to the terms and conditions of the GNU General Public7* License. See the file "COPYING" in the main directory of this archive8* for more details.9*/1011#ifndef _UAPI_ASM_MICROBLAZE_ELF_H12#define _UAPI_ASM_MICROBLAZE_ELF_H1314#include <linux/elf-em.h>1516/*17* Note there is no "official" ELF designation for Microblaze.18* I've snaffled the value from the microblaze binutils source code19* /binutils/microblaze/include/elf/microblaze.h20*/21#define EM_MICROBLAZE_OLD 0xbaab22#define ELF_ARCH EM_MICROBLAZE2324/*25* This is used to ensure we don't load something for the wrong architecture.26*/27#define elf_check_arch(x) ((x)->e_machine == EM_MICROBLAZE \28|| (x)->e_machine == EM_MICROBLAZE_OLD)2930/*31* These are used to set parameters in the core dumps.32*/33#define ELF_CLASS ELFCLASS323435#ifndef __uClinux__3637/*38* ELF register definitions..39*/4041#include <asm/ptrace.h>42#include <asm/byteorder.h>4344#ifndef ELF_GREG_T45#define ELF_GREG_T46typedef unsigned long elf_greg_t;47#endif4849#ifndef ELF_NGREG50#define ELF_NGREG (sizeof(struct pt_regs) / sizeof(elf_greg_t))51#endif5253#ifndef ELF_GREGSET_T54#define ELF_GREGSET_T55typedef elf_greg_t elf_gregset_t[ELF_NGREG];56#endif5758#ifndef ELF_FPREGSET_T59#define ELF_FPREGSET_T6061/* TBD */62#define ELF_NFPREG 33 /* includes fsr */63typedef unsigned long elf_fpreg_t;64typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];6566/* typedef struct user_fpu_struct elf_fpregset_t; */67#endif6869/* This is the location that an ET_DYN program is loaded if exec'ed. Typical70* use of this is to invoke "./ld.so someprog" to test out a new version of71* the loader. We need to make sure that it is out of the way of the program72* that it will "exec", and that there is sufficient room for the brk.73*/7475#define ELF_ET_DYN_BASE (0x08000000)7677#ifdef __MICROBLAZEEL__78#define ELF_DATA ELFDATA2LSB79#else80#define ELF_DATA ELFDATA2MSB81#endif8283#define ELF_EXEC_PAGESIZE PAGE_SIZE848586#define ELF_CORE_COPY_REGS(_dest, _regs) \87memcpy((char *) &_dest, (char *) _regs, \88sizeof(struct pt_regs));8990/* This yields a mask that user programs can use to figure out what91* instruction set this CPU supports. This could be done in user space,92* but it's not easy, and we've already done it here.93*/94#define ELF_HWCAP (0)9596/* This yields a string that ld.so will use to load implementation97* specific libraries for optimization. This is more specific in98* intent than poking at uname or /proc/cpuinfo.99100* For the moment, we have only optimizations for the Intel generations,101* but that could change...102*/103#define ELF_PLATFORM (NULL)104105/* Added _f parameter. Is this definition correct: TBD */106#define ELF_PLAT_INIT(_r, _f) \107do { \108_r->r0 = _r->r1 = _r->r2 = _r->r3 = \109_r->r4 = _r->r5 = _r->r6 = _r->r7 = \110_r->r8 = _r->r9 = _r->r10 = _r->r11 = \111_r->r12 = _r->r13 = _r->r14 = _r->r15 = \112_r->r16 = _r->r17 = _r->r18 = _r->r19 = \113_r->r20 = _r->r21 = _r->r22 = _r->r23 = \114_r->r24 = _r->r25 = _r->r26 = _r->r27 = \115_r->r28 = _r->r29 = _r->r30 = _r->r31 = \1160; \117} while (0)118119120#endif /* __uClinux__ */121122#endif /* _UAPI_ASM_MICROBLAZE_ELF_H */123124125