blob: f4aa8a542a22ef70ac93fa6e50b48a78f7910e11 [file] [log] [blame]
Jonas Bonn58e01662011-06-04 22:43:49 +03001/*
2 * OpenRISC Linux
3 *
4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
6 * declaration.
7 *
8 * OpenRISC implementation:
9 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
10 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
11 * et al.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 */
Jonas Bonn58e01662011-06-04 22:43:49 +030018#ifndef __ASM_OPENRISC_ELF_H
19#define __ASM_OPENRISC_ELF_H
20
Jonas Bonn58e01662011-06-04 22:43:49 +030021
Jonas Bonnb0e026f2012-04-10 10:49:13 +020022#include <linux/types.h>
David Howells913c2302012-10-09 09:47:18 +010023#include <uapi/asm/elf.h>
Jonas Bonnb0e026f2012-04-10 10:49:13 +020024
Jonas Bonn58e01662011-06-04 22:43:49 +030025/*
26 * This is used to ensure we don't load something for the wrong architecture.
27 */
28
29#define elf_check_arch(x) \
30 (((x)->e_machine == EM_OR32) || ((x)->e_machine == EM_OPENRISC))
31
32/* This is the location that an ET_DYN program is loaded if exec'ed. Typical
33 use of this is to invoke "./ld.so someprog" to test out a new version of
34 the loader. We need to make sure that it is out of the way of the program
35 that it will "exec", and that there is sufficient room for the brk. */
36
37#define ELF_ET_DYN_BASE (0x08000000)
38
39/*
40 * Enable dump using regset.
41 * This covers all of general/DSP/FPU regs.
42 */
43#define CORE_DUMP_USE_REGSET
44
45#define ELF_EXEC_PAGESIZE 8192
46
47extern void dump_elf_thread(elf_greg_t *dest, struct pt_regs *pt);
48#define ELF_CORE_COPY_REGS(dest, regs) dump_elf_thread(dest, regs);
49
50/* This yields a mask that user programs can use to figure out what
51 instruction set this cpu supports. This could be done in userspace,
52 but it's not easy, and we've already done it here. */
53
54#define ELF_HWCAP (0)
55
56/* This yields a string that ld.so will use to load implementation
57 specific libraries for optimization. This is more specific in
58 intent than poking at uname or /proc/cpuinfo.
59
60 For the moment, we have only optimizations for the Intel generations,
61 but that could change... */
62
63#define ELF_PLATFORM (NULL)
64
Jiri Kosina16f3e952012-10-04 17:12:20 -070065#define SET_PERSONALITY(ex) \
66 set_personality(PER_LINUX | (current->personality & (~PER_MASK)))
Jonas Bonn58e01662011-06-04 22:43:49 +030067
Jonas Bonn58e01662011-06-04 22:43:49 +030068#endif