blob: 094225e0d722d2dcd57f1c34abbbf948deff3e33 [file] [log] [blame]
Paul Mundt01066622007-03-28 16:38:13 +09001/*
2 * linux/arch/sh/mm/init.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999 Niibe Yutaka
Paul Mundt01066622007-03-28 16:38:13 +09005 * Copyright (C) 2002 - 2007 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Based on linux/arch/i386/mm/init.c:
8 * Copyright (C) 1995 Linus Torvalds
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
11#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/bootmem.h>
Paul Mundt2cb7ce32006-09-27 18:20:58 +090014#include <linux/proc_fs.h>
Paul Mundt27641de2007-05-14 10:48:01 +090015#include <linux/pagemap.h>
Paul Mundt01066622007-03-28 16:38:13 +090016#include <linux/percpu.h>
17#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/tlb.h>
20#include <asm/cacheflush.h>
Paul Mundt07cbb412007-06-06 12:23:06 +090021#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/cache.h>
23
24DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
25pgd_t swapper_pg_dir[PTRS_PER_PGD];
Stuart Menefycbaa1182007-11-30 17:06:36 +090026unsigned long cached_to_uncached = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028void show_mem(void)
29{
Paul Mundt01066622007-03-28 16:38:13 +090030 int total = 0, reserved = 0, free = 0;
31 int shared = 0, cached = 0, slab = 0;
32 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 printk("Mem-info:\n");
35 show_free_areas();
Paul Mundt01066622007-03-28 16:38:13 +090036
37 for_each_online_pgdat(pgdat) {
Paul Mundtdfbb9042007-05-23 17:48:36 +090038 unsigned long flags, i;
Paul Mundt01066622007-03-28 16:38:13 +090039
40 pgdat_resize_lock(pgdat, &flags);
Paul Mundtdfbb9042007-05-23 17:48:36 +090041 for (i = 0; i < pgdat->node_spanned_pages; i++) {
42 struct page *page = pgdat_page_nr(pgdat, i);
Paul Mundt01066622007-03-28 16:38:13 +090043 total++;
44 if (PageReserved(page))
45 reserved++;
46 else if (PageSwapCache(page))
47 cached++;
48 else if (PageSlab(page))
49 slab++;
50 else if (!page_count(page))
51 free++;
52 else
53 shared += page_count(page) - 1;
Paul Mundtdfbb9042007-05-23 17:48:36 +090054 }
Paul Mundt01066622007-03-28 16:38:13 +090055 pgdat_resize_unlock(pgdat, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 }
Paul Mundt01066622007-03-28 16:38:13 +090057
58 printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10));
59 printk("%d pages of RAM\n", total);
60 printk("%d free pages\n", free);
61 printk("%d reserved pages\n", reserved);
62 printk("%d slab pages\n", slab);
63 printk("%d pages shared\n", shared);
64 printk("%d pages swap cached\n", cached);
Paul Mundt5f8c9902007-05-08 11:55:21 +090065 printk(KERN_INFO "Total of %ld pages in page table cache\n",
66 quicklist_total_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Yoshinori Sato11cbb702006-12-07 18:07:27 +090069#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
71{
72 pgd_t *pgd;
Paul Mundt26ff6c12006-09-27 15:13:36 +090073 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 pmd_t *pmd;
75 pte_t *pte;
76
Stuart Menefy99a596f2006-11-21 15:38:05 +090077 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (pgd_none(*pgd)) {
79 pgd_ERROR(*pgd);
80 return;
81 }
82
Stuart Menefy99a596f2006-11-21 15:38:05 +090083 pud = pud_alloc(NULL, pgd, addr);
84 if (unlikely(!pud)) {
85 pud_ERROR(*pud);
86 return;
Paul Mundt26ff6c12006-09-27 15:13:36 +090087 }
88
Stuart Menefy99a596f2006-11-21 15:38:05 +090089 pmd = pmd_alloc(NULL, pud, addr);
90 if (unlikely(!pmd)) {
91 pmd_ERROR(*pmd);
92 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
95 pte = pte_offset_kernel(pmd, addr);
96 if (!pte_none(*pte)) {
97 pte_ERROR(*pte);
98 return;
99 }
100
101 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
102
Stuart Menefycbaa1182007-11-30 17:06:36 +0900103 if (cached_to_uncached)
104 flush_tlb_one(get_asid(), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/*
108 * As a performance optimization, other platforms preserve the fixmap mapping
109 * across a context switch, we don't presently do this, but this could be done
110 * in a similar fashion as to the wired TLB interface that sh64 uses (by way
Simon Arlotte868d612007-05-14 08:15:10 +0900111 * of the memory mapped UTLB configuration) -- this unfortunately forces us to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * give up a TLB entry for each mapping we want to preserve. While this may be
113 * viable for a small number of fixmaps, it's not particularly useful for
114 * everything and needs to be carefully evaluated. (ie, we may want this for
115 * the vsyscall page).
116 *
117 * XXX: Perhaps add a _PAGE_WIRED flag or something similar that we can pass
118 * in at __set_fixmap() time to determine the appropriate behavior to follow.
119 *
120 * -- PFM.
121 */
122void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
123{
124 unsigned long address = __fix_to_virt(idx);
125
126 if (idx >= __end_of_fixed_addresses) {
127 BUG();
128 return;
129 }
130
131 set_pte_phys(address, phys, prot);
132}
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900133#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/*
136 * paging_init() sets up the page tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 */
138void __init paging_init(void)
139{
Paul Mundt2de212e2007-06-06 12:09:54 +0900140 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt01066622007-03-28 16:38:13 +0900141 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Paul Mundt01066622007-03-28 16:38:13 +0900143 /* We don't need to map the kernel through the TLB, as
144 * it is permanatly mapped using P1. So clear the
145 * entire pgd. */
146 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900148 /* Set an initial value for the MMU.TTB so we don't have to
149 * check for a null value. */
150 set_TTB(swapper_pg_dir);
151
Paul Mundt2de212e2007-06-06 12:09:54 +0900152 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
153
Paul Mundt01066622007-03-28 16:38:13 +0900154 for_each_online_node(nid) {
155 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900156 unsigned long low, start_pfn;
157
Paul Mundt01066622007-03-28 16:38:13 +0900158 start_pfn = pgdat->bdata->node_boot_start >> PAGE_SHIFT;
159 low = pgdat->bdata->node_low_pfn;
160
Paul Mundt2de212e2007-06-06 12:09:54 +0900161 if (max_zone_pfns[ZONE_NORMAL] < low)
162 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900163
164 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
165 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900166 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900167
168 free_area_init_nodes(max_zone_pfns);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900169
170 /* Set up the uncached fixmap */
171 set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start));
172
173#ifdef CONFIG_29BIT
174 /*
175 * Handle trivial transitions between cached and uncached
176 * segments, making use of the 1:1 mapping relationship in
177 * 512MB lowmem.
178 */
179 cached_to_uncached = P2SEG - P1SEG;
180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900183static struct kcore_list kcore_mem, kcore_vmalloc;
Paul Mundtba2727b2007-11-20 15:14:48 +0900184int after_bootmem = 0;
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186void __init mem_init(void)
187{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900188 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900189 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Paul Mundt2de212e2007-06-06 12:09:54 +0900191 num_physpages = 0;
192 high_memory = NULL;
193
Paul Mundt01066622007-03-28 16:38:13 +0900194 for_each_online_node(nid) {
195 pg_data_t *pgdat = NODE_DATA(nid);
196 unsigned long node_pages = 0;
197 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Paul Mundt01066622007-03-28 16:38:13 +0900199 num_physpages += pgdat->node_present_pages;
200
201 if (pgdat->node_spanned_pages)
202 node_pages = free_all_bootmem_node(pgdat);
203
204 totalram_pages += node_pages;
205
Paul Mundt2de212e2007-06-06 12:09:54 +0900206 node_high_memory = (void *)__va((pgdat->node_start_pfn +
207 pgdat->node_spanned_pages) <<
208 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900209 if (node_high_memory > high_memory)
210 high_memory = node_high_memory;
211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /* clear the zero-page */
214 memset(empty_zero_page, 0, PAGE_SIZE);
215 __flush_wback_region(empty_zero_page, PAGE_SIZE);
216
Paul Mundtba2727b2007-11-20 15:14:48 +0900217 after_bootmem = 1;
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 codesize = (unsigned long) &_etext - (unsigned long) &_text;
220 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
221 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
222
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900223 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
224 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
225 VMALLOC_END - VMALLOC_START);
226
227 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900228 "%dk data, %dk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900230 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 datasize >> 10,
233 initsize >> 10);
234
235 p3_cache_init();
Paul Mundt19f9a342006-09-27 18:33:49 +0900236
237 /* Initialize the vDSO */
238 vsyscall_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241void free_initmem(void)
242{
243 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 addr = (unsigned long)(&__init_begin);
246 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
247 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800248 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 free_page(addr);
250 totalram_pages++;
251 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900252 printk("Freeing unused kernel memory: %ldk freed\n",
253 ((unsigned long)&__init_end -
254 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257#ifdef CONFIG_BLK_DEV_INITRD
258void free_initrd_mem(unsigned long start, unsigned long end)
259{
260 unsigned long p;
261 for (p = start; p < end; p += PAGE_SIZE) {
262 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800263 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 free_page(p);
265 totalram_pages++;
266 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900267 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900270
271#ifdef CONFIG_MEMORY_HOTPLUG
272void online_page(struct page *page)
273{
274 ClearPageReserved(page);
275 init_page_count(page);
276 __free_page(page);
277 totalram_pages++;
278 num_physpages++;
279}
280
281int arch_add_memory(int nid, u64 start, u64 size)
282{
283 pg_data_t *pgdat;
284 unsigned long start_pfn = start >> PAGE_SHIFT;
285 unsigned long nr_pages = size >> PAGE_SHIFT;
286 int ret;
287
288 pgdat = NODE_DATA(nid);
289
290 /* We only have ZONE_NORMAL, so this is easy.. */
291 ret = __add_pages(pgdat->node_zones + ZONE_NORMAL, start_pfn, nr_pages);
292 if (unlikely(ret))
293 printk("%s: Failed, __add_pages() == %d\n", __FUNCTION__, ret);
294
295 return ret;
296}
297EXPORT_SYMBOL_GPL(arch_add_memory);
298
Paul Mundt357d5942007-06-11 15:32:07 +0900299#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900300int memory_add_physaddr_to_nid(u64 addr)
301{
302 /* Node 0 for now.. */
303 return 0;
304}
305EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
306#endif
Paul Mundt357d5942007-06-11 15:32:07 +0900307#endif