[POWERPC] Fix ohare IDE irq workaround on old powermacs
[pandora-kernel.git] / include / asm-arm / elf.h
1 #ifndef __ASMARM_ELF_H
2 #define __ASMARM_ELF_H
3
4
5 /*
6  * ELF register definitions..
7  */
8
9 #include <asm/ptrace.h>
10 #include <asm/user.h>
11 #include <asm/procinfo.h>
12
13 typedef unsigned long elf_greg_t;
14 typedef unsigned long elf_freg_t[3];
15
16 #define EM_ARM  40
17 #define EF_ARM_APCS26 0x08
18 #define EF_ARM_SOFT_FLOAT 0x200
19 #define EF_ARM_EABI_MASK 0xFF000000
20
21 #define R_ARM_NONE      0
22 #define R_ARM_PC24      1
23 #define R_ARM_ABS32     2
24 #define R_ARM_CALL      28
25 #define R_ARM_JUMP24    29
26
27 #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
28 typedef elf_greg_t elf_gregset_t[ELF_NGREG];
29
30 typedef struct user_fp elf_fpregset_t;
31
32 /*
33  * This is used to ensure we don't load something for the wrong architecture.
34  */
35 #define elf_check_arch(x) ( ((x)->e_machine == EM_ARM) && (ELF_PROC_OK((x))) )
36
37 /*
38  * These are used to set parameters in the core dumps.
39  */
40 #define ELF_CLASS       ELFCLASS32
41 #ifdef __ARMEB__
42 #define ELF_DATA        ELFDATA2MSB
43 #else
44 #define ELF_DATA        ELFDATA2LSB
45 #endif
46 #define ELF_ARCH        EM_ARM
47
48 #define USE_ELF_CORE_DUMP
49 #define ELF_EXEC_PAGESIZE       4096
50
51 /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
52    use of this is to invoke "./ld.so someprog" to test out a new version of
53    the loader.  We need to make sure that it is out of the way of the program
54    that it will "exec", and that there is sufficient room for the brk.  */
55
56 #define ELF_ET_DYN_BASE (2 * TASK_SIZE / 3)
57
58 /* When the program starts, a1 contains a pointer to a function to be 
59    registered with atexit, as per the SVR4 ABI.  A value of 0 means we 
60    have no such handler.  */
61 #define ELF_PLAT_INIT(_r, load_addr)    (_r)->ARM_r0 = 0
62
63 /* This yields a mask that user programs can use to figure out what
64    instruction set this cpu supports. */
65
66 #define ELF_HWCAP       (elf_hwcap)
67
68 /* This yields a string that ld.so will use to load implementation
69    specific libraries for optimization.  This is more specific in
70    intent than poking at uname or /proc/cpuinfo. */
71
72 /* For now we just provide a fairly general string that describes the
73    processor family.  This could be made more specific later if someone
74    implemented optimisations that require it.  26-bit CPUs give you
75    "v1l" for ARM2 (no SWP) and "v2l" for anything else (ARM1 isn't
76    supported).  32-bit CPUs give you "v3[lb]" for anything based on an
77    ARM6 or ARM7 core and "armv4[lb]" for anything based on a StrongARM-1
78    core.  */
79
80 #define ELF_PLATFORM_SIZE 8
81 extern char elf_platform[];
82 #define ELF_PLATFORM    (elf_platform)
83
84 #ifdef __KERNEL__
85
86 /*
87  * 32-bit code is always OK.  Some cpus can do 26-bit, some can't.
88  */
89 #define ELF_PROC_OK(x)  (ELF_THUMB_OK(x) && ELF_26BIT_OK(x))
90
91 #define ELF_THUMB_OK(x) \
92         (( (elf_hwcap & HWCAP_THUMB) && ((x)->e_entry & 1) == 1) || \
93          ((x)->e_entry & 3) == 0)
94
95 #define ELF_26BIT_OK(x) \
96         (( (elf_hwcap & HWCAP_26BIT) && (x)->e_flags & EF_ARM_APCS26) || \
97           ((x)->e_flags & EF_ARM_APCS26) == 0)
98
99 #ifndef CONFIG_IWMMXT
100
101 /* Old NetWinder binaries were compiled in such a way that the iBCS
102    heuristic always trips on them.  Until these binaries become uncommon
103    enough not to care, don't trust the `ibcs' flag here.  In any case
104    there is no other ELF system currently supported by iBCS.
105    @@ Could print a warning message to encourage users to upgrade.  */
106 #define SET_PERSONALITY(ex,ibcs2) \
107         set_personality(((ex).e_flags&EF_ARM_APCS26 ?PER_LINUX :PER_LINUX_32BIT))
108
109 #else
110
111 /*
112  * All iWMMXt capable CPUs don't support 26-bit mode.  Yet they can run
113  * legacy binaries which used to contain FPA11 floating point instructions
114  * that have always been emulated by the kernel.  PFA11 and iWMMXt overlap
115  * on coprocessor 1 space though.  We therefore must decide if given task
116  * is allowed to use CP 0 and 1 for iWMMXt, or if they should be blocked
117  * at all times for the prefetch exception handler to catch FPA11 opcodes
118  * and emulate them.  The best indication to discriminate those two cases
119  * is the SOFT_FLOAT flag in the ELF header.
120  */
121
122 #define SET_PERSONALITY(ex,ibcs2) \
123 do { \
124         set_personality(PER_LINUX_32BIT); \
125         if (((ex).e_flags & EF_ARM_EABI_MASK) || \
126             ((ex).e_flags & EF_ARM_SOFT_FLOAT)) \
127                 set_thread_flag(TIF_USING_IWMMXT); \
128         else \
129                 clear_thread_flag(TIF_USING_IWMMXT); \
130 } while (0)
131
132 #endif
133
134 #endif
135
136 #endif