blob: d5fb014279ad21758cd0e96f45c7585077c4e661 [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>
Paul Mundt94c28512009-10-27 17:07:45 +090018#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/tlb.h>
21#include <asm/cacheflush.h>
Paul Mundt07cbb412007-06-06 12:23:06 +090022#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/cache.h>
24
25DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
26pgd_t swapper_pg_dir[PTRS_PER_PGD];
Stuart Menefyc6feb612008-09-05 16:06:42 +090027
28#ifdef CONFIG_SUPERH32
29/*
30 * Handle trivial transitions between cached and uncached
31 * segments, making use of the 1:1 mapping relationship in
32 * 512MB lowmem.
33 *
34 * This is the offset of the uncached section from its cached alias.
35 * Default value only valid in 29 bit mode, in 32bit mode will be
36 * overridden in pmb_init.
37 */
38unsigned long cached_to_uncached = P2SEG - P1SEG;
39#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Yoshinori Sato11cbb702006-12-07 18:07:27 +090041#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
43{
44 pgd_t *pgd;
Paul Mundt26ff6c12006-09-27 15:13:36 +090045 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 pmd_t *pmd;
47 pte_t *pte;
48
Stuart Menefy99a596f2006-11-21 15:38:05 +090049 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 if (pgd_none(*pgd)) {
51 pgd_ERROR(*pgd);
52 return;
53 }
54
Stuart Menefy99a596f2006-11-21 15:38:05 +090055 pud = pud_alloc(NULL, pgd, addr);
56 if (unlikely(!pud)) {
57 pud_ERROR(*pud);
58 return;
Paul Mundt26ff6c12006-09-27 15:13:36 +090059 }
60
Stuart Menefy99a596f2006-11-21 15:38:05 +090061 pmd = pmd_alloc(NULL, pud, addr);
62 if (unlikely(!pmd)) {
63 pmd_ERROR(*pmd);
64 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66
67 pte = pte_offset_kernel(pmd, addr);
68 if (!pte_none(*pte)) {
69 pte_ERROR(*pte);
70 return;
71 }
72
73 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
Paul Mundt997d0032009-06-19 15:37:11 +090074 local_flush_tlb_one(get_asid(), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77/*
78 * As a performance optimization, other platforms preserve the fixmap mapping
79 * across a context switch, we don't presently do this, but this could be done
80 * in a similar fashion as to the wired TLB interface that sh64 uses (by way
Simon Arlotte868d612007-05-14 08:15:10 +090081 * of the memory mapped UTLB configuration) -- this unfortunately forces us to
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * give up a TLB entry for each mapping we want to preserve. While this may be
83 * viable for a small number of fixmaps, it's not particularly useful for
84 * everything and needs to be carefully evaluated. (ie, we may want this for
85 * the vsyscall page).
86 *
87 * XXX: Perhaps add a _PAGE_WIRED flag or something similar that we can pass
88 * in at __set_fixmap() time to determine the appropriate behavior to follow.
89 *
90 * -- PFM.
91 */
92void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
93{
94 unsigned long address = __fix_to_virt(idx);
95
96 if (idx >= __end_of_fixed_addresses) {
97 BUG();
98 return;
99 }
100
101 set_pte_phys(address, phys, prot);
102}
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900103
104void __init page_table_range_init(unsigned long start, unsigned long end,
105 pgd_t *pgd_base)
106{
107 pgd_t *pgd;
108 pud_t *pud;
109 pmd_t *pmd;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900110 pte_t *pte;
111 int i, j, k;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900112 unsigned long vaddr;
113
Paul Mundt0906a3a2009-09-03 17:21:10 +0900114 vaddr = start;
115 i = __pgd_offset(vaddr);
116 j = __pud_offset(vaddr);
117 k = __pmd_offset(vaddr);
118 pgd = pgd_base + i;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900119
Paul Mundt0906a3a2009-09-03 17:21:10 +0900120 for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) {
121 pud = (pud_t *)pgd;
122 for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) {
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000123#ifdef __PAGETABLE_PMD_FOLDED
Paul Mundt0906a3a2009-09-03 17:21:10 +0900124 pmd = (pmd_t *)pud;
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000125#else
126 pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
127 pud_populate(&init_mm, pud, pmd);
128 pmd += k;
129#endif
Paul Mundt0906a3a2009-09-03 17:21:10 +0900130 for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
131 if (pmd_none(*pmd)) {
132 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
133 pmd_populate_kernel(&init_mm, pmd, pte);
134 BUG_ON(pte != pte_offset_kernel(pmd, 0));
135 }
136 vaddr += PMD_SIZE;
137 }
138 k = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900139 }
Paul Mundt0906a3a2009-09-03 17:21:10 +0900140 j = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900141 }
142}
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900143#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
146 * paging_init() sets up the page tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
148void __init paging_init(void)
149{
Paul Mundt2de212e2007-06-06 12:09:54 +0900150 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt0906a3a2009-09-03 17:21:10 +0900151 unsigned long vaddr, end;
Paul Mundt01066622007-03-28 16:38:13 +0900152 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Paul Mundt01066622007-03-28 16:38:13 +0900154 /* We don't need to map the kernel through the TLB, as
155 * it is permanatly mapped using P1. So clear the
156 * entire pgd. */
157 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900159 /* Set an initial value for the MMU.TTB so we don't have to
160 * check for a null value. */
161 set_TTB(swapper_pg_dir);
162
Paul Mundtacca4f42008-11-10 20:00:45 +0900163 /*
164 * Populate the relevant portions of swapper_pg_dir so that
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900165 * we can use the fixmap entries without calling kmalloc.
Paul Mundtacca4f42008-11-10 20:00:45 +0900166 * pte's will be filled in by __set_fixmap().
167 */
168 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900169 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
170 page_table_range_init(vaddr, end, swapper_pg_dir);
Paul Mundtacca4f42008-11-10 20:00:45 +0900171
172 kmap_coherent_init();
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900173
Paul Mundt2de212e2007-06-06 12:09:54 +0900174 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
175
Paul Mundt01066622007-03-28 16:38:13 +0900176 for_each_online_node(nid) {
177 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900178 unsigned long low, start_pfn;
179
Johannes Weiner3560e242008-07-23 21:28:09 -0700180 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900181 low = pgdat->bdata->node_low_pfn;
182
Paul Mundt2de212e2007-06-06 12:09:54 +0900183 if (max_zone_pfns[ZONE_NORMAL] < low)
184 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900185
186 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
187 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900188 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900189
190 free_area_init_nodes(max_zone_pfns);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900191
192 /* Set up the uncached fixmap */
193 set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Paul Mundt94c28512009-10-27 17:07:45 +0900196/*
197 * Early initialization for any I/O MMUs we might have.
198 */
199static void __init iommu_init(void)
200{
201 no_iommu_init();
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204void __init mem_init(void)
205{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900206 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900207 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Paul Mundt94c28512009-10-27 17:07:45 +0900209 iommu_init();
210
Paul Mundt2de212e2007-06-06 12:09:54 +0900211 num_physpages = 0;
212 high_memory = NULL;
213
Paul Mundt01066622007-03-28 16:38:13 +0900214 for_each_online_node(nid) {
215 pg_data_t *pgdat = NODE_DATA(nid);
216 unsigned long node_pages = 0;
217 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Paul Mundt01066622007-03-28 16:38:13 +0900219 num_physpages += pgdat->node_present_pages;
220
221 if (pgdat->node_spanned_pages)
222 node_pages = free_all_bootmem_node(pgdat);
223
224 totalram_pages += node_pages;
225
Paul Mundt2de212e2007-06-06 12:09:54 +0900226 node_high_memory = (void *)__va((pgdat->node_start_pfn +
227 pgdat->node_spanned_pages) <<
228 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900229 if (node_high_memory > high_memory)
230 high_memory = node_high_memory;
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Paul Mundt37443ef2009-08-15 12:29:49 +0900233 /* Set this up early, so we can take care of the zero page */
234 cpu_cache_init();
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* clear the zero-page */
237 memset(empty_zero_page, 0, PAGE_SIZE);
238 __flush_wback_region(empty_zero_page, PAGE_SIZE);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 codesize = (unsigned long) &_etext - (unsigned long) &_text;
241 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
242 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
243
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900244 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900245 "%dk data, %dk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700246 nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900247 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 datasize >> 10,
250 initsize >> 10);
251
Paul Mundt19f9a342006-09-27 18:33:49 +0900252 /* Initialize the vDSO */
253 vsyscall_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256void free_initmem(void)
257{
258 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 addr = (unsigned long)(&__init_begin);
261 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
262 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800263 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 free_page(addr);
265 totalram_pages++;
266 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900267 printk("Freeing unused kernel memory: %ldk freed\n",
268 ((unsigned long)&__init_end -
269 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272#ifdef CONFIG_BLK_DEV_INITRD
273void free_initrd_mem(unsigned long start, unsigned long end)
274{
275 unsigned long p;
276 for (p = start; p < end; p += PAGE_SIZE) {
277 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800278 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 free_page(p);
280 totalram_pages++;
281 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900282 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900285
286#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900287int arch_add_memory(int nid, u64 start, u64 size)
288{
289 pg_data_t *pgdat;
290 unsigned long start_pfn = start >> PAGE_SHIFT;
291 unsigned long nr_pages = size >> PAGE_SHIFT;
292 int ret;
293
294 pgdat = NODE_DATA(nid);
295
296 /* We only have ZONE_NORMAL, so this is easy.. */
Gary Hadec04fc582009-01-06 14:39:14 -0800297 ret = __add_pages(nid, pgdat->node_zones + ZONE_NORMAL,
298 start_pfn, nr_pages);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900299 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800300 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900301
302 return ret;
303}
304EXPORT_SYMBOL_GPL(arch_add_memory);
305
Paul Mundt357d5942007-06-11 15:32:07 +0900306#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900307int memory_add_physaddr_to_nid(u64 addr)
308{
309 /* Node 0 for now.. */
310 return 0;
311}
312EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
313#endif
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000314
Paul Mundt3159e7d2008-09-05 15:39:12 +0900315#endif /* CONFIG_MEMORY_HOTPLUG */
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000316
317#ifdef CONFIG_PMB
318int __in_29bit_mode(void)
319{
320 return !(ctrl_inl(PMB_PASCR) & PASCR_SE);
321}
322#endif /* CONFIG_PMB */