prom.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

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[COMMAND_LINE_SIZE];
  14. void __init prom_init(const char *s)
  15. {
  16. int i = 0;
  17. if (s != (void *) -1)
  18. while (*s && i < sizeof(arcs_cmdline) - 1)
  19. arcs_cmdline[i++] = *s++;
  20. arcs_cmdline[i] = '';
  21. mips_machgroup = MACH_GROUP_NEC_DDB;
  22. mips_machtype = MACH_NEC_DDB5074;
  23. /* 64 MB non-upgradable */
  24. add_memory_region(0, 64 << 20, BOOT_MEM_RAM);
  25. }
  26. void __init prom_free_prom_memory(void)
  27. {
  28. }