blob: c89fcf9e9c22f51fd88c74e3a0f941a441edc168 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Carsten Langgaard, carstenl@mips.com
3 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
4 *
5 * This program is free software; you can distribute it and/or modify it
6 * under the terms of the GNU General Public License (Version 2) as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
17 *
18 * PROM library functions for acquiring/using memory descriptors given to
19 * us from the YAMON.
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
22#include <linux/mm.h>
23#include <linux/bootmem.h>
Ralf Baechlefde35052006-04-03 14:44:50 +010024#include <linux/pfn.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000025#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/bootinfo.h>
28#include <asm/page.h>
Ralf Baechle9c1f1252006-04-03 10:17:21 +010029#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/mips-boards/prom.h>
32
33/*#define DEBUG*/
34
35enum yamon_memtypes {
36 yamon_dontuse,
37 yamon_prom,
38 yamon_free,
39};
40struct prom_pmemblock mdesc[PROM_MAX_PMEMBLOCKS];
41
42#ifdef DEBUG
43static char *mtypes[3] = {
44 "Dont use memory",
45 "YAMON PROM memory",
46 "Free memmory",
47};
48#endif
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050struct prom_pmemblock * __init prom_getmdesc(void)
51{
52 char *memsize_str;
53 unsigned int memsize;
Ralf Baechlee01402b2005-07-14 15:57:16 +000054 char cmdline[CL_SIZE], *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Ralf Baechlee01402b2005-07-14 15:57:16 +000056 /* Check the command line first for a memsize directive */
57 strcpy(cmdline, arcs_cmdline);
58 ptr = strstr(cmdline, "memsize=");
59 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
60 ptr = strstr(ptr, " memsize=");
61
62 if (ptr) {
63 memsize = memparse(ptr + 8, &ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
Ralf Baechlee01402b2005-07-14 15:57:16 +000065 else {
66 /* otherwise look in the environment */
67 memsize_str = prom_getenv("memsize");
68 if (!memsize_str) {
69 prom_printf("memsize not set in boot prom, set to default (32Mb)\n");
70 memsize = 0x02000000;
71 } else {
72#ifdef DEBUG
73 prom_printf("prom_memsize = %s\n", memsize_str);
74#endif
75 memsize = simple_strtol(memsize_str, NULL, 0);
76 }
77 }
Elizabeth Oldham73499682006-06-06 10:57:09 +010078
79#ifdef CONFIG_CPU_BIG_ENDIAN
80 /*
81 * SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last
82 * word of physical memory
83 */
84 memsize -= PAGE_SIZE;
85#endif
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 memset(mdesc, 0, sizeof(mdesc));
88
89 mdesc[0].type = yamon_dontuse;
90 mdesc[0].base = 0x00000000;
91 mdesc[0].size = 0x00001000;
92
93 mdesc[1].type = yamon_prom;
94 mdesc[1].base = 0x00001000;
95 mdesc[1].size = 0x000ef000;
96
97#ifdef CONFIG_MIPS_MALTA
98 /*
99 * The area 0x000f0000-0x000fffff is allocated for BIOS memory by the
100 * south bridge and PCI access always forwarded to the ISA Bus and
101 * BIOSCS# is always generated.
102 * This mean that this area can't be used as DMA memory for PCI
103 * devices.
104 */
105 mdesc[2].type = yamon_dontuse;
106 mdesc[2].base = 0x000f0000;
107 mdesc[2].size = 0x00010000;
108#else
109 mdesc[2].type = yamon_prom;
110 mdesc[2].base = 0x000f0000;
111 mdesc[2].size = 0x00010000;
112#endif
113
114 mdesc[3].type = yamon_dontuse;
115 mdesc[3].base = 0x00100000;
Ralf Baechlefde35052006-04-03 14:44:50 +0100116 mdesc[3].size = CPHYSADDR(PFN_ALIGN((unsigned long)&_end)) - mdesc[3].base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 mdesc[4].type = yamon_free;
Ralf Baechlefde35052006-04-03 14:44:50 +0100119 mdesc[4].base = CPHYSADDR(PFN_ALIGN(&_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 mdesc[4].size = memsize - mdesc[4].base;
121
122 return &mdesc[0];
123}
124
125static int __init prom_memtype_classify (unsigned int type)
126{
127 switch (type) {
128 case yamon_free:
129 return BOOT_MEM_RAM;
130 case yamon_prom:
131 return BOOT_MEM_ROM_DATA;
132 default:
133 return BOOT_MEM_RESERVED;
134 }
135}
136
137void __init prom_meminit(void)
138{
139 struct prom_pmemblock *p;
140
141#ifdef DEBUG
142 prom_printf("YAMON MEMORY DESCRIPTOR dump:\n");
143 p = prom_getmdesc();
144 while (p->size) {
145 int i = 0;
146 prom_printf("[%d,%p]: base<%08lx> size<%08lx> type<%s>\n",
147 i, p, p->base, p->size, mtypes[p->type]);
148 p++;
149 i++;
150 }
151#endif
152 p = prom_getmdesc();
153
154 while (p->size) {
155 long type;
156 unsigned long base, size;
157
158 type = prom_memtype_classify (p->type);
159 base = p->base;
160 size = p->size;
161
162 add_memory_region(base, size, type);
163 p++;
164 }
165}
166
167unsigned long __init prom_free_prom_memory(void)
168{
169 unsigned long freed = 0;
170 unsigned long addr;
171 int i;
172
173 for (i = 0; i < boot_mem_map.nr_map; i++) {
174 if (boot_mem_map.map[i].type != BOOT_MEM_ROM_DATA)
175 continue;
176
177 addr = boot_mem_map.map[i].addr;
178 while (addr < boot_mem_map.map[i].addr
179 + boot_mem_map.map[i].size) {
180 ClearPageReserved(virt_to_page(__va(addr)));
Nick Piggin7835e982006-03-22 00:08:40 -0800181 init_page_count(virt_to_page(__va(addr)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 free_page((unsigned long)__va(addr));
183 addr += PAGE_SIZE;
184 freed += PAGE_SIZE;
185 }
186 }
187 printk("Freeing prom memory: %ldkb freed\n", freed >> 10);
188
189 return freed;
190}