diff options
Diffstat (limited to 'arch/m68k/kernel')
-rw-r--r-- | arch/m68k/kernel/irq.c | 10 | ||||
-rw-r--r-- | arch/m68k/kernel/module.c | 130 | ||||
-rw-r--r-- | arch/m68k/kernel/module_mm.c | 155 | ||||
-rw-r--r-- | arch/m68k/kernel/module_no.c | 126 | ||||
-rw-r--r-- | arch/m68k/kernel/process_mm.c | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/process_no.c | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/setup_mm.c | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/syscalltable.S | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/traps_no.c | 4 | ||||
-rw-r--r-- | arch/m68k/kernel/vmlinux-nommu.lds | 91 |
10 files changed, 233 insertions, 291 deletions
diff --git a/arch/m68k/kernel/irq.c b/arch/m68k/kernel/irq.c index 544b8717d49..c73988cfa90 100644 --- a/arch/m68k/kernel/irq.c +++ b/arch/m68k/kernel/irq.c | |||
@@ -28,3 +28,13 @@ asmlinkage void do_IRQ(int irq, struct pt_regs *regs) | |||
28 | 28 | ||
29 | set_irq_regs(oldregs); | 29 | set_irq_regs(oldregs); |
30 | } | 30 | } |
31 | |||
32 | |||
33 | /* The number of spurious interrupts */ | ||
34 | atomic_t irq_err_count; | ||
35 | |||
36 | int arch_show_interrupts(struct seq_file *p, int prec) | ||
37 | { | ||
38 | seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count)); | ||
39 | return 0; | ||
40 | } | ||
diff --git a/arch/m68k/kernel/module.c b/arch/m68k/kernel/module.c index 7ea203ce6b1..34849c4c6e3 100644 --- a/arch/m68k/kernel/module.c +++ b/arch/m68k/kernel/module.c | |||
@@ -1,5 +1,129 @@ | |||
1 | #ifdef CONFIG_MMU | 1 | /* |
2 | #include "module_mm.c" | 2 | * This file is subject to the terms and conditions of the GNU General Public |
3 | * License. See the file COPYING in the main directory of this archive | ||
4 | * for more details. | ||
5 | */ | ||
6 | |||
7 | #include <linux/moduleloader.h> | ||
8 | #include <linux/elf.h> | ||
9 | #include <linux/vmalloc.h> | ||
10 | #include <linux/fs.h> | ||
11 | #include <linux/string.h> | ||
12 | #include <linux/kernel.h> | ||
13 | |||
14 | #if 0 | ||
15 | #define DEBUGP printk | ||
3 | #else | 16 | #else |
4 | #include "module_no.c" | 17 | #define DEBUGP(fmt...) |
18 | #endif | ||
19 | |||
20 | #ifdef CONFIG_MODULES | ||
21 | |||
22 | int apply_relocate(Elf32_Shdr *sechdrs, | ||
23 | const char *strtab, | ||
24 | unsigned int symindex, | ||
25 | unsigned int relsec, | ||
26 | struct module *me) | ||
27 | { | ||
28 | unsigned int i; | ||
29 | Elf32_Rel *rel = (void *)sechdrs[relsec].sh_addr; | ||
30 | Elf32_Sym *sym; | ||
31 | uint32_t *location; | ||
32 | |||
33 | DEBUGP("Applying relocate section %u to %u\n", relsec, | ||
34 | sechdrs[relsec].sh_info); | ||
35 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { | ||
36 | /* This is where to make the change */ | ||
37 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr | ||
38 | + rel[i].r_offset; | ||
39 | /* This is the symbol it is referring to. Note that all | ||
40 | undefined symbols have been resolved. */ | ||
41 | sym = (Elf32_Sym *)sechdrs[symindex].sh_addr | ||
42 | + ELF32_R_SYM(rel[i].r_info); | ||
43 | |||
44 | switch (ELF32_R_TYPE(rel[i].r_info)) { | ||
45 | case R_68K_32: | ||
46 | /* We add the value into the location given */ | ||
47 | *location += sym->st_value; | ||
48 | break; | ||
49 | case R_68K_PC32: | ||
50 | /* Add the value, subtract its postition */ | ||
51 | *location += sym->st_value - (uint32_t)location; | ||
52 | break; | ||
53 | default: | ||
54 | printk(KERN_ERR "module %s: Unknown relocation: %u\n", | ||
55 | me->name, ELF32_R_TYPE(rel[i].r_info)); | ||
56 | return -ENOEXEC; | ||
57 | } | ||
58 | } | ||
59 | return 0; | ||
60 | } | ||
61 | |||
62 | int apply_relocate_add(Elf32_Shdr *sechdrs, | ||
63 | const char *strtab, | ||
64 | unsigned int symindex, | ||
65 | unsigned int relsec, | ||
66 | struct module *me) | ||
67 | { | ||
68 | unsigned int i; | ||
69 | Elf32_Rela *rel = (void *)sechdrs[relsec].sh_addr; | ||
70 | Elf32_Sym *sym; | ||
71 | uint32_t *location; | ||
72 | |||
73 | DEBUGP("Applying relocate_add section %u to %u\n", relsec, | ||
74 | sechdrs[relsec].sh_info); | ||
75 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { | ||
76 | /* This is where to make the change */ | ||
77 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr | ||
78 | + rel[i].r_offset; | ||
79 | /* This is the symbol it is referring to. Note that all | ||
80 | undefined symbols have been resolved. */ | ||
81 | sym = (Elf32_Sym *)sechdrs[symindex].sh_addr | ||
82 | + ELF32_R_SYM(rel[i].r_info); | ||
83 | |||
84 | switch (ELF32_R_TYPE(rel[i].r_info)) { | ||
85 | case R_68K_32: | ||
86 | /* We add the value into the location given */ | ||
87 | *location = rel[i].r_addend + sym->st_value; | ||
88 | break; | ||
89 | case R_68K_PC32: | ||
90 | /* Add the value, subtract its postition */ | ||
91 | *location = rel[i].r_addend + sym->st_value - (uint32_t)location; | ||
92 | break; | ||
93 | default: | ||
94 | printk(KERN_ERR "module %s: Unknown relocation: %u\n", | ||
95 | me->name, ELF32_R_TYPE(rel[i].r_info)); | ||
96 | return -ENOEXEC; | ||
97 | } | ||
98 | } | ||
99 | return 0; | ||
100 | } | ||
101 | |||
102 | int module_finalize(const Elf_Ehdr *hdr, | ||
103 | const Elf_Shdr *sechdrs, | ||
104 | struct module *mod) | ||
105 | { | ||
106 | module_fixup(mod, mod->arch.fixup_start, mod->arch.fixup_end); | ||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | #endif /* CONFIG_MODULES */ | ||
111 | |||
112 | void module_fixup(struct module *mod, struct m68k_fixup_info *start, | ||
113 | struct m68k_fixup_info *end) | ||
114 | { | ||
115 | #ifdef CONFIG_MMU | ||
116 | struct m68k_fixup_info *fixup; | ||
117 | |||
118 | for (fixup = start; fixup < end; fixup++) { | ||
119 | switch (fixup->type) { | ||
120 | case m68k_fixup_memoffset: | ||
121 | *(u32 *)fixup->addr = m68k_memoffset; | ||
122 | break; | ||
123 | case m68k_fixup_vnode_shift: | ||
124 | *(u16 *)fixup->addr += m68k_virt_to_node_shift; | ||
125 | break; | ||
126 | } | ||
127 | } | ||
5 | #endif | 128 | #endif |
129 | } | ||
diff --git a/arch/m68k/kernel/module_mm.c b/arch/m68k/kernel/module_mm.c deleted file mode 100644 index cd6bcb1c957..00000000000 --- a/arch/m68k/kernel/module_mm.c +++ /dev/null | |||
@@ -1,155 +0,0 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file COPYING in the main directory of this archive | ||
4 | * for more details. | ||
5 | */ | ||
6 | |||
7 | #include <linux/moduleloader.h> | ||
8 | #include <linux/elf.h> | ||
9 | #include <linux/vmalloc.h> | ||
10 | #include <linux/fs.h> | ||
11 | #include <linux/string.h> | ||
12 | #include <linux/kernel.h> | ||
13 | |||
14 | #if 0 | ||
15 | #define DEBUGP printk | ||
16 | #else | ||
17 | #define DEBUGP(fmt...) | ||
18 | #endif | ||
19 | |||
20 | #ifdef CONFIG_MODULES | ||
21 | |||
22 | void *module_alloc(unsigned long size) | ||
23 | { | ||
24 | if (size == 0) | ||
25 | return NULL; | ||
26 | return vmalloc(size); | ||
27 | } | ||
28 | |||
29 | |||
30 | /* Free memory returned from module_alloc */ | ||
31 | void module_free(struct module *mod, void *module_region) | ||
32 | { | ||
33 | vfree(module_region); | ||
34 | } | ||
35 | |||
36 | /* We don't need anything special. */ | ||
37 | int module_frob_arch_sections(Elf_Ehdr *hdr, | ||
38 | Elf_Shdr *sechdrs, | ||
39 | char *secstrings, | ||
40 | struct module *mod) | ||
41 | { | ||
42 | return 0; | ||
43 | } | ||
44 | |||
45 | int apply_relocate(Elf32_Shdr *sechdrs, | ||
46 | const char *strtab, | ||
47 | unsigned int symindex, | ||
48 | unsigned int relsec, | ||
49 | struct module *me) | ||
50 | { | ||
51 | unsigned int i; | ||
52 | Elf32_Rel *rel = (void *)sechdrs[relsec].sh_addr; | ||
53 | Elf32_Sym *sym; | ||
54 | uint32_t *location; | ||
55 | |||
56 | DEBUGP("Applying relocate section %u to %u\n", relsec, | ||
57 | sechdrs[relsec].sh_info); | ||
58 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { | ||
59 | /* This is where to make the change */ | ||
60 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr | ||
61 | + rel[i].r_offset; | ||
62 | /* This is the symbol it is referring to. Note that all | ||
63 | undefined symbols have been resolved. */ | ||
64 | sym = (Elf32_Sym *)sechdrs[symindex].sh_addr | ||
65 | + ELF32_R_SYM(rel[i].r_info); | ||
66 | |||
67 | switch (ELF32_R_TYPE(rel[i].r_info)) { | ||
68 | case R_68K_32: | ||
69 | /* We add the value into the location given */ | ||
70 | *location += sym->st_value; | ||
71 | break; | ||
72 | case R_68K_PC32: | ||
73 | /* Add the value, subtract its postition */ | ||
74 | *location += sym->st_value - (uint32_t)location; | ||
75 | break; | ||
76 | default: | ||
77 | printk(KERN_ERR "module %s: Unknown relocation: %u\n", | ||
78 | me->name, ELF32_R_TYPE(rel[i].r_info)); | ||
79 | return -ENOEXEC; | ||
80 | } | ||
81 | } | ||
82 | return 0; | ||
83 | } | ||
84 | |||
85 | int apply_relocate_add(Elf32_Shdr *sechdrs, | ||
86 | const char *strtab, | ||
87 | unsigned int symindex, | ||
88 | unsigned int relsec, | ||
89 | struct module *me) | ||
90 | { | ||
91 | unsigned int i; | ||
92 | Elf32_Rela *rel = (void *)sechdrs[relsec].sh_addr; | ||
93 | Elf32_Sym *sym; | ||
94 | uint32_t *location; | ||
95 | |||
96 | DEBUGP("Applying relocate_add section %u to %u\n", relsec, | ||
97 | sechdrs[relsec].sh_info); | ||
98 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { | ||
99 | /* This is where to make the change */ | ||
100 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr | ||
101 | + rel[i].r_offset; | ||
102 | /* This is the symbol it is referring to. Note that all | ||
103 | undefined symbols have been resolved. */ | ||
104 | sym = (Elf32_Sym *)sechdrs[symindex].sh_addr | ||
105 | + ELF32_R_SYM(rel[i].r_info); | ||
106 | |||
107 | switch (ELF32_R_TYPE(rel[i].r_info)) { | ||
108 | case R_68K_32: | ||
109 | /* We add the value into the location given */ | ||
110 | *location = rel[i].r_addend + sym->st_value; | ||
111 | break; | ||
112 | case R_68K_PC32: | ||
113 | /* Add the value, subtract its postition */ | ||
114 | *location = rel[i].r_addend + sym->st_value - (uint32_t)location; | ||
115 | break; | ||
116 | default: | ||
117 | printk(KERN_ERR "module %s: Unknown relocation: %u\n", | ||
118 | me->name, ELF32_R_TYPE(rel[i].r_info)); | ||
119 | return -ENOEXEC; | ||
120 | } | ||
121 | } | ||
122 | return 0; | ||
123 | } | ||
124 | |||
125 | int module_finalize(const Elf_Ehdr *hdr, | ||
126 | const Elf_Shdr *sechdrs, | ||
127 | struct module *mod) | ||
128 | { | ||
129 | module_fixup(mod, mod->arch.fixup_start, mod->arch.fixup_end); | ||
130 | |||
131 | return 0; | ||
132 | } | ||
133 | |||
134 | void module_arch_cleanup(struct module *mod) | ||
135 | { | ||
136 | } | ||
137 | |||
138 | #endif /* CONFIG_MODULES */ | ||
139 | |||
140 | void module_fixup(struct module *mod, struct m68k_fixup_info *start, | ||
141 | struct m68k_fixup_info *end) | ||
142 | { | ||
143 | struct m68k_fixup_info *fixup; | ||
144 | |||
145 | for (fixup = start; fixup < end; fixup++) { | ||
146 | switch (fixup->type) { | ||
147 | case m68k_fixup_memoffset: | ||
148 | *(u32 *)fixup->addr = m68k_memoffset; | ||
149 | break; | ||
150 | case m68k_fixup_vnode_shift: | ||
151 | *(u16 *)fixup->addr += m68k_virt_to_node_shift; | ||
152 | break; | ||
153 | } | ||
154 | } | ||
155 | } | ||
diff --git a/arch/m68k/kernel/module_no.c b/arch/m68k/kernel/module_no.c deleted file mode 100644 index d11ffae7956..00000000000 --- a/arch/m68k/kernel/module_no.c +++ /dev/null | |||
@@ -1,126 +0,0 @@ | |||
1 | #include <linux/moduleloader.h> | ||
2 | #include <linux/elf.h> | ||
3 | #include <linux/vmalloc.h> | ||
4 | #include <linux/fs.h> | ||
5 | #include <linux/string.h> | ||
6 | #include <linux/kernel.h> | ||
7 | |||
8 | #if 0 | ||
9 | #define DEBUGP printk | ||
10 | #else | ||
11 | #define DEBUGP(fmt...) | ||
12 | #endif | ||
13 | |||
14 | void *module_alloc(unsigned long size) | ||
15 | { | ||
16 | if (size == 0) | ||
17 | return NULL; | ||
18 | return vmalloc(size); | ||
19 | } | ||
20 | |||
21 | |||
22 | /* Free memory returned from module_alloc */ | ||
23 | void module_free(struct module *mod, void *module_region) | ||
24 | { | ||
25 | vfree(module_region); | ||
26 | } | ||
27 | |||
28 | /* We don't need anything special. */ | ||
29 | int module_frob_arch_sections(Elf_Ehdr *hdr, | ||
30 | Elf_Shdr *sechdrs, | ||
31 | char *secstrings, | ||
32 | struct module *mod) | ||
33 | { | ||
34 | return 0; | ||
35 | } | ||
36 | |||
37 | int apply_relocate(Elf32_Shdr *sechdrs, | ||
38 | const char *strtab, | ||
39 | unsigned int symindex, | ||
40 | unsigned int relsec, | ||
41 | struct module *me) | ||
42 | { | ||
43 | unsigned int i; | ||
44 | Elf32_Rel *rel = (void *)sechdrs[relsec].sh_addr; | ||
45 | Elf32_Sym *sym; | ||
46 | uint32_t *location; | ||
47 | |||
48 | DEBUGP("Applying relocate section %u to %u\n", relsec, | ||
49 | sechdrs[relsec].sh_info); | ||
50 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { | ||
51 | /* This is where to make the change */ | ||
52 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr | ||
53 | + rel[i].r_offset; | ||
54 | /* This is the symbol it is referring to. Note that all | ||
55 | undefined symbols have been resolved. */ | ||
56 | sym = (Elf32_Sym *)sechdrs[symindex].sh_addr | ||
57 | + ELF32_R_SYM(rel[i].r_info); | ||
58 | |||
59 | switch (ELF32_R_TYPE(rel[i].r_info)) { | ||
60 | case R_68K_32: | ||
61 | /* We add the value into the location given */ | ||
62 | *location += sym->st_value; | ||
63 | break; | ||
64 | case R_68K_PC32: | ||
65 | /* Add the value, subtract its postition */ | ||
66 | *location += sym->st_value - (uint32_t)location; | ||
67 | break; | ||
68 | default: | ||
69 | printk(KERN_ERR "module %s: Unknown relocation: %u\n", | ||
70 | me->name, ELF32_R_TYPE(rel[i].r_info)); | ||
71 | return -ENOEXEC; | ||
72 | } | ||
73 | } | ||
74 | return 0; | ||
75 | } | ||
76 | |||
77 | int apply_relocate_add(Elf32_Shdr *sechdrs, | ||
78 | const char *strtab, | ||
79 | unsigned int symindex, | ||
80 | unsigned int relsec, | ||
81 | struct module *me) | ||
82 | { | ||
83 | unsigned int i; | ||
84 | Elf32_Rela *rel = (void *)sechdrs[relsec].sh_addr; | ||
85 | Elf32_Sym *sym; | ||
86 | uint32_t *location; | ||
87 | |||
88 | DEBUGP("Applying relocate_add section %u to %u\n", relsec, | ||
89 | sechdrs[relsec].sh_info); | ||
90 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { | ||
91 | /* This is where to make the change */ | ||
92 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr | ||
93 | + rel[i].r_offset; | ||
94 | /* This is the symbol it is referring to. Note that all | ||
95 | undefined symbols have been resolved. */ | ||
96 | sym = (Elf32_Sym *)sechdrs[symindex].sh_addr | ||
97 | + ELF32_R_SYM(rel[i].r_info); | ||
98 | |||
99 | switch (ELF32_R_TYPE(rel[i].r_info)) { | ||
100 | case R_68K_32: | ||
101 | /* We add the value into the location given */ | ||
102 | *location = rel[i].r_addend + sym->st_value; | ||
103 | break; | ||
104 | case R_68K_PC32: | ||
105 | /* Add the value, subtract its postition */ | ||
106 | *location = rel[i].r_addend + sym->st_value - (uint32_t)location; | ||
107 | break; | ||
108 | default: | ||
109 | printk(KERN_ERR "module %s: Unknown relocation: %u\n", | ||
110 | me->name, ELF32_R_TYPE(rel[i].r_info)); | ||
111 | return -ENOEXEC; | ||
112 | } | ||
113 | } | ||
114 | return 0; | ||
115 | } | ||
116 | |||
117 | int module_finalize(const Elf_Ehdr *hdr, | ||
118 | const Elf_Shdr *sechdrs, | ||
119 | struct module *me) | ||
120 | { | ||
121 | return 0; | ||
122 | } | ||
123 | |||
124 | void module_arch_cleanup(struct module *mod) | ||
125 | { | ||
126 | } | ||
diff --git a/arch/m68k/kernel/process_mm.c b/arch/m68k/kernel/process_mm.c index c2a1fc23dd7..1bc223aa07e 100644 --- a/arch/m68k/kernel/process_mm.c +++ b/arch/m68k/kernel/process_mm.c | |||
@@ -185,7 +185,7 @@ EXPORT_SYMBOL(kernel_thread); | |||
185 | void flush_thread(void) | 185 | void flush_thread(void) |
186 | { | 186 | { |
187 | unsigned long zero = 0; | 187 | unsigned long zero = 0; |
188 | set_fs(USER_DS); | 188 | |
189 | current->thread.fs = __USER_DS; | 189 | current->thread.fs = __USER_DS; |
190 | if (!FPU_IS_EMU) | 190 | if (!FPU_IS_EMU) |
191 | asm volatile (".chip 68k/68881\n\t" | 191 | asm volatile (".chip 68k/68881\n\t" |
diff --git a/arch/m68k/kernel/process_no.c b/arch/m68k/kernel/process_no.c index 9b86ad11c68..69c1803fcf1 100644 --- a/arch/m68k/kernel/process_no.c +++ b/arch/m68k/kernel/process_no.c | |||
@@ -158,7 +158,7 @@ void flush_thread(void) | |||
158 | #ifdef CONFIG_FPU | 158 | #ifdef CONFIG_FPU |
159 | unsigned long zero = 0; | 159 | unsigned long zero = 0; |
160 | #endif | 160 | #endif |
161 | set_fs(USER_DS); | 161 | |
162 | current->thread.fs = __USER_DS; | 162 | current->thread.fs = __USER_DS; |
163 | #ifdef CONFIG_FPU | 163 | #ifdef CONFIG_FPU |
164 | if (!FPU_IS_EMU) | 164 | if (!FPU_IS_EMU) |
diff --git a/arch/m68k/kernel/setup_mm.c b/arch/m68k/kernel/setup_mm.c index 334d8364037..c3b45061dd0 100644 --- a/arch/m68k/kernel/setup_mm.c +++ b/arch/m68k/kernel/setup_mm.c | |||
@@ -216,7 +216,9 @@ static void __init m68k_parse_bootinfo(const struct bi_record *record) | |||
216 | 216 | ||
217 | void __init setup_arch(char **cmdline_p) | 217 | void __init setup_arch(char **cmdline_p) |
218 | { | 218 | { |
219 | #ifndef CONFIG_SUN3 | ||
219 | int i; | 220 | int i; |
221 | #endif | ||
220 | 222 | ||
221 | /* The bootinfo is located right after the kernel bss */ | 223 | /* The bootinfo is located right after the kernel bss */ |
222 | m68k_parse_bootinfo((const struct bi_record *)_end); | 224 | m68k_parse_bootinfo((const struct bi_record *)_end); |
diff --git a/arch/m68k/kernel/syscalltable.S b/arch/m68k/kernel/syscalltable.S index 00d1452f957..c468f2edaa8 100644 --- a/arch/m68k/kernel/syscalltable.S +++ b/arch/m68k/kernel/syscalltable.S | |||
@@ -189,7 +189,7 @@ ENTRY(sys_call_table) | |||
189 | .long sys_getpagesize | 189 | .long sys_getpagesize |
190 | .long sys_ni_syscall /* old "query_module" */ | 190 | .long sys_ni_syscall /* old "query_module" */ |
191 | .long sys_poll | 191 | .long sys_poll |
192 | .long sys_nfsservctl | 192 | .long sys_ni_syscall /* old nfsservctl */ |
193 | .long sys_setresgid16 /* 170 */ | 193 | .long sys_setresgid16 /* 170 */ |
194 | .long sys_getresgid16 | 194 | .long sys_getresgid16 |
195 | .long sys_prctl | 195 | .long sys_prctl |
diff --git a/arch/m68k/kernel/traps_no.c b/arch/m68k/kernel/traps_no.c index a768008dfd0..e67b8c80695 100644 --- a/arch/m68k/kernel/traps_no.c +++ b/arch/m68k/kernel/traps_no.c | |||
@@ -60,10 +60,6 @@ static char const * const vec_names[] = { | |||
60 | "MMU CONFIGURATION ERROR" | 60 | "MMU CONFIGURATION ERROR" |
61 | }; | 61 | }; |
62 | 62 | ||
63 | void __init trap_init(void) | ||
64 | { | ||
65 | } | ||
66 | |||
67 | void die_if_kernel(char *str, struct pt_regs *fp, int nr) | 63 | void die_if_kernel(char *str, struct pt_regs *fp, int nr) |
68 | { | 64 | { |
69 | if (!(fp->sr & PS_S)) | 65 | if (!(fp->sr & PS_S)) |
diff --git a/arch/m68k/kernel/vmlinux-nommu.lds b/arch/m68k/kernel/vmlinux-nommu.lds new file mode 100644 index 00000000000..06a763f49fd --- /dev/null +++ b/arch/m68k/kernel/vmlinux-nommu.lds | |||
@@ -0,0 +1,91 @@ | |||
1 | /* | ||
2 | * vmlinux.lds.S -- master linker script for m68knommu arch | ||
3 | * | ||
4 | * (C) Copyright 2002-2012, Greg Ungerer <gerg@snapgear.com> | ||
5 | * | ||
6 | * This linker script is equipped to build either ROM loaded or RAM | ||
7 | * run kernels. | ||
8 | */ | ||
9 | |||
10 | #if defined(CONFIG_RAMKERNEL) | ||
11 | #define KTEXT_ADDR CONFIG_KERNELBASE | ||
12 | #endif | ||
13 | #if defined(CONFIG_ROMKERNEL) | ||
14 | #define KTEXT_ADDR CONFIG_ROMSTART | ||
15 | #define KDATA_ADDR CONFIG_KERNELBASE | ||
16 | #define LOAD_OFFSET KDATA_ADDR + (ADDR(.text) + SIZEOF(.text)) | ||
17 | #endif | ||
18 | |||
19 | #include <asm/page.h> | ||
20 | #include <asm/thread_info.h> | ||
21 | #include <asm-generic/vmlinux.lds.h> | ||
22 | |||
23 | OUTPUT_ARCH(m68k) | ||
24 | ENTRY(_start) | ||
25 | |||
26 | jiffies = jiffies_64 + 4; | ||
27 | |||
28 | SECTIONS { | ||
29 | |||
30 | #ifdef CONFIG_ROMVEC | ||
31 | . = CONFIG_ROMVEC; | ||
32 | .romvec : { | ||
33 | __rom_start = .; | ||
34 | _romvec = .; | ||
35 | *(.romvec) | ||
36 | *(.data..initvect) | ||
37 | } | ||
38 | #endif | ||
39 | |||
40 | . = KTEXT_ADDR; | ||
41 | |||
42 | _text = .; | ||
43 | _stext = .; | ||
44 | .text : { | ||
45 | HEAD_TEXT | ||
46 | TEXT_TEXT | ||
47 | SCHED_TEXT | ||
48 | LOCK_TEXT | ||
49 | *(.fixup) | ||
50 | . = ALIGN(16); | ||
51 | } | ||
52 | _etext = .; | ||
53 | |||
54 | #ifdef KDATA_ADDR | ||
55 | . = KDATA_ADDR; | ||
56 | #endif | ||
57 | |||
58 | _sdata = .; | ||
59 | RO_DATA_SECTION(PAGE_SIZE) | ||
60 | RW_DATA_SECTION(16, PAGE_SIZE, THREAD_SIZE) | ||
61 | _edata = .; | ||
62 | |||
63 | EXCEPTION_TABLE(16) | ||
64 | NOTES | ||
65 | |||
66 | . = ALIGN(PAGE_SIZE); | ||
67 | __init_begin = .; | ||
68 | INIT_TEXT_SECTION(PAGE_SIZE) | ||
69 | INIT_DATA_SECTION(16) | ||
70 | PERCPU_SECTION(16) | ||
71 | .m68k_fixup : { | ||
72 | __start_fixup = .; | ||
73 | *(.m68k_fixup) | ||
74 | __stop_fixup = .; | ||
75 | } | ||
76 | .init.data : { | ||
77 | . = ALIGN(PAGE_SIZE); | ||
78 | __init_end = .; | ||
79 | } | ||
80 | |||
81 | BSS_SECTION(0, 0, 0) | ||
82 | |||
83 | _end = .; | ||
84 | |||
85 | STABS_DEBUG | ||
86 | .comment 0 : { *(.comment) } | ||
87 | |||
88 | /* Sections to be discarded */ | ||
89 | DISCARDS | ||
90 | } | ||
91 | |||