diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/h8300/mm |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/h8300/mm')
-rw-r--r-- | arch/h8300/mm/Makefile | 5 | ||||
-rw-r--r-- | arch/h8300/mm/fault.c | 58 | ||||
-rw-r--r-- | arch/h8300/mm/init.c | 232 | ||||
-rw-r--r-- | arch/h8300/mm/kmap.c | 59 | ||||
-rw-r--r-- | arch/h8300/mm/memory.c | 70 |
5 files changed, 424 insertions, 0 deletions
diff --git a/arch/h8300/mm/Makefile b/arch/h8300/mm/Makefile new file mode 100644 index 000000000000..5f4bc42b6453 --- /dev/null +++ b/arch/h8300/mm/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | # | ||
2 | # Makefile for the linux m68k-specific parts of the memory manager. | ||
3 | # | ||
4 | |||
5 | obj-y := init.o fault.o memory.o kmap.o | ||
diff --git a/arch/h8300/mm/fault.c b/arch/h8300/mm/fault.c new file mode 100644 index 000000000000..29e9af9f0e6a --- /dev/null +++ b/arch/h8300/mm/fault.c | |||
@@ -0,0 +1,58 @@ | |||
1 | /* | ||
2 | * linux/arch/h8300/mm/fault.c | ||
3 | * | ||
4 | * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>, | ||
5 | * Copyright (C) 2000 Lineo, Inc. (www.lineo.com) | ||
6 | * | ||
7 | * Based on: | ||
8 | * | ||
9 | * linux/arch/m68knommu/mm/fault.c | ||
10 | * linux/arch/m68k/mm/fault.c | ||
11 | * | ||
12 | * Copyright (C) 1995 Hamish Macdonald | ||
13 | */ | ||
14 | |||
15 | #include <linux/mman.h> | ||
16 | #include <linux/mm.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/ptrace.h> | ||
19 | |||
20 | #include <asm/system.h> | ||
21 | #include <asm/pgtable.h> | ||
22 | |||
23 | extern void die_if_kernel(char *, struct pt_regs *, long); | ||
24 | |||
25 | /* | ||
26 | * This routine handles page faults. It determines the problem, and | ||
27 | * then passes it off to one of the appropriate routines. | ||
28 | * | ||
29 | * error_code: | ||
30 | * bit 0 == 0 means no page found, 1 means protection fault | ||
31 | * bit 1 == 0 means read, 1 means write | ||
32 | * | ||
33 | * If this routine detects a bad access, it returns 1, otherwise it | ||
34 | * returns 0. | ||
35 | */ | ||
36 | asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address, | ||
37 | unsigned long error_code) | ||
38 | { | ||
39 | #ifdef DEBUG | ||
40 | printk ("regs->sr=%#x, regs->pc=%#lx, address=%#lx, %ld\n", | ||
41 | regs->sr, regs->pc, address, error_code); | ||
42 | #endif | ||
43 | |||
44 | /* | ||
45 | * Oops. The kernel tried to access some bad page. We'll have to | ||
46 | * terminate things with extreme prejudice. | ||
47 | */ | ||
48 | if ((unsigned long) address < PAGE_SIZE) { | ||
49 | printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference"); | ||
50 | } else | ||
51 | printk(KERN_ALERT "Unable to handle kernel access"); | ||
52 | printk(" at virtual address %08lx\n",address); | ||
53 | die_if_kernel("Oops", regs, error_code); | ||
54 | do_exit(SIGKILL); | ||
55 | |||
56 | return 1; | ||
57 | } | ||
58 | |||
diff --git a/arch/h8300/mm/init.c b/arch/h8300/mm/init.c new file mode 100644 index 000000000000..1e0929ddc8c4 --- /dev/null +++ b/arch/h8300/mm/init.c | |||
@@ -0,0 +1,232 @@ | |||
1 | /* | ||
2 | * linux/arch/h8300/mm/init.c | ||
3 | * | ||
4 | * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>, | ||
5 | * Kenneth Albanowski <kjahds@kjahds.com>, | ||
6 | * Copyright (C) 2000 Lineo, Inc. (www.lineo.com) | ||
7 | * | ||
8 | * Based on: | ||
9 | * | ||
10 | * linux/arch/m68knommu/mm/init.c | ||
11 | * linux/arch/m68k/mm/init.c | ||
12 | * | ||
13 | * Copyright (C) 1995 Hamish Macdonald | ||
14 | * | ||
15 | * JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com) | ||
16 | * DEC/2000 -- linux 2.4 support <davidm@snapgear.com> | ||
17 | */ | ||
18 | |||
19 | #include <linux/config.h> | ||
20 | #include <linux/signal.h> | ||
21 | #include <linux/sched.h> | ||
22 | #include <linux/kernel.h> | ||
23 | #include <linux/errno.h> | ||
24 | #include <linux/string.h> | ||
25 | #include <linux/types.h> | ||
26 | #include <linux/ptrace.h> | ||
27 | #include <linux/mman.h> | ||
28 | #include <linux/mm.h> | ||
29 | #include <linux/swap.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/highmem.h> | ||
32 | #include <linux/pagemap.h> | ||
33 | #include <linux/bootmem.h> | ||
34 | #include <linux/slab.h> | ||
35 | |||
36 | #include <asm/setup.h> | ||
37 | #include <asm/segment.h> | ||
38 | #include <asm/page.h> | ||
39 | #include <asm/pgtable.h> | ||
40 | #include <asm/system.h> | ||
41 | |||
42 | #undef DEBUG | ||
43 | |||
44 | extern void die_if_kernel(char *,struct pt_regs *,long); | ||
45 | extern void free_initmem(void); | ||
46 | |||
47 | /* | ||
48 | * BAD_PAGE is the page that is used for page faults when linux | ||
49 | * is out-of-memory. Older versions of linux just did a | ||
50 | * do_exit(), but using this instead means there is less risk | ||
51 | * for a process dying in kernel mode, possibly leaving a inode | ||
52 | * unused etc.. | ||
53 | * | ||
54 | * BAD_PAGETABLE is the accompanying page-table: it is initialized | ||
55 | * to point to BAD_PAGE entries. | ||
56 | * | ||
57 | * ZERO_PAGE is a special page that is used for zero-initialized | ||
58 | * data and COW. | ||
59 | */ | ||
60 | static unsigned long empty_bad_page_table; | ||
61 | |||
62 | static unsigned long empty_bad_page; | ||
63 | |||
64 | unsigned long empty_zero_page; | ||
65 | |||
66 | extern unsigned long rom_length; | ||
67 | |||
68 | void show_mem(void) | ||
69 | { | ||
70 | unsigned long i; | ||
71 | int free = 0, total = 0, reserved = 0, shared = 0; | ||
72 | int cached = 0; | ||
73 | |||
74 | printk("\nMem-info:\n"); | ||
75 | show_free_areas(); | ||
76 | i = max_mapnr; | ||
77 | while (i-- > 0) { | ||
78 | total++; | ||
79 | if (PageReserved(mem_map+i)) | ||
80 | reserved++; | ||
81 | else if (PageSwapCache(mem_map+i)) | ||
82 | cached++; | ||
83 | else if (!page_count(mem_map+i)) | ||
84 | free++; | ||
85 | else | ||
86 | shared += page_count(mem_map+i) - 1; | ||
87 | } | ||
88 | printk("%d pages of RAM\n",total); | ||
89 | printk("%d free pages\n",free); | ||
90 | printk("%d reserved pages\n",reserved); | ||
91 | printk("%d pages shared\n",shared); | ||
92 | printk("%d pages swap cached\n",cached); | ||
93 | } | ||
94 | |||
95 | extern unsigned long memory_start; | ||
96 | extern unsigned long memory_end; | ||
97 | |||
98 | /* | ||
99 | * paging_init() continues the virtual memory environment setup which | ||
100 | * was begun by the code in arch/head.S. | ||
101 | * The parameters are pointers to where to stick the starting and ending | ||
102 | * addresses of available kernel virtual memory. | ||
103 | */ | ||
104 | void paging_init(void) | ||
105 | { | ||
106 | /* | ||
107 | * Make sure start_mem is page aligned, otherwise bootmem and | ||
108 | * page_alloc get different views og the world. | ||
109 | */ | ||
110 | #ifdef DEBUG | ||
111 | unsigned long start_mem = PAGE_ALIGN(memory_start); | ||
112 | #endif | ||
113 | unsigned long end_mem = memory_end & PAGE_MASK; | ||
114 | |||
115 | #ifdef DEBUG | ||
116 | printk ("start_mem is %#lx\nvirtual_end is %#lx\n", | ||
117 | start_mem, end_mem); | ||
118 | #endif | ||
119 | |||
120 | /* | ||
121 | * Initialize the bad page table and bad page to point | ||
122 | * to a couple of allocated pages. | ||
123 | */ | ||
124 | empty_bad_page_table = (unsigned long)alloc_bootmem_pages(PAGE_SIZE); | ||
125 | empty_bad_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE); | ||
126 | empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE); | ||
127 | memset((void *)empty_zero_page, 0, PAGE_SIZE); | ||
128 | |||
129 | /* | ||
130 | * Set up SFC/DFC registers (user data space). | ||
131 | */ | ||
132 | set_fs (USER_DS); | ||
133 | |||
134 | #ifdef DEBUG | ||
135 | printk ("before free_area_init\n"); | ||
136 | |||
137 | printk ("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n", | ||
138 | start_mem, end_mem); | ||
139 | #endif | ||
140 | |||
141 | { | ||
142 | unsigned long zones_size[MAX_NR_ZONES] = {0, 0, 0}; | ||
143 | |||
144 | zones_size[ZONE_DMA] = 0 >> PAGE_SHIFT; | ||
145 | zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT; | ||
146 | #ifdef CONFIG_HIGHMEM | ||
147 | zones_size[ZONE_HIGHMEM] = 0; | ||
148 | #endif | ||
149 | free_area_init(zones_size); | ||
150 | } | ||
151 | } | ||
152 | |||
153 | void mem_init(void) | ||
154 | { | ||
155 | int codek = 0, datak = 0, initk = 0; | ||
156 | /* DAVIDM look at setup memory map generically with reserved area */ | ||
157 | unsigned long tmp; | ||
158 | extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end; | ||
159 | extern unsigned long _ramend, _ramstart; | ||
160 | unsigned long len = &_ramend - &_ramstart; | ||
161 | unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */ | ||
162 | unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */ | ||
163 | |||
164 | #ifdef DEBUG | ||
165 | printk(KERN_DEBUG "Mem_init: start=%lx, end=%lx\n", start_mem, end_mem); | ||
166 | #endif | ||
167 | |||
168 | end_mem &= PAGE_MASK; | ||
169 | high_memory = (void *) end_mem; | ||
170 | |||
171 | start_mem = PAGE_ALIGN(start_mem); | ||
172 | max_mapnr = num_physpages = MAP_NR(high_memory); | ||
173 | |||
174 | /* this will put all memory onto the freelists */ | ||
175 | totalram_pages = free_all_bootmem(); | ||
176 | |||
177 | codek = (&_etext - &_stext) >> 10; | ||
178 | datak = (&_ebss - &_sdata) >> 10; | ||
179 | initk = (&__init_begin - &__init_end) >> 10; | ||
180 | |||
181 | tmp = nr_free_pages() << PAGE_SHIFT; | ||
182 | printk(KERN_INFO "Memory available: %luk/%luk RAM, %luk/%luk ROM (%dk kernel code, %dk data)\n", | ||
183 | tmp >> 10, | ||
184 | len >> 10, | ||
185 | (rom_length > 0) ? ((rom_length >> 10) - codek) : 0, | ||
186 | rom_length >> 10, | ||
187 | codek, | ||
188 | datak | ||
189 | ); | ||
190 | } | ||
191 | |||
192 | |||
193 | #ifdef CONFIG_BLK_DEV_INITRD | ||
194 | void free_initrd_mem(unsigned long start, unsigned long end) | ||
195 | { | ||
196 | int pages = 0; | ||
197 | for (; start < end; start += PAGE_SIZE) { | ||
198 | ClearPageReserved(virt_to_page(start)); | ||
199 | set_page_count(virt_to_page(start), 1); | ||
200 | free_page(start); | ||
201 | totalram_pages++; | ||
202 | pages++; | ||
203 | } | ||
204 | printk ("Freeing initrd memory: %dk freed\n", pages); | ||
205 | } | ||
206 | #endif | ||
207 | |||
208 | void | ||
209 | free_initmem() | ||
210 | { | ||
211 | #ifdef CONFIG_RAMKERNEL | ||
212 | unsigned long addr; | ||
213 | extern char __init_begin, __init_end; | ||
214 | /* | ||
215 | * the following code should be cool even if these sections | ||
216 | * are not page aligned. | ||
217 | */ | ||
218 | addr = PAGE_ALIGN((unsigned long)(&__init_begin)); | ||
219 | /* next to check that the page we free is not a partial page */ | ||
220 | for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) { | ||
221 | ClearPageReserved(virt_to_page(addr)); | ||
222 | set_page_count(virt_to_page(addr), 1); | ||
223 | free_page(addr); | ||
224 | totalram_pages++; | ||
225 | } | ||
226 | printk(KERN_INFO "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n", | ||
227 | (addr - PAGE_ALIGN((long) &__init_begin)) >> 10, | ||
228 | (int)(PAGE_ALIGN((unsigned long)(&__init_begin))), | ||
229 | (int)(addr - PAGE_SIZE)); | ||
230 | #endif | ||
231 | } | ||
232 | |||
diff --git a/arch/h8300/mm/kmap.c b/arch/h8300/mm/kmap.c new file mode 100644 index 000000000000..4101ab54fc17 --- /dev/null +++ b/arch/h8300/mm/kmap.c | |||
@@ -0,0 +1,59 @@ | |||
1 | /* | ||
2 | * linux/arch/h8300/mm/kmap.c | ||
3 | * | ||
4 | * Based on | ||
5 | * linux/arch/m68knommu/mm/kmap.c | ||
6 | * | ||
7 | * Copyright (C) 2000 Lineo, <davidm@snapgear.com> | ||
8 | * Copyright (C) 2000-2002 David McCullough <davidm@snapgear.com> | ||
9 | */ | ||
10 | |||
11 | #include <linux/config.h> | ||
12 | #include <linux/mm.h> | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/string.h> | ||
15 | #include <linux/types.h> | ||
16 | #include <linux/slab.h> | ||
17 | #include <linux/vmalloc.h> | ||
18 | |||
19 | #include <asm/setup.h> | ||
20 | #include <asm/segment.h> | ||
21 | #include <asm/page.h> | ||
22 | #include <asm/pgalloc.h> | ||
23 | #include <asm/io.h> | ||
24 | #include <asm/system.h> | ||
25 | |||
26 | #undef DEBUG | ||
27 | |||
28 | /* | ||
29 | * Map some physical address range into the kernel address space. | ||
30 | */ | ||
31 | void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag) | ||
32 | { | ||
33 | return (void *)physaddr; | ||
34 | } | ||
35 | |||
36 | /* | ||
37 | * Unmap a ioremap()ed region again. | ||
38 | */ | ||
39 | void iounmap(void *addr) | ||
40 | { | ||
41 | } | ||
42 | |||
43 | /* | ||
44 | * __iounmap unmaps nearly everything, so be careful | ||
45 | * it doesn't free currently pointer/page tables anymore but it | ||
46 | * wans't used anyway and might be added later. | ||
47 | */ | ||
48 | void __iounmap(void *addr, unsigned long size) | ||
49 | { | ||
50 | } | ||
51 | |||
52 | /* | ||
53 | * Set new cache mode for some kernel address space. | ||
54 | * The caller must push data for that range itself, if such data may already | ||
55 | * be in the cache. | ||
56 | */ | ||
57 | void kernel_set_cachemode(void *addr, unsigned long size, int cmode) | ||
58 | { | ||
59 | } | ||
diff --git a/arch/h8300/mm/memory.c b/arch/h8300/mm/memory.c new file mode 100644 index 000000000000..f4ddece3216f --- /dev/null +++ b/arch/h8300/mm/memory.c | |||
@@ -0,0 +1,70 @@ | |||
1 | /* | ||
2 | * linux/arch/h8300/mm/memory.c | ||
3 | * | ||
4 | * Copyright (C) 2002 Yoshinori Sato <ysato@users.sourceforge.jp>, | ||
5 | * | ||
6 | * Based on: | ||
7 | * | ||
8 | * linux/arch/m68knommu/mm/memory.c | ||
9 | * | ||
10 | * Copyright (C) 1998 Kenneth Albanowski <kjahds@kjahds.com>, | ||
11 | * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com) | ||
12 | * | ||
13 | * Based on: | ||
14 | * | ||
15 | * linux/arch/m68k/mm/memory.c | ||
16 | * | ||
17 | * Copyright (C) 1995 Hamish Macdonald | ||
18 | */ | ||
19 | |||
20 | #include <linux/config.h> | ||
21 | #include <linux/mm.h> | ||
22 | #include <linux/kernel.h> | ||
23 | #include <linux/string.h> | ||
24 | #include <linux/types.h> | ||
25 | #include <linux/slab.h> | ||
26 | |||
27 | #include <asm/setup.h> | ||
28 | #include <asm/segment.h> | ||
29 | #include <asm/page.h> | ||
30 | #include <asm/pgtable.h> | ||
31 | #include <asm/system.h> | ||
32 | #include <asm/traps.h> | ||
33 | #include <asm/io.h> | ||
34 | |||
35 | void cache_clear (unsigned long paddr, int len) | ||
36 | { | ||
37 | } | ||
38 | |||
39 | |||
40 | void cache_push (unsigned long paddr, int len) | ||
41 | { | ||
42 | } | ||
43 | |||
44 | void cache_push_v (unsigned long vaddr, int len) | ||
45 | { | ||
46 | } | ||
47 | |||
48 | /* Map some physical address range into the kernel address space. The | ||
49 | * code is copied and adapted from map_chunk(). | ||
50 | */ | ||
51 | |||
52 | unsigned long kernel_map(unsigned long paddr, unsigned long size, | ||
53 | int nocacheflag, unsigned long *memavailp ) | ||
54 | { | ||
55 | return paddr; | ||
56 | } | ||
57 | |||
58 | #ifdef MAGIC_ROM_PTR | ||
59 | |||
60 | int is_in_rom(unsigned long addr) | ||
61 | { | ||
62 | /* Anything not in operational RAM is returned as in rom! */ | ||
63 | if (addr < _ramstart || addr >= _ramend) | ||
64 | return 1; | ||
65 | else | ||
66 | return 0; | ||
67 | } | ||
68 | |||
69 | #endif | ||
70 | |||