blob: 51a99e25fe338251b23fe00bf2b1849b6a7252a2 [file] [log] [blame]
Vineet Gupta3be80aa2013-01-18 15:12:17 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef __ASM_ARC_ELF_H
10#define __ASM_ARC_ELF_H
11
Vineet Gupta8ccfe662013-02-27 18:27:13 +053012#include <linux/types.h>
13#include <uapi/asm/elf.h>
Vineet Gupta3be80aa2013-01-18 15:12:17 +053014
Vineet Gupta8ccfe662013-02-27 18:27:13 +053015/* These ELF defines belong to uapi but libc elf.h already defines them */
Vineet Gupta3be80aa2013-01-18 15:12:17 +053016#define EM_ARCOMPACT 93
17
Vineet Gupta1f6ccff2013-05-13 18:30:41 +053018#define EM_ARCV2 195 /* ARCv2 Cores */
19
20#define EM_ARC_INUSE (IS_ENABLED(CONFIG_ISA_ARCOMPACT) ? \
21 EM_ARCOMPACT : EM_ARCV2)
22
Vineet Gupta3be80aa2013-01-18 15:12:17 +053023/* ARC Relocations (kernel Modules only) */
24#define R_ARC_32 0x4
25#define R_ARC_32_ME 0x1B
26#define R_ARC_S25H_PCREL 0x10
27#define R_ARC_S25W_PCREL 0x11
28
Vineet Gupta8ccfe662013-02-27 18:27:13 +053029/*to set parameters in the core dumps */
Vineet Gupta3be80aa2013-01-18 15:12:17 +053030#define ELF_ARCH EM_ARCOMPACT
31#define ELF_CLASS ELFCLASS32
32
33#ifdef CONFIG_CPU_BIG_ENDIAN
34#define ELF_DATA ELFDATA2MSB
35#else
36#define ELF_DATA ELFDATA2LSB
37#endif
38
Vineet Gupta8ccfe662013-02-27 18:27:13 +053039/*
40 * To ensure that
41 * -we don't load something for the wrong architecture.
42 * -The userspace is using the correct syscall ABI
43 */
44struct elf32_hdr;
45extern int elf_check_arch(const struct elf32_hdr *);
46#define elf_check_arch elf_check_arch
Vineet Gupta3be80aa2013-01-18 15:12:17 +053047
48#define CORE_DUMP_USE_REGSET
49
50#define ELF_EXEC_PAGESIZE PAGE_SIZE
51
52/*
53 * This is the location that an ET_DYN program is loaded if exec'ed. Typical
54 * use of this is to invoke "./ld.so someprog" to test out a new version of
55 * the loader. We need to make sure that it is out of the way of the program
56 * that it will "exec", and that there is sufficient room for the brk.
57 */
58#define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
59
60/*
61 * When the program starts, a1 contains a pointer to a function to be
62 * registered with atexit, as per the SVR4 ABI. A value of 0 means we
63 * have no such handler.
64 */
65#define ELF_PLAT_INIT(_r, load_addr) ((_r)->r0 = 0)
66
67/*
68 * This yields a mask that user programs can use to figure out what
69 * instruction set this cpu supports.
70 */
71#define ELF_HWCAP (0)
72
73/*
74 * This yields a string that ld.so will use to load implementation
75 * specific libraries for optimization. This is more specific in
76 * intent than poking at uname or /proc/cpuinfo.
77 */
78#define ELF_PLATFORM (NULL)
79
Vineet Gupta3be80aa2013-01-18 15:12:17 +053080#endif