1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_POWERPC_SECTIONS_H
3 #define _ASM_POWERPC_SECTIONS_H
7 #include <linux/uaccess.h>
8 #include <asm-generic/sections.h>
10 extern char __head_end
[];
14 extern char __start_interrupts
[];
15 extern char __end_interrupts
[];
17 extern char __prom_init_toc_start
[];
18 extern char __prom_init_toc_end
[];
20 static inline int in_kernel_text(unsigned long addr
)
22 if (addr
>= (unsigned long)_stext
&& addr
< (unsigned long)__init_end
)
28 static inline unsigned long kernel_toc_addr(void)
30 /* Defined by the linker, see vmlinux.lds.S */
31 extern unsigned long __toc_start
;
34 * The TOC register (r2) points 32kB into the TOC, so that 64kB of
35 * the TOC can be addressed using a single machine instruction.
37 return (unsigned long)(&__toc_start
) + 0x8000UL
;
40 static inline int overlaps_interrupt_vector_text(unsigned long start
,
43 unsigned long real_start
, real_end
;
44 real_start
= __start_interrupts
- _stext
;
45 real_end
= __end_interrupts
- _stext
;
47 return start
< (unsigned long)__va(real_end
) &&
48 (unsigned long)__va(real_start
) < end
;
51 static inline int overlaps_kernel_text(unsigned long start
, unsigned long end
)
53 return start
< (unsigned long)__init_end
&&
54 (unsigned long)_stext
< end
;
57 static inline int overlaps_kvm_tmp(unsigned long start
, unsigned long end
)
59 #ifdef CONFIG_KVM_GUEST
60 extern char kvm_tmp
[];
61 return start
< (unsigned long)kvm_tmp
&&
62 (unsigned long)&kvm_tmp
[1024 * 1024] < end
;
68 #ifdef PPC64_ELF_ABI_v1
70 #define HAVE_DEREFERENCE_FUNCTION_DESCRIPTOR 1
72 #undef dereference_function_descriptor
73 static inline void *dereference_function_descriptor(void *ptr
)
75 struct ppc64_opd_entry
*desc
= ptr
;
78 if (!probe_kernel_address(&desc
->funcaddr
, p
))
83 #undef dereference_kernel_function_descriptor
84 static inline void *dereference_kernel_function_descriptor(void *ptr
)
86 if (ptr
< (void *)__start_opd
|| ptr
>= (void *)__end_opd
)
89 return dereference_function_descriptor(ptr
);
91 #endif /* PPC64_ELF_ABI_v1 */
95 #endif /* __KERNEL__ */
96 #endif /* _ASM_POWERPC_SECTIONS_H */