mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Commit24d33ac5b8
("powerpc/64s: Make prom_init require RELOCATABLE") made prom_init depend on CONFIG_RELOCATABLE. But it missed cleaning up a case in the linker script for RELOCATABLE=n, and associated symbols. Remove them now. Fixes:24d33ac5b8
("powerpc/64s: Make prom_init require RELOCATABLE") Reported-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20220920131157.1032707-1-mpe@ellerman.id.au
74 lines
1.8 KiB
C
74 lines
1.8 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_POWERPC_SECTIONS_H
|
|
#define _ASM_POWERPC_SECTIONS_H
|
|
#ifdef __KERNEL__
|
|
|
|
#include <linux/elf.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#ifdef CONFIG_HAVE_FUNCTION_DESCRIPTORS
|
|
typedef struct func_desc func_desc_t;
|
|
#endif
|
|
|
|
#include <asm-generic/sections.h>
|
|
|
|
extern char __head_end[];
|
|
|
|
/* Patch sites */
|
|
extern s32 patch__call_flush_branch_caches1;
|
|
extern s32 patch__call_flush_branch_caches2;
|
|
extern s32 patch__call_flush_branch_caches3;
|
|
extern s32 patch__flush_count_cache_return;
|
|
extern s32 patch__flush_link_stack_return;
|
|
extern s32 patch__call_kvm_flush_link_stack;
|
|
extern s32 patch__call_kvm_flush_link_stack_p9;
|
|
extern s32 patch__memset_nocache, patch__memcpy_nocache;
|
|
|
|
extern long flush_branch_caches;
|
|
extern long kvm_flush_link_stack;
|
|
|
|
#ifdef __powerpc64__
|
|
|
|
extern char __start_interrupts[];
|
|
extern char __end_interrupts[];
|
|
|
|
#ifdef CONFIG_PPC_POWERNV
|
|
extern char start_real_trampolines[];
|
|
extern char end_real_trampolines[];
|
|
extern char start_virt_trampolines[];
|
|
extern char end_virt_trampolines[];
|
|
#endif
|
|
|
|
/*
|
|
* This assumes the kernel is never compiled -mcmodel=small or
|
|
* the total .toc is always less than 64k.
|
|
*/
|
|
static inline unsigned long kernel_toc_addr(void)
|
|
{
|
|
unsigned long toc_ptr;
|
|
|
|
asm volatile("mr %0, 2" : "=r" (toc_ptr));
|
|
return toc_ptr;
|
|
}
|
|
|
|
static inline int overlaps_interrupt_vector_text(unsigned long start,
|
|
unsigned long end)
|
|
{
|
|
unsigned long real_start, real_end;
|
|
real_start = __start_interrupts - _stext;
|
|
real_end = __end_interrupts - _stext;
|
|
|
|
return start < (unsigned long)__va(real_end) &&
|
|
(unsigned long)__va(real_start) < end;
|
|
}
|
|
|
|
static inline int overlaps_kernel_text(unsigned long start, unsigned long end)
|
|
{
|
|
return start < (unsigned long)__init_end &&
|
|
(unsigned long)_stext < end;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __KERNEL__ */
|
|
#endif /* _ASM_POWERPC_SECTIONS_H */
|