memory.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * ########################################################################
  6.  *
  7.  *  This program is free software; you can distribute it and/or modify it
  8.  *  under the terms of the GNU General Public License (Version 2) as
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope it will be useful, but WITHOUT
  12.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *  for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License along
  17.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  18.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19.  *
  20.  * ########################################################################
  21.  *
  22.  * PROM library functions for acquiring/using memory descriptors given to
  23.  * us from the YAMON.
  24.  *
  25.  */
  26. #include <linux/config.h>
  27. #include <linux/init.h>
  28. #include <linux/mm.h>
  29. #include <linux/bootmem.h>
  30. #include <asm/bootinfo.h>
  31. #include <asm/page.h>
  32. #include <asm/mips-boards/prom.h>
  33. /*#define DEBUG*/
  34. enum yamon_memtypes {
  35. yamon_dontuse,
  36. yamon_prom,
  37. yamon_free,
  38. };
  39. struct prom_pmemblock mdesc[PROM_MAX_PMEMBLOCKS];
  40. #ifdef DEBUG
  41. static char *mtypes[3] = {
  42. "Dont use memory",
  43. "YAMON PROM memory",
  44. "Free memmory",
  45. };
  46. #endif
  47. /* References to section boundaries */
  48. extern char _end;
  49. #define PFN_ALIGN(x)    (((unsigned long)(x) + (PAGE_SIZE - 1)) & PAGE_MASK)
  50. struct prom_pmemblock * __init prom_getmdesc(void)
  51. {
  52. char *memsize_str;
  53. unsigned int memsize;
  54. memsize_str = prom_getenv("memsize");
  55. if (!memsize_str) {
  56. prom_printf("memsize not set in boot prom, set to default (32Mb)n");
  57. memsize = 0x02000000;
  58. } else {
  59. #ifdef DEBUG
  60. prom_printf("prom_memsize = %sn", memsize_str);
  61. #endif
  62. memsize = simple_strtol(memsize_str, NULL, 0);
  63. }
  64. memset(mdesc, 0, sizeof(mdesc));
  65. mdesc[0].type = yamon_dontuse;
  66. mdesc[0].base = 0x00000000;
  67. mdesc[0].size = 0x00001000;
  68. mdesc[1].type = yamon_prom;
  69. mdesc[1].base = 0x00001000;
  70. mdesc[1].size = 0x000ef000;
  71. #if (CONFIG_MIPS_MALTA)
  72. /*
  73.  * The area 0x000f0000-0x000fffff is allocated for BIOS memory by the
  74.  * south bridge and PCI access always forwarded to the ISA Bus and
  75.  * BIOSCS# is always generated.
  76.  * This mean that this area can't be used as DMA memory for PCI
  77.  * devices.
  78.  */
  79. mdesc[2].type = yamon_dontuse;
  80. mdesc[2].base = 0x000f0000;
  81. mdesc[2].size = 0x00010000;
  82. #else
  83. mdesc[2].type = yamon_prom;
  84. mdesc[2].base = 0x000f0000;
  85. mdesc[2].size = 0x00010000;
  86. #endif
  87. mdesc[3].type = yamon_dontuse;
  88. mdesc[3].base = 0x00100000;
  89. mdesc[3].size = PHYSADDR(PFN_ALIGN(&_end)) - mdesc[3].base;
  90. mdesc[4].type = yamon_free;
  91. mdesc[4].base = PHYSADDR(PFN_ALIGN(&_end));
  92. mdesc[4].size = memsize - mdesc[4].base;
  93. return &mdesc[0];
  94. }
  95. static int __init prom_memtype_classify (unsigned int type)
  96. {
  97. switch (type) {
  98. case yamon_free:
  99. return BOOT_MEM_RAM;
  100. case yamon_prom:
  101. return BOOT_MEM_ROM_DATA;
  102. default:
  103. return BOOT_MEM_RESERVED;
  104. }
  105. }
  106. void __init prom_meminit(void)
  107. {
  108. struct prom_pmemblock *p;
  109. #ifdef DEBUG
  110. prom_printf("YAMON MEMORY DESCRIPTOR dump:n");
  111. p = prom_getmdesc();
  112. while (p->size) {
  113. int i = 0;
  114. prom_printf("[%d,%p]: base<%08lx> size<%08lx> type<%s>n",
  115.     i, p, p->base, p->size, mtypes[p->type]);
  116. p++;
  117. i++;
  118. }
  119. #endif
  120. p = prom_getmdesc();
  121. while (p->size) {
  122. long type;
  123. unsigned long base, size;
  124. type = prom_memtype_classify (p->type);
  125. base = p->base;
  126. size = p->size;
  127. add_memory_region(base, size, type);
  128.                 p++;
  129. }
  130. }
  131. void __init
  132. prom_free_prom_memory (void)
  133. {
  134. int i;
  135. unsigned long freed = 0;
  136. unsigned long addr;
  137. for (i = 0; i < boot_mem_map.nr_map; i++) {
  138. if (boot_mem_map.map[i].type != BOOT_MEM_ROM_DATA)
  139. continue;
  140. addr = boot_mem_map.map[i].addr;
  141. while (addr < boot_mem_map.map[i].addr
  142.       + boot_mem_map.map[i].size) {
  143. ClearPageReserved(virt_to_page(__va(addr)));
  144. set_page_count(virt_to_page(__va(addr)), 1);
  145. free_page(__va(addr));
  146. addr += PAGE_SIZE;
  147. freed += PAGE_SIZE;
  148. }
  149. }
  150. printk("Freeing prom memory: %ldkb freedn", freed >> 10);
  151. }