blob: 724a0882576b3cf1760ff8811be45ae69778b84e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _ASM_MODULE_H
3#define _ASM_MODULE_H
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/list.h>
Paul Gortmaker4ca98d32012-02-28 19:24:47 -05006#include <linux/elf.h>
Al Viro29abfbd2016-09-05 11:35:50 -04007#include <asm/extable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9struct mod_arch_specific {
10 /* Data Bus Error exception tables */
11 struct list_head dbe_list;
12 const struct exception_table_entry *dbe_start;
13 const struct exception_table_entry *dbe_end;
Ralf Baechle861667d2012-08-08 16:59:43 +020014 struct mips_hi16 *r_mips_hi16_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015};
16
17typedef uint8_t Elf64_Byte; /* Type for a 8-bit quantity. */
18
Thiemo Seufer4e6a05f2005-02-21 10:45:09 +000019typedef struct {
20 Elf64_Addr r_offset; /* Address of relocation. */
21 Elf64_Word r_sym; /* Symbol index. */
22 Elf64_Byte r_ssym; /* Special symbol. */
23 Elf64_Byte r_type3; /* Third relocation. */
24 Elf64_Byte r_type2; /* Second relocation. */
25 Elf64_Byte r_type; /* First relocation. */
26} Elf64_Mips_Rel;
27
28typedef struct {
29 Elf64_Addr r_offset; /* Address of relocation. */
30 Elf64_Word r_sym; /* Symbol index. */
31 Elf64_Byte r_ssym; /* Special symbol. */
32 Elf64_Byte r_type3; /* Third relocation. */
33 Elf64_Byte r_type2; /* Second relocation. */
34 Elf64_Byte r_type; /* First relocation. */
35 Elf64_Sxword r_addend; /* Addend. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036} Elf64_Mips_Rela;
37
Ralf Baechle875d43e2005-09-03 15:56:16 -070038#ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define Elf_Shdr Elf32_Shdr
40#define Elf_Sym Elf32_Sym
41#define Elf_Ehdr Elf32_Ehdr
Thiemo Seufer4e6a05f2005-02-21 10:45:09 +000042#define Elf_Addr Elf32_Addr
David Howells786d35d2012-09-28 14:31:03 +093043#define Elf_Rel Elf32_Rel
44#define Elf_Rela Elf32_Rela
45#define ELF_R_TYPE(X) ELF32_R_TYPE(X)
46#define ELF_R_SYM(X) ELF32_R_SYM(X)
Thiemo Seufer4e6a05f2005-02-21 10:45:09 +000047
48#define Elf_Mips_Rel Elf32_Rel
49#define Elf_Mips_Rela Elf32_Rela
50
Paul Burton430d0b82017-03-30 11:37:45 -070051#define ELF_MIPS_R_SYM(rel) ELF32_R_SYM((rel).r_info)
52#define ELF_MIPS_R_TYPE(rel) ELF32_R_TYPE((rel).r_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#endif
55
Ralf Baechle875d43e2005-09-03 15:56:16 -070056#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define Elf_Shdr Elf64_Shdr
58#define Elf_Sym Elf64_Sym
59#define Elf_Ehdr Elf64_Ehdr
Thiemo Seufer4e6a05f2005-02-21 10:45:09 +000060#define Elf_Addr Elf64_Addr
David Howells786d35d2012-09-28 14:31:03 +093061#define Elf_Rel Elf64_Rel
62#define Elf_Rela Elf64_Rela
63#define ELF_R_TYPE(X) ELF64_R_TYPE(X)
64#define ELF_R_SYM(X) ELF64_R_SYM(X)
Thiemo Seufer4e6a05f2005-02-21 10:45:09 +000065
66#define Elf_Mips_Rel Elf64_Mips_Rel
67#define Elf_Mips_Rela Elf64_Mips_Rela
68
Paul Burton430d0b82017-03-30 11:37:45 -070069#define ELF_MIPS_R_SYM(rel) ((rel).r_sym)
70#define ELF_MIPS_R_TYPE(rel) ((rel).r_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#endif
73
74#ifdef CONFIG_MODULES
75/* Given an address, look for it in the exception tables. */
76const struct exception_table_entry*search_module_dbetables(unsigned long addr);
77#else
78/* Given an address, look for it in the exception tables. */
79static inline const struct exception_table_entry *
80search_module_dbetables(unsigned long addr)
81{
82 return NULL;
83}
84#endif
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#endif /* _ASM_MODULE_H */