sections.h 1.8 KB
Newer Older
1 2
#ifndef _ASM_POWERPC_SECTIONS_H
#define _ASM_POWERPC_SECTIONS_H
3
#ifdef __KERNEL__
L
Linus Torvalds 已提交
4

5 6
#include <linux/elf.h>
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
7 8
#include <asm-generic/sections.h>

9
#ifdef __powerpc64__
L
Linus Torvalds 已提交
10

11
extern char __start_interrupts[];
12
extern char __end_interrupts[];
L
Linus Torvalds 已提交
13

14 15 16
extern char __prom_init_toc_start[];
extern char __prom_init_toc_end[];

L
Linus Torvalds 已提交
17 18 19 20 21 22 23 24
static inline int in_kernel_text(unsigned long addr)
{
	if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end)
		return 1;

	return 0;
}

25 26 27 28 29 30 31 32 33 34 35 36
static inline unsigned long kernel_toc_addr(void)
{
	/* Defined by the linker, see vmlinux.lds.S */
	extern unsigned long __toc_start;

	/*
	 * The TOC register (r2) points 32kB into the TOC, so that 64kB of
	 * the TOC can be addressed using a single machine instruction.
	 */
	return (unsigned long)(&__toc_start) + 0x8000UL;
}

37 38 39 40 41 42 43 44 45 46 47
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;
}

48 49 50 51 52 53
static inline int overlaps_kernel_text(unsigned long start, unsigned long end)
{
	return start < (unsigned long)__init_end &&
		(unsigned long)_stext < end;
}

54 55 56 57 58 59 60 61 62 63 64
static inline int overlaps_kvm_tmp(unsigned long start, unsigned long end)
{
#ifdef CONFIG_KVM_GUEST
	extern char kvm_tmp[];
	return start < (unsigned long)kvm_tmp &&
		(unsigned long)&kvm_tmp[1024 * 1024] < end;
#else
	return 0;
#endif
}

65
#if !defined(_CALL_ELF) || _CALL_ELF != 2
66
#undef dereference_function_descriptor
67 68 69 70 71 72 73 74 75
static inline void *dereference_function_descriptor(void *ptr)
{
	struct ppc64_opd_entry *desc = ptr;
	void *p;

	if (!probe_kernel_address(&desc->funcaddr, p))
		ptr = p;
	return ptr;
}
76
#endif
77

L
Linus Torvalds 已提交
78
#endif
79

80
#endif /* __KERNEL__ */
81
#endif	/* _ASM_POWERPC_SECTIONS_H */