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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * identify.c: identify machine by looking up system identifier
  3.  *
  4.  * Copyright (C) 1998 Thomas Bogendoerfer
  5.  * 
  6.  * This code is based on arch/mips/sgi/kernel/system.c, which is
  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 <linux/types.h>
  13. #include <linux/string.h>
  14. #include <asm/sgi/sgi.h>
  15. #include <asm/sgialib.h>
  16. #include <asm/bootinfo.h>
  17. struct smatch {
  18. char *name;
  19. int group;
  20. int type;
  21. int flags;
  22. };
  23. static struct smatch mach_table[] = {
  24. {"SGI-IP22", MACH_GROUP_SGI, MACH_SGI_INDY, PROM_FLAG_ARCS},
  25. {"Microsoft-Jazz", MACH_GROUP_JAZZ, MACH_MIPS_MAGNUM_4000, 0},
  26. {"PICA-61", MACH_GROUP_JAZZ, MACH_ACER_PICA_61, 0},
  27. {"RM200PCI", MACH_GROUP_SNI_RM, MACH_SNI_RM200_PCI, 0}
  28. };
  29. int prom_flags;
  30. static struct smatch *__init string_to_mach(char *s)
  31. {
  32. int i;
  33. for (i = 0; i < (sizeof(mach_table) / sizeof (mach_table[0])); i++) {
  34. if (!strcmp(s, mach_table[i].name))
  35. return &mach_table[i];
  36. }
  37. prom_printf("nYeee, could not determine architecture type <%s>n",
  38.     s);
  39. prom_printf("press a key to rebootn");
  40. prom_getchar();
  41. romvec->imode();
  42. return NULL;
  43. }
  44. void __init prom_identify_arch(void)
  45. {
  46. pcomponent *p;
  47. struct smatch *mach;
  48. /*
  49.  * The root component tells us what machine architecture we
  50.  * have here.
  51.  */
  52. p = prom_getchild(PROM_NULL_COMPONENT);
  53. printk("ARCH: %sn", p->iname);
  54. mach = string_to_mach(p->iname);
  55. mips_machgroup = mach->group;
  56. mips_machtype = mach->type;
  57. prom_flags = mach->flags;
  58. }