1 /* Kernel module help for SH.
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2 of the License, or
6 (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 #include <linux/moduleloader.h>
18 #include <linux/elf.h>
19 #include <linux/vmalloc.h>
21 #include <linux/string.h>
22 #include <linux/kernel.h>
27 #define DEBUGP(fmt...)
30 void *module_alloc(unsigned long size
)
38 /* Free memory returned from module_alloc */
39 void module_free(struct module
*mod
, void *module_region
)
42 /* FIXME: If module_region == mod->init_region, trim exception
46 /* We don't need anything special. */
47 int module_frob_arch_sections(Elf_Ehdr
*hdr
,
55 #define COPY_UNALIGNED_WORD(sw, tw, align) \
57 void *__s = &(sw), *__t = &(tw); \
58 unsigned short *__s2 = __s, *__t2 = __t; \
59 unsigned char *__s1 = __s, *__t1 = __t; \
63 *(unsigned long *) __t = *(unsigned long *) __s; \
78 int apply_relocate_add(Elf32_Shdr
*sechdrs
,
80 unsigned int symindex
,
85 Elf32_Rela
*rel
= (void *)sechdrs
[relsec
].sh_addr
;
87 Elf32_Addr relocation
;
92 DEBUGP("Applying relocate section %u to %u\n", relsec
,
93 sechdrs
[relsec
].sh_info
);
94 for (i
= 0; i
< sechdrs
[relsec
].sh_size
/ sizeof(*rel
); i
++) {
95 /* This is where to make the change */
96 location
= (void *)sechdrs
[sechdrs
[relsec
].sh_info
].sh_addr
98 /* This is the symbol it is referring to. Note that all
99 undefined symbols have been resolved. */
100 sym
= (Elf32_Sym
*)sechdrs
[symindex
].sh_addr
101 + ELF32_R_SYM(rel
[i
].r_info
);
102 relocation
= sym
->st_value
+ rel
[i
].r_addend
;
103 align
= (int)location
& 3;
105 switch (ELF32_R_TYPE(rel
[i
].r_info
)) {
107 COPY_UNALIGNED_WORD (*location
, value
, align
);
109 COPY_UNALIGNED_WORD (value
, *location
, align
);
112 relocation
= (relocation
- (Elf32_Addr
) location
);
113 COPY_UNALIGNED_WORD (*location
, value
, align
);
115 COPY_UNALIGNED_WORD (value
, *location
, align
);
118 printk(KERN_ERR
"module %s: Unknown relocation: %u\n",
119 me
->name
, ELF32_R_TYPE(rel
[i
].r_info
));
126 int apply_relocate(Elf32_Shdr
*sechdrs
,
128 unsigned int symindex
,
132 printk(KERN_ERR
"module %s: REL RELOCATION unsupported\n",
137 int module_finalize(const Elf_Ehdr
*hdr
,
138 const Elf_Shdr
*sechdrs
,
144 void module_arch_cleanup(struct module
*mod
)