RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / mips / mips-boards / generic / memory.c
blobae39953da2c485d3b39d227728aab3f882a7aad8
1 /*
2 * Carsten Langgaard, carstenl@mips.com
3 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
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.
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.
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.
18 * PROM library functions for acquiring/using memory descriptors given to
19 * us from the YAMON.
21 #include <linux/init.h>
22 #include <linux/mm.h>
23 #include <linux/bootmem.h>
24 #include <linux/pfn.h>
25 #include <linux/string.h>
27 #include <asm/bootinfo.h>
28 #include <asm/page.h>
29 #include <asm/sections.h>
31 #include <asm/mips-boards/prom.h>
33 /*#define DEBUG*/
35 enum yamon_memtypes {
36 yamon_dontuse,
37 yamon_prom,
38 yamon_free,
40 struct prom_pmemblock mdesc[PROM_MAX_PMEMBLOCKS];
42 #ifdef DEBUG
43 static char *mtypes[3] = {
44 "Dont use memory",
45 "YAMON PROM memory",
46 "Free memmory",
48 #endif
50 /* determined physical memory size, not overridden by command line args */
51 unsigned long physical_memsize = 0L;
53 struct prom_pmemblock * __init prom_getmdesc(void)
55 char *memsize_str;
56 unsigned int memsize;
57 char cmdline[CL_SIZE], *ptr;
59 /* otherwise look in the environment */
60 memsize_str = prom_getenv("memsize");
61 if (!memsize_str) {
62 printk(KERN_WARNING
63 "memsize not set in boot prom, set to default (32Mb)\n");
64 physical_memsize = 0x02000000;
65 } else {
66 #ifdef DEBUG
67 pr_debug("prom_memsize = %s\n", memsize_str);
68 #endif
69 physical_memsize = simple_strtol(memsize_str, NULL, 0);
72 #ifdef CONFIG_CPU_BIG_ENDIAN
73 /* SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last
74 word of physical memory */
75 physical_memsize -= PAGE_SIZE;
76 #endif
78 /* Check the command line for a memsize directive that overrides
79 the physical/default amount */
80 strcpy(cmdline, arcs_cmdline);
81 ptr = strstr(cmdline, "memsize=");
82 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
83 ptr = strstr(ptr, " memsize=");
85 if (ptr)
86 memsize = memparse(ptr + 8, &ptr);
87 else
88 memsize = physical_memsize;
90 memset(mdesc, 0, sizeof(mdesc));
92 mdesc[0].type = yamon_dontuse;
93 mdesc[0].base = 0x00000000;
94 mdesc[0].size = 0x00001000;
96 mdesc[1].type = yamon_prom;
97 mdesc[1].base = 0x00001000;
98 mdesc[1].size = 0x000ef000;
100 #ifdef CONFIG_MIPS_MALTA
102 * The area 0x000f0000-0x000fffff is allocated for BIOS memory by the
103 * south bridge and PCI access always forwarded to the ISA Bus and
104 * BIOSCS# is always generated.
105 * This mean that this area can't be used as DMA memory for PCI
106 * devices.
108 mdesc[2].type = yamon_dontuse;
109 mdesc[2].base = 0x000f0000;
110 mdesc[2].size = 0x00010000;
111 #else
112 mdesc[2].type = yamon_prom;
113 mdesc[2].base = 0x000f0000;
114 mdesc[2].size = 0x00010000;
115 #endif
117 mdesc[3].type = yamon_dontuse;
118 mdesc[3].base = 0x00100000;
119 mdesc[3].size = CPHYSADDR(PFN_ALIGN((unsigned long)&_end)) - mdesc[3].base;
121 mdesc[4].type = yamon_free;
122 mdesc[4].base = CPHYSADDR(PFN_ALIGN(&_end));
123 mdesc[4].size = memsize - mdesc[4].base;
125 return &mdesc[0];
128 static int __init prom_memtype_classify (unsigned int type)
130 switch (type) {
131 case yamon_free:
132 return BOOT_MEM_RAM;
133 case yamon_prom:
134 return BOOT_MEM_ROM_DATA;
135 default:
136 return BOOT_MEM_RESERVED;
140 void __init prom_meminit(void)
142 struct prom_pmemblock *p;
144 #ifdef DEBUG
145 pr_debug("YAMON MEMORY DESCRIPTOR dump:\n");
146 p = prom_getmdesc();
147 while (p->size) {
148 int i = 0;
149 pr_debug("[%d,%p]: base<%08lx> size<%08lx> type<%s>\n",
150 i, p, p->base, p->size, mtypes[p->type]);
151 p++;
152 i++;
154 #endif
155 p = prom_getmdesc();
157 while (p->size) {
158 long type;
159 unsigned long base, size;
161 type = prom_memtype_classify (p->type);
162 base = p->base;
163 size = p->size;
165 add_memory_region(base, size, type);
166 p++;
170 void __init prom_free_prom_memory(void)
172 unsigned long addr;
173 int i;
175 for (i = 0; i < boot_mem_map.nr_map; i++) {
176 if (boot_mem_map.map[i].type != BOOT_MEM_ROM_DATA)
177 continue;
179 addr = boot_mem_map.map[i].addr;
180 free_init_pages("prom memory",
181 addr, addr + boot_mem_map.map[i].size);