module.h 1.1 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3 4
#ifndef _ASM_ARM_MODULE_H
#define _ASM_ARM_MODULE_H

5
#include <asm-generic/module.h>
6
#include <asm/unwind.h>
7 8

#ifdef CONFIG_ARM_UNWIND
9
#define ELF_SECTION_UNWIND 0x70000001
10
#endif
11

12 13 14 15 16 17 18 19 20
#define PLT_ENT_STRIDE		L1_CACHE_BYTES
#define PLT_ENT_COUNT		(PLT_ENT_STRIDE / sizeof(u32))
#define PLT_ENT_SIZE		(sizeof(struct plt_entries) / PLT_ENT_COUNT)

struct plt_entries {
	u32	ldr[PLT_ENT_COUNT];
	u32	lit[PLT_ENT_COUNT];
};

21 22
struct mod_plt_sec {
	struct elf32_shdr	*plt;
23
	struct plt_entries	*plt_ent;
24 25 26
	int			plt_count;
};

27
struct mod_arch_specific {
28
#ifdef CONFIG_ARM_UNWIND
29 30
	struct list_head unwind_list;
	struct unwind_table *init_table;
31
#endif
32
#ifdef CONFIG_ARM_MODULE_PLTS
33 34
	struct mod_plt_sec	core;
	struct mod_plt_sec	init;
35 36 37
#endif
};

38
struct module;
39
u32 get_module_plt(struct module *mod, unsigned long loc, Elf32_Addr val);
40

41 42 43 44 45 46 47 48 49 50 51
#ifdef CONFIG_THUMB2_KERNEL
#define HAVE_ARCH_KALLSYMS_SYMBOL_VALUE
static inline unsigned long kallsyms_symbol_value(const Elf_Sym *sym)
{
	if (ELF_ST_TYPE(sym->st_info) == STT_FUNC)
		return sym->st_value & ~1;

	return sym->st_value;
}
#endif

L
Linus Torvalds 已提交
52
#endif /* _ASM_ARM_MODULE_H */