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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * identify.c: machine identification code.
  3.  *
  4.  * Copyright (C) 1998 Harald Koerfgen and Paul M. Antoine
  5.  *
  6.  * $Id: identify.c,v 1.2 1999/10/09 00:00:58 ralf Exp $
  7.  */
  8. #include <linux/init.h>
  9. #include <linux/kernel.h>
  10. #include <linux/string.h>
  11. #include <asm/bootinfo.h>
  12. #include "dectypes.h"
  13. #include "prom.h"
  14. extern char *(*prom_getenv)(char *);
  15. extern int (*prom_printf)(char *, ...);
  16. extern int (*rex_getsysid)(void);
  17. extern unsigned long mips_machgroup;
  18. extern unsigned long mips_machtype;
  19. void __init prom_identify_arch (unsigned int magic)
  20. {
  21. unsigned char dec_cpunum, dec_firmrev, dec_etc;
  22. int dec_systype;
  23. unsigned long dec_sysid;
  24. if (magic != REX_PROM_MAGIC) {
  25. dec_sysid = simple_strtoul(prom_getenv("systype"), (char **)0, 0);
  26. } else {
  27. dec_sysid = rex_getsysid();
  28. if (dec_sysid == 0) {
  29. prom_printf("Zero sysid returned from PROMs! Assuming PMAX-like machine.n");
  30. dec_sysid = 1;
  31. }
  32. }
  33. dec_cpunum = (dec_sysid & 0xff000000) >> 24;
  34. dec_systype = (dec_sysid & 0xff0000) >> 16;
  35. dec_firmrev = (dec_sysid & 0xff00) >> 8;
  36. dec_etc = dec_sysid & 0xff;
  37. /* We're obviously one of the DEC machines */
  38. mips_machgroup = MACH_GROUP_DEC;
  39. /*
  40.  * FIXME: This may not be an exhaustive list of DECStations/Servers!
  41.  * Put all model-specific initialisation calls here.
  42.  */
  43. prom_printf("This DECstation is a ");
  44. switch (dec_systype) {
  45. case DS2100_3100:
  46. prom_printf("DS2100/3100n");
  47. mips_machtype = MACH_DS23100;
  48. break;
  49. case DS5100: /* DS5100 MIPSMATE */
  50. prom_printf("DS5100n");
  51. mips_machtype = MACH_DS5100;
  52. break;
  53. case DS5000_200: /* DS5000 3max */
  54. prom_printf("DS5000/200n");
  55. mips_machtype = MACH_DS5000_200;
  56. break;
  57. case DS5000_1XX: /* DS5000/100 3min */
  58. prom_printf("DS5000/1xxn");
  59. mips_machtype = MACH_DS5000_1XX;
  60. break;
  61. case DS5000_2X0: /* DS5000/240 3max+ */
  62. prom_printf("DS5000/2x0n");
  63. mips_machtype = MACH_DS5000_2X0;
  64. break;
  65. case DS5000_XX: /* Personal DS5000/2x */
  66. prom_printf("Personal DS5000/xxn");
  67. mips_machtype = MACH_DS5000_XX;
  68. break;
  69. case DS5800: /* DS5800 Isis */
  70. prom_printf("DS5800n");
  71. mips_machtype = MACH_DS5800;
  72. break;
  73. case DS5400: /* DS5400 MIPSfair */
  74. prom_printf("DS5400n");
  75. mips_machtype = MACH_DS5400;
  76. break;
  77. case DS5500: /* DS5500 MIPSfair-2 */
  78. prom_printf("DS5500n");
  79. mips_machtype = MACH_DS5500;
  80. break;
  81. default:
  82. prom_printf("unknown, id is %x", dec_systype);
  83. mips_machtype = MACH_DSUNKNOWN;
  84. break;
  85. }
  86. }