blob: 432acd07e76a01815a26a74caeef7fa8ecfcdc0a [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++) {
123 pmd = (pmd_t *)pud;
124 for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
125 if (pmd_none(*pmd)) {
126 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
127 pmd_populate_kernel(&init_mm, pmd, pte);
128 BUG_ON(pte != pte_offset_kernel(pmd, 0));
129 }
130 vaddr += PMD_SIZE;
131 }
132 k = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900133 }
Paul Mundt0906a3a2009-09-03 17:21:10 +0900134 j = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900135 }
136}
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900137#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * paging_init() sets up the page tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142void __init paging_init(void)
143{
Paul Mundt2de212e2007-06-06 12:09:54 +0900144 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt0906a3a2009-09-03 17:21:10 +0900145 unsigned long vaddr, end;
Paul Mundt01066622007-03-28 16:38:13 +0900146 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Paul Mundt01066622007-03-28 16:38:13 +0900148 /* We don't need to map the kernel through the TLB, as
149 * it is permanatly mapped using P1. So clear the
150 * entire pgd. */
151 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900153 /* Set an initial value for the MMU.TTB so we don't have to
154 * check for a null value. */
155 set_TTB(swapper_pg_dir);
156
Paul Mundtacca4f42008-11-10 20:00:45 +0900157 /*
158 * Populate the relevant portions of swapper_pg_dir so that
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900159 * we can use the fixmap entries without calling kmalloc.
Paul Mundtacca4f42008-11-10 20:00:45 +0900160 * pte's will be filled in by __set_fixmap().
161 */
162 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900163 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
164 page_table_range_init(vaddr, end, swapper_pg_dir);
Paul Mundtacca4f42008-11-10 20:00:45 +0900165
166 kmap_coherent_init();
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900167
Paul Mundt2de212e2007-06-06 12:09:54 +0900168 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
169
Paul Mundt01066622007-03-28 16:38:13 +0900170 for_each_online_node(nid) {
171 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900172 unsigned long low, start_pfn;
173
Johannes Weiner3560e242008-07-23 21:28:09 -0700174 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900175 low = pgdat->bdata->node_low_pfn;
176
Paul Mundt2de212e2007-06-06 12:09:54 +0900177 if (max_zone_pfns[ZONE_NORMAL] < low)
178 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900179
180 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
181 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900182 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900183
184 free_area_init_nodes(max_zone_pfns);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900185
186 /* Set up the uncached fixmap */
187 set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Paul Mundt94c28512009-10-27 17:07:45 +0900190/*
191 * Early initialization for any I/O MMUs we might have.
192 */
193static void __init iommu_init(void)
194{
195 no_iommu_init();
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198void __init mem_init(void)
199{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900200 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900201 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Paul Mundt94c28512009-10-27 17:07:45 +0900203 iommu_init();
204
Paul Mundt2de212e2007-06-06 12:09:54 +0900205 num_physpages = 0;
206 high_memory = NULL;
207
Paul Mundt01066622007-03-28 16:38:13 +0900208 for_each_online_node(nid) {
209 pg_data_t *pgdat = NODE_DATA(nid);
210 unsigned long node_pages = 0;
211 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Paul Mundt01066622007-03-28 16:38:13 +0900213 num_physpages += pgdat->node_present_pages;
214
215 if (pgdat->node_spanned_pages)
216 node_pages = free_all_bootmem_node(pgdat);
217
218 totalram_pages += node_pages;
219
Paul Mundt2de212e2007-06-06 12:09:54 +0900220 node_high_memory = (void *)__va((pgdat->node_start_pfn +
221 pgdat->node_spanned_pages) <<
222 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900223 if (node_high_memory > high_memory)
224 high_memory = node_high_memory;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Paul Mundt37443ef2009-08-15 12:29:49 +0900227 /* Set this up early, so we can take care of the zero page */
228 cpu_cache_init();
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* clear the zero-page */
231 memset(empty_zero_page, 0, PAGE_SIZE);
232 __flush_wback_region(empty_zero_page, PAGE_SIZE);
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 codesize = (unsigned long) &_etext - (unsigned long) &_text;
235 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
236 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
237
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900238 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900239 "%dk data, %dk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700240 nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900241 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 datasize >> 10,
244 initsize >> 10);
245
Paul Mundt19f9a342006-09-27 18:33:49 +0900246 /* Initialize the vDSO */
247 vsyscall_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250void free_initmem(void)
251{
252 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 addr = (unsigned long)(&__init_begin);
255 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
256 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800257 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 free_page(addr);
259 totalram_pages++;
260 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900261 printk("Freeing unused kernel memory: %ldk freed\n",
262 ((unsigned long)&__init_end -
263 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266#ifdef CONFIG_BLK_DEV_INITRD
267void free_initrd_mem(unsigned long start, unsigned long end)
268{
269 unsigned long p;
270 for (p = start; p < end; p += PAGE_SIZE) {
271 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800272 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 free_page(p);
274 totalram_pages++;
275 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900276 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900279
Paul Mundtc15c5f82008-09-20 20:21:33 +0900280#if THREAD_SHIFT < PAGE_SHIFT
281static struct kmem_cache *thread_info_cache;
282
283struct thread_info *alloc_thread_info(struct task_struct *tsk)
284{
285 struct thread_info *ti;
286
287 ti = kmem_cache_alloc(thread_info_cache, GFP_KERNEL);
288 if (unlikely(ti == NULL))
289 return NULL;
290#ifdef CONFIG_DEBUG_STACK_USAGE
291 memset(ti, 0, THREAD_SIZE);
292#endif
293 return ti;
294}
295
296void free_thread_info(struct thread_info *ti)
297{
298 kmem_cache_free(thread_info_cache, ti);
299}
300
301void thread_info_cache_init(void)
302{
303 thread_info_cache = kmem_cache_create("thread_info", THREAD_SIZE,
304 THREAD_SIZE, 0, NULL);
305 BUG_ON(thread_info_cache == NULL);
306}
307#endif /* THREAD_SHIFT < PAGE_SHIFT */
308
Paul Mundt33d63bd2007-06-07 11:32:52 +0900309#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900310int arch_add_memory(int nid, u64 start, u64 size)
311{
312 pg_data_t *pgdat;
313 unsigned long start_pfn = start >> PAGE_SHIFT;
314 unsigned long nr_pages = size >> PAGE_SHIFT;
315 int ret;
316
317 pgdat = NODE_DATA(nid);
318
319 /* We only have ZONE_NORMAL, so this is easy.. */
Gary Hadec04fc582009-01-06 14:39:14 -0800320 ret = __add_pages(nid, pgdat->node_zones + ZONE_NORMAL,
321 start_pfn, nr_pages);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900322 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800323 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900324
325 return ret;
326}
327EXPORT_SYMBOL_GPL(arch_add_memory);
328
Paul Mundt357d5942007-06-11 15:32:07 +0900329#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900330int memory_add_physaddr_to_nid(u64 addr)
331{
332 /* Node 0 for now.. */
333 return 0;
334}
335EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
336#endif
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000337
Paul Mundt3159e7d2008-09-05 15:39:12 +0900338#endif /* CONFIG_MEMORY_HOTPLUG */
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000339
340#ifdef CONFIG_PMB
341int __in_29bit_mode(void)
342{
343 return !(ctrl_inl(PMB_PASCR) & PASCR_SE);
344}
345#endif /* CONFIG_PMB */