blob: f1a494283c4ee9341a35d92879f3f3ab24f44188 [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 Menefyc6feb612008-09-05 16:06:42 +090026
27#ifdef CONFIG_SUPERH32
28/*
29 * Handle trivial transitions between cached and uncached
30 * segments, making use of the 1:1 mapping relationship in
31 * 512MB lowmem.
32 *
33 * This is the offset of the uncached section from its cached alias.
34 * Default value only valid in 29 bit mode, in 32bit mode will be
35 * overridden in pmb_init.
36 */
37unsigned long cached_to_uncached = P2SEG - P1SEG;
38#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Yoshinori Sato11cbb702006-12-07 18:07:27 +090040#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
42{
43 pgd_t *pgd;
Paul Mundt26ff6c12006-09-27 15:13:36 +090044 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 pmd_t *pmd;
46 pte_t *pte;
47
Stuart Menefy99a596f2006-11-21 15:38:05 +090048 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 if (pgd_none(*pgd)) {
50 pgd_ERROR(*pgd);
51 return;
52 }
53
Stuart Menefy99a596f2006-11-21 15:38:05 +090054 pud = pud_alloc(NULL, pgd, addr);
55 if (unlikely(!pud)) {
56 pud_ERROR(*pud);
57 return;
Paul Mundt26ff6c12006-09-27 15:13:36 +090058 }
59
Stuart Menefy99a596f2006-11-21 15:38:05 +090060 pmd = pmd_alloc(NULL, pud, addr);
61 if (unlikely(!pmd)) {
62 pmd_ERROR(*pmd);
63 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65
66 pte = pte_offset_kernel(pmd, addr);
67 if (!pte_none(*pte)) {
68 pte_ERROR(*pte);
69 return;
70 }
71
72 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
Stuart Menefyc6feb612008-09-05 16:06:42 +090073 flush_tlb_one(get_asid(), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76/*
77 * As a performance optimization, other platforms preserve the fixmap mapping
78 * across a context switch, we don't presently do this, but this could be done
79 * in a similar fashion as to the wired TLB interface that sh64 uses (by way
Simon Arlotte868d612007-05-14 08:15:10 +090080 * of the memory mapped UTLB configuration) -- this unfortunately forces us to
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * give up a TLB entry for each mapping we want to preserve. While this may be
82 * viable for a small number of fixmaps, it's not particularly useful for
83 * everything and needs to be carefully evaluated. (ie, we may want this for
84 * the vsyscall page).
85 *
86 * XXX: Perhaps add a _PAGE_WIRED flag or something similar that we can pass
87 * in at __set_fixmap() time to determine the appropriate behavior to follow.
88 *
89 * -- PFM.
90 */
91void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
92{
93 unsigned long address = __fix_to_virt(idx);
94
95 if (idx >= __end_of_fixed_addresses) {
96 BUG();
97 return;
98 }
99
100 set_pte_phys(address, phys, prot);
101}
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900102
103void __init page_table_range_init(unsigned long start, unsigned long end,
104 pgd_t *pgd_base)
105{
106 pgd_t *pgd;
107 pud_t *pud;
108 pmd_t *pmd;
109 int pgd_idx;
110 unsigned long vaddr;
111
112 vaddr = start & PMD_MASK;
113 end = (end + PMD_SIZE - 1) & PMD_MASK;
114 pgd_idx = pgd_index(vaddr);
115 pgd = pgd_base + pgd_idx;
116
117 for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
118 BUG_ON(pgd_none(*pgd));
119 pud = pud_offset(pgd, 0);
120 BUG_ON(pud_none(*pud));
121 pmd = pmd_offset(pud, 0);
122
123 if (!pmd_present(*pmd)) {
124 pte_t *pte_table;
125 pte_table = (pte_t *)alloc_bootmem_low_pages(PAGE_SIZE);
126 memset(pte_table, 0, PAGE_SIZE);
127 pmd_populate_kernel(&init_mm, pmd, pte_table);
128 }
129
130 vaddr += PMD_SIZE;
131 }
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
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900152 /* Populate the relevant portions of swapper_pg_dir so that
153 * we can use the fixmap entries without calling kmalloc.
154 * pte's will be filled in by __set_fixmap(). */
155 page_table_range_init(FIXADDR_START, FIXADDR_TOP, swapper_pg_dir);
156
Paul Mundt2de212e2007-06-06 12:09:54 +0900157 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
158
Paul Mundt01066622007-03-28 16:38:13 +0900159 for_each_online_node(nid) {
160 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900161 unsigned long low, start_pfn;
162
Johannes Weiner3560e242008-07-23 21:28:09 -0700163 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900164 low = pgdat->bdata->node_low_pfn;
165
Paul Mundt2de212e2007-06-06 12:09:54 +0900166 if (max_zone_pfns[ZONE_NORMAL] < low)
167 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900168
169 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
170 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900171 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900172
173 free_area_init_nodes(max_zone_pfns);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900174
Paul Mundtdb026122008-02-13 20:18:01 +0900175#ifdef CONFIG_SUPERH32
Stuart Menefycbaa1182007-11-30 17:06:36 +0900176 /* Set up the uncached fixmap */
177 set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start));
Paul Mundtdb026122008-02-13 20:18:01 +0900178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900181static struct kcore_list kcore_mem, kcore_vmalloc;
Paul Mundtba2727b2007-11-20 15:14:48 +0900182int after_bootmem = 0;
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184void __init mem_init(void)
185{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900186 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900187 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Paul Mundt2de212e2007-06-06 12:09:54 +0900189 num_physpages = 0;
190 high_memory = NULL;
191
Paul Mundt01066622007-03-28 16:38:13 +0900192 for_each_online_node(nid) {
193 pg_data_t *pgdat = NODE_DATA(nid);
194 unsigned long node_pages = 0;
195 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Paul Mundt01066622007-03-28 16:38:13 +0900197 num_physpages += pgdat->node_present_pages;
198
199 if (pgdat->node_spanned_pages)
200 node_pages = free_all_bootmem_node(pgdat);
201
202 totalram_pages += node_pages;
203
Paul Mundt2de212e2007-06-06 12:09:54 +0900204 node_high_memory = (void *)__va((pgdat->node_start_pfn +
205 pgdat->node_spanned_pages) <<
206 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900207 if (node_high_memory > high_memory)
208 high_memory = node_high_memory;
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 /* clear the zero-page */
212 memset(empty_zero_page, 0, PAGE_SIZE);
213 __flush_wback_region(empty_zero_page, PAGE_SIZE);
214
Paul Mundtba2727b2007-11-20 15:14:48 +0900215 after_bootmem = 1;
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 codesize = (unsigned long) &_etext - (unsigned long) &_text;
218 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
219 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
220
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900221 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
222 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
223 VMALLOC_END - VMALLOC_START);
224
225 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900226 "%dk data, %dk init)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900228 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 datasize >> 10,
231 initsize >> 10);
232
233 p3_cache_init();
Paul Mundt19f9a342006-09-27 18:33:49 +0900234
235 /* Initialize the vDSO */
236 vsyscall_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239void free_initmem(void)
240{
241 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 addr = (unsigned long)(&__init_begin);
244 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
245 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800246 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 free_page(addr);
248 totalram_pages++;
249 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900250 printk("Freeing unused kernel memory: %ldk freed\n",
251 ((unsigned long)&__init_end -
252 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255#ifdef CONFIG_BLK_DEV_INITRD
256void free_initrd_mem(unsigned long start, unsigned long end)
257{
258 unsigned long p;
259 for (p = start; p < end; p += PAGE_SIZE) {
260 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800261 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 free_page(p);
263 totalram_pages++;
264 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900265 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900268
269#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900270int arch_add_memory(int nid, u64 start, u64 size)
271{
272 pg_data_t *pgdat;
273 unsigned long start_pfn = start >> PAGE_SHIFT;
274 unsigned long nr_pages = size >> PAGE_SHIFT;
275 int ret;
276
277 pgdat = NODE_DATA(nid);
278
279 /* We only have ZONE_NORMAL, so this is easy.. */
280 ret = __add_pages(pgdat->node_zones + ZONE_NORMAL, start_pfn, nr_pages);
281 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800282 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900283
284 return ret;
285}
286EXPORT_SYMBOL_GPL(arch_add_memory);
287
Paul Mundt357d5942007-06-11 15:32:07 +0900288#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900289int memory_add_physaddr_to_nid(u64 addr)
290{
291 /* Node 0 for now.. */
292 return 0;
293}
294EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
295#endif
Paul Mundt3159e7d2008-09-05 15:39:12 +0900296
297#ifdef CONFIG_MEMORY_HOTREMOVE
298int remove_memory(u64 start, u64 size)
299{
300 unsigned long start_pfn = start >> PAGE_SHIFT;
301 unsigned long end_pfn = start_pfn + (size >> PAGE_SHIFT);
302 int ret;
303
304 ret = offline_pages(start_pfn, end_pfn, 120 * HZ);
305 if (unlikely(ret))
306 printk("%s: Failed, offline_pages() == %d\n", __func__, ret);
307
308 return ret;
309}
310EXPORT_SYMBOL_GPL(remove_memory);
Paul Mundt357d5942007-06-11 15:32:07 +0900311#endif
Paul Mundt3159e7d2008-09-05 15:39:12 +0900312
313#endif /* CONFIG_MEMORY_HOTPLUG */