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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * PROM library initialisation code.
  7.  *
  8.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  9.  */
  10. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <asm/sgialib.h>
  13. #undef DEBUG_PROM_INIT
  14. /* Master romvec interface. */
  15. struct linux_romvec *romvec;
  16. int prom_argc;
  17. LONG *_prom_argv, *_prom_envp;
  18. void __init prom_init(int argc, char **argv, char **envp, int *prom_vec)
  19. {
  20. PSYSTEM_PARAMETER_BLOCK pb = PROMBLOCK;
  21. romvec = ROMVECTOR;
  22. prom_argc = argc;
  23. _prom_argv = (LONG *) argv;
  24. _prom_envp = (LONG *) envp;
  25. if (pb->magic != 0x53435241) {
  26. prom_printf("Aieee, bad prom vector magic %08lxn", pb->magic);
  27. while(1)
  28. ;
  29. }
  30. prom_init_cmdline();
  31. prom_identify_arch();
  32. printk(KERN_INFO "PROMLIB: ARC firmware Version %d Revision %dn",
  33.        pb->ver, pb->rev);
  34. prom_meminit();
  35. #ifdef DEBUG_PROM_INIT
  36. prom_printf("Press a key to rebootn");
  37. prom_getchar();
  38. ArcEnterInteractiveMode();
  39. #endif
  40. }