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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/mips/ddb5074/prom.c -- NEC DDB Vrc-5074 PROM routines
  3.  *
  4.  *  Copyright (C) 2000 Geert Uytterhoeven <geert@sonycom.com>
  5.  *                     Sony Software Development Center Europe (SDCE), Brussels
  6.  */
  7. #include <linux/init.h>
  8. #include <linux/mm.h>
  9. #include <linux/sched.h>
  10. #include <linux/bootmem.h>
  11. #include <asm/addrspace.h>
  12. #include <asm/bootinfo.h>
  13. char arcs_cmdline[CL_SIZE];
  14. const char *get_system_type(void)
  15. {
  16. return "NEC DDB Vrc-5074";
  17. }
  18. void __init prom_init(const char *s)
  19. {
  20. int i = 0;
  21. if (s != (void *) -1)
  22. while (*s && i < sizeof(arcs_cmdline) - 1)
  23. arcs_cmdline[i++] = *s++;
  24. arcs_cmdline[i] = '';
  25. mips_machgroup = MACH_GROUP_NEC_DDB;
  26. mips_machtype = MACH_NEC_DDB5074;
  27. /* 64 MB non-upgradable */
  28. add_memory_region(0, 64 << 20, BOOT_MEM_RAM);
  29. }
  30. void __init prom_free_prom_memory(void)
  31. {
  32. }