init.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * linux/arch/cris/mm/init.c
  3. *
  4. * Copyright (C) 1995 Linus Torvalds
  5. * Copyright (C) 2000,2001 Axis Communications AB
  6. *
  7. * Authors: Bjorn Wesen (bjornw@axis.com)
  8. *
  9. */
  10. #include <linux/gfp.h>
  11. #include <linux/init.h>
  12. #include <linux/bootmem.h>
  13. #include <linux/proc_fs.h>
  14. #include <linux/kcore.h>
  15. #include <asm/tlb.h>
  16. #include <asm/sections.h>
  17. unsigned long empty_zero_page;
  18. EXPORT_SYMBOL(empty_zero_page);
  19. void __init mem_init(void)
  20. {
  21. BUG_ON(!mem_map);
  22. /* max/min_low_pfn was set by setup.c
  23. * now we just copy it to some other necessary places...
  24. *
  25. * high_memory was also set in setup.c
  26. */
  27. max_mapnr = max_low_pfn - min_low_pfn;
  28. free_all_bootmem();
  29. mem_init_print_info(NULL);
  30. }
  31. /* Free a range of init pages. Virtual addresses. */
  32. void free_init_pages(const char *what, unsigned long begin, unsigned long end)
  33. {
  34. unsigned long addr;
  35. for (addr = begin; addr < end; addr += PAGE_SIZE) {
  36. ClearPageReserved(virt_to_page(addr));
  37. init_page_count(virt_to_page(addr));
  38. free_page(addr);
  39. totalram_pages++;
  40. }
  41. printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
  42. }
  43. /* Free the pages occupied by initialization code. */
  44. void free_initmem(void)
  45. {
  46. free_initmem_default(-1);
  47. }
  48. /* Free the pages occupied by initrd code. */
  49. #ifdef CONFIG_BLK_DEV_INITRD
  50. void free_initrd_mem(unsigned long start, unsigned long end)
  51. {
  52. free_init_pages("initrd memory",
  53. start,
  54. end);
  55. }
  56. #endif