memory.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (C) 2007 Felix Fietkau <nbd@openwrt.org>
  3. * Copyright (C) 2007 Eugene Konev <ejka@openwrt.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #include <linux/bootmem.h>
  20. #include <linux/init.h>
  21. #include <linux/mm.h>
  22. #include <linux/module.h>
  23. #include <linux/pfn.h>
  24. #include <linux/proc_fs.h>
  25. #include <linux/string.h>
  26. #include <linux/swap.h>
  27. #include <asm/bootinfo.h>
  28. #include <asm/page.h>
  29. #include <asm/sections.h>
  30. #include <asm/mach-ar7/ar7.h>
  31. #include <asm/mips-boards/prom.h>
  32. static int __init memsize(void)
  33. {
  34. u32 size = (64 << 20);
  35. u32 *addr = (u32 *)KSEG1ADDR(AR7_SDRAM_BASE + size - 4);
  36. u32 *kernel_end = (u32 *)KSEG1ADDR(CPHYSADDR((u32)&_end));
  37. u32 *tmpaddr = addr;
  38. while (tmpaddr > kernel_end) {
  39. *tmpaddr = (u32)tmpaddr;
  40. size >>= 1;
  41. tmpaddr -= size >> 2;
  42. }
  43. do {
  44. tmpaddr += size >> 2;
  45. if (*tmpaddr != (u32)tmpaddr)
  46. break;
  47. size <<= 1;
  48. } while (size < (64 << 20));
  49. writel((u32)tmpaddr, &addr);
  50. return size;
  51. }
  52. void __init prom_meminit(void)
  53. {
  54. unsigned long pages;
  55. pages = memsize() >> PAGE_SHIFT;
  56. add_memory_region(PHYS_OFFSET, pages << PAGE_SHIFT, BOOT_MEM_RAM);
  57. }
  58. void __init prom_free_prom_memory(void)
  59. {
  60. /* Nothing to free */
  61. }