.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /* |
---|
2 | 3 | * ELF register definitions.. |
---|
3 | | - * |
---|
4 | | - * This program is free software; you can redistribute it and/or |
---|
5 | | - * modify it under the terms of the GNU General Public License |
---|
6 | | - * as published by the Free Software Foundation; either version |
---|
7 | | - * 2 of the License, or (at your option) any later version. |
---|
8 | 4 | */ |
---|
9 | 5 | #ifndef _ASM_POWERPC_ELF_H |
---|
10 | 6 | #define _ASM_POWERPC_ELF_H |
---|
.. | .. |
---|
56 | 52 | PPC_ELF_CORE_COPY_REGS(elf_regs, regs); |
---|
57 | 53 | } |
---|
58 | 54 | #define ELF_CORE_COPY_REGS(gregs, regs) ppc_elf_core_copy_regs(gregs, regs); |
---|
59 | | - |
---|
60 | | -typedef elf_vrregset_t elf_fpxregset_t; |
---|
61 | 55 | |
---|
62 | 56 | /* ELF_HWCAP yields a mask that user programs can use to figure out what |
---|
63 | 57 | instruction set this cpu supports. This could be done in userspace, |
---|
.. | .. |
---|
179 | 173 | ARCH_DLINFO_CACHE_GEOMETRY; \ |
---|
180 | 174 | } while (0) |
---|
181 | 175 | |
---|
| 176 | +/* Relocate the kernel image to @final_address */ |
---|
| 177 | +void relocate(unsigned long final_address); |
---|
| 178 | + |
---|
182 | 179 | #endif /* _ASM_POWERPC_ELF_H */ |
---|