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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2000, 2001 Broadcom Corporation
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include <linux/config.h>
  19. #include <linux/init.h>
  20. #include <linux/kernel.h>
  21. #include <linux/mm.h>
  22. #include <linux/blk.h>
  23. #include <linux/bootmem.h>
  24. #include <linux/smp.h>
  25. #include <asm/bootinfo.h>
  26. #include <asm/reboot.h>
  27. extern char arcs_cmdline[];
  28. #ifdef CONFIG_EMBEDDED_RAMDISK
  29. /* These are symbols defined by the ramdisk linker script */
  30. extern unsigned char __rd_start;
  31. extern unsigned char __rd_end;
  32. #endif
  33. #define MAX_RAM_SIZE ((CONFIG_SIBYTE_STANDALONE_RAM_SIZE * 1024 * 1024) - 1)
  34. static __init void prom_meminit(void)
  35. {
  36. #ifdef CONFIG_BLK_DEV_INITRD
  37. unsigned long initrd_pstart;
  38. unsigned long initrd_pend;
  39. #ifdef CONFIG_EMBEDDED_RAMDISK
  40. /* If we're using an embedded ramdisk, then __rd_start and __rd_end
  41.    are defined by the linker to be on either side of the ramdisk
  42.    area.  Otherwise, initrd_start should be defined by kernel command
  43.    line arguments */
  44. if (initrd_start == 0) {
  45. initrd_start = (unsigned long)&__rd_start;
  46. initrd_end = (unsigned long)&__rd_end;
  47. }
  48. #endif
  49. initrd_pstart = __pa(initrd_start);
  50. initrd_pend = __pa(initrd_end);
  51. if (initrd_start &&
  52.     ((initrd_pstart > MAX_RAM_SIZE)
  53.      || (initrd_pend > MAX_RAM_SIZE))) {
  54. panic("initrd out of addressable memory");
  55. }
  56. add_memory_region(0, initrd_pstart,
  57.   BOOT_MEM_RAM);
  58. add_memory_region(initrd_pstart, initrd_pend - initrd_pstart,
  59.   BOOT_MEM_RESERVED);
  60. add_memory_region(initrd_pend,
  61.   (CONFIG_SIBYTE_STANDALONE_RAM_SIZE * 1024 * 1024) - initrd_pend,
  62.   BOOT_MEM_RAM);
  63. #else
  64. add_memory_region(0, CONFIG_SIBYTE_STANDALONE_RAM_SIZE * 1024 * 1024,
  65.   BOOT_MEM_RAM);
  66. #endif
  67. }
  68. void prom_cpu0_exit(void *unused)
  69. {
  70.         while (1) ;
  71. }
  72. static void prom_linux_exit(void)
  73. {
  74. #ifdef CONFIG_SMP
  75. if (smp_processor_id()) {
  76. smp_call_function(prom_cpu0_exit,NULL,1,1);
  77. }
  78. #endif
  79. while(1);
  80. }
  81. /*
  82.  * prom_init is called just after the cpu type is determined, from init_arch()
  83.  */
  84. __init int prom_init(int argc, char **argv, char **envp, int *prom_vec)
  85. {
  86. _machine_restart   = (void (*)(char *))prom_linux_exit;
  87. _machine_halt      = prom_linux_exit;
  88. _machine_power_off = prom_linux_exit;
  89. strcpy(arcs_cmdline, "root=/dev/ram0 ");
  90. mips_machgroup = MACH_GROUP_SIBYTE;
  91. prom_meminit();
  92. return 0;
  93. }
  94. void prom_free_prom_memory(void)
  95. {
  96. /* Not sure what I'm supposed to do here.  Nothing, I think */
  97. }
  98. int page_is_ram(unsigned long pagenr)
  99. {
  100. phys_t addr = pagenr << PAGE_SHIFT;
  101. return (addr < (CONFIG_SIBYTE_STANDALONE_RAM_SIZE * 1024 * 1024));
  102. }