blob: b75a7acd62fb7818f8fec20cc72aa7794d0ff159 [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
Yoshinori Sato11cbb702006-12-07 18:07:27 +090028#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
30{
31 pgd_t *pgd;
Paul Mundt26ff6c12006-09-27 15:13:36 +090032 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 pmd_t *pmd;
34 pte_t *pte;
35
Stuart Menefy99a596f2006-11-21 15:38:05 +090036 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 if (pgd_none(*pgd)) {
38 pgd_ERROR(*pgd);
39 return;
40 }
41
Stuart Menefy99a596f2006-11-21 15:38:05 +090042 pud = pud_alloc(NULL, pgd, addr);
43 if (unlikely(!pud)) {
44 pud_ERROR(*pud);
45 return;
Paul Mundt26ff6c12006-09-27 15:13:36 +090046 }
47
Stuart Menefy99a596f2006-11-21 15:38:05 +090048 pmd = pmd_alloc(NULL, pud, addr);
49 if (unlikely(!pmd)) {
50 pmd_ERROR(*pmd);
51 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 }
53
54 pte = pte_offset_kernel(pmd, addr);
55 if (!pte_none(*pte)) {
56 pte_ERROR(*pte);
57 return;
58 }
59
60 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
61
Stuart Menefycbaa1182007-11-30 17:06:36 +090062 if (cached_to_uncached)
63 flush_tlb_one(get_asid(), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66/*
67 * As a performance optimization, other platforms preserve the fixmap mapping
68 * across a context switch, we don't presently do this, but this could be done
69 * in a similar fashion as to the wired TLB interface that sh64 uses (by way
Simon Arlotte868d612007-05-14 08:15:10 +090070 * of the memory mapped UTLB configuration) -- this unfortunately forces us to
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * give up a TLB entry for each mapping we want to preserve. While this may be
72 * viable for a small number of fixmaps, it's not particularly useful for
73 * everything and needs to be carefully evaluated. (ie, we may want this for
74 * the vsyscall page).
75 *
76 * XXX: Perhaps add a _PAGE_WIRED flag or something similar that we can pass
77 * in at __set_fixmap() time to determine the appropriate behavior to follow.
78 *
79 * -- PFM.
80 */
81void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
82{
83 unsigned long address = __fix_to_virt(idx);
84
85 if (idx >= __end_of_fixed_addresses) {
86 BUG();
87 return;
88 }
89
90 set_pte_phys(address, phys, prot);
91}
Stuart Menefy2adb4e12007-11-30 17:59:55 +090092
93void __init page_table_range_init(unsigned long start, unsigned long end,
94 pgd_t *pgd_base)
95{
96 pgd_t *pgd;
97 pud_t *pud;
98 pmd_t *pmd;
99 int pgd_idx;
100 unsigned long vaddr;
101
102 vaddr = start & PMD_MASK;
103 end = (end + PMD_SIZE - 1) & PMD_MASK;
104 pgd_idx = pgd_index(vaddr);
105 pgd = pgd_base + pgd_idx;
106
107 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
108 BUG_ON(pgd_none(*pgd));
109 pud = pud_offset(pgd, 0);
110 BUG_ON(pud_none(*pud));
111 pmd = pmd_offset(pud, 0);
112
113 if (!pmd_present(*pmd)) {
114 pte_t *pte_table;
115 pte_table = (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
116 memset(pte_table, 0, PAGE_SIZE);
117 pmd_populate_kernel(&init_mm, pmd, pte_table);
118 }
119
120 vaddr += PMD_SIZE;
121 }
122}
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900123#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/*
126 * paging_init() sets up the page tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128void __init paging_init(void)
129{
Paul Mundt2de212e2007-06-06 12:09:54 +0900130 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt01066622007-03-28 16:38:13 +0900131 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Paul Mundt01066622007-03-28 16:38:13 +0900133 /* We don't need to map the kernel through the TLB, as
134 * it is permanatly mapped using P1. So clear the
135 * entire pgd. */
136 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900138 /* Set an initial value for the MMU.TTB so we don't have to
139 * check for a null value. */
140 set_TTB(swapper_pg_dir);
141
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900142 /* Populate the relevant portions of swapper_pg_dir so that
143 * we can use the fixmap entries without calling kmalloc.
144 * pte's will be filled in by __set_fixmap(). */
145 page_table_range_init(FIXADDR_START, FIXADDR_TOP, swapper_pg_dir);
146
Paul Mundt2de212e2007-06-06 12:09:54 +0900147 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
148
Paul Mundt01066622007-03-28 16:38:13 +0900149 for_each_online_node(nid) {
150 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900151 unsigned long low, start_pfn;
152
Johannes Weiner3560e242008-07-23 21:28:09 -0700153 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900154 low = pgdat->bdata->node_low_pfn;
155
Paul Mundt2de212e2007-06-06 12:09:54 +0900156 if (max_zone_pfns[ZONE_NORMAL] < low)
157 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900158
159 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
160 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900161 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900162
163 free_area_init_nodes(max_zone_pfns);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900164
Paul Mundtdb026122008-02-13 20:18:01 +0900165#ifdef CONFIG_SUPERH32
Stuart Menefycbaa1182007-11-30 17:06:36 +0900166 /* Set up the uncached fixmap */
167 set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start));
168
169#ifdef CONFIG_29BIT
170 /*
171 * Handle trivial transitions between cached and uncached
172 * segments, making use of the 1:1 mapping relationship in
173 * 512MB lowmem.
174 */
175 cached_to_uncached = P2SEG - P1SEG;
176#endif
Paul Mundtdb026122008-02-13 20:18:01 +0900177#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900180static struct kcore_list kcore_mem, kcore_vmalloc;
Paul Mundtba2727b2007-11-20 15:14:48 +0900181int after_bootmem = 0;
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183void __init mem_init(void)
184{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900185 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900186 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Paul Mundt2de212e2007-06-06 12:09:54 +0900188 num_physpages = 0;
189 high_memory = NULL;
190
Paul Mundt01066622007-03-28 16:38:13 +0900191 for_each_online_node(nid) {
192 pg_data_t *pgdat = NODE_DATA(nid);
193 unsigned long node_pages = 0;
194 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Paul Mundt01066622007-03-28 16:38:13 +0900196 num_physpages += pgdat->node_present_pages;
197
198 if (pgdat->node_spanned_pages)
199 node_pages = free_all_bootmem_node(pgdat);
200
201 totalram_pages += node_pages;
202
Paul Mundt2de212e2007-06-06 12:09:54 +0900203 node_high_memory = (void *)__va((pgdat->node_start_pfn +
204 pgdat->node_spanned_pages) <<
205 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900206 if (node_high_memory > high_memory)
207 high_memory = node_high_memory;
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* clear the zero-page */
211 memset(empty_zero_page, 0, PAGE_SIZE);
212 __flush_wback_region(empty_zero_page, PAGE_SIZE);
213
Paul Mundtba2727b2007-11-20 15:14:48 +0900214 after_bootmem = 1;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 codesize = (unsigned long) &_etext - (unsigned long) &_text;
217 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
218 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
219
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900220 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
221 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
222 VMALLOC_END - VMALLOC_START);
223
224 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900225 "%dk data, %dk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900227 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 datasize >> 10,
230 initsize >> 10);
231
232 p3_cache_init();
Paul Mundt19f9a342006-09-27 18:33:49 +0900233
234 /* Initialize the vDSO */
235 vsyscall_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238void free_initmem(void)
239{
240 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 addr = (unsigned long)(&__init_begin);
243 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
244 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800245 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 free_page(addr);
247 totalram_pages++;
248 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900249 printk("Freeing unused kernel memory: %ldk freed\n",
250 ((unsigned long)&__init_end -
251 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254#ifdef CONFIG_BLK_DEV_INITRD
255void free_initrd_mem(unsigned long start, unsigned long end)
256{
257 unsigned long p;
258 for (p = start; p < end; p += PAGE_SIZE) {
259 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800260 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 free_page(p);
262 totalram_pages++;
263 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900264 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900267
268#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900269int arch_add_memory(int nid, u64 start, u64 size)
270{
271 pg_data_t *pgdat;
272 unsigned long start_pfn = start >> PAGE_SHIFT;
273 unsigned long nr_pages = size >> PAGE_SHIFT;
274 int ret;
275
276 pgdat = NODE_DATA(nid);
277
278 /* We only have ZONE_NORMAL, so this is easy.. */
279 ret = __add_pages(pgdat->node_zones + ZONE_NORMAL, start_pfn, nr_pages);
280 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800281 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900282
283 return ret;
284}
285EXPORT_SYMBOL_GPL(arch_add_memory);
286
Paul Mundt357d5942007-06-11 15:32:07 +0900287#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900288int memory_add_physaddr_to_nid(u64 addr)
289{
290 /* Node 0 for now.. */
291 return 0;
292}
293EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
294#endif
Paul Mundt357d5942007-06-11 15:32:07 +0900295#endif